diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..aaa47ed --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "components/lv_port_esp32"] + path = components/lv_port_esp32 + url = https://github.com/littlevgl/lv_port_esp32.git diff --git a/.vscode/settings.json b/.vscode/settings.json index 46c087a..b820dd5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -9,6 +9,11 @@ }, "C_Cpp.intelliSenseEngineFallback": "Enabled", "files.associations": { - "file.h": "c" + "file.h": "c", + "display.h": "c", + "terminal.h": "c", + "lvgl.h": "c", + "lvgl_driver.h": "c", + "lv_ex_conf.h": "c" } } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..2df44f6 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,148 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Build - Build project", + "type": "shell", + "command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py build", + "windows": { + "command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py build" + }, + "options": { + "env": { + "PATH": "${config:idf.customExtraPaths}" + } + }, + "problemMatcher": { + "owner": "cpp", + "fileLocation": "absolute", + "pattern": { + "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + }, + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "Set ESP-IDF Target", + "type": "shell", + "command": "${command:espIdf.setTarget}", + "problemMatcher": { + "owner": "cpp", + "fileLocation": "absolute", + "pattern": { + "regexp": "^(.*):(//d+):(//d+)://s+(warning|error)://s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + }, + }, + { + "label": "Clean - Clean the project", + "type": "shell", + "command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py fullclean", + "windows": { + "command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py fullclean" + }, + "options": { + "env": { + "PATH": "${config:idf.customExtraPaths}" + } + }, + "problemMatcher": { + "owner": "cpp", + "fileLocation": "absolute", + "pattern": { + "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + }, + }, + { + "label": "Flash - Flash the device", + "type": "shell", + "command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py -p ${config:idf.port} -b ${config:idf.baudRate} flash", + "windows": { + "command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py flash -p ${config:idf.portWin} -b ${config:idf.baudRate}" + }, + "options": { + "env": { + "PATH": "${config:idf.customExtraPaths}" + } + }, + "problemMatcher": { + "owner": "cpp", + "fileLocation": "absolute", + "pattern": { + "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + }, + }, + { + "label": "Monitor: Start the monitor", + "type": "shell", + "dependsOn": "Flash - Flash the device", + "command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py -p ${config:idf.port} -b ${config:idf.baudRate} monitor", + "windows": { + "command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py monitor -p ${config:idf.portWin} -b ${config:idf.baudRate}" + }, + "options": { + "env": { + "PATH": "${config:idf.customExtraPaths}" + } + }, + }, + { + "label":"OpenOCD: Start openOCD", + "type":"shell", + "presentation": { + "echo": true, + "reveal": "never", + "focus": false, + "panel":"new" + }, + "command":"openocd -s ${command:espIdf.getOpenOcdScriptValue} ${command:espIdf.getOpenOcdConfigs}", + "windows": { + "command": "openocd.exe -s ${command:espIdf.getOpenOcdScriptValue} ${command:espIdf.getOpenOcdConfigs}" + }, + "options": { + "env": { + "PATH": "${config:idf.customExtraPaths}" + } + }, + "problemMatcher": { + "owner": "cpp", + "fileLocation": "absolute", + "pattern": { + "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + }, + }, + ] +} \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 9ce76de..2863f11 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,10 +4,12 @@ cmake_minimum_required(VERSION 3.5) include($ENV{IDF_PATH}/tools/cmake/project.cmake) set(PROJECT_VER "0.1.0.1") -set(EXTRA_COMPONENT_DIRS components/lv_examples - components/lvgl - components/lvgl_esp32_drivers/lvgl_tft - components/lvgl_esp32_drivers/lvgl_touch - components/lvgl_esp32_drivers) + +set(EXTRA_COMPONENT_DIRS components/lv_port_esp32/components/lv_examples + components/lv_port_esp32/components/lvgl + components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft + components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch + components/lv_port_esp32/components/lvgl_esp32_drivers) + project(bakalarka) diff --git a/build/.bin_timestamp b/build/.bin_timestamp new file mode 100644 index 0000000..ab9d746 --- /dev/null +++ b/build/.bin_timestamp @@ -0,0 +1 @@ +9c71743eb83e0496e3c4a6acb7795111 /home/mithras/esp/bakalarka/build/bakalarka.bin diff --git a/build/.ninja_deps b/build/.ninja_deps index 5023f37..0268ccc 100644 Binary files a/build/.ninja_deps and b/build/.ninja_deps differ diff --git a/build/.ninja_log b/build/.ninja_log index 044d0c6..b78c237 100644 --- a/build/.ninja_log +++ b/build/.ninja_log @@ -1,3370 +1,1646 @@ # ninja log v5 -51538 52155 1585159760 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj bcb8e8d8aa07b7cd -38453 38569 1585159747 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj ffbe490ba865255 -32357 32420 1584850598 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj 41c3886187558dd3 -23301 23515 1585159732 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj cc772de4544f40b2 -51076 51538 1585159760 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 90e7afa905c062a -51526 51685 1585159760 esp-idf/protobuf-c/libprotobuf-c.a f493e1ef2b08a025 -37340 37539 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj d68a706dce5c1214 -50649 51298 1585159759 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj ab8a934c142ad7ae -5302 5664 1585159714 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj de350ce3c8976080 -30331 30629 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 8ce37f621eb9386e -38060 38694 1585159747 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj 3c51dfa0d6e67fe6 -55640 55873 1584850621 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj 2a66078fc6eed014 -50417 52006 1585159760 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj 1ff5446daf382c65 -50267 50649 1585159759 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj b560ca64e20196f4 -49222 49535 1585159758 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj b5fe994343abd2e -49957 50287 1585159758 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj b154c0a48629be5d -49085 49221 1585159757 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 5870011e5c57795a -10246 10998 1585159719 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 979109410e04f4b0 -34918 36136 1584850601 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 5c1c38aee4b4f775 -46877 47014 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c.obj 3eeb2c780a9a8d95 -48762 49021 1585159757 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj 7d8dff5abf2c7103 -47394 48544 1585159757 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj 7f9e73c1ed300700 -48386 48762 1585159757 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj a4bb384907bfc443 -43646 43973 1585159752 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj 49d3279ab0e2e2d9 -51298 52030 1585159760 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 4a3f799b74144365 -44182 44215 1585159752 esp-idf/nghttp/libnghttp.a c621045d4dc2c2e9 -48789 48915 1585159757 esp-idf/esp_adc_cal/libesp_adc_cal.a 321a66f17fd37eef -50690 50865 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj 1abb81c175bd784 -48703 48964 1585159757 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 6dc2aa1249423b76 -47403 48230 1585159756 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj a8b921496ea192fb -21899 22298 1585159730 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj a8aae163c70d0df0 -44232 44251 1585159752 esp-idf/cxx/libcxx.a a50eeb7ca8b482fd -47207 47679 1585159756 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj d67c5099e4246b75 -47681 48179 1585159756 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj fc6356ccb6a8853f -56810 57042 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj 71f5b2b3c27cb015 -52228 52395 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj 2339c096676e606c -46019 46865 1585159755 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj 158af1b535b2db36 -26734 26956 1585159735 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 53ca2d5e57280b97 -46573 47006 1585159755 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj ce351ace95fec134 -46251 46573 1585159755 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj d216d26246db22f1 -46370 46769 1585159755 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj 20c789316bcfbc08 -46163 46370 1585159754 esp-idf/cbor/libcbor.a a95ad5cc568fa046 -48738 48871 1585159757 esp-idf/console/libconsole.a 2633ce91f5d7cfbc -45609 45983 1585159754 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj f97d3a67764aada5 -45579 46163 1585159754 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj df393e94294e1129 -45592 46073 1585159754 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj 31dd1bd388e97df7 -2647 2942 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj 8b7300551504b8af -17598 17671 1584850583 bootloader-prefix/src/bootloader-stamp/bootloader-install bc83b3b8ebb07513 -45533 46018 1585159754 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj c3669caed55c3d13 -45486 45678 1585159754 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj 6f01aa75e1d2e488 -3627 3807 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 6a9d8b5f4ba6cc62 -45260 45592 1585159754 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj f09de5fa975c8dfe -32485 32887 1584850598 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj b4aca48ec3221d -42868 43169 1585159751 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj fa774017de65ef7b -45181 45334 1585159753 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj 91d393ea06dd3512 -45467 45533 1585159754 esp-idf/xtensa/libxtensa.a 39c97242db240995 -788 1165 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj eec509d157560d49 -1127 1478 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 9b6b7006c3f11791 -51488 51962 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj a0eb3e47b4653462 -45358 45467 1585159754 esp-idf/mbedtls/libmbedtls.a 20f83969fcd73776 -37540 37866 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj 1366150fbc1992c6 -32383 32485 1584850598 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj 4f97ec00aee6373f -56066 56082 1584850621 esp-idf/lvgl_touch/liblvgl_touch.a a84b401e288a8a96 -32362 32480 1584850598 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj 60fa0117ea51e399 -32377 32472 1584850598 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj 980b8fe770552166 -55901 55932 1584850621 esp-idf/lvgl_tft/liblvgl_tft.a 54e6a07d61896206 -48544 48703 1585159757 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj cf8d693130622701 -753 955 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 30cdd68daa46c801 -27973 28364 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj ecfb975dc192ca61 -45065 45240 1585159753 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj 4ff4468879b463b -45066 45260 1585159753 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj 41e6898ed1bc5f1b -927 1058 1585139893 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj c866e14ccdd0ff8c -9228 9474 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj 7a3c9d16b0460aa9 -41959 42527 1585159751 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj d684f1aaa3ef4fef -61898 62049 1585159770 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj fd2f26d536e73a2b -32274 32322 1584850598 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa_asm.S.obj 7121634884c7fe91 -44952 44973 1585159753 esp-idf/efuse/libefuse.a 8b73fc3e19818359 -16062 16774 1585159725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 54d871bc662d8b93 -44929 44951 1585159753 esp-idf/bootloader_support/libbootloader_support.a 81bd485cf13f5f2f -51937 52199 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj a2c6e4b4d0b35d14 -44914 44929 1585159753 esp-idf/app_update/libapp_update.a 629b42f69c26dd2b -8779 8884 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj ca877031b9acb682 -44749 44766 1585159753 esp-idf/tcpip_adapter/libtcpip_adapter.a d3f10370c7462d1e -44766 44790 1585159753 esp-idf/esp_eth/libesp_eth.a 80e079e349f37dcc -54299 54475 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj 912d0fd62c70ad92 -44525 44546 1585159753 esp-idf/log/liblog.a 1274d7808513dadc -44508 44525 1585159753 esp-idf/heap/libheap.a 651625a391e6c741 -44489 44508 1585159753 esp-idf/esp_ringbuf/libesp_ringbuf.a 52142642e68b28d5 -61052 61358 1585159769 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 8bba0d72acb2560 -44409 44425 1585159753 esp-idf/espcoredump/libespcoredump.a 61e4a4fb412fae8c -44340 44360 1585159752 esp-idf/esp_common/libesp_common.a adf28ed1f2e8ebd2 -44322 44340 1585159752 esp-idf/esp_timer/libesp_timer.a 33b8c301002404d9 -18381 18639 1585159727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj b63478115c5bbfd5 -44079 44095 1585159752 esp-idf/ulp/libulp.a b5ba4f97522c9ec3 -43902 44079 1585159752 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj 1591b1b498aaf318 -54654 54937 1585159763 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 80ef5d78aa0b037 -52653 52766 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj f052ea3e9aba214f -44095 44119 1585159752 esp-idf/esp_http_server/libesp_http_server.a 8ebd1da8c170e991 -43377 43913 1585159752 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj ff455323944b947b -58167 58511 1585159767 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj aae3a4a20ed5ede5 -43036 43477 1585159752 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 1362475d4a45ec43 -5664 6037 1585159714 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 556a692629adfada -42791 43729 1585159752 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj ade113e84032744e -41818 41895 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c.obj 9d1c97c5a3e55855 -43477 44064 1585159752 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj e8eaf732e043d3ac -42533 43036 1585159751 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 49de941a8fdd7369 -42527 42957 1585159751 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj e9c0ac3af2619026 -42197 42373 1585159750 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj e700c98cc4b5b57c -42067 42533 1585159751 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 713d6119721d556f -56644 57031 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj acd0c427e5fe89ef -50750 50970 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj dc69260a1a9fb71b -46074 46381 1585159754 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj ff178f4cfcd8bf73 -20493 22199 1585159730 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj 1f397e451cb774fc -55251 55745 1585159764 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj 9f8e58ee3ba3bf74 -41779 42613 1585159751 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj a8ef0e7c0c7ec6d3 -38495 38863 1585159747 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj 20732dbdf6bafdb0 -39072 39212 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj 83fc2d72d8ad9582 -42373 42791 1585159751 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj 9a6f02a1bfb15382 -30544 30832 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj e314b9a35f4d0037 -41561 41959 1585159750 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj c2b6a0def2140719 -29088 29255 1584850595 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_version.c.obj 4822192dd7ebc568 -4890 5146 1585159713 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj 16a2b7a94e230d59 -40936 41779 1585159750 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj 5151e6f485fda92c -46769 48114 1585159756 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj e04671b07da484f1 -28361 28658 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_buf.c.obj 97bbf7980309525e -41093 41631 1585159750 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj 765de8f82152873a -58511 58861 1585159767 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj 59b1a66aa08b64d6 -41397 41561 1585159750 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj 24f0d34456b74a65 -42499 43243 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c.obj e7d20bcd231509c6 -48230 48738 1585159757 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj c0e6f889c5a97127 -28847 28979 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_priority_spec.c.obj e0f3fe1361bc4be3 -43713 43901 1585159752 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 3cf8b0690a27d0a7 -42045 42297 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c.obj b0e6e2e349824ad7 -51175 51378 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj 27004cb95cb5e912 -28793 28918 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_npn.c.obj abf7e20060a87aa4 -10234 10488 1585159719 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj b68d1ec4d8eb57f5 -44607 44741 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c.obj 8f153af0cd68ee63 -28676 28835 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_mem.c.obj 35313f14a5557e80 -52552 52915 1585159761 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj e0cb79d09b2cb159 -28582 28793 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_map.c.obj 1626ad8f007c72a -28546 28763 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman_data.c.obj 1de20db6f053b6e7 -40927 41181 1585159749 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj 71c80e7c70ec8c52 -40651 41397 1585159750 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj fb7a8af422402899 -28418 28546 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_debug.c.obj 6566611933ade9f4 -40823 41244 1585159749 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 9d7477055e5648dc -40679 40860 1585159749 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj d74a4c9c79b4ac58 -40500 40877 1585159749 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 2a1556cdc96337cc -8478 8601 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj 930ee878ebc68233 -11349 12833 1585159721 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 4ce3da35f990a752 -40624 40927 1585159749 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj fc1713e8b0209c43 -40552 40823 1585159749 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj e5ba6daee3fe69aa -40401 40509 1585159749 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj 41f4f556f1909f8f -13266 14295 1585159722 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 579b1110a728b0fe -39587 40400 1585159749 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj a6ebca211b2a7ab9 -40139 40381 1585159748 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj 1395c73602d0312 -42792 42995 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c.obj 3b3b5027cdc73cf0 -51335 51383 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj d61d1cf5ee0a7381 -39842 40124 1585159748 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj ff7afc5ba7bab41f -32274 32320 1584850598 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj 21e59060e0644c7b -34898 35067 1584850600 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 44f807e9bd139e0b -44431 44491 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S.obj 66569526e2b9a812 -54934 55058 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj ae555cf7d988bfed -39454 39609 1585159748 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj e920ca8ee03a2b44 -40351 40500 1585159749 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj 1db1bc21ea98a0f2 -1222 1666 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj f2eb0ba72f4332e -39213 39841 1585159748 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj bb0c30ba3bf721d5 -39159 39454 1585159748 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj 9bda50b0ef210b77 -32480 33009 1584850598 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj 26156b6d866a3a00 -38830 39157 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj de26f7a71e6bd1fd -49419 49504 1585159758 esp-idf/esp_https_server/libesp_https_server.a ebdd02b3e26beb0f -39674 40154 1585159748 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj 8a80f314e6cc154a -38706 38987 1585159747 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj bfa1eb8b238e25b5 -41205 41257 1584850607 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdiag.c.obj 33f25af26a5af17 -39141 39218 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj ae08d9a2a49512a7 -32576 32912 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj ab3940556b4ae489 -39071 39141 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj b62a8c361cf41e20 -10094 10234 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj d338324988564c61 -38728 39079 1585159747 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 1e9aa4a44f4eb9c5 -44829 44919 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c.obj 194e3c0d6e1bbf54 -52212 52424 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj 1cb788b142a81b89 -38970 39071 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj 17b3efe38e3617e2 -32 120 1585159708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj 5e53d85948e7e9ad -9584 9802 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj 63a67e43d93a99f7 -10207 10344 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj 1660e6d436922db3 -38502 38706 1585159747 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj f721e23b6f442720 -38694 38970 1585159747 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj a0a789c8d266405d -62091 63101 1585159771 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -38525 38830 1585159747 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj 51e1726fa176beff -49811 49957 1585159758 esp-idf/coap/libcoap.a 44ce67ee174d4c41 -39080 39231 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj 5a63ea3680b3ee6a -50063 50251 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj 9f9dcc1e502ee2 -38570 38727 1585159747 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj f4d4ff991b2b8da5 -3921 4254 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/bignum.c.obj 4a609166be5cd2eb -53760 53943 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj 1e348e647edd3716 -54674 54846 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj d6bc366bd8ce9aa -44812 44845 1585159753 esp-idf/soc/libsoc.a bdb543765a75c368 -55186 55334 1584850621 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj 92171276b74970a0 -38171 38471 1585159747 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj 57757adf628f07e7 -44725 44749 1585159753 esp-idf/esp_netif/libesp_netif.a 9b9a8a1d361dc99f -60084 60442 1585159769 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj b5592ea701ee6798 -37905 38494 1585159747 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj 4109da51c340ffea -37866 38051 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj 6591e07bb725b88f -37446 38060 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj 9054a83e111c6e03 -38051 38283 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj 96ffc18083f4d5a0 -29636 30331 1585159738 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj d802474ade654a1a -38153 38502 1585159747 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj 820ad4d92fc9ebdc -37221 37422 1585159746 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 707f879fed825658 -36946 37220 1585159745 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 8b2f4f9940484ddb -37723 38171 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj ab97a840cdbd0483 -25903 25986 1584850591 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj 973b5e90f174fb2 -4873 5097 1585159713 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj a991b5526a6aceac -36827 37111 1585159745 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 97362a1088b6f67c -36450 37198 1585159745 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj 7d1742177fae65bb -42957 43713 1585159752 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 85b0ac563ecd13e8 -36671 37140 1585159745 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj cc9dbe77cd37dd60 -35646 36671 1585159745 esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj 39acc43e17bc399 -22158 23301 1585159731 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj 74a44b3e0940c2 -52247 52652 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj 4a3331cf95a54a67 -33284 33864 1585159742 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj 4f6c98e632707eb4 -53251 53398 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj 3af85646fc3c8344 -35625 36112 1585159744 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj 17919c541a9d0ebc -44215 44232 1585159752 esp-idf/app_trace/libapp_trace.a b631249a9244a40a -764 992 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj 812cb8e07fef19c8 -19508 19936 1585159728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj a39fe3c82e29d4d1 -34402 35625 1585159744 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj e99bf8196316f125 -50225 50276 1584850616 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj f0a8188cd6131d5e -32274 32339 1584850598 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 204dc438939df3bf -35129 35890 1585159744 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj bf6f2b3cb1cc4ea7 -32431 32497 1584850598 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj cf4016bd31d99ebb -35180 35646 1585159744 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj 64f5eff0b7e388d9 -41244 41411 1585159750 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj 1ee6226dffa8f490 -33900 35497 1585159744 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj cdf30f7e92ca0d33 -35126 35180 1585159743 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj 3eb587fd8ed0a9be -34026 35126 1585159743 esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj 86b8b633b78a24ca -10035 10228 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj dbbea780acaed617 -33864 35129 1585159743 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj b6998a1f1d5b1c9e -32990 33194 1585159741 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 33dfd192546c2f97 -54330 54653 1585159763 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj f63896555ae6e124 -35380 36002 1585159744 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj 40d2859175d530cf -33790 34603 1585159743 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj d338213d481b02f0 -35329 35845 1585159744 esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj 7534d43cb27a166e -41470 41721 1585159750 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj 9e509cf86c24478c -61787 61823 1585159770 esp-idf/ca/libca.a 3b311f6ce51ffc82 -33578 34026 1585159742 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj 9a19feffde4168a6 -37459 37682 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj f3b09dafc2279a9 -53282 53566 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj 2e7ac24f97079cba -33211 33790 1585159742 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj a08c6a8eedb203f2 -3644 3720 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj d9ff4450de980d72 -33085 33400 1585159742 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 8f7c82b032070b98 -32913 33085 1585159741 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj 26a9601ec2600d66 -32357 32569 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 615fc87f3c3f6a8a -51328 51488 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj 3c5127e279cee4ea -33044 33218 1585159741 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 8475b11c18a5b94d -39276 40722 1585159749 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj 8e48beebea188ef3 -55873 55972 1584850621 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj 41b3f99f8e875289 -32839 33211 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj 332d026e324c4930 -3579 3664 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj d987f94ba57bec33 -32806 33284 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj dd0b65e4885c015 -32849 33230 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj cfef06aebc3e3b0f -22124 23929 1585159732 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj 5c2cde4546276322 -59688 59837 1585159768 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj c485d1f53862c4ab -53197 53306 1584850619 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj f6039a586f10c48e -32685 32990 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj fbd1f7eedb3a05c4 -45345 45609 1585159754 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj 3bf0177c6f65799f -57656 57823 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj 29b8cb18b001ef6d -32569 32806 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 2d493aba99a77003 -22577 24777 1585159733 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 11759b1956623d8c -32538 32839 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj 2272bece4ce53f85 -32528 32788 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 4298e5baf4d8c480 -44706 44725 1585159753 esp-idf/esp_event/libesp_event.a 3706ea83ed15eb7f -52396 52671 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj 4a3cd8097b6d99d6 -32367 32528 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj 7123e9fd03b086a6 -35000 35329 1585159743 esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj 18ae6a8ffc476f28 -58552 58771 1585159767 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj c24f2597976d6ac3 -32084 32339 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 811b681e37787174 -53857 53975 1585159762 esp-idf/esp_websocket_client/libesp_websocket_client.a 518e2577c9404339 -31086 32499 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 47b7d5913f3c64a6 -33230 33937 1585159742 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj c00408cfda051306 -31994 32269 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 9f8eea5345f6b0e4 -46169 46548 1585159755 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj 5030558c6f6c36d4 -56727 56893 1585159765 esp-idf/expat/libexpat.a 2f48a09ddd2977e8 -51331 51382 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj b30259d138f93027 -32011 32208 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 4de30b077d0583e1 -31669 31905 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj 96093a349c709750 -31730 31994 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj f749bcc165837691 -10044 10153 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj 7d8103ff645be070 -45184 45345 1585159753 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj b00e0a354136e15b -1165 1283 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj ea0eaf5f1d63e3fe -38283 38453 1585159747 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err.c.obj 394ce3fec6ec56ce -31122 31713 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj 20cf6a79fb7fb9dc -51863 52663 1585159761 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 9a086305f031f58b -31819 31946 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj 5889ae3ad146784e -32420 32531 1584850598 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj ed03588bbfe60e1a -8832 8979 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/soc_hal.c.obj 3888af6445c7d37f -31254 31639 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 771b807e11f8340d -31636 31804 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 85ae330c0ee32c12 -10085 10207 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj d5e6bc758a6e69bf -41607 41702 1584850607 esp-idf/jsmn/libjsmn.a e805679b5a44a9d1 -60221 60325 1585159768 esp-idf/mqtt/libmqtt.a 4b234aa7654b545c -48965 51525 1585159760 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj d119b991363a8fd -31639 31819 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj 23480ceb1f263a3e -31396 31730 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj c25157fc13735247 -12232 12682 1585159721 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj db0fdbd7b646c762 -30963 31396 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj b29b9f01bc6218dd -30879 31636 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj bef09bc64a1b42f6 -8545 8763 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj e2d908a1280d2476 -43243 43434 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c.obj 149bfa7fa46a8e1a -30992 31254 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 634e49d8285dd6c9 -45073 57943 1585159766 esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj ced96d88be2d2fba -61880 61897 1585159770 esp-idf/wifi/libwifi.a 318bc43937909b13 -30404 30879 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj bb60e82ed574f99d -51685 51862 1585159760 esp-idf/protocomm/libprotocomm.a a24354d090c61c70 -30832 31082 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj b3515ff52023ed83 -29716 30544 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 8a5d43871eac97f4 -26917 27580 1585159736 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj 89a4265024c628cf -30455 30861 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 7bc8574675197530 -29779 30455 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 50c8912980e73ff3 -45066 45181 1585159753 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj 2f309274117d0c08 -54938 55251 1585159763 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj 33c5f29f99ac3c8e -29361 30403 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj fade4a1edc9f0f96 -480 969 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 73eb55c318e7593c -45067 45183 1585159753 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/esp32/trax_init.c.obj 1e6b1b8dc6601e4e -33195 33578 1585159742 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 902688992b39eeb -60195 61265 1585159769 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj c3fe7e01dac0e94f -32339 32576 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 635ce36b45669c07 -32423 32657 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj d15920c299aaeaa -29432 30567 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj c5d4549662610d5 -15470 15904 1585159724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj 6c8c1cc49e3ae20e -29728 29952 1585159738 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 6c13954ae5c00eed -29103 29728 1585159738 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj e63c116cb56fba4a -56679 56938 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj 7ba3837661953c26 +42861 43358 1585440626 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj ec2ebaeb338d11f0 +90935 91005 1585220921 esp-idf/cmd_nvs/libcmd_nvs.a 1b7bb0daa3755fe0 +17779 18170 1585440601 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj be0636faf4db39cd +6323 6522 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 5a4f87c2088065fd +27318 28215 1585440611 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj 4f96eac3f9e1f4e0 +849 1631 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj a04cf172379f7def +15477 17642 1585440601 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj 61f97fde6e32a08 +37640 37702 1585440621 esp-idf/lwip/liblwip.a cfc5b7a574b9e094 +4585 4769 1584850570 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 90b409d187b82e09 +23814 24011 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj e3c651fccf8954b4 +5553 5723 1585440589 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 4d86dbe548c9a429 +38022 38587 1584850604 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlrole.c.obj 6d2b3afb60de5008 +67556 67872 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj 86e81365dc9a5187 +33995 36135 1585440619 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj 2f942485126681e1 +59429 60210 1585440643 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj 1eb8ccb1bbc1ef8b +10111 10488 1585440593 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 5256ffdf40f76a69 +15118 15902 1585440599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj d7170eff8de976d1 +24378 24598 1585440608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 2d761c4e64017e62 +37448 37476 1585440620 esp-idf/esp32/libesp32.a 5ecf3157bee85aa5 +5183 5562 1585440588 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 2b0061bb7d6112da +4854 5174 1585440588 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj ee9e8a4c6dd92ab7 +53083 53467 1585440636 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj 8cf34674e3e9546d +7865 8083 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj 6064f4f16f7c97ce +38361 40707 1584850606 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok.c.obj 1c3139828de35421 +31122 31310 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj b6b27581006b9649 +28215 28649 1585440612 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 9729f133ca994898 +3972 4911 1585440588 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj c421326f74b2ac8 +55787 55982 1585440639 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj d84e67b9536abc4 +20074 20323 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 9972798a0051c520 +9900 10418 1585440593 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj 5600f8a091c70d10 +5359 5546 1585440588 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 8cc366d0597a1718 +223 570 1585440583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 20149d7f8f904a11 +37231 37251 1585440620 esp-idf/esp-tls/libesp-tls.a 31affc00a434415b +9534 9688 1585440593 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj d1de44722f84f3f +53957 55076 1585440638 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj ff1b4db2a3dffdd2 +8249 8427 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj 93d15a4c5fc6ca5 +2827 3075 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj b16b20888756824 +65390 65781 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj 7f2a2bd6cc8df6b1 +32397 32702 1585440616 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj 18736c5f9f3637a2 +31310 31492 1585440614 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj 10213c4b563eaebf +54506 54722 1585440638 esp-idf/asio/libasio.a 62a13e711bc33278 +2689 2827 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj e68b1851c640de7f +46017 46515 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c.obj f2893f50432febbe +1697 2149 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj f366ab2b02f940f5 +14950 15477 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 7f297422df7da627 +66581 66817 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj c03800bc186dd997 +5660 9900 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +60981 61409 1585440644 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj 4f55c5118de96533 +18647 19021 1585440602 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj 31129163c6fa8bcd +3827 4090 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj f9dc81bec0691839 +4090 5942 1585440589 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj c052958e4d91e4b5 +50124 50191 1584850615 cacert.pem.S edea0ac918570cbb +7942 8002 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj 17df9f7e2b3acb1c +9734 10111 1585440593 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj 9d9f5bdb90c688a +26 663 1585139893 esp-idf/mbedtls/x509_crt_bundle 371cb489a2a51441 +1873 2005 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 6fa37e26332b1c12 +44186 44782 1585440628 esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj afc83e823cb63ffe +11783 12120 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 87c41747bceff9ee +123 357 1585440583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 5adf60210421eab7 +26 170 1585139892 partition_table/partition-table.bin 7655812377592a4e +3935 4252 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 988c6be88ff3acd7 +48101 48521 1585440631 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj ae1eb731b2cff3d0 +55965 56587 1585440640 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj 2829bf3d0e3e1831 +46402 46596 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c.obj cd445386220d10ae +4030 4224 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj 563b629bab6cf3a0 +42650 42792 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c.obj 107a72d070a86f46 +3696 3935 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 3059b0b7c874632b +41531 41703 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c.obj dad60d9deed293ef +3715 3972 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 1e59c3eb4df2f2d6 +44056 44357 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c.obj cd7c6f92cf2b641 +65048 65390 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj f44cb95d6721e2e9 +37990 38010 1585440621 esp-idf/esp_system/libesp_system.a 2059c603ec302120 +3473 3827 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha256.c.obj b99ef2be1306ff3e +25988 27169 1585440610 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj 81c311aadc3fd67a +3765 3890 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 5632daab98c1d48f +26174 26451 1585440609 esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj 5ae287ce163eb22f +60420 61945 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj 2f9ac0f57b164e78 +65158 65799 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj 798a3567031318fc +52819 53362 1585440636 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj 3fcbb1cf3b2882b8 +2861 2985 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 9b97e17326eeb4f2 +68719 69231 1585440652 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj 701b6cbf97f1c52 +10744 10982 1585440594 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj bbc08bc96e7b25a7 +9144 9363 1585440592 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj 92a817c5d823e1d1 +19727 20074 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 4d0caca18245133e +6825 6946 1585440590 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj 12d104cdc4142f85 +43775 43996 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c.obj e425a5867fd7b2f6 +31140 31579 1585440615 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj d6e491ed748fa4c4 +12070 12263 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 392a3478c7dc44a3 +68691 69215 1585440652 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj 2ccfa6909484c73b +37476 37494 1585440620 esp-idf/perfmon/libperfmon.a b74d9df8a26398f8 +13350 13680 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 1054d2f8ec3dffc7 +52244 52781 1585440636 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj f1d0bde7eb738bdf +1182 1408 1585440584 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj 7df79dfce608d244 +15507 17432 1585440600 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj e28cd8d47756f0 +60269 60547 1585440643 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj 1579c2acdeace073 +41783 43403 1585440626 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj f7ed387f54a38e44 +7155 7523 1585440590 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj 54f91e3bb4f35712 +19763 20988 1585440604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj fde02ce432e66fae +11128 11723 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj eb6571abe5b624c +8053 8115 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj ff2d172f09e291a7 +6108 6418 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 8f0739064d2111fe +2675 2921 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 14b3504e24dab81d +10419 10692 1585440594 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj bd9ec6e062450dcf +44841 44903 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c.obj d0ba2be7d6b104c +56810 57913 1585440641 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj d58afb73471a712b +18855 19197 1585440602 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj e84f19c8cb1b96e4 +13979 14248 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj 23e11a46290371a6 +8390 8526 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mpu_hal.c.obj 3f283e59f35ad16c +64371 64647 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj bafe506eddfbf3f3 +2207 2374 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj 627dd85d6337a7dd +67425 67700 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj 6e059b721aeb91c8 +37537 37577 1585440621 esp-idf/driver/libdriver.a 5cd66d74d6544f4f +1109 1243 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 939c8482350cb653 +47615 47686 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/runtime.c.obj a02be098a1b72992 +2005 2330 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj f219615cf93bce6b +961 1098 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj f6d250e066717798 +15351 15676 1585440599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 1e4f1a9264a9a893 +6110 6225 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj a57dddea3cfdaf +1098 1340 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b8d01f4cad94fe0f +47583 48101 1585440631 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 572d0ba8df5d020e +37757 37825 1585440621 esp-idf/wpa_supplicant/libwpa_supplicant.a 934adf958a664c37 +4835 5155 1585440588 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj 77d42a6386fbc655 +23849 24105 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj e7c3444eb66231ef +910 1182 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj bf06441f8e82e460 +3328 3715 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj 3ef8c07f5770bf38 +45331 45773 1585440629 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj 9464fe2676084870 +60746 61171 1585440644 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj 6513d22bbb8df8b9 +10095 10448 1585440593 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj 179654b2d598a871 +3216 3328 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj ee171c25d1d16fc7 +7523 7942 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj bcbe7dbb7e325722 +357 632 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 8150fd290267689c +2480 2675 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 7769b6d7f0a54bbc +8260 8446 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj 302b90d6cbc282fd +50405 51121 1585440634 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj 629d2aaace6094ec +1586 1934 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 4fcc59e33c441db +345 589 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 29a60c9a3f5d374b +44262 44345 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c.obj d948dcc5d2b762b9 +36773 37075 1585440620 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj e32cde81f33948f +32316 32648 1585440616 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj b361c982f91bcf46 +28936 29733 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj efd679088e15fab5 +55011 55345 1585440638 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj e071d01350af156a +1934 2413 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj f73b5cfb92407c29 +3240 3598 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_bignum.c.obj 74646d4af8565ce3 +58 223 1585440583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj 6b085a47fcbea73c +23171 23762 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj d0e66fbc898d25a5 +11140 12065 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj cbcf57c5c6e9332 +44 54 1585440583 esp-idf/esp32/esp32_out.ld 8c63fbe09600b012 +8044 8356 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj 3a55c388f7323eae +6561 6924 1585440590 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 88c5429ac7e7980e +42750 42976 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx/crypto_kx.c.obj e516de414ea8be95 +55 345 1585440583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj e2084f9e45d8f107 +67697 67915 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj fe7e28099504e083 +1594 1721 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj cb4d27aae9c1cbfe +44072 44727 1585440628 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj 8cac2adf84d73e55 +4911 5144 1585440588 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj 652970286b569791 +2548 2817 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 476d585b0bdb9deb +38390 38690 1585440622 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj 86747d137de54150 +53596 54067 1585440637 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj a5dffd5f3e947339 +2149 2425 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 69dd4915fa10937b +261 624 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 620aeaae2b5db36f +23 97 1585406143 esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj 2b4b3a1bcf6c4f61 +4374 4577 1585440588 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj 2fd500af7243a5fe +59116 59377 1585440642 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj 5bcad2caeebac799 +90430 90932 1585220921 esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj d67807718f820db3 +7022 7155 1585440590 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/cpu_hal.c.obj 102ecd7bf6775de1 +61877 62281 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj 35089153a9c4931f +43162 44858 1585440628 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj b69597b97d3cb830 +38142 38195 1585440621 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a ba9822d5d40cb5ce +33768 34368 1585440617 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj c087ac416aa084ec +45038 45121 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c.obj f6f5273df10f9160 +4831 4971 1584850570 bootloader-prefix/src/bootloader-stamp/bootloader-patch 3f06e9d73a8b6125 +35655 35871 1585440619 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj c956d42bf1e6eee1 +48388 52147 1585440635 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj 89474d8a15ca19e3 +6131 6370 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 7ab652436f384c5d +4709 4835 1585440588 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj e51bd55a96cba237 +44182 44262 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c.obj 9df28de70f66a358 +8428 8690 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj 8a9332f103f8a33a +12349 12705 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj 54bddcfaa79e3506 +1552 2475 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj a3af968c67ab9c12 +1721 1872 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj 515c92f19bb486e +2817 2941 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj e45a382f87f6d832 +12621 12864 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj 6a5f09c6bfb92865 +19257 19774 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj e512427ef21e22ca +64205 65048 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj b8aa2467b1d5f71a +43404 43937 1585440627 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj d4f5b287b54a3c43 +19774 19995 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 3bd0b2a58c2bff52 +590 726 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj f5941347238563e6 +21958 22238 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj e8974ff718de6bd7 +52123 52600 1585440636 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj 162ecfb45450315a +5510 5669 1584850571 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj 93c9a4f49359b5fb +7834 8096 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj ff1bf688ceca3b01 +11669 12077 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj ecd40bf9fabd7784 +8722 9297 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj 9dc0432f52b8a829 +15037 15233 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 509b21db3123f698 +1341 1697 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 5105a773ef5aa6ad +39909 40794 1585440624 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj a211b752d499d287 +2413 2547 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj dbc29a5bbec41aa0 +1631 2207 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 919e8ad01f40d753 +62405 62786 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj baf9965da4280fc7 +29706 30261 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj dfd56f1a9ae11cc4 +6924 7165 1585440590 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj 90451c0ab1f76fcc +44727 44876 1585440628 esp-idf/esp_https_ota/libesp_https_ota.a fefb0d1df4e90f1e +11816 12070 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj c60d9d921271099e +5942 6109 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 5448385089a5e08b +45755 46443 1585440629 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj 85a610e2057e822f +14838 15045 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj ed773ca4350acb97 +1409 2221 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj cd843719b30eeb20 +17627 19269 1585440602 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 1f50ff982a173be1 +2316 2451 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 6a31e43968ff5152 +62160 62347 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj 8d56a6921a6335cf +3207 3308 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj 62ab38891f030ec7 +3254 3401 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj 9749a3ce0bbc1f42 +36136 36762 1585440620 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj d506c00f4561493a +13326 13672 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj 39d64f2ad495303 +68825 69276 1585440652 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj e3fdf05e640926bc +2451 2797 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj a225eb6ce43fb9bd +1161 1594 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 72bc9b6aabff2665 +7116 7834 1585440591 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj 23bbec983db7100 +67116 67471 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj b434a88a7533255c +66094 66525 1585440649 esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj e84828e028f3ee14 +22510 22798 1585440606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 7263fc09734a5790 +3312 3473 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_aes_xts.c.obj 3e23693094c1ba56 +64778 65335 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj 62ce4dea49f59b2f +2475 2688 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj f3ae3314e51a3fd1 +68654 69004 1585440652 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj e3878f8866a24fb3 +57313 58518 1585440641 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj 48dddb2d50ae04db +6121 6354 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj 2c7ecf53a8cb9c73 +28649 29038 1585440612 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj 4265fd63be1e61ae +28671 28956 1585440612 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj da216bb7545b2a0c +6094 6323 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj c658d33faa41eccf +17601 18730 1585440602 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj d2e3cac4a9b21f66 +67894 68134 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj b702f54cb3b75592 +2221 2316 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj d2f85563099220d5 +13020 13391 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj 5458b43f470d9ee8 +32879 33768 1585440617 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj c4303ecfa4dda4d2 +3104 3240 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 9bb5a701c114bc34 +41877 42028 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c.obj 5a93f329f8cb606 +10448 10727 1585440594 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj c42878fcccf9203c +11433 11623 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj d1813da7dc5a8553 +44896 45131 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c.obj 3d6cd07f2c8cae5a +12979 13746 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj 7031bebde3d1fac7 +63608 64616 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj 7b7903e205a61a84 +6950 7040 1585440590 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj 9103b8c85948cf74 +13258 13524 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj b8bc260091d71903 +9363 9515 1585440592 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj af3c63cb6d556553 +11408 11622 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj adc85a1c6fc74dbd +43657 43795 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c.obj bc133a996e954d4b +11270 11523 1585440594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 70450d59c9999151 +24069 24285 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 2018746af2567636 +6788 7052 1585440590 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj cdc4814cd3fbbaea +46829 46953 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c.obj c90e66088267c58d +2797 3076 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj cc0534c7a8f27a69 +56566 57280 1585440640 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 6983e292af2f0d8 +14922 15118 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj ea78ddbf1d04a8cc +6946 7116 1585440590 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj 87b7ab78145e3f62 +8227 8492 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj abd9833b1209a408 +37703 37726 1585440621 esp-idf/esp_wifi/libesp_wifi.a effb86670d9970ec +37513 37537 1585440620 esp-idf/pthread/libpthread.a 3a7af1abd593645d +9297 9415 1585440592 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj e2012e8630b1c6d0 +624 739 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj b08e3bad677e5e6e +8115 8260 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj 3f4777eab67e5dae +12969 13350 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 767943c614345a1d +29038 29225 1585440612 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj dce2d4af8d66e9b1 +6 21 1584850565 project_elf_src.c d8a77256f6fb8dd1 +31561 31973 1585440615 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj b38d266c76cde2ae +24188 24441 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 9d62b9dbba5c2c28 +2331 2548 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj 4b4f7600c7d59898 +8595 9144 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj 33c1b6f3aeda1f19 +10488 10810 1585440594 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj dc32daafe861024c +67458 67697 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj 8df07527f8fb699d +43533 43649 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c.obj d2e461829ccdb792 +41258 41783 1585440625 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj aa668b63c113b113 +13902 14166 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj 41cfa15f86587e19 +68540 68825 1585440652 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj eacac3dd3e68109c +11622 11816 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj 8b43857304f0f4b3 +47829 48388 1585440631 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj aa578e42f9be6a86 +37208 37231 1585440620 esp-idf/tcp_transport/libtcp_transport.a ea2beb8be5ea9cac +11770 11957 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 39aaa31f66c5a298 +9279 9442 1585440592 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj ef893fed75657227 +8096 8227 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj 2c400e461f32d012 +9221 9619 1585440593 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj c63fc5dbac6ff491 +12865 13087 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj d8c6744c9cc4c780 +11514 11770 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj 162421fe10f1a595 +61831 62195 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj cd96992584d76a0f +17642 17779 1585440601 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj 851babb53a5a349f +9593 9694 1585440593 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj 614cb5e812cefd2 +37330 37355 1585440620 esp-idf/newlib/libnewlib.a 855580b12edfb31b +12526 12978 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 18530610988ddd11 +227 961 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj ab617c1a8d0a9e0b +60399 61010 1585440644 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj 9cd1619864a25d6d +9694 10070 1585440593 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 17c8822bb71b1086 +90038 90996 1585220921 esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj 214374bbb1ac680d +11017 11170 1585440594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj caedd5ff754abe13 +30596 31020 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj d7498b9b552fa6b5 +13392 13658 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj 1a0e09abb598049f +54222 54526 1585440637 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj 485ab61fb1169a7e +9700 10256 1585440593 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj 79507c8ef577e5e3 +33884 37216 1585440620 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj 7a444a39fb81f014 +1114 5085 1585412797 bakalarka.elf 8fe1dd3d033f6afa +37726 37757 1585440621 esp-idf/nvs_flash/libnvs_flash.a ae6808df23dc8a0b +5931 6131 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 7edf8fde86d34f5f +2548 3064 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 5a190d8071b957e6 +48773 49100 1585440632 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj 9abcec7cdf265542 +12670 13020 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj e308e3da6a0ed128 +28956 29565 1585440612 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj 8be06a60b2c208fa +42976 43172 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c.obj 7ab18cdc67ba4c11 +39039 39225 1585440622 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj deac31bc73c5ee1a +60548 60981 1585440644 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj 173767aa3ed5dd4 +53135 53527 1585440636 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj 5a7b0f2fbafa543a +42558 43775 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c.obj 8213809e996012c2 +67873 68144 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj 7ba51764ab8f6abb +43649 43833 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c.obj b38e7c4e97d57ff3 +14774 14921 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj aa6e32bbf60ae965 +68048 68313 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj 49ed7435d550c91a +4770 5183 1585440588 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj 6273c4cacb9adf07 +44345 44400 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S.obj 4998cd56d972a5e1 +29225 29646 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj 92611242234b4037 +45131 45264 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c.obj 82276ef24917336b +44400 44500 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c.obj f7139954579daa7d +45261 45321 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c.obj 5f7a67eca0029ebf +45242 45344 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c.obj c2a4ed00a0c52050 +62745 63279 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj e702caa116a25f6 +45454 45546 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c.obj 9068d1d8271ff4ec +66446 66688 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj fc0ef17776683fd6 +45630 45798 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c.obj ba9e2ad4c8b93e7e +54526 54958 1585440638 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj a36b3d96bc913085 +44578 44617 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S.obj bcb3f3a1518bc171 +41704 41818 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/crypto_auth.c.obj d610a5b60a6d18c +47621 47661 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/version.c.obj ca9ff3c9b71d3cbb +5562 5824 1585440589 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj db785e4a4d702179 +23566 23849 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj ab8bc35a79c5e78e +12841 13258 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 6f66ad87d21690a1 +3308 3451 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj c15c54b0d535a3d5 +42028 46402 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c.obj 63d6873a0abe7ce +62964 63608 1585440647 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj f6d409f00bf32bbf +46516 46696 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c.obj 64b8a5e4916c1c9e +46696 46829 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c.obj 3acec723fc020cf +41105 42008 1585440625 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj 2fd43b4877ff2e02 +5684 6121 1585440589 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b856a6e5a204876f +54800 54818 1585020668 CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj 344817c17c36955e +9914 10702 1585440594 esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj b14c4d888f13f00c +47180 47298 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium/verify.c.obj 3db082d1d3351207 +45253 45338 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/crypto_stream.c.obj 48a82dfa03923144 +49478 49627 1585440633 esp-idf/mdns/libmdns.a 9e64c996f85b3dcf +47072 47176 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c.obj f6efe8780baf8cef +46779 46877 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c.obj 14509304a6ba450 +55061 55318 1585440638 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj e7033fa879b68863 +47471 47633 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/core.c.obj 29afa019252098ea +55303 55733 1585440639 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 8608bc10135ef02 +5175 5553 1585440588 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 4129d729ab162a8b +45344 45629 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c.obj cd4577375855b3e6 +67129 67458 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj 3b82865c640fe6f1 +55284 56392 1585440639 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj 87a2d5e1fc5df551 +43172 43334 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c.obj 87d02fc656f60b00 +42454 42558 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c.obj 4ae804e958a93336 +58778 59468 1585440642 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj f8d791db34a2a592 +59457 60269 1585440643 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj 7eb1e861fbdfc41 +45906 46017 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c.obj 7b46d4740e920071 +59281 59406 1585440642 esp-idf/spiffs/libspiffs.a 3977dd0f919f2d3a +68426 68719 1585440652 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj dfd94afdef4526a6 +5546 5710 1585440589 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj 28531746f777191c +923 1029 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 1577e50976fb2d19 +22330 22776 1585440606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 1ba31e6710d4882d +58058 58713 1585440642 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 49a54dd4b4294f89 +53797 54222 1585440637 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj 2a02c7b2f62b14de +97 124 1585406143 esp-idf/files/libfiles.a dc77d04f5b6e0879 +44357 44431 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c.obj 31233304858cebc9 +45798 45905 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c.obj 9081f5b38ecc0233 +47014 47180 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c.obj 1f49f96f6c6f1503 +42077 42306 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c.obj 460c0e969ddafb39 +7563 7645 1585139900 bootloader-prefix/src/bootloader-stamp/bootloader-done 7bb58568bcbe1b88 +59767 59888 1585440643 esp-idf/wifi_provisioning/libwifi_provisioning.a e2c7ff7a52f6a2dd +44876 45352 1585440628 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj d8b13b07bec7c003 +10982 11192 1585440594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 72f8ecf726a7fae0 +9544 9667 1585440593 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj fce760844ebb4f93 +66882 67129 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj 5a9c2462a81ddeec +90288 90935 1585220921 esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj a28b135a45df7a95 +45546 47621 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c.obj e8c12c5c87407374 +90417 91129 1585220921 esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj b8f6030d8fc531ab +66459 66788 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj a993bce1a54eca11 +91129 91220 1585220921 esp-idf/cmd_system/libcmd_system.a a176a672918a9671 +59258 59428 1585440642 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj f13046f7c4db1bdc +49732 50087 1585440633 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj abf72aabc7b0ca24 +69345 69806 1585440653 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj 4dffa7daf1918bf6 +43434 45038 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c.obj 5b29d8202ae3cc49 +66175 66445 1585440649 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj 8015de74a21bead0 +9688 9913 1585440593 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj 29de2e665a306b37 +19021 19456 1585440602 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj c9b8cc3df3d94c07 +67916 68127 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj ae0cce16dafcdce2 +50115 50204 1584850615 prvtkey.pem.S e244cb87cb79c700 +32702 33059 1585440616 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj 12eed60425fd665b +3451 3670 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj a1752e16a1ea8bc4 +7052 8044 1585440591 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj 859a78cf48b35d2e +218 241 1585218959 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj df94f6771fef3170 +68395 68691 1585440652 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj 2a26f883b680cff7 +66526 66651 1585440650 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a 279a1c1b59b4b1af +44741 44841 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c.obj b1792f4ba00abcd8 +66817 67031 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj c338a0344c420e5d +33285 33703 1585440617 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj 5b1c9d7760ab8b1e +23905 24164 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 15524cfa6d5673e7 +12316 12455 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 17d78e7cdcd41501 +42161 42307 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c.obj 40b9eea93e760e51 +66789 66967 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj 5776d0d0a5e5e73c +56823 57074 1585440640 esp-idf/openssl/libopenssl.a dd8fd619cead68da +55975 56810 1585440640 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj a437ea867e2de563 +38400 38588 1585440622 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj 3d66a4f4ef12d80 +61010 61332 1585440644 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj 805dfb39de176f +67347 67545 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj cf8acb385bc747ee +44219 44303 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c.obj 5984fb743e29f0d7 +68373 68540 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj 3048628623aa1169 +66968 67252 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj 815339598b898403 +44034 44182 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c.obj 6ad5999025b3583b +2941 3695 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 73728c0b3c8f987f +5573 5683 1585440589 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj 25b11e69fe40069e +38010 38039 1585440621 esp-idf/spi_flash/libspi_flash.a bd64ee73ae26c95c +20630 21380 1585440604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj e1acfa369cc96352 +12405 12526 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj 56cdc2f4252454d1 +20568 21371 1585440604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 67bb18b594e109d4 28020 28153 1584850593 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj 7ad4dca1f2c2c11c -29012 29636 1585159738 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 67bb18b594e109d4 -16774 17107 1585159725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj 56cdc2f4252454d1 -44885 44914 1585159753 esp-idf/spi_flash/libspi_flash.a bd64ee73ae26c95c -6382 6557 1585159715 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj 25b11e69fe40069e -29090 29716 1585159738 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj e1acfa369cc96352 -29060 29361 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 79bdcd2ec31af5e7 -15786 16238 1585159724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 8f8f73c3d1f3b327 -29188 29432 1585159738 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj ef3cedb52e3f6786 -57823 58238 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj 242eb8122309f5e8 -28364 29102 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj e8806157210c4a95 -28599 28999 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 4396063447d8a1c5 -40124 40351 1585159748 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 9d0f2c9de6f746c -40155 40397 1585159748 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj c94da83c0e25435 -28767 29060 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 6f8e56bcc948d49 -54881 55104 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj 62475833591d91fc -40381 40624 1585159749 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj bb05141dc784637c -2695 2814 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 8e38cbac0de40d73 -28753 29012 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj c0e9c49c6f00cd8b -17748 18048 1585159726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj fc74de41ec555ad9 -55745 56209 1585159764 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj f08854b60ace5ab7 -28641 29090 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 556e9711b484ccfb -32498 32669 1584850598 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj 83ec4bfe95aaaa5b -20290 20571 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj 3b32ed2a1367983c -20641 21246 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj f82fb5127beb33d2 -45338 45454 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c.obj 8a22f7fbbb0ec809 -46678 46779 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c.obj d4a9bcf8f15d698a -28031 28328 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj cb4f1db05aaba428 -27734 28641 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj 7f83189e36467e49 -39169 39357 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj 4a00f00b17b062b0 -44125 44218 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c.obj 91ea913e04652c24 -27977 28279 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 9d3ab4dd77b7167a -54121 54299 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj 9399e0ebc4fab7c -38987 39072 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj 4380aa60d7ecb4af -3526 3782 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b1abbc269c8675b1 -27852 28031 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 1735022ecac1b951 -27273 27852 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj e380d062e201769f -18639 20025 1585159728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj bf63ad0d92a4c6eb -27580 27973 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 83649dec8a732855 -50239 50417 1585159759 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj b68f87ac68d3c486 -49504 49899 1585159758 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj 3b8e3b92c3604e29 -11468 11808 1585159720 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj d48b4eb6ff82ff5f -27539 27980 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj d0b7927b8ab0104e -52156 52843 1585159761 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj bd8f20d1f0c5bbd2 -31713 32011 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 6db536946d4d31ad -27277 27538 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 13d808216093d732 -37819 38036 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj dd43e713ad2ee254 -27289 27734 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj cf7af956263e8b8f -39062 39159 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj c126678295a0b181 -26932 27379 1585159735 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj abfe8d8e1fb3afdc -24476 26917 1585159735 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj 53e9e30b40eb25f9 -6557 7086 1585159715 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj 29f2bb102aea3cb8 -26931 27273 1585159735 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj eae37e074555e393 -44274 44294 1585159752 esp-idf/vfs/libvfs.a 49e38bc49dfb99ad -8393 8574 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj a953452407fe38f3 -37718 38153 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj 3568da11267d93f -33219 33899 1585159742 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 2100604b1035a5c1 -52581 53096 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj e5aa943c153efe1b -8172 8385 1585159716 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj 2a8cc13113b45b58 -37141 37284 1585159745 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 40dfa11f1feb5b20 -8025 8264 1585159716 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj 9308a861601af43 -54130 54334 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj 4221985ebda65584 -54695 54871 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj 9b6fa4eed0185c34 -7403 7458 1584850573 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj 9959c18c9d0a3dca -7704 7924 1585159716 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/reset_reason.c.obj cfa4be0ea405f93 -41702 41810 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c.obj c9e29f68465231a6 -53530 53760 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj f8ff51c7f7fea4ca -7574 7799 1585159716 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_api.c.obj fa46fd61e114a69b -44903 45253 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c.obj cf3b744463f3fe23 -45240 45579 1585159754 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj 26b0137932b9755b -5146 5376 1585159713 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj 7ec20aae60cf6c97 -7799 7946 1585159716 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj 15906865c02c9425 -7544 7607 1585159716 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler_asm.S.obj d93b790f9d70e853 -6495 6686 1585159715 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj 653074f99e9cb08a -7253 7742 1585159716 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b663a3b2bccf3e9e -52915 53857 1585159762 esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj 9c0fd2ba8dc408df -36002 37160 1585159745 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj 4d8fa278be168fce -54709 54880 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj 10aeed8a47592778 -7607 7704 1585159716 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/dport_panic_highint_hdl.S.obj 25acc6344a70bca6 -7332 7544 1585159716 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj ff954394940372b0 -29952 30963 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 8c17e5b31dd96f0f -20291 20650 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj 8b4b169a09eacd5d -11714 12262 1585159720 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj d5e0546299ee5964 -28835 28967 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_option.c.obj e4a584e2ad0106e -21102 21899 1585159730 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 17da43368a4b666d -9337 9702 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj a16547eb07882d6e -32788 33043 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj 44916de880e45d3b -19126 20456 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 34caa37341fd31b4 -12083 12839 1585159721 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 35a01ab84f5bb4e8 -13297 13750 1585159722 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj aaa94d714e9ad896 -28279 28599 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 33b8e2ab6ab9d74b -61012 61346 1585159769 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj 6200e76ca3d0f74d -41721 42197 1585159750 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj 37aec9588b0b98b4 -45264 47290 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c.obj 73d594fc8a5ddad9 -12200 13281 1585159721 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b57b4fec865631e7 -16239 16973 1585159725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj 390c57d91cfb67e7 -61051 61315 1585159769 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj cc01b08d89ca2a70 -15195 15470 1585159724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj e5b55f2c6b5f39f7 -59377 60027 1585159768 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj 21a99b9fd5d18414 -39157 39276 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj ddb73ac753f08268 -52424 52668 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj 5ec16a33bce32bed -28353 28455 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_callbacks.c.obj eda38f08d19c32d6 -12682 13297 1585159721 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj c5632da65dc0ffe5 -38825 39060 1585159747 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b5acabc7084e2982 -14752 16998 1585159725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj 7c390c15e23d2704 -4769 4817 1584850570 bootloader-prefix/src/bootloader-stamp/bootloader-download 90d34d09b0f91f1a -14328 14737 1585159723 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj d5202f55b0839f32 -59155 59338 1585159767 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj 621a72bd8ed4958d -26831 27272 1585159735 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj f3f8c5ce569f7ada -40861 41093 1585159749 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj c8e0fb28b5b5e23c -60820 61052 1585159769 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 25380c247de24162 -34603 35380 1585159743 esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj 501f4c45117fe01a -30629 30841 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj c0e84898ade4229b -861 964 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj e1b38e837b97f7e3 -49793 54620 1585159763 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj e7a9b92aae399379 -44790 44812 1585159753 esp-idf/soc/soc/esp32/libsoc_esp32.a 5535786e5680a71 -15904 16297 1585159724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 2d4c80b7856db686 -49021 49085 1585159757 esp-idf/esp_gdbstub/libesp_gdbstub.a 17fa000c0dae215f -30861 31122 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 47eddb4edc32e9d3 -55083 55264 1584850621 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj 194beb6613d91a44 -15941 16589 1585159725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj 9b36f8fe69e7761b -17107 17565 1585159726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj 31260c3aecd004e8 -28328 28753 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 336dca2aed7bfdb2 -10438 10499 1584850576 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj 74c884cf986dd9f8 -16998 17286 1585159725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj a3af104b90b5231a -53915 54330 1585159762 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj ed354ad7932f627d -5883 6495 1585159715 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 80ff88084e52f45d -4804 5298 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj fdf13bd768d11fc7 -18048 18380 1585159726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj 486c094c1982ad19 -67431 67832 1585159776 .bin_timestamp 715a021d8f39a8be -54103 54278 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj c5acc69915420300 -38471 38824 1585159747 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 72d4123064a034f4 -3356 3644 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj a8769364554740cd -45983 46251 1585159754 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj c6b9f758af428cc7 -3231 3328 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj 1af46424c31458ff -60344 60673 1585159769 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj d620c2d3b69fad15 -4817 4885 1584850570 bootloader-prefix/src/bootloader-stamp/bootloader-update ffe37cc0b8b002cd -56513 56591 1585159765 esp-idf/fatfs/libfatfs.a d1d56c91828b233 -34932 35384 1584850601 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj 8912a96450596f9e -20508 21607 1585159730 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj 29743f81b591c7a4 -19142 19507 1585159728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 483bfb4eab03e6aa -39357 40679 1585159749 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 56f0a8ed35add288 -61069 61137 1585159769 esp-idf/unity/libunity.a ffbd91855b17061e -20319 20640 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj 4694aa91c967c051 -45321 47615 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c.obj 22ad1dd29ee5b161 -47006 47403 1585159755 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj 4418a95749233797 -7685 7957 1585159716 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 63599ae4b5f7bc6e -20457 21102 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj 105c8465fffeeaf -21685 22124 1585159730 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj d12d67e318af0586 -5834 6010 1585159714 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 77339bf53aea2f30 -45071 45358 1585159753 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj d8bf29ee2734cde2 -6384 19292 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -53975 54478 1585159763 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj ceb1125b87df0301 -6384 19292 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +51574 52123 1585440635 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj 7cdc4c1411546151 +21520 21958 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 6c13954ae5c00eed +11957 12190 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj 6c8c1cc49e3ae20e +20977 21650 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj c5d4549662610d5 +38228 38411 1585440621 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/esp32/trax_init.c.obj 1e6b1b8dc6601e4e +24840 25664 1585440609 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 902688992b39eeb +57280 59280 1585440642 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj c3fe7e01dac0e94f 42297 42353 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c.obj 59bed9d1b28df414 -7563 7645 1585139900 CMakeFiles/bootloader-complete 7bb58568bcbe1b88 -59466 59713 1585159768 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj 48c722fc51154ad9 -52107 52325 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj 5241cb512b2b8a43 -52030 52456 1585159761 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj c1dc9b74cd464a15 -9599 10044 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj 37f4ae2d1202f68c -9051 9190 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj c398ec746880507b -46865 47394 1585159755 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj 7a86b5521f36268d -53590 53721 1585159762 esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a c887be8cb213e66c -51965 52228 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj 45fcd4317fbe5016 -57055 57394 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj f100a268baaadd38 -44294 44322 1585159752 esp-idf/freertos/libfreertos.a 8adaa22c425c727c -38521 38595 1584850604 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_impl.c.obj 7bc678ac6879647 +66651 67057 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj 81d9c5fd3de599b +55345 55582 1585440639 esp-idf/libsodium/liblibsodium.a bb822b24df56465d +22236 22508 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj b3515ff52023ed83 38588 38643 1584850604 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_ns.c.obj f402f9faa8d48c0f -54663 54732 1585159763 esp-idf/esp_local_ctrl/libesp_local_ctrl.a 2b6d82bc97e55a06 -56340 56644 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj 4942da8c06074142 -3385 3579 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 40c31b460fdab003 -53192 53560 1585159762 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj f22a6e962f71fda1 -55000 55099 1585159763 esp-idf/wear_levelling/libwear_levelling.a 8ffc856a1c7bda8e -50932 51103 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj 431888465d6e684b -21114 21803 1585159730 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 6a78f22896fdf5eb -23515 26133 1585159734 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj 5f928f73311093f0 -32208 32422 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 79c68902a7fcd46b -5281 5540 1585159714 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj e96fb5532089891d -55066 55479 1585159764 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj 51da619fdf271782 -51389 51608 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj 2b61b3b9ebf35d51 -53721 54058 1585159762 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj a4fcdafe6a6f3a04 -54990 55186 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj 5c3bcde45ecd83b1 -54764 56512 1585159765 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 89e8f39ba6501e65 -55943 56350 1585159764 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj 345c4e46c30e44d4 -46597 46678 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S.obj c8990e64169c23fa -3318 3526 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 766917eabdd8a007 -37111 37385 1585159745 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj dab6091bc01cb6c -37284 37459 1585159746 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj db2bda8711352316 -56043 56340 1585159764 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj b1dd74aa655abbdd -56938 57244 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj 664b5ae299a869c5 -59837 60084 1585159768 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 9c918e488f0b4333 -19140 20290 1585159728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj 98e16976c8a48268 -56591 57055 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj 7cdc4c1411546151 -57031 57261 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj 4d406265a90cfda2 -52006 52552 1585159761 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj ca03177b1a43ea13 -6010 6382 1585159714 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj 3ef55db686511db4 -39098 39207 1584850604 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj 2c4b25439b2499af -51867 52433 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj 9676e9ec10cdb98c -57622 58167 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj deb6d4f7f478a26a -55604 55902 1584850621 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj 9591a18ed1689825 -60161 61051 1585159769 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj 5798fb22062a0645 -57918 58196 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj a078218bf69573e0 -58081 58289 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj e0cbeaf10e38d5de -44974 44998 1585159753 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 48870cf31bc57c21 -41454 41607 1584850607 esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src/jsmn.c.obj 5c3cb88e86dc5c58 -41515 41965 1584850607 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj d1a596debed92dc3 -41489 42251 1584850608 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj 295231276cbb537c -51654 52211 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj 9df91c6251bd6c3f -42251 42273 1584850608 esp-idf/json/libjson.a 109e3c6dd4bbe827 -4438 5281 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj b2360ad368b2f2bc -15594 15941 1585159724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj f323c15826d0b280 -43996 44124 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c.obj 7e6360ef856a894c -42114 42438 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c.obj f06571301874cab0 -42353 42454 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c.obj 962b7a3a91404d3e -58238 58650 1585159767 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj 2a7064896d44c91f -1478 1611 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 37adafe73e9eaf1b -49536 50266 1585159758 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj f0db0f1663453c8c -42538 42650 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c.obj 5ce74b08d72a8115 -59338 59530 1585159768 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj fa80b5ea9032e9aa -627 753 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b024331307d43ac1 -31 480 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj e51851124e48b862 -33400 34097 1585159742 esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj 75c511ee5b0bab3d -42629 42750 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c.obj 1cf94ac01866c10 -58918 60221 1585159768 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 34e4f57d4e995885 -50478 50635 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj f5d0642b4c967acb -19456 19740 1585159728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj ea8f61a53d391fa8 -51212 51331 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj 40aca1851cf4359f -9689 10000 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj c1455a4579e8a5b1 -42307 42378 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c.obj 579aba89f43c3c07 -50637 50780 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj 74fe54c3e8d31812 -9474 9612 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj 411f227e6e277e2f -57394 57918 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj 27568f8bf5b15b0b -60593 60820 1585159769 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj 9d5ba6d3fd5170f0 -41966 42077 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c.obj 2f3a10f6e6a780aa -46953 47072 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c.obj 673fb2983e7250e5 -41810 41953 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c.obj d0d38326e72e3dbb -59713 60344 1585159768 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj 1a79450b2d108418 -43333 43533 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c.obj d23f866b0915ae88 -58861 59082 1585159767 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj 84c5f947aa7c40ea -50738 50932 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj bc5f4e70d59b808 -57180 57779 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj 853af9cddea3ef9f -42274 42369 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c.obj b8f1bc1dd63f6618 -50639 50738 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj f25773186388bfe6 -49916 50225 1584850615 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj 517e5274e0e00347 -51024 51114 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj e37d4e049866490c -4104 4872 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha1.c.obj bc883588bc31a39c -53769 53934 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj 5840176855bda9cc -8979 9228 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj c3eb6bd6d9d84da3 -23929 26734 1585159735 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 80faa7a46b0120fc -22959 24845 1585159733 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 5f52ae7f8dab3dca -35845 36300 1585159744 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj e96fc583988b5ade -7518 7685 1585159716 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj c194966de020c997 -7743 7968 1585159716 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/cpu_util.c.obj ce8f5360513222d6 -62049 62071 1585159770 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -51014 51200 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj a18189a95e55cb0b -51112 51181 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj daf6b808b6711e07 -51073 51212 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj b73d5cdb00d0ac48 -19784 20290 1585159728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj 1d16cd65a1fd42dc -42063 42113 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c.obj 57f26505eb0529d5 -53230 54554 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj 81feb35deee73390 -51382 51574 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj e9884836fcf72ae5 -663 927 1585139893 x509_crt_bundle.S 54a15aa8cf02422d -14413 14751 1585159723 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj a1edad39e8cdc091 -54732 55066 1585159763 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 70935edbf864953a -53601 53784 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj 920a1d2c58ec1bf -13281 13963 1585159722 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj f3495d9c873cc11c -52433 52597 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj 40e96e60d96be003 -54181 54373 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj 45b045086b90414f -49915 50123 1584850615 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj b4f7d887159e5ef9 -20025 20319 1585159728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj e25568a543fd01fe -53060 53192 1585159761 esp-idf/sdmmc/libsdmmc.a 606b34034bb47675 -62075 62091 1585159770 esp-idf/main/libmain.a e50809bc3b1cf5a6 -42438 42499 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/crypto_hash.c.obj cd9fc10e8a9a6d73 -365 3596 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-configure 8fb88d3ea09d66cb -55619 55907 1584850621 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj 154cf371738a587e -53925 54121 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj e2e3daafae51bafd -42015 42161 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c.obj 3a1fe3fc1fcf3a73 -42306 47772 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c.obj 4580d2a981ab78be -51574 51936 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj 1b06d7cf0b63391d -44919 45100 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/crypto_sign.c.obj 610709ee559af31 -52737 53340 1584850619 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj d2f18874e950fb0f -51617 51867 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj d62586fae0134158 -52598 52737 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj 444f6b24be00d58e -52664 52958 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj 64c656848e32f2ef -51112 51188 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj 9921a0cc980072f2 -54476 54619 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj 1778c0080866b573 -7220 7574 1585159716 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj de5d38407180587b -27745 27976 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj 577b62906c8a3e7d -29452 29778 1585159738 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj b1c2f31a5ad2945e -54534 54695 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj 128d16e6bb3a92af -53340 53543 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj 5132f895751db759 -44119 44140 1585159752 esp-idf/esp_http_client/libesp_http_client.a 4ffd10c652f4da0e -50907 51111 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj b885bb8fdeb0c0df -51264 51389 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj 12488dc597c0b39a -16590 17017 1585159725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj 90c9a3efb58be2f -53443 53572 1584850619 esp-idf/lvgl/liblvgl.a 9d5d10cf8ff1386b -20571 20804 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj db8eae0be7befb5e -43833 44034 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c.obj 8cb9f1057ced10cf -53572 53674 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj 26524ecbbfbb32fd -59182 59377 1585159767 esp-idf/libsodium/liblibsodium.a bb822b24df56465d -58843 59182 1585159767 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj cd618e36b77f8ca2 -61897 62075 1585159770 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj d96bfafb6f45dd8 -44491 44547 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S.obj f8927521fc2f15e6 -9191 9336 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj 783d0c79d1ae9c1e -57796 58139 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj 50f45e2322e5c55f -52875 53443 1584850619 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj 90a79d456443ee39 -56351 56810 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj 6fd15834bc0e5dd7 -50327 50749 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj 82d79a7ea30f1436 -52909 53251 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj 2d1b41136a956fc4 -55479 56043 1585159764 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj 711bc61f6f0b486c -54941 55083 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj e5171dfd3f1980e -41954 42063 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_seal.c.obj 1dc9dca9c87d1b0 -59008 59155 1585159767 esp-idf/freemodbus/libfreemodbus.a ff1b2ecc7df2affc -53398 53601 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj 425a37fa60cdae14 -59103 59474 1585159768 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj dcb63d57734e9c63 +22508 23158 1585440606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj b29b9f01bc6218dd +19802 20213 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 33b8e2ab6ab9d74b +58519 59116 1585440642 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj 6200e76ca3d0f74d +34054 34939 1585440618 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj 37aec9588b0b98b4 +45264 47290 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c.obj 73d594fc8a5ddad9 +23137 23814 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj 23480ceb1f263a3e +44257 47211 1585440630 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj d119b991363a8fd +22776 23417 1585440606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 771b807e11f8340d +48521 48972 1585440632 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj f22a6e962f71fda1 +65956 66199 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj bd8240b146236597 +8446 8595 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/soc_hal.c.obj 3888af6445c7d37f +23735 23905 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj 5889ae3ad146784e +57913 58574 1585440641 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj 9d5ba6d3fd5170f0 +29877 30095 1585440613 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err.c.obj 394ce3fec6ec56ce +46897 47583 1585440631 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 9a086305f031f58b +22522 23398 1585440606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj 20cf6a79fb7fb9dc +23763 24021 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 9f8eea5345f6b0e4 +47176 47278 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c.obj d05183b163960231 +24961 25689 1585440609 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj c00408cfda051306 +22585 24124 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 47b7d5913f3c64a6 +68313 68503 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj a63cbd3c50116b8f +49196 49309 1585440632 esp-idf/esp_websocket_client/libesp_websocket_client.a 518e2577c9404339 +24023 24188 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 811b681e37787174 +26997 27256 1585440610 esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj 18ae6a8ffc476f28 +54722 55011 1585440638 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj c24f2597976d6ac3 +24273 24456 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj 2272bece4ce53f85 +39225 39392 1585440622 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj 3bf0177c6f65799f +53527 53956 1585440637 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj 29b8cb18b001ef6d 43795 44056 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c.obj 994cd8711e24faf0 -42995 43333 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c.obj 43911a7604d38830 -44303 44532 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c.obj e829c497b8a5a465 -54880 55023 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj 8bad86298515e5c8 -51181 51264 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj ad02fea397076ad3 -50559 50907 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj 1ef124943c819ff6 -44569 44616 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S.obj 408f58467ebd6917 -45046 45065 1585159753 esp-idf/mbedtls/mbedtls/library/libmbedx509.a cec41cc9a3a87882 -24734 26931 1585159735 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 47bafa6cc48a53c7 -51200 51328 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj 33b2b3325e07a1c5 +45321 47615 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c.obj 22ad1dd29ee5b161 +3076 3206 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj d987f94ba57bec33 +24456 24717 1585440608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj 332d026e324c4930 +24717 24934 1585440608 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 8475b11c18a5b94d +24864 25458 1585440608 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 8f7c82b032070b98 +25458 25988 1585440609 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj 9a19feffde4168a6 +33738 33961 1585440617 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj 9e509cf86c24478c +90996 91027 1585220921 esp-idf/ca/libca.a 3b311f6ce51ffc82 +27170 27397 1585440610 esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj 7534d43cb27a166e +25664 26414 1585440609 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj d338213d481b02f0 +49503 49887 1585440633 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj f63896555ae6e124 +24770 25044 1585440608 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 33dfd192546c2f97 +25689 27058 1585440610 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj b6998a1f1d5b1c9e +65335 65897 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj 24dac9794ec60d05 +27015 27109 1585440610 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj 3eb587fd8ed0a9be +41966 42077 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c.obj 2f3a10f6e6a780aa +50183 50473 1585440633 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj 33c5f29f99ac3c8e +38225 38389 1585440621 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj 2f309274117d0c08 +31200 32499 1585440615 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj 8e48beebea188ef3 +69276 69463 1585440652 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj ca8dd4c9fce704a7 +27109 27475 1585440610 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj 64f5eff0b7e388d9 +66067 66229 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj 4999bcc80548b092 +32274 32339 1584850598 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 204dc438939df3bf +27058 27788 1585440611 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj bf6f2b3cb1cc4ea7 +24405 24604 1585440608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 2d493aba99a77003 +16471 18354 1585440601 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 11759b1956623d8c +59406 60334 1585440643 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj 64350143dde4823a +61648 62295 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj 2d231e84dcfc0bdb +64684 65158 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj 35324c696e0e3219 +37825 37846 1585440621 esp-idf/esp_event/libesp_event.a 3706ea83ed15eb7f +24164 24378 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj 7123e9fd03b086a6 +27397 27995 1585440611 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj 17919c541a9d0ebc +38503 38767 1585440622 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj b076966bdf16c707 +27995 28610 1585440612 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj 4f6c98e632707eb4 +35959 36739 1585440620 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 85b0ac563ecd13e8 +28011 28572 1585440611 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj cc9dbe77cd37dd60 +28003 28880 1585440612 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj 7d1742177fae65bb +28379 28671 1585440612 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 97362a1088b6f67c +69004 69605 1585440653 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj f561a68344322902 +4224 4373 1585440587 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj a991b5526a6aceac +25903 25986 1584850591 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj 973b5e90f174fb2 +29502 29836 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj ab97a840cdbd0483 +28844 29088 1585440612 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 707f879fed825658 +20887 21703 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj d802474ade654a1a +29719 29996 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj 96ffc18083f4d5a0 +10727 11140 1585440594 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj db0fdbd7b646c762 +22671 23171 1585440606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj c25157fc13735247 +29647 30196 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj 4109da51c340ffea +66229 66501 1585440649 esp-idf/lvgl/liblvgl.a 9d5d10cf8ff1386b +38726 39039 1585440622 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj b00e0a354136e15b +1030 1161 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj ea0eaf5f1d63e3fe +66501 66774 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj ab38eba3bcb313e3 +30251 30541 1585440613 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj 51e1726fa176beff +205 1114 1585412793 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +30261 30596 1585440614 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj a0a789c8d266405d +30229 30584 1585440614 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj f721e23b6f442720 +34939 35161 1585440618 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj e700c98cc4b5b57c +60723 61181 1585440644 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj 4fec8f3384f03d39 +44829 44919 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c.obj 194e3c0d6e1bbf54 +30429 30766 1585440614 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 1e9aa4a44f4eb9c5 +20696 21069 1585440604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj e63c116cb56fba4a +51889 52177 1585440635 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj 7ba3837661953c26 +21371 21959 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 8a5d43871eac97f4 +18413 19022 1585440602 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj 89a4265024c628cf +30870 30974 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj b62a8c361cf41e20 +9515 9593 1585440593 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj d338324988564c61 +31579 31921 1585440615 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj 8a80f314e6cc154a +30465 30870 1585440614 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj bfa1eb8b238e25b5 +41205 41257 1584850607 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdiag.c.obj 33f25af26a5af17 +44782 44908 1585440628 esp-idf/esp_https_server/libesp_https_server.a ebdd02b3e26beb0f +30584 30930 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj de26f7a71e6bd1fd +59650 60972 1585440644 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj b391a8e22eb28ba6 +30988 31313 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj 9bda50b0ef210b77 +226 298 1585218959 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj e09d2b6079e63359 +26414 28011 1585440611 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj e99bf8196316f125 +645 1109 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj 812cb8e07fef19c8 +14025 14306 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj a39fe3c82e29d4d1 +37288 37308 1585440620 esp-idf/app_trace/libapp_trace.a b631249a9244a40a +40794 41258 1585440624 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj d216d26246db22f1 +65887 66094 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj 1f13918d8d5b6a6 +38961 39621 1585440623 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj f09de5fa975c8dfe +56587 57313 1585440640 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 9c918e488f0b4333 +3135 3223 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 6a9d8b5f4ba6cc62 +39249 39469 1585440622 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj 6f01aa75e1d2e488 +56416 56565 1585440639 esp-idf/mqtt/libmqtt.a 4b234aa7654b545c +41607 41702 1584850607 esp-idf/jsmn/libjsmn.a e805679b5a44a9d1 +9442 9544 1585440592 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj d5e6bc758a6e69bf +23159 23566 1585440606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 85ae330c0ee32c12 +38224 38356 1585440621 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj 4ff4468879b463b +39621 40087 1585440623 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj f97d3a67764aada5 +39393 40062 1585440623 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj df393e94294e1129 +19995 20296 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj cb4f1db05aaba428 +8993 9381 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj 37f4ae2d1202f68c +8492 8712 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj c398ec746880507b +41324 42244 1585440625 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj 7a86b5521f36268d +61171 61648 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj 464fba50dda2a9be +62769 62936 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj fa738371fa3db703 +41272 41539 1585440624 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj ce351ace95fec134 +59468 60399 1585440643 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj 53390fade7731988 +35871 36189 1585440619 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj fa774017de65ef7b +14637 14838 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj db8eae0be7befb5e +43833 44034 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c.obj 8cb9f1057ced10cf +55901 55932 1584850621 esp-idf/lvgl_tft/liblvgl_tft.a 54e6a07d61896206 +65897 66067 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj 196f2e3b2e6cf613 +41489 42251 1584850608 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj 295231276cbb537c +63279 64684 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj 3806f41e1271b098 +41795 42369 1585440625 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj d67c5099e4246b75 +45352 45743 1585440629 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj b154c0a48629be5d +32434 32801 1585440616 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj e5ba6daee3fe69aa +38697 38961 1585440622 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj 91d393ea06dd3512 +66551 66887 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj 84578a5e50de7182 44785 44896 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c.obj e45dee62ade69caf -54189 54361 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj c461dce48e115432 -17565 18406 1585159727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj 49dd6c5d51e4598f -55552 55879 1584850621 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj 886804cd62db6029 -53943 54103 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj 605f81c0d1494620 -51188 51335 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj b56e969386bf2e52 -44547 44607 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S.obj 4729322e9f151a37 -50251 50337 1584850616 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj 2cb158d244b310d -955 1127 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj af272ef8ae4dfbee -19740 20017 1585159728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj 96507abbf32a17a7 -41411 41541 1585159750 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj 44cb918d96c29c1 -53566 53769 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj b6584f3e1107990 -44500 44569 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S.obj ec0bfd91b9b641a9 -7957 8411 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj d6712532d0d457a9 -45100 45242 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c.obj 36a6c5ec59b3ea26 -54278 54458 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj 8727d61e516aba61 -60673 61624 1585159770 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj d0bd079cd392e22d -55880 56065 1584850621 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj 9a5a0bad4fd67966 -55023 55146 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj b9591c799a14ea2a -4254 4796 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha512.c.obj 6c0a75daf7ea7e35 -41895 41954 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box.c.obj c94720fe3897626b -41953 42045 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_easy.c.obj 40097f7a5d3921c8 -50635 50690 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj c7a5847535ae009f -55461 55552 1584850621 esp-idf/lv_examples/liblv_examples.a 82f3a76acecb0edf -20017 20508 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj f653b907ddb5efa6 -58650 58842 1585159767 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj f3562a37dfc2c3f9 -53096 53282 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj fece874495764fd5 -1 4983 1585159708 build.ninja 1ff6234f96ac208 -58196 59008 1585159767 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj 9bb297ba606ec3f4 -9076 9584 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj 52c6f44b2db9fe4c +32648 32879 1585440616 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj d74a4c9c79b4ac58 +66112 66379 1585440649 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj 5e07921c9aacaf19 +44828 45273 1585440628 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj b5fe994343abd2e +28880 29116 1585440612 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj d68a706dce5c1214 +47211 47362 1585440630 esp-idf/protobuf-c/libprotobuf-c.a f493e1ef2b08a025 +44858 45008 1585440628 esp-idf/coap/libcoap.a 44ce67ee174d4c41 +60334 60723 1585440644 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj f86701e34721e2d1 +30930 31140 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj 5a63ea3680b3ee6a +62347 62498 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj e9701059385fc89d +37597 37621 1585440621 esp-idf/heap/libheap.a 651625a391e6c741 +28461 28844 1585440612 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 8b2f4f9940484ddb +68294 68654 1585440652 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj 671d993d0e2ce6ca +67818 68048 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj 9b36489dffdaf198 +66688 66881 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj c83056a0964ae9db +30096 30250 1585440613 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj f4d4ff991b2b8da5 +3401 3765 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/bignum.c.obj 4a609166be5cd2eb +40912 41324 1585440624 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj 20c789316bcfbc08 +6370 6561 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj ff954394940372b0 +15426 16153 1585440599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj 74a44b3e0940c2 +60973 62030 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj c3f2f9f56d227297 +27475 28461 1585440611 esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj 39acc43e17bc399 +37494 37513 1585440620 esp-idf/espcoredump/libespcoredump.a 61e4a4fb412fae8c +39383 39908 1585440623 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj c3669caed55c3d13 +27256 28003 1585440611 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj 40d2859175d530cf +19721 20004 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj ecfb975dc192ca61 +43948 44186 1585440627 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj cf8d693130622701 +727 1016 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 30cdd68daa46c801 +37158 37182 1585440620 esp-idf/esp_http_server/libesp_http_server.a 8ebd1da8c170e991 +54009 54467 1585440637 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj aae3a4a20ed5ede5 +36189 36772 1585440620 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj ff455323944b947b +65515 65700 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj 5689d18bd85eab40 +24441 24769 1585440608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj fbd1f7eedb3a05c4 +42008 44017 1585440627 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj 7f9e73c1ed300700 +42629 42750 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c.obj 1cf94ac01866c10 +54468 56416 1585440639 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 34e4f57d4e995885 +35161 35654 1585440619 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj 9a6f02a1bfb15382 +21960 22243 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj e314b9a35f4d0037 +24476 24863 1585440608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj dd0b65e4885c015 +38234 38494 1585440621 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj f65903b8c9c1a18d +22238 22671 1585440606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj bef09bc64a1b42f6 +8083 8249 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj e2d908a1280d2476 +43243 43434 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c.obj 149bfa7fa46a8e1a +33703 33995 1585440617 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj 24f0d34456b74a65 +42499 43243 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c.obj e7d20bcd231509c6 +35733 36833 1585440620 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj ade113e84032744e +41818 41895 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c.obj 9d1c97c5a3e55855 +20213 20531 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 556e9711b484ccfb +38356 38503 1585440621 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj b73ef31ebdd9048c +42792 42995 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c.obj 3b3b5027cdc73cf0 +62692 62768 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj ffd5e1c420bc4a9 +31963 32367 1585440615 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj 1395c73602d0312 +31313 31561 1585440614 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj e920ca8ee03a2b44 +29836 30228 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj 820ad4d92fc9ebdc +46244 46883 1585440630 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj ab8a934c142ad7ae +69231 69689 1585440653 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj 5c0603839bfc964a +21650 21960 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 8ce37f621eb9386e +4710 5033 1585440588 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj de350ce3c8976080 +29733 30465 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj 3c51dfa0d6e67fe6 +13524 14420 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 34caa37341fd31b4 +44027 44460 1585440627 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj 7d8dff5abf2c7103 +3223 3312 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj d9ff4450de980d72 +24877 25859 1585440609 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj a08c6a8eedb203f2 +2985 3216 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj a8769364554740cd +40062 40790 1585440624 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj c6b9f758af428cc7 +32274 32322 1584850598 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa_asm.S.obj 7121634884c7fe91 +43643 44027 1585440627 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj a4bb384907bfc443 +36739 37029 1585440620 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj 49d3279ab0e2e2d9 +35476 35959 1585440619 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 49de941a8fdd7369 +11170 11513 1585440594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 579b1110a728b0fe +32367 32603 1585440616 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj 41f4f556f1909f8f +44596 44828 1585440628 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 5870011e5c57795a +9668 10095 1585440593 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 979109410e04f4b0 +39098 39207 1584850604 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj 2c4b25439b2499af +63659 64422 1585440647 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj 43a2c1044119da36 +15233 15507 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj a8aae163c70d0df0 +37308 37330 1585440620 esp-idf/cxx/libcxx.a a50eeb7ca8b482fd +42244 43643 1585440627 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj a8b921496ea192fb +42370 42860 1585440626 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj fc6356ccb6a8853f +52177 52393 1585440635 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj 71f5b2b3c27cb015 +64422 64778 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj 948d883bc3c3a1a3 +32830 33108 1585440616 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj c8e0fb28b5b5e23c +58281 58778 1585440642 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 25380c247de24162 +38091 38113 1585440621 esp-idf/efuse/libefuse.a 8b73fc3e19818359 +12395 12670 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 54d871bc662d8b93 +55983 56364 1585440639 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj c485d1f53862c4ab +24604 24961 1585440608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj cfef06aebc3e3b0f +65781 65956 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj ce10ce41930d41a0 +15267 16471 1585440599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj 5c2cde4546276322 +33490 33738 1585440617 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj 1ee6226dffa8f490 +25859 27014 1585440610 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj cdf30f7e92ca0d33 +16 185 1585412792 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 +8712 9017 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj 7a3c9d16b0460aa9 +34647 35476 1585440618 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj d684f1aaa3ef4fef +927 1058 1585139893 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj c866e14ccdd0ff8c +38225 38400 1585440621 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj 41e6898ed1bc5f1b +17598 17671 1584850583 bootloader-prefix/src/bootloader-stamp/bootloader-install bc83b3b8ebb07513 +39470 40163 1585440623 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj 31dd1bd388e97df7 +2425 2757 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj 8b7300551504b8af +38589 38726 1585440622 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj 8fa76961a41028e6 +46443 46858 1585440630 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 90e7afa905c062a +186 205 1585412792 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d +46858 47468 1585440630 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 4a3f799b74144365 +37251 37288 1585440620 esp-idf/nghttp/libnghttp.a c621045d4dc2c2e9 +29096 29338 1585440612 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj f3b09dafc2279a9 +38608 39249 1585440622 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj 93a1970f2c273778 +23417 23735 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj f749bcc165837691 +9415 9557 1585440592 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj 7d8103ff645be070 +43937 44072 1585440627 esp-idf/esp_adc_cal/libesp_adc_cal.a 321a66f17fd37eef +61409 61831 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj fd61566aea4bf3c0 +28793 28918 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_npn.c.obj abf7e20060a87aa4 +44607 44741 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c.obj 8f153af0cd68ee63 +9619 9734 1585440593 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj b68d1ec4d8eb57f5 +43849 43948 1585440627 esp-idf/console/libconsole.a 2633ce91f5d7cfbc +40163 40462 1585440623 esp-idf/cbor/libcbor.a a95ad5cc568fa046 +63131 63865 1585440647 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj 1740e166fcc9c522 +44919 45100 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/crypto_sign.c.obj 610709ee559af31 +28418 28546 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_debug.c.obj 6566611933ade9f4 +28582 28793 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_map.c.obj 1626ad8f007c72a +46877 47014 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c.obj 3eeb2c780a9a8d95 +34918 36136 1584850601 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 5c1c38aee4b4f775 +44017 44256 1585440627 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 6dc2aa1249423b76 +62498 62689 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj d221234498a806f0 +37424 37448 1585440620 esp-idf/esp_common/libesp_common.a adf28ed1f2e8ebd2 +29566 29877 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj 6591e07bb725b88f +1016 1431 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 9b6b7006c3f11791 +38544 38608 1585440622 esp-idf/xtensa/libxtensa.a 39c97242db240995 +632 923 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj eec509d157560d49 +62953 63659 1585440647 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj b24dd10dce9d6f26 +36023 36559 1585440619 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 1362475d4a45ec43 +5034 5359 1585440588 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 556a692629adfada +47788 48498 1585440631 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj e0cb79d09b2cb159 +28676 28835 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_mem.c.obj 35313f14a5557e80 +37874 37894 1585440621 esp-idf/tcpip_adapter/libtcpip_adapter.a d3f10370c7462d1e +65800 65982 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj d7702ea36edfa65b +15676 15884 1585440599 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj cc772de4544f40b2 +46883 47404 1585440630 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj bcb8e8d8aa07b7cd +29996 30211 1585440613 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj ffbe490ba865255 +47468 47788 1585440631 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj c1dc9b74cd464a15 +90932 90989 1585220921 esp-idf/wifi/libwifi.a 318bc43937909b13 +22243 22522 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 634e49d8285dd6c9 +38694 54506 1585440637 esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj ced96d88be2d2fba +67455 67671 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj 3412524185bc6a98 +37894 37922 1585440621 esp-idf/esp_eth/libesp_eth.a 80e079e349f37dcc +37621 37639 1585440621 esp-idf/log/liblog.a 1274d7808513dadc +33108 33884 1585440617 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj 765de8f82152873a +54713 55060 1585440638 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj 59b1a66aa08b64d6 +38428 38544 1585440621 esp-idf/mbedtls/libmbedtls.a 20f83969fcd73776 +29116 29502 1585440612 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj 1366150fbc1992c6 +36560 37053 1585440620 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj e8eaf732e043d3ac +63699 64057 1585440647 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj 9242a9896e21258e +38063 38091 1585440621 esp-idf/bootloader_support/libbootloader_support.a 81bd485cf13f5f2f +21959 22330 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj bb60e82ed574f99d +47362 47476 1585440630 esp-idf/protocomm/libprotocomm.a a24354d090c61c70 +21703 22237 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 7bc8574675197530 +23840 24069 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 4de30b077d0583e1 +22798 23136 1585440606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj 96093a349c709750 +45273 45513 1585440628 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj b68f87ac68d3c486 +10264 10463 1585440593 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj d48b4eb6ff82ff5f +44908 45331 1585440628 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj 3b8e3b92c3604e29 44532 44578 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c.obj 3cc889128272ec2 45121 45261 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c.obj 6e0d9d9ae66cc310 -55524 55901 1584850621 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj da9aaad280bcf0d9 -61362 61787 1585159770 esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj 49d7414e80ec5115 -54058 54999 1585159763 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj ac7206a89d348f62 -51104 51175 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj 8f651795a87f1825 -54871 55067 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj 67b39fce6be91d0 -60442 60625 1585159769 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj e09bb6de59a31e7e -43334 43657 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c.obj 3f65de6445569d6d -51682 52107 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj 77394ce5aa9aee92 -56210 56679 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj 3af87427c190f5e0 -10999 11279 1585159719 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 57ba8996a2eaa210 -54579 54732 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj 704ff09a2eb479bf -50379 50637 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj 6792e15005e89a6b -55181 55460 1584850621 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj ec1a5e21292b3247 -54554 54708 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj 714a080dd38ecd05 -19937 20493 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj bd96bcfd10a93c1 -6631 6991 1585159715 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj aefc19da6bdfeaf9 -54522 54674 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj fe3940e9ae68581e -51378 51617 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj febb7a27a8842ca1 -16973 17266 1585159725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj a1b6a90e645580f2 -47176 47278 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c.obj d05183b163960231 -3278 4103 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 73728c0b3c8f987f -44034 44182 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c.obj 6ad5999025b3583b -53934 54130 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj ee38fc8adf10ed25 -55067 55257 1584850621 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj 6841c96ae58b6b76 -44219 44303 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c.obj 5984fb743e29f0d7 -54373 54579 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj 94a10bcd0e3118ce -50191 50310 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj 16060d24abc3dd59 -54761 54940 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj 1806e650dc160b63 -59601 60122 1585159768 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj a437ea867e2de563 -60123 60194 1585159768 esp-idf/openssl/libopenssl.a dd8fd619cead68da -53778 53968 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj 7056c78697203116 -42161 42307 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c.obj 40b9eea93e760e51 -16297 16641 1585159725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 17d78e7cdcd41501 -32096 32357 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 15524cfa6d5673e7 -41181 41522 1585159750 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj 5b1c9d7760ab8b1e -53738 53934 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj dd983e634d0786e2 -44741 44841 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c.obj b1792f4ba00abcd8 -55542 55603 1584850621 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a 279a1c1b59b4b1af -55058 55180 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj 5c3987f203a3b167 -50276 50327 1584850616 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj 46eee5c1b7ea7c7d -35890 37446 1585159746 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj 859a78cf48b35d2e -4043 4293 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj a1752e16a1ea8bc4 -40723 40935 1585159749 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj 12eed60425fd665b -50115 50204 1584850615 prvtkey.pem.S e244cb87cb79c700 -54846 54990 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj ed5e550f58d362b -27273 27745 1585159736 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj c9b8cc3df3d94c07 -10276 10687 1585159719 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj 29de2e665a306b37 -53969 54189 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj 9c8b036103903105 -43434 45038 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c.obj 5b29d8202ae3cc49 -55696 56019 1584850621 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj 11c76567a4e7bd98 -54478 54764 1585159763 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj abf72aabc7b0ca24 -49786 49923 1584850615 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj 5a708b92fba6f121 -61905 61930 1585159770 esp-idf/cmd_system/libcmd_system.a a176a672918a9671 -53307 53530 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj aa5903e74b8723d4 -61508 61905 1585159770 esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj b8f6030d8fc531ab -45546 47621 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c.obj e8c12c5c87407374 -61474 61861 1585159770 esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj a28b135a45df7a95 -53784 53924 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj e99b5a4dfaa96c24 -10153 10276 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj fce760844ebb4f93 -12833 13265 1585159721 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 72f8ecf726a7fae0 -49462 49793 1585159758 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj d8b13b07bec7c003 -61625 61688 1585159770 esp-idf/wifi_provisioning/libwifi_provisioning.a e2c7ff7a52f6a2dd -7563 7645 1585139900 bootloader-prefix/src/bootloader-stamp/bootloader-done 7bb58568bcbe1b88 -42077 42306 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c.obj 460c0e969ddafb39 -47014 47180 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c.obj 1f49f96f6c6f1503 -45798 45905 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c.obj 9081f5b38ecc0233 -44357 44431 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c.obj 31233304858cebc9 -61543 61635 1585159770 esp-idf/files/libfiles.a dc77d04f5b6e0879 -58140 58422 1585159767 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj 2a02c7b2f62b14de -60625 61012 1585159769 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 49a54dd4b4294f89 -30841 31086 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 1ba31e6710d4882d -1020 1207 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 1577e50976fb2d19 -6206 6383 1585159714 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj 28531746f777191c -55146 55311 1584850621 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj bb55506adb00e9d7 -61265 61362 1585159769 esp-idf/spiffs/libspiffs.a 3977dd0f919f2d3a -45906 46017 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c.obj 7b46d4740e920071 -32472 32714 1584850598 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj 6b35f6d306de2de1 -61138 61508 1585159770 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj f8d791db34a2a592 -42454 42558 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c.obj 4ae804e958a93336 -43172 43334 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c.obj 87d02fc656f60b00 -59037 59601 1585159768 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj 87a2d5e1fc5df551 -53934 54062 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj 73e8db36447390cd -45344 45629 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c.obj cd4577375855b3e6 -5915 6206 1585159714 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 4129d729ab162a8b -59082 59466 1585159768 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 8608bc10135ef02 -47471 47633 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/core.c.obj 29afa019252098ea -58771 59037 1585159767 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj e7033fa879b68863 -46779 46877 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c.obj 14509304a6ba450 -47072 47176 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c.obj f6efe8780baf8cef -54620 54663 1585159763 esp-idf/mdns/libmdns.a 9e64c996f85b3dcf -45253 45338 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/crypto_stream.c.obj 48a82dfa03923144 -47180 47298 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium/verify.c.obj 3db082d1d3351207 -10972 11691 1585159720 esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj b14c4d888f13f00c -54800 54818 1585020668 CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj 344817c17c36955e -6470 7001 1585159715 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b856a6e5a204876f -46381 47050 1585159755 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj 2fd43b4877ff2e02 -46696 46829 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c.obj 3acec723fc020cf -46516 46696 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c.obj 64b8a5e4916c1c9e -51383 51682 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj a403f2840c717231 -42028 46402 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c.obj 63d6873a0abe7ce -3783 3921 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj c15c54b0d535a3d5 -17572 18285 1585159726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 6f66ad87d21690a1 -31946 32124 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj ab8bc35a79c5e78e -6357 6631 1585159715 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj db785e4a4d702179 -47621 47661 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/version.c.obj ca9ff3c9b71d3cbb -41704 41818 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/crypto_auth.c.obj d610a5b60a6d18c -44578 44617 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S.obj bcb3f3a1518bc171 -58422 58753 1585159767 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj a36b3d96bc913085 -45630 45798 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c.obj ba9e2ad4c8b93e7e -53543 53738 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj 338511c04cd4fce4 -45454 45546 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c.obj 9068d1d8271ff4ec -51338 51654 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj fa4a3dfb897bc073 -45242 45344 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c.obj c2a4ed00a0c52050 -45261 45321 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c.obj 5f7a67eca0029ebf -44400 44500 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c.obj f7139954579daa7d -45131 45264 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c.obj 82276ef24917336b -37682 37904 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj 92611242234b4037 -44345 44400 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S.obj 4998cd56d972a5e1 -5376 5915 1585159714 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj 6273c4cacb9adf07 -55257 55386 1584850621 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj cce52c6804c86350 -20804 21114 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj aa6e32bbf60ae965 -43649 43833 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c.obj b38e7c4e97d57ff3 -54733 54881 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj 8ee4ff09a08c8bec -42558 43775 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c.obj 8213809e996012c2 -57244 57622 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj 5a7b0f2fbafa543a -49828 50063 1584850615 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj 85f39649e670e438 -45334 45486 1585159754 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj deac31bc73c5ee1a -42976 43172 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c.obj 7ab18cdc67ba4c11 -37385 37718 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj 8be06a60b2c208fa -17287 18135 1585159726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj e308e3da6a0ed128 -53560 53915 1585159762 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj 9abcec7cdf265542 -2942 3626 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 5a190d8071b957e6 -6686 6846 1585159715 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 7edf8fde86d34f5f -44620 44646 1585159753 esp-idf/nvs_flash/libnvs_flash.a ae6808df23dc8a0b -63101 67431 1585159776 bakalarka.elf f98fdd3aef8f707a -41541 44038 1585159752 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj 7a444a39fb81f014 -10382 11349 1585159719 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj 79507c8ef577e5e3 -58289 58552 1585159767 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj 485ab61fb1169a7e -18890 19184 1585159727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj 1a0e09abb598049f -38864 39169 1585159747 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj d7498b9b552fa6b5 -12839 13224 1585159721 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj caedd5ff754abe13 -61358 61757 1585159770 esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj 214374bbb1ac680d -10344 10972 1585159719 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 17c8822bb71b1086 -50103 50379 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj f6953e1dc91708b0 -33 861 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj ab617c1a8d0a9e0b -17017 17902 1585159726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 18530610988ddd11 -44251 44274 1585159752 esp-idf/newlib/libnewlib.a 855580b12edfb31b -10228 10382 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj 614cb5e812cefd2 -26133 26424 1585159734 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj 851babb53a5a349f -50780 51024 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj 60357720cc9c6901 -14295 14797 1585159723 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj 162421fe10f1a595 -18135 18295 1585159726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj d8c6744c9cc4c780 -9702 10085 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj c63fc5dbac6ff491 -9612 9749 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj 2c400e461f32d012 -9901 10035 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj ef893fed75657227 -14797 14967 1585159723 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 39aaa31f66c5a298 -44140 44163 1585159752 esp-idf/tcp_transport/libtcp_transport.a ea2beb8be5ea9cac -52663 53106 1585159761 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj aa578e42f9be6a86 -14365 14814 1585159723 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj 8b43857304f0f4b3 -55104 55271 1584850621 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj 8caf7638dcb180df -19184 19456 1585159728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj 41cfa15f86587e19 -46548 47207 1585159755 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj aa668b63c113b113 -43533 43649 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c.obj d2e461829ccdb792 -54362 54522 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj 74075c194f42d857 -11808 12082 1585159720 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj dc32daafe861024c -9060 9599 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj 33c1b6f3aeda1f19 -2642 2902 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj 4b4f7600c7d59898 -32499 32684 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 9d62b9dbba5c2c28 -39609 40139 1585159748 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj b38d266c76cde2ae -6 21 1584850565 project_elf_src.c d8a77256f6fb8dd1 -37422 37723 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj dce2d4af8d66e9b1 -17903 18572 1585159727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 767943c614345a1d -9750 9988 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj 3f4777eab67e5dae -682 788 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj b08e3bad677e5e6e -9988 10094 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj e2012e8630b1c6d0 -44425 44446 1585159753 esp-idf/pthread/libpthread.a 3a7af1abd593645d -44596 44620 1585159753 esp-idf/esp_wifi/libesp_wifi.a effb86670d9970ec -8763 9076 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj abd9833b1209a408 -7910 8035 1585159716 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj 87b7ab78145e3f62 -21227 21683 1585159730 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj ea78ddbf1d04a8cc -59829 60160 1585159768 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 6983e292af2f0d8 -2965 3235 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj cc0534c7a8f27a69 -46829 46953 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c.obj c90e66088267c58d -8543 8792 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj cdc4814cd3fbbaea -32269 32537 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 2018746af2567636 -13750 14328 1585159722 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 70450d59c9999151 -43657 43795 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c.obj bc133a996e954d4b -13829 14364 1585159722 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj adc85a1c6fc74dbd -10000 10152 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj af3c63cb6d556553 -18406 18890 1585159727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj b8bc260091d71903 -7926 8025 1585159716 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj 9103b8c85948cf74 -51842 52247 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj 3e9d09be06ba3381 -18285 19126 1585159727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj 7031bebde3d1fac7 -44896 45131 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c.obj 3d6cd07f2c8cae5a -13964 14413 1585159723 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj d1813da7dc5a8553 -11691 12232 1585159720 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj c42878fcccf9203c -41877 42028 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c.obj 5a93f329f8cb606 -3598 3805 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 9bb5a701c114bc34 -40877 41470 1585159750 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj c4303ecfa4dda4d2 -18295 18834 1585159727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj 5458b43f470d9ee8 -2579 2642 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj d2f85563099220d5 -54774 54934 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj a976847e4d8464f4 -24845 26831 1585159735 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj d2e3cac4a9b21f66 -6974 7243 1585159715 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj c658d33faa41eccf -37198 37368 1585159745 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj da216bb7545b2a0c -37160 37340 1585159745 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj 4265fd63be1e61ae -7086 7331 1585159715 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj 2c7ecf53a8cb9c73 -60325 61069 1585159769 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj 48dddb2d50ae04db -55311 55619 1584850621 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj 2a4c62fadf107472 -2898 3278 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj f3ae3314e51a3fd1 -52668 52875 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj 76d44f60f7c3dc17 -3808 4043 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_aes_xts.c.obj 3e23693094c1ba56 -31082 31668 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 7263fc09734a5790 -55264 55542 1584850621 esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj efe247361837b818 -54062 54180 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj 96623fdd6ec3cc9b -36112 36946 1585159745 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj 23bbec983db7100 -1207 1626 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 72bc9b6aabff2665 -2814 3253 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj a225eb6ce43fb9bd -55386 55696 1584850621 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj 40bf17bec442e65a -18572 19142 1585159727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj 39d64f2ad495303 -43170 43645 1585159752 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj d506c00f4561493a -3805 4066 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj 9749a3ce0bbc1f42 -3665 3794 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj 62ab38891f030ec7 -50970 51073 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj c1418d38c5e47c37 -2581 2695 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 6a31e43968ff5152 -24777 26932 1585159735 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 1f50ff982a173be1 -1611 2898 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj cd843719b30eeb20 -20650 21227 1585159729 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj ed773ca4350acb97 -50287 51076 1585159759 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj 85a610e2057e822f -6847 6974 1585159715 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 5448385089a5e08b -14967 15550 1585159724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj c60d9d921271099e -49400 49462 1585159758 esp-idf/esp_https_ota/libesp_https_ota.a fefb0d1df4e90f1e -8035 8313 1585159716 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj 90451c0ab1f76fcc -38037 38525 1585159747 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj dfd56f1a9ae11cc4 -51115 51337 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj ffba1bbaf21f8473 -1942 2579 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 919e8ad01f40d753 -2861 2965 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj dbc29a5bbec41aa0 -45678 46169 1585159754 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj a211b752d499d287 -1283 1729 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 5105a773ef5aa6ad -21607 22158 1585159730 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 509b21db3123f698 -9166 9689 1585159718 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj 9dc0432f52b8a829 -14738 15785 1585159724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj ecd40bf9fabd7784 -8264 8478 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj ff1bf688ceca3b01 -5510 5669 1584850571 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj 93c9a4f49359b5fb -56893 57180 1585159765 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj 162ecfb45450315a -30567 30992 1585159739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj e8974ff718de6bd7 -672 764 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj f5941347238563e6 -28376 28767 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 3bd0b2a58c2bff52 -48255 48789 1585159757 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj d4f5b287b54a3c43 -52199 52581 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj 4954d32ed4d61bc5 -27379 27978 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj e512427ef21e22ca -17266 17748 1585159726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj 6a5f09c6bfb92865 -3253 3385 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj e45a382f87f6d832 -2074 2166 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj 515c92f19bb486e -1594 2861 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj a3af968c67ab9c12 -16641 17572 1585159726 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj 54bddcfaa79e3506 -8823 9166 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj 8a9332f103f8a33a -44182 44262 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c.obj 9df28de70f66a358 -5299 5529 1585159714 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj e51bd55a96cba237 -7166 7518 1585159716 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 7ab652436f384c5d -53106 56727 1585159765 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj 89474d8a15ca19e3 -42613 42868 1585159751 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj c956d42bf1e6eee1 -4831 4971 1584850570 bootloader-prefix/src/bootloader-stamp/bootloader-patch 3f06e9d73a8b6125 -45038 45121 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c.obj f6f5273df10f9160 -41523 42066 1585159750 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj c087ac416aa084ec -44998 45045 1585159753 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a ba9822d5d40cb5ce -48179 49811 1585159758 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj b69597b97d3cb830 -50865 51014 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj 8cf51614fb9991b -7946 8172 1585159716 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/cpu_hal.c.obj 102ecd7bf6775de1 -61636 61880 1585159770 esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj d67807718f820db3 -61315 61474 1585159770 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj 5bcad2caeebac799 -5097 5301 1585159713 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj 2fd500af7243a5fe -61346 61543 1585159770 esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj 2b4b3a1bcf6c4f61 -410 829 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 620aeaae2b5db36f -2331 2647 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 69dd4915fa10937b -57779 58081 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj a5dffd5f3e947339 -54619 54774 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj 95b71d5e990b0ee4 -1729 2073 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 476d585b0bdb9deb -5644 5883 1585159714 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj 652970286b569791 -48871 49400 1585159758 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj 8cac2adf84d73e55 -1968 2105 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj cb4d27aae9c1cbfe -54626 54761 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj 9fe6673245c0d144 -1295 1594 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj e2084f9e45d8f107 -42750 42976 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx/crypto_kx.c.obj e516de414ea8be95 -7556 7909 1585159716 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 88c5429ac7e7980e -8385 8778 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj 3a55c388f7323eae -21 29 1585159708 esp-idf/esp32/esp32_out.ld 8c63fbe09600b012 -13224 15195 1585159723 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj cbcf57c5c6e9332 -31804 32084 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj d0e66fbc898d25a5 -32 216 1585159708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj 6b085a47fcbea73c -3794 4106 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_bignum.c.obj 74646d4af8565ce3 -2532 2959 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj f73b5cfb92407c29 -58753 59103 1585159767 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj e071d01350af156a -37369 37819 1585159746 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj efd679088e15fab5 -40398 40552 1585159749 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj b361c982f91bcf46 -43729 43997 1585159752 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj e32cde81f33948f -44262 44345 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c.obj d948dcc5d2b762b9 -310 682 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 29a60c9a3f5d374b -29 310 1585159708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 4fcc59e33c441db -55099 55943 1585159764 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj 629d2aaace6094ec -8793 9060 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj 302b90d6cbc282fd -2903 3204 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 7769b6d7f0a54bbc -340 672 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 8150fd290267689c -1667 2069 1585159710 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj bcbe7dbb7e325722 -3720 3830 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj ee171c25d1d16fc7 -11280 11685 1585159720 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj 179654b2d598a871 -52326 52664 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj 787e49820bc11b69 -49899 50239 1585159758 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj 9464fe2676084870 -3830 4266 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj 3ef8c07f5770bf38 -969 1222 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj bf06441f8e82e460 -31905 32096 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj e7c3444eb66231ef -5529 6000 1585159714 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj 77d42a6386fbc655 -44646 44706 1585159753 esp-idf/wpa_supplicant/libwpa_supplicant.a 934adf958a664c37 -52456 53060 1585159761 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 572d0ba8df5d020e -992 1196 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b8d01f4cad94fe0f -7001 7166 1585159715 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj a57dddea3cfdaf -21804 22577 1585159731 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 1e4f1a9264a9a893 -964 1020 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj f6d250e066717798 -2166 2532 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj f219615cf93bce6b -47615 47686 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/runtime.c.obj a02be098a1b72992 -1196 1295 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 939c8482350cb653 -44446 44489 1585159753 esp-idf/driver/libdriver.a 5cd66d74d6544f4f -54334 54534 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj 8d7e71bbaadeeb26 -2255 2331 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj 627dd85d6337a7dd -51608 51842 1584850617 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj 60672e7a813857bf -8884 9048 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mpu_hal.c.obj 3f283e59f35ad16c -19294 19784 1585159728 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj 23e11a46290371a6 -26956 27288 1585159735 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj e84f19c8cb1b96e4 -60027 60593 1585159769 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj d58afb73471a712b -44841 44903 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c.obj d0ba2be7d6b104c -11685 12200 1585159720 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj bd9ec6e062450dcf -2959 3231 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 14b3504e24dab81d -6991 7253 1585159715 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 8f0739064d2111fe -8411 8545 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj ff2d172f09e291a7 -12854 13829 1585159722 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj eb6571abe5b624c -27980 29452 1585159738 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj fde02ce432e66fae -36300 36827 1585159745 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj 54f91e3bb4f35712 -47050 48254 1585159756 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj f7ed387f54a38e44 -49923 50103 1584850615 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj 74404e17f257464a -22298 24476 1585159733 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj e28cd8d47756f0 -7969 8249 1585159716 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj 7df79dfce608d244 -57042 57404 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj f1d0bde7eb738bdf -18834 19140 1585159727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 1054d2f8ec3dffc7 -44389 44408 1585159753 esp-idf/perfmon/libperfmon.a b74d9df8a26398f8 -55334 55640 1584850621 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj 98b9c6b4f94d2971 -15550 16062 1585159724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 392a3478c7dc44a3 -39231 39674 1585159748 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj d6e491ed748fa4c4 -43775 43996 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c.obj e425a5867fd7b2f6 -8601 8823 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj 12d104cdc4142f85 -27978 28376 1585159736 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 4d0caca18245133e -9802 9901 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj 92a817c5d823e1d1 -12262 12854 1585159721 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj bbc08bc96e7b25a7 -55272 55524 1584850621 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj 34a714f5982ad79e -3236 3356 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 9b97e17326eeb4f2 -57261 57656 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj 3fcbb1cf3b2882b8 -52766 53197 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj 7c732f859687e4b7 -50337 51112 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj baf239a54ec1abe5 -34097 34402 1585159743 esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj 5ae287ce163eb22f -4266 4401 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 5632daab98c1d48f -33937 34999 1585159743 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj 81c311aadc3fd67a -4066 4442 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha256.c.obj b99ef2be1306ff3e -44845 44885 1585159753 esp-idf/esp_system/libesp_system.a 2059c603ec302120 -52671 52909 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj fef491a60f60c731 -44056 44357 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c.obj cd7c6f92cf2b641 -4293 4489 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 1e59c3eb4df2f2d6 -41531 41703 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c.obj dad60d9deed293ef -4106 4438 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 3059b0b7c874632b -42650 42792 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c.obj 107a72d070a86f46 -4654 4890 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj 563b629bab6cf3a0 -46402 46596 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c.obj cd445386220d10ae -59530 59829 1585159768 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj 2829bf3d0e3e1831 -52843 53590 1585159762 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj ae1eb731b2cff3d0 -4442 4804 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 988c6be88ff3acd7 -26 170 1585139892 partition_table/partition-table.bin 7655812377592a4e -120 410 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 5adf60210421eab7 -14814 15594 1585159724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 87c41747bceff9ee -48915 49419 1585159758 esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj afc83e823cb63ffe -2105 2255 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 6fa37e26332b1c12 -26 663 1585139893 esp-idf/mbedtls/x509_crt_bundle 371cb489a2a51441 -10488 11328 1585159719 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj 9d9f5bdb90c688a -8313 8393 1585159716 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj 17df9f7e2b3acb1c -50124 50191 1584850615 cacert.pem.S edea0ac918570cbb -4797 7220 1585159715 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj c052958e4d91e4b5 -4401 4653 1585159713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj f9dc81bec0691839 -26424 26923 1585159735 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj 31129163c6fa8bcd -50312 50559 1584850616 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj 996cacffffcb4930 -6384 19292 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -53674 53778 1584850619 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj d56cc0eb2d78c6e1 -21246 22072 1585159730 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 7f297422df7da627 -2070 2581 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj f366ab2b02f940f5 -46017 46515 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c.obj f2893f50432febbe -3205 3318 1585159711 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj e68b1851c640de7f -57944 58168 1585159766 esp-idf/asio/libasio.a 62a13e711bc33278 -39402 39587 1585159748 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj 10213c4b563eaebf -40509 40651 1585159749 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj 18736c5f9f3637a2 -52958 53230 1584850618 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj 154953695b77d3b3 -3328 3598 1585159712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj b16b20888756824 -8574 8832 1585159717 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj 93d15a4c5fc6ca5 -58168 58917 1585159767 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj ff1b4db2a3dffdd2 -10152 10246 1585159718 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj d1de44722f84f3f -44163 44182 1585159752 esp-idf/esp-tls/libesp-tls.a 31affc00a434415b -217 627 1585159709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 20149d7f8f904a11 -6037 6276 1585159714 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 8cc366d0597a1718 -10687 11468 1585159720 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj 5600f8a091c70d10 -28999 29188 1585159737 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 9972798a0051c520 -59474 59688 1585159768 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj d84e67b9536abc4 -4489 5644 1585159714 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj c421326f74b2ac8 -8249 8543 1585159717 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 9729f133ca994898 -39218 39402 1585159748 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj b6b27581006b9649 -38361 40707 1584850606 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok.c.obj 1c3139828de35421 -1626 1941 1585159710 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj 6064f4f16f7c97ce -57405 57796 1585159766 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj 8cf34674e3e9546d -5540 5834 1585159714 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj ee9e8a4c6dd92ab7 -6000 6357 1585159714 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 2b0061bb7d6112da -44360 44389 1585159752 esp-idf/esp32/libesp32.a 5ecf3157bee85aa5 -32658 32849 1585159741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 2d761c4e64017e62 -22072 22959 1585159731 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj d7170eff8de976d1 -11328 11714 1585159720 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 5256ffdf40f76a69 -49901 50236 1584850615 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj cc00b2c562037be4 -41631 43377 1585159751 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj 2f942485126681e1 -54458 54626 1584850620 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj 3187bf392f5642ad -38022 38587 1584850604 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlrole.c.obj 6d2b3afb60de5008 -6276 6470 1585159715 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 4d86dbe548c9a429 -32124 32367 1585159740 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj e3c651fccf8954b4 -4585 4769 1584850570 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 90b409d187b82e09 -44546 44596 1585159753 esp-idf/lwip/liblwip.a cfc5b7a574b9e094 -22199 24734 1585159733 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj 61f97fde6e32a08 -829 1968 1585159710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj a04cf172379f7def -35497 36449 1585159745 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj 4f96eac3f9e1f4e0 -7243 7556 1585159716 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 5a4f87c2088065fd -26923 27277 1585159735 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj be0636faf4db39cd -61861 61882 1585159770 esp-idf/cmd_nvs/libcmd_nvs.a 1b7bb0daa3755fe0 -48114 48386 1585159756 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj ec2ebaeb338d11f0 -24 293 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -25 326 1585206902 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj fd2f26d536e73a2b -295 336 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -295 336 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -295 336 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -295 336 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -326 369 1585206902 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -24 388 1585206902 esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj 214374bbb1ac680d -388 422 1585206902 esp-idf/ca/libca.a 3b311f6ce51ffc82 -422 1652 1585206903 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1653 7096 1585206909 bakalarka.elf f98fdd3aef8f707a -7096 7467 1585206909 .bin_timestamp 715a021d8f39a8be -17 128 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -128 152 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -128 152 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -128 152 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -128 152 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -152 19869 0 CMakeFiles/flash d83eebc13dccbe41 -16 165 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -165 189 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -165 189 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -165 189 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -165 189 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -17 341 1585206955 esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj 214374bbb1ac680d -341 381 1585206955 esp-idf/ca/libca.a 3b311f6ce51ffc82 -381 1638 1585206956 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1638 7366 1585206962 bakalarka.elf f98fdd3aef8f707a -7366 7761 1585206962 .bin_timestamp 715a021d8f39a8be -7761 27389 0 CMakeFiles/flash d83eebc13dccbe41 -0 4418 1585207587 build.ninja 1ff6234f96ac208 -17 84 1585207587 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj 87908ee7669a2d44 -17 120 1585207587 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj 92c82b734ec98526 -84 161 1585207587 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj d9299fc3eb1acc8f -16 216 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -216 248 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -216 248 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -216 248 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -216 248 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -18 264 1585207587 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj b5c241919f3ab79 -265 289 1585207587 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -17 307 1585207587 esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj 214374bbb1ac680d -16 321 1585207587 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj d96bfafb6f45dd8 -307 323 1585207587 esp-idf/ca/libca.a 3b311f6ce51ffc82 -323 341 1585207587 esp-idf/main/libmain.a e50809bc3b1cf5a6 -341 1386 1585207588 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1386 5382 1585207592 bakalarka.elf ad81f3052d87965a -5382 5695 1585207593 .bin_timestamp 715a021d8f39a8be -5695 25637 0 CMakeFiles/flash d83eebc13dccbe41 -41 317 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -319 381 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -319 381 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -319 381 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -319 381 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -47 474 1585208200 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj b5c241919f3ab79 -475 530 1585208200 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -530 2976 1585208203 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -2977 14378 1585208214 bakalarka.elf ad81f3052d87965a -14379 15090 1585208215 .bin_timestamp 715a021d8f39a8be -15090 35009 0 CMakeFiles/flash d83eebc13dccbe41 -21 134 1585208483 esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj 2b4b3a1bcf6c4f61 -134 164 1585208483 esp-idf/files/libfiles.a dc77d04f5b6e0879 -20 189 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -189 223 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -189 223 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -189 223 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -189 223 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -164 411 1585208483 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj b5c241919f3ab79 -412 446 1585208483 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -446 2398 1585208485 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -2398 15156 1585208498 bakalarka.elf ad81f3052d87965a -15157 15928 1585208498 .bin_timestamp 715a021d8f39a8be -15928 35774 0 CMakeFiles/flash d83eebc13dccbe41 -0 4256 1585214554 build.ninja 1ff6234f96ac208 -15 103 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -16 112 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -16 105 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -105 129 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -105 129 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -105 129 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -105 129 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 201 1585218959 esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj 214374bbb1ac680d -201 218 1585218959 esp-idf/ca/libca.a 3b311f6ce51ffc82 -218 241 1585218959 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj df94f6771fef3170 -226 298 1585218959 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj e09d2b6079e63359 +0 4596 1585440583 build.ninja 1ff6234f96ac208 +65982 66183 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj c3c034a2d6cf2a58 +56066 56082 1584850621 esp-idf/lvgl_touch/liblvgl_touch.a a84b401e288a8a96 +58714 59258 1585440642 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 8bba0d72acb2560 +37577 37597 1585440621 esp-idf/esp_ringbuf/libesp_ringbuf.a 52142642e68b28d5 +24105 24273 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 615fc87f3c3f6a8a +62689 62964 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj 4ae555ca5c61f387 +24599 24840 1585440608 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj 26a9601ec2600d66 +56364 57691 1585440641 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj 1a79450b2d108418 +43333 43533 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c.obj d23f866b0915ae88 +37405 37424 1585440620 esp-idf/esp_timer/libesp_timer.a 33b8c301002404d9 +13088 13326 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj b63478115c5bbfd5 +30211 30833 1585440614 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 72d4123064a034f4 +37101 37158 1585440620 esp-idf/ulp/libulp.a b5ba4f97522c9ec3 +38691 41272 1585440624 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj ecd611595e720ba3 +30959 31001 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj ae08d9a2a49512a7 +24285 24536 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj ab3940556b4ae489 +52215 52804 1585440636 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj 664b5ae299a869c5 +51215 51574 1585440634 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj b1dd74aa655abbdd +38040 38063 1585440621 esp-idf/app_update/libapp_update.a 629b42f69c26dd2b +8356 8509 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj ca877031b9acb682 +49887 50250 1585440633 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 80ef5d78aa0b037 +36833 37101 1585440620 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj 1591b1b498aaf318 +65700 65886 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj f84409172a385ca8 +51620 52043 1585440635 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj acd0c427e5fe89ef +34855 35733 1585440619 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 713d6119721d556f +61800 62160 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj 75ef3251dce8839e +56392 57367 1585440640 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj b5592ea701ee6798 +55 261 1585440583 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj 57757adf628f07e7 +37847 37874 1585440621 esp-idf/esp_netif/libesp_netif.a 9b9a8a1d361dc99f +40088 41274 1585440624 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj 158af1b535b2db36 +18170 18413 1585440601 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 53ca2d5e57280b97 +28546 28763 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman_data.c.obj 1de20db6f053b6e7 +31732 31963 1585440615 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj ff7afc5ba7bab41f +32274 32320 1584850598 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj 21e59060e0644c7b +30879 31200 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj 83fc2d72d8ad9582 +34369 35439 1585440618 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj a8ef0e7c0c7ec6d3 +30196 30429 1585440613 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj 20732dbdf6bafdb0 +8180 8390 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj 63a67e43d93a99f7 +9557 9700 1585440593 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj 1660e6d436922db3 +61 123 1585440583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj 5e53d85948e7e9ad +30766 30879 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj 17b3efe38e3617e2 +29088 29535 1585440612 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj 9054a83e111c6e03 +24124 24281 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 635ce36b45669c07 +24168 24405 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj d15920c299aaeaa +33961 34647 1585440618 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj c2b6a0def2140719 +29088 29255 1584850595 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_version.c.obj 4822192dd7ebc568 +4252 4457 1585440587 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj 16a2b7a94e230d59 +33059 34855 1585440618 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj 5151e6f485fda92c +42114 42438 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c.obj f06571301874cab0 +41275 43162 1585440626 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj e04671b07da484f1 +28361 28658 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_buf.c.obj 97bbf7980309525e +43358 43849 1585440627 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj c0e6f889c5a97127 +28847 28979 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_priority_spec.c.obj e0f3fe1361bc4be3 +35439 36023 1585440619 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj e9c0ac3af2619026 +36762 37022 1585440620 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 3cf8b0690a27d0a7 +62826 63332 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj deaf2a6315db3945 +42045 42297 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c.obj b0e6e2e349824ad7 +13672 13979 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 483bfb4eab03e6aa +26103 27318 1585440610 esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj 86b8b633b78a24ca +9381 9534 1585440592 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj dbbea780acaed617 +40462 40912 1585440624 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj ff178f4cfcd8bf73 +50473 50964 1585440634 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj 9f8e58ee3ba3bf74 +14686 15266 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj 1f397e451cb774fc +32995 33489 1585440616 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj 71c80e7c70ec8c52 +31020 31732 1585440615 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj bb0c30ba3bf721d5 +31492 32087 1585440615 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj a6ebca211b2a7ab9 +32603 33720 1585440617 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj fb7a8af422402899 +45743 46244 1585440629 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj b560ca64e20196f4 +45774 46897 1585440630 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj 1ff5446daf382c65 +12450 12678 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj a1b6a90e645580f2 +62787 63131 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj ce345b59aff212e9 +32801 33285 1585440616 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 9d7477055e5648dc +37945 37990 1585440621 esp-idf/soc/libsoc.a bdb543765a75c368 +68127 68294 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj 4a12ad6d003f753b +44500 44569 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S.obj ec0bfd91b9b641a9 +32392 32994 1585440616 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 2a1556cdc96337cc +10256 11128 1585440594 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 4ce3da35f990a752 +6874 7022 1585440590 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj 930ee878ebc68233 +32499 32830 1585440616 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj fc1713e8b0209c43 +21690 22236 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 50c8912980e73ff3 +24282 24476 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 4298e5baf4d8c480 +34898 35067 1584850600 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 44f807e9bd139e0b +68134 68426 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj 8eb33159e4f14d2c +44431 44491 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S.obj 66569526e2b9a812 +12455 12621 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj a3af104b90b5231a +49100 49503 1585440632 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj ed354ad7932f627d +497 849 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 73eb55c318e7593c +20989 21690 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj fade4a1edc9f0f96 +40790 41105 1585440624 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj 5030558c6f6c36d4 +62668 62826 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj c2c3f4015cfa3e2 +52148 52215 1585440635 esp-idf/expat/libexpat.a 2f48a09ddd2977e8 +5144 5307 1585440588 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 77339bf53aea2f30 +32087 32397 1585440615 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj 1db1bc21ea98a0f2 +1243 1585 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj f2eb0ba72f4332e +63259 63699 1585440647 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj 542608a1999f8267 +20712 20977 1585440604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 79bdcd2ec31af5e7 +12121 12292 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 8f8f73c3d1f3b327 +20531 20696 1585440604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj ef3cedb52e3f6786 +53467 54009 1585440637 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj 242eb8122309f5e8 +20177 20887 1585440604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj e8806157210c4a95 +69463 69818 1585440653 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj a0d3e0444a115222 +42307 42378 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c.obj 579aba89f43c3c07 +20343 20712 1585440604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 4396063447d8a1c5 +31921 32139 1585440615 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 9d0f2c9de6f746c +21380 22127 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 8c17e5b31dd96f0f +14420 14674 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj 8b4b169a09eacd5d +31973 32392 1585440615 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj c94da83c0e25435 +67832 68148 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj 7c2797d5ee22551c +20323 20567 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 6f8e56bcc948d49 +50964 51479 1585440634 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj f08854b60ace5ab7 +12732 12840 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj fc74de41ec555ad9 +20297 20630 1585440604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj c0e9c49c6f00cd8b +32139 32433 1585440615 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj bb05141dc784637c +2374 2480 1585440585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 8e38cbac0de40d73 +61181 61346 1585440644 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj 1928e278573c633 +66774 67116 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj 3e03a99d557c86c4 +8509 8722 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj c3eb6bd6d9d84da3 +62299 62383 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj a5d0f69ee6eed84d +49385 50280 1585440633 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj ac7206a89d348f62 +46678 46779 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c.obj d4a9bcf8f15d698a +59379 59650 1585440643 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj fcb156cd4367d8b7 +14500 14774 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj 3b32ed2a1367983c +14674 14950 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj f82fb5127beb33d2 +45338 45454 1584850611 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c.obj 8a22f7fbbb0ec809 +55069 55303 1585440638 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj cd618e36b77f8ca2 +18 271 1585407425 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj d96bfafb6f45dd8 +44125 44218 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c.obj 91ea913e04652c24 +19447 20176 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj 7f83189e36467e49 +31001 31228 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj 4a00f00b17b062b0 +19599 19802 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 9d3ab4dd77b7167a +67160 67455 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj 5b9c86171d95e6e8 +19532 19721 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 1735022ecac1b951 +30833 30959 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj 4380aa60d7ecb4af +3075 3254 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b1abbc269c8675b1 +19022 19532 1585440602 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj e380d062e201769f +13314 14142 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj bf63ad0d92a4c6eb +4578 4770 1585440588 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj e96fb5532089891d +19345 19598 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 83649dec8a732855 +19269 19727 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj d0b7927b8ab0104e +47476 48152 1585440631 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj bd8f20d1f0c5bbd2 +23398 23840 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 6db536946d4d31ad +67545 67832 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj 5e437dc3ab6d77e +19040 19345 1585440602 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 13d808216093d732 +29535 29719 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj dd43e713ad2ee254 +19197 19447 1585440602 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj cf7af956263e8b8f +30843 30988 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj c126678295a0b181 +18731 19257 1585440602 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj abfe8d8e1fb3afdc +17432 18855 1585440602 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj 53e9e30b40eb25f9 +5723 6094 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj 29f2bb102aea3cb8 +37355 37377 1585440620 esp-idf/vfs/libvfs.a 49e38bc49dfb99ad +18648 19040 1585440602 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj eae37e074555e393 +8002 8180 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj a953452407fe38f3 +29339 29706 1585440613 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj 3568da11267d93f +7661 7865 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj 2a8cc13113b45b58 +24934 26102 1585440609 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 2100604b1035a5c1 +64616 65515 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj 35a8bc31a856b8ba +28610 28935 1585440612 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 40dfa11f1feb5b20 +67252 67425 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj 1625ea4f614b1b56 +7317 7661 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj 9308a861601af43 +67700 68027 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj bda59e04ff6326ef +10702 11270 1585440594 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b57b4fec865631e7 +7403 7458 1584850573 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj 9959c18c9d0a3dca +41702 41810 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c.obj c9e29f68465231a6 +6674 6787 1585440590 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/reset_reason.c.obj cfa4be0ea405f93 +66379 66581 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj e38a4a0347079586 +44491 44547 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S.obj f8927521fc2f15e6 +8690 8819 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj 783d0c79d1ae9c1e +6575 6825 1585440590 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_api.c.obj fa46fd61e114a69b +44903 45253 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c.obj cf3b744463f3fe23 +7907 8052 1585440591 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj 15906865c02c9425 +38768 39383 1585440622 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj 26b0137932b9755b +4458 4710 1585440588 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj 7ec20aae60cf6c97 +6522 6575 1585440590 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler_asm.S.obj d93b790f9d70e853 +5710 5931 1585440589 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj 653074f99e9cb08a +48152 49196 1585440632 esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj 9c0fd2ba8dc408df +6354 6682 1585440590 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b663a3b2bccf3e9e +38411 38697 1585440622 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj bec180ac9dd2210 +7165 7907 1585440591 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj 4d8fa278be168fce +6610 6674 1585440590 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/dport_panic_highint_hdl.S.obj 25acc6344a70bca6 +10463 10744 1585440594 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj d5e0546299ee5964 +28835 28967 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_option.c.obj e4a584e2ad0106e +14912 15351 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 17da43368a4b666d +8953 9221 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj a16547eb07882d6e +24537 24877 1585440608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj 44916de880e45d3b +10692 11017 1585440594 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 35a01ab84f5bb4e8 +11220 11408 1585440594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj aaa94d714e9ad896 +12292 12563 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj 390c57d91cfb67e7 +58689 59457 1585440642 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj cc01b08d89ca2a70 +12066 12231 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj e5b55f2c6b5f39f7 +55569 56823 1585440640 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj 21a99b9fd5d18414 +64648 65063 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj 267d943ac53973c9 +30974 31122 1585440614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj ddb73ac753f08268 +28353 28455 1584850594 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_callbacks.c.obj eda38f08d19c32d6 +10810 11220 1585440594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj c5632da65dc0ffe5 +30541 30843 1585440614 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b5acabc7084e2982 +11724 12395 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj 7c390c15e23d2704 +4769 4817 1584850570 bootloader-prefix/src/bootloader-stamp/bootloader-download 90d34d09b0f91f1a +11523 11669 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj d5202f55b0839f32 +55363 55568 1585440638 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj 621a72bd8ed4958d +18354 18648 1585440602 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj f3f8c5ce569f7ada +26451 26996 1585440610 esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj 501f4c45117fe01a +22237 22510 1585440605 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj c0e84898ade4229b +43996 44124 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c.obj 7e6360ef856a894c +12077 12315 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj f323c15826d0b280 +739 802 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj e1b38e837b97f7e3 +45513 49478 1585440632 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj e7a9b92aae399379 +37922 37945 1585440621 esp-idf/soc/soc/esp32/libsoc_esp32.a 5535786e5680a71 +12190 12349 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 2d4c80b7856db686 +44460 44595 1585440628 esp-idf/esp_gdbstub/libesp_gdbstub.a 17fa000c0dae215f +22127 22585 1585440606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 47eddb4edc32e9d3 +68381 68744 1585440652 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj 980beab92d60fc5 +12231 12405 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj 9b36f8fe69e7761b +12563 12731 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj 31260c3aecd004e8 +20004 20343 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 336dca2aed7bfdb2 +10438 10499 1584850576 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj 74c884cf986dd9f8 +5155 5660 1585440589 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 80ff88084e52f45d +4210 4709 1585440588 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj fdf13bd768d11fc7 +12705 12969 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj 486c094c1982ad19 +5085 5369 1585412797 .bin_timestamp 715a021d8f39a8be +67270 67556 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj 1f937a3f80a7a36d +2758 2861 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj 1af46424c31458ff +57367 58133 1585440641 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj d620c2d3b69fad15 +4817 4885 1584850570 bootloader-prefix/src/bootloader-stamp/bootloader-update ffe37cc0b8b002cd +14541 14911 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj 29743f81b591c7a4 +34932 35384 1584850601 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj 8912a96450596f9e +51723 51764 1585440635 esp-idf/fatfs/libfatfs.a d1d56c91828b233 +31228 32316 1585440615 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 56f0a8ed35add288 +58574 58688 1585440642 esp-idf/unity/libunity.a ffbd91855b17061e +14305 14637 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj 4694aa91c967c051 +41539 41795 1585440625 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj 4418a95749233797 +6627 6949 1585440590 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 63599ae4b5f7bc6e +14569 14903 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj 105c8465fffeeaf +15045 15426 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj d12d67e318af0586 +41895 41954 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box.c.obj c94720fe3897626b +3670 4210 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha512.c.obj 6c0a75daf7ea7e35 +38229 38428 1585440621 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj d8bf29ee2734cde2 +5660 9900 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +49309 49895 1585440633 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj ceb1125b87df0301 +53249 53620 1585440637 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj a078218bf69573e0 +57075 58280 1585440641 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj 5798fb22062a0645 +5660 9900 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +55733 55974 1585440639 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj 48c722fc51154ad9 +7563 7645 1585139900 CMakeFiles/bootloader-complete 7bb58568bcbe1b88 +63865 64205 1585440647 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj 4af2429c7d507389 +48642 48772 1585440632 esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a c887be8cb213e66c +64028 64371 1585440647 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj ec8dc5bf49e3d0a6 +52393 52819 1585440636 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj f100a268baaadd38 +37377 37405 1585440620 esp-idf/freertos/libfreertos.a 8adaa22c425c727c +38521 38595 1584850604 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_impl.c.obj 7bc678ac6879647 +49627 49732 1585440633 esp-idf/esp_local_ctrl/libesp_local_ctrl.a 2b6d82bc97e55a06 +52043 52493 1585440635 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj 4942da8c06074142 +3064 3135 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 40c31b460fdab003 +50280 50404 1585440633 esp-idf/wear_levelling/libwear_levelling.a 8ffc856a1c7bda8e +62030 62405 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj b8c31256a45d0759 +14903 15037 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 6a78f22896fdf5eb +15885 17627 1585440601 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj 5f928f73311093f0 +24011 24168 1585440607 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 79c68902a7fcd46b +50250 50611 1585440634 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj 51da619fdf271782 +62936 63259 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj 81b8c70d4d381c8e +48972 49385 1585440632 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj a4fcdafe6a6f3a04 +68148 68381 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj 5cec7a5acdaec7 +50088 51722 1585440635 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 89e8f39ba6501e65 +51121 51620 1585440635 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj 345c4e46c30e44d4 +46597 46678 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S.obj c8990e64169c23fa +2921 3104 1585440586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 766917eabdd8a007 +28572 28857 1585440612 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj dab6091bc01cb6c +28858 29095 1585440612 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj db2bda8711352316 +13658 14304 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj 98e16976c8a48268 +52781 53135 1585440636 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj 4d406265a90cfda2 +47404 47829 1585440631 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj ca03177b1a43ea13 +5307 5573 1585440588 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj 3ef55db686511db4 +52601 53249 1585440636 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj deb6d4f7f478a26a +69041 69490 1585440652 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj 8cc4fc2f13a8e3b +53362 53797 1585440637 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj e0cbeaf10e38d5de +38113 38142 1585440621 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 48870cf31bc57c21 +41454 41607 1584850607 esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src/jsmn.c.obj 5c3cb88e86dc5c58 +41515 41965 1584850607 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj d1a596debed92dc3 +42251 42273 1584850608 esp-idf/json/libjson.a 109e3c6dd4bbe827 +3890 4854 1585440588 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj b2360ad368b2f2bc +42353 42454 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c.obj 962b7a3a91404d3e +54116 54712 1585440638 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj 2a7064896d44c91f +1432 1552 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 37adafe73e9eaf1b +45008 45755 1585440629 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj f0db0f1663453c8c +42538 42650 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c.obj 5ce74b08d72a8115 +55582 55965 1585440639 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj fa80b5ea9032e9aa +571 645 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b024331307d43ac1 +56 497 1585440583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj e51851124e48b862 +25044 26174 1585440609 esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj 75c511ee5b0bab3d +61346 61800 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj 7183af5d2761e2f2 +13747 14025 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj ea8f61a53d391fa8 +68503 68865 1585440652 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj 9fae691ce4b468e1 +61332 61877 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj 5d0dfd7b77a7600e +62565 62745 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj 9d76a8e220cf0693 +9017 9279 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj c1455a4579e8a5b1 +62295 62487 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj 7a415a5b9dea1662 +8819 8993 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj 411f227e6e277e2f +52493 53083 1585440636 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj 27568f8bf5b15b0b +46953 47072 1584850612 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c.obj 673fb2983e7250e5 +41810 41953 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c.obj d0d38326e72e3dbb +55076 55284 1585440638 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj 84c5f947aa7c40ea +52804 53596 1585440637 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj 853af9cddea3ef9f +42274 42369 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c.obj b8f1bc1dd63f6618 +62196 62350 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj 50924c8846807664 +60210 60746 1585440644 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj 93b9d32d8fbea716 +62487 62668 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj e9f2b86201becd7 +3598 4030 1585440587 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha1.c.obj bc883588bc31a39c +16979 18647 1585440602 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 80faa7a46b0120fc +15902 16979 1585440600 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 5f52ae7f8dab3dca +27788 28379 1585440611 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj e96fc583988b5ade +6418 6610 1585440590 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj c194966de020c997 +6682 6874 1585440590 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/cpu_util.c.obj ce8f5360513222d6 +62281 62646 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj fbf3095bf73bed12 +62350 62513 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj 263e898d9af28e83 +62384 62565 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj 86507b9ac666e5a6 +64057 64504 1585440647 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj 56577143d8784ddc +65064 66174 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj d0d505cb430e0a3 +14142 14500 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj 1d16cd65a1fd42dc +42063 42113 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c.obj 57f26505eb0529d5 +663 927 1585139893 x509_crt_bundle.S 54a15aa8cf02422d +11623 11783 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj a1edad39e8cdc091 +49895 50183 1585440633 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 70935edbf864953a +11192 11433 1585440594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj f3495d9c873cc11c +64504 64702 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj 93183cd9d92a67c5 +67057 67270 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj e32da812a2b4f5eb +59888 60420 1585440643 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj 956028fc4e615ce0 +14307 14569 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj e25568a543fd01fe +42438 42499 1584850608 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/crypto_hash.c.obj cd9fc10e8a9a6d73 +48498 48641 1585440632 esp-idf/sdmmc/libsdmmc.a 606b34034bb47675 +271 289 1585407425 esp-idf/main/libmain.a e50809bc3b1cf5a6 +365 3596 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-configure 8fb88d3ea09d66cb +69215 69739 1585440653 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj 9ca87864c2f86b7c +66887 67159 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj 9b53bc270ffb3df3 +42306 47772 1584850613 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c.obj 4580d2a981ab78be +42015 42161 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c.obj 3a1fe3fc1fcf3a73 +64702 65265 1585440648 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj dace6ad04b39f260 +67671 67894 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj 5da4d897f34c5be0 +6225 6627 1585440590 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj de5d38407180587b +19457 19762 1585440603 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj 577b62906c8a3e7d +21069 21520 1585440604 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj b1c2f31a5ad2945e +38494 38694 1585440622 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj a7d070943958ffc5 +37182 37208 1585440620 esp-idf/esp_http_client/libesp_http_client.a 4ffd10c652f4da0e +61945 62299 1585440645 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj 7cd1469bdf5c6646 +62647 62953 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj 60df3566250f836e +12263 12450 1585440595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj 90c9a3efb58be2f +53621 54116 1585440637 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj 50f45e2322e5c55f +65265 66111 1585440649 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj dff1b502ba3116c7 +51765 52244 1585440635 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj 6fd15834bc0e5dd7 +50611 51215 1585440634 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj 711bc61f6f0b486c +68144 68373 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj 99e303c39258e4ec +41954 42063 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_seal.c.obj 1dc9dca9c87d1b0 +55195 55363 1585440638 esp-idf/freemodbus/libfreemodbus.a ff1b2ecc7df2affc +66199 66551 1585440649 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj 5748e906d82d91ed +55318 55787 1585440639 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj dcb63d57734e9c63 +42995 43333 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c.obj 43911a7604d38830 +44303 44532 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c.obj e829c497b8a5a465 +44569 44616 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S.obj 408f58467ebd6917 +62513 62692 1585440646 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj 8cf647b411f0c8c7 +38195 38224 1585440621 esp-idf/mbedtls/mbedtls/library/libmbedx509.a cec41cc9a3a87882 +16153 17600 1585440601 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 47bafa6cc48a53c7 +67031 67346 1585440650 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj 42e129e9a51de81e +12678 13314 1585440596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj 49dd6c5d51e4598f +66183 66459 1585440649 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj 69b0c4ae97524ea6 +44547 44607 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S.obj 4729322e9f151a37 219 307 1585218959 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj a3bba285750215d0 -218 410 1585218960 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj d96bfafb6f45dd8 -19 101 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -102 124 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -102 124 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -102 124 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -102 124 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -19 165 1585218982 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -165 183 1585218982 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -183 201 1585218982 esp-idf/main/libmain.a e50809bc3b1cf5a6 -201 1231 1585218983 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1231 5135 1585218987 bakalarka.elf 8fe1dd3d033f6afa -5135 5456 1585218988 .bin_timestamp 715a021d8f39a8be -5456 24792 0 CMakeFiles/flash d83eebc13dccbe41 -16 110 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -110 135 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -110 135 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -110 135 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -110 135 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 172 1585219347 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -172 193 1585219347 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -193 1180 1585219348 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1180 5205 1585219352 bakalarka.elf 8fe1dd3d033f6afa -5206 5489 1585219352 .bin_timestamp 715a021d8f39a8be -5489 24805 0 CMakeFiles/flash d83eebc13dccbe41 -18 142 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -142 175 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -142 175 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -142 175 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -142 175 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -18 220 1585219653 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -220 245 1585219653 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -245 1324 1585219654 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1324 6028 1585219658 bakalarka.elf 8fe1dd3d033f6afa -6028 6346 1585219659 .bin_timestamp 715a021d8f39a8be -6346 25717 0 CMakeFiles/flash d83eebc13dccbe41 -0 72291 0 CMakeFiles/menuconfig 52b3e75ddaf121f1 -0 8253 1585220569 build.ninja 1ff6234f96ac208 -38 55 1585220569 esp-idf/esp32/esp32_out.ld 8c63fbe09600b012 -63 213 1585220569 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj 5e53d85948e7e9ad -60 350 1585220570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj 6b085a47fcbea73c -56 370 1585220570 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj 57757adf628f07e7 -37 437 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -56 561 1585220570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 4fcc59e33c441db -213 596 1585220570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 5adf60210421eab7 -59 734 1585220570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj e51851124e48b862 -351 933 1585220570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 20149d7f8f904a11 -437 945 1585220570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 29a60c9a3f5d374b -945 1131 1585220570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj f5941347238563e6 -561 1151 1585220570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 620aeaae2b5db36f -934 1173 1585220570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b024331307d43ac1 -596 1194 1585220570 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 8150fd290267689c -734 1311 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 73eb55c318e7593c -1131 1319 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj b08e3bad677e5e6e -1319 1492 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj e1b38e837b97f7e3 -1173 1568 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj eec509d157560d49 -1492 1588 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj af272ef8ae4dfbee -1194 1634 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj 812cb8e07fef19c8 -1568 1660 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 1577e50976fb2d19 -1151 1681 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 30cdd68daa46c801 -1634 1873 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj f6d250e066717798 -1588 1938 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj bf06441f8e82e460 -1873 2104 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 939c8482350cb653 -1660 2162 1585220571 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b8d01f4cad94fe0f -370 2330 1585220572 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj ab617c1a8d0a9e0b -2104 2459 1585220572 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj ea0eaf5f1d63e3fe -1682 2839 1585220572 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 9b6b7006c3f11791 -1938 3008 1585220572 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 72bc9b6aabff2665 -2839 3120 1585220572 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 37adafe73e9eaf1b -2459 3227 1585220573 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj e2084f9e45d8f107 -2330 3237 1585220573 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 5105a773ef5aa6ad -2162 3278 1585220573 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj f2eb0ba72f4332e -1311 3297 1585220573 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj a04cf172379f7def -3227 3677 1585220573 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj 6064f4f16f7c97ce -3678 3989 1585220573 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj cb4d27aae9c1cbfe -3238 4313 1585220574 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj bcbe7dbb7e325722 -3989 4381 1585220574 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj 515c92f19bb486e -3278 4534 1585220574 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj 8b7300551504b8af -4381 4641 1585220574 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 6fa37e26332b1c12 -3297 4759 1585220574 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 919e8ad01f40d753 -4641 4958 1585220574 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj 627dd85d6337a7dd -4313 5515 1585220575 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj f366ab2b02f940f5 -4534 5635 1585220575 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj f219615cf93bce6b -4759 5706 1585220575 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 69dd4915fa10937b -5515 5799 1585220575 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj d2f85563099220d5 -5635 5866 1585220575 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 6a31e43968ff5152 -5867 6084 1585220575 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 8e38cbac0de40d73 -4959 6095 1585220575 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj f73b5cfb92407c29 -5799 6102 1585220575 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj dbc29a5bbec41aa0 -5706 6340 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj 4b4f7600c7d59898 -6084 6469 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 7769b6d7f0a54bbc -3008 6534 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj a3af968c67ab9c12 -3120 6574 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj cd843719b30eeb20 -6095 6578 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj a225eb6ce43fb9bd -6534 6719 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj e68b1851c640de7f -6340 6767 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 476d585b0bdb9deb -6102 6871 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj f3ae3314e51a3fd1 -6768 7041 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj e45a382f87f6d832 -6469 7046 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 14b3504e24dab81d -6720 7070 1585220576 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj 1af46424c31458ff -7041 7275 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 9b97e17326eeb4f2 -6578 7308 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj cc0534c7a8f27a69 -7046 7637 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj a8769364554740cd -7070 7654 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 766917eabdd8a007 -6574 7672 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 5a190d8071b957e6 -7654 7836 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 40c31b460fdab003 -7672 7856 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj d9ff4450de980d72 -7637 7945 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj d987f94ba57bec33 -7308 7991 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b1abbc269c8675b1 -7837 8091 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 9bb5a701c114bc34 -7275 8166 1585220577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj b16b20888756824 -7856 8246 1585220578 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 6a9d8b5f4ba6cc62 -8091 8290 1585220578 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj 62ab38891f030ec7 -7946 8298 1585220578 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj ee171c25d1d16fc7 -7991 8392 1585220578 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj c15c54b0d535a3d5 -8166 8468 1585220578 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj 9749a3ce0bbc1f42 -8247 8750 1585220578 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_aes_xts.c.obj 3e23693094c1ba56 -8392 8930 1585220578 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/bignum.c.obj 4a609166be5cd2eb -6871 8945 1585220578 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 73728c0b3c8f987f -8299 8950 1585220578 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj 3ef8c07f5770bf38 -8290 9146 1585220578 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_bignum.c.obj 74646d4af8565ce3 -8468 9248 1585220579 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj a1752e16a1ea8bc4 -9147 9333 1585220579 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 5632daab98c1d48f -8950 9405 1585220579 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 3059b0b7c874632b -8750 9792 1585220579 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha256.c.obj b99ef2be1306ff3e -9333 9920 1585220579 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj f9dc81bec0691839 -9248 9930 1585220579 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 1e59c3eb4df2f2d6 -8945 10044 1585220579 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha512.c.obj 6c0a75daf7ea7e35 -8931 10331 1585220580 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha1.c.obj bc883588bc31a39c -10331 10691 1585220580 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj 563b629bab6cf3a0 -9920 10795 1585220580 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 988c6be88ff3acd7 -10691 10930 1585220580 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj a991b5526a6aceac -10795 11109 1585220580 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj 16a2b7a94e230d59 -10044 11115 1585220580 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj fdf13bd768d11fc7 -9405 11319 1585220581 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj b2360ad368b2f2bc -10930 11336 1585220581 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj 2fd500af7243a5fe -11115 11472 1585220581 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj e96fb5532089891d -11109 11529 1585220581 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj 7ec20aae60cf6c97 -11319 11583 1585220581 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj e51bd55a96cba237 -9930 12027 1585220581 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj c421326f74b2ac8 -11336 12094 1585220581 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj de350ce3c8976080 -11584 12356 1585220582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj ee9e8a4c6dd92ab7 -12027 12410 1585220582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj 652970286b569791 -11472 12474 1585220582 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj 6273c4cacb9adf07 -11529 12478 1585220582 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj 77d42a6386fbc655 -12356 12643 1585220582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 77339bf53aea2f30 -12094 12723 1585220582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 556a692629adfada -12723 13015 1585220582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 8cc366d0597a1718 -12643 13021 1585220582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj 3ef55db686511db4 -12475 13033 1585220582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 4129d729ab162a8b -13015 13123 1585220582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj 28531746f777191c -12479 13146 1585220582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 2b0061bb7d6112da -13022 13259 1585220583 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 4d86dbe548c9a429 -12410 13304 1585220583 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 80ff88084e52f45d -13123 13365 1585220583 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj 25b11e69fe40069e -13033 13478 1585220583 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj db785e4a4d702179 -13304 13550 1585220583 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj 653074f99e9cb08a -13551 13766 1585220583 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 7edf8fde86d34f5f -13478 13928 1585220583 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj aefc19da6bdfeaf9 -9792 13948 1585220583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj c052958e4d91e4b5 -13365 13970 1585220583 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj 29f2bb102aea3cb8 -13766 13988 1585220583 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 5448385089a5e08b -13259 14000 1585220583 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b856a6e5a204876f -13970 14183 1585220583 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj a57dddea3cfdaf -13948 14192 1585220583 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 8f0739064d2111fe -13928 14240 1585220584 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj c658d33faa41eccf -13988 14489 1585220584 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj 2c7ecf53a8cb9c73 -14001 14668 1585220584 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 7ab652436f384c5d -14489 14774 1585220584 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj ff954394940372b0 -14192 14782 1585220584 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 5a4f87c2088065fd -14240 14790 1585220584 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b663a3b2bccf3e9e -14183 14855 1585220584 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj de5d38407180587b -14774 14864 1585220584 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler_asm.S.obj d93b790f9d70e853 -14668 14883 1585220584 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj c194966de020c997 -14790 14924 1585220584 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_api.c.obj fa46fd61e114a69b -14855 14954 1585220584 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/dport_panic_highint_hdl.S.obj 25acc6344a70bca6 -14955 15115 1585220584 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj 15906865c02c9425 -14884 15170 1585220584 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/reset_reason.c.obj cfa4be0ea405f93 -14782 15237 1585220584 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 88c5429ac7e7980e -14924 15270 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/cpu_util.c.obj ce8f5360513222d6 -15170 15301 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj 9103b8c85948cf74 -15115 15328 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj 87b7ab78145e3f62 -15301 15443 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj 7df79dfce608d244 -15237 15472 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/cpu_hal.c.obj 102ecd7bf6775de1 -14864 15485 1585220585 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 63599ae4b5f7bc6e -15444 15650 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj 90451c0ab1f76fcc -15485 15773 1585220585 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 9729f133ca994898 -15328 15829 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj 9308a861601af43 -15473 15870 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj 2a8cc13113b45b58 -15774 15889 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj 17df9f7e2b3acb1c -15270 15955 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj d6712532d0d457a9 -15650 15988 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj ff1bf688ceca3b01 -15889 16061 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj ff2d172f09e291a7 -15870 16076 1585220585 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj a953452407fe38f3 -15955 16242 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj 930ee878ebc68233 -16061 16311 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj e2d908a1280d2476 -16076 16356 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj 93d15a4c5fc6ca5 -15829 16398 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj 3a55c388f7323eae -16242 16410 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj 12d104cdc4142f85 -15988 16416 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj cdc4814cd3fbbaea -16356 16546 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj ca877031b9acb682 -16311 16588 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj abd9833b1209a408 -16399 16615 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj 302b90d6cbc282fd -16416 16659 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/soc_hal.c.obj 3888af6445c7d37f -16546 16701 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mpu_hal.c.obj 3f283e59f35ad16c -16615 16739 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj c398ec746880507b -16410 16783 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj 8a9332f103f8a33a -16588 16802 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj c3eb6bd6d9d84da3 -16783 16904 1585220586 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj 783d0c79d1ae9c1e -16802 17263 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj 7a3c9d16b0460aa9 -16739 17353 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj 9dc0432f52b8a829 -16904 17370 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj a16547eb07882d6e -16701 17422 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj 52c6f44b2db9fe4c -16659 17502 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj 33c1b6f3aeda1f19 -17264 17516 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj 411f227e6e277e2f -17422 17533 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj 2c400e461f32d012 -17353 17688 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj 63a67e43d93a99f7 -17534 17775 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj 3f4777eab67e5dae -17370 17798 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj 37f4ae2d1202f68c -17502 17835 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj c1455a4579e8a5b1 -17689 17882 1585220587 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj 92a817c5d823e1d1 -17798 17968 1585220587 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj e2012e8630b1c6d0 -17775 17982 1585220587 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj ef893fed75657227 -17835 18019 1585220587 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj af3c63cb6d556553 -17882 18058 1585220587 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj dbbea780acaed617 -17516 18069 1585220587 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj c63fc5dbac6ff491 -17982 18121 1585220587 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj d5e6bc758a6e69bf -17968 18126 1585220587 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj 7d8103ff645be070 -18019 18137 1585220587 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj d338324988564c61 -18058 18145 1585220587 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj d1de44722f84f3f -18070 18165 1585220587 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj fce760844ebb4f93 -18121 18217 1585220588 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj 1660e6d436922db3 -18126 18225 1585220588 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj 614cb5e812cefd2 -18138 18296 1585220588 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj b68d1ec4d8eb57f5 -18165 18453 1585220588 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj 29de2e665a306b37 -18454 18568 1585220588 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj 17b3efe38e3617e2 -18296 18619 1585220588 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj d7498b9b552fa6b5 -18217 18653 1585220588 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 17c8822bb71b1086 -18225 18833 1585220588 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj 79507c8ef577e5e3 -18146 18983 1585220588 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 979109410e04f4b0 -18619 19029 1585220588 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj 5600f8a091c70d10 -18833 19109 1585220588 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 57ba8996a2eaa210 -18568 19182 1585220588 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj 9d9f5bdb90c688a -19029 19595 1585220589 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 5256ffdf40f76a69 -18983 19670 1585220589 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj 179654b2d598a871 -19182 19962 1585220589 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj d48b4eb6ff82ff5f -18653 20382 1585220590 esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj b14c4d888f13f00c -19595 20565 1585220590 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj bd9ec6e062450dcf -19962 20783 1585220590 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj d5e0546299ee5964 -19671 20928 1585220590 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj c42878fcccf9203c -20382 21644 1585220591 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj dc32daafe861024c -20565 21734 1585220591 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 35a01ab84f5bb4e8 -20929 22176 1585220591 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj db0fdbd7b646c762 -21644 22534 1585220592 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj bbc08bc96e7b25a7 -22176 22646 1585220592 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 72f8ecf726a7fae0 -20783 22741 1585220592 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b57b4fec865631e7 -19110 22768 1585220592 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 4ce3da35f990a752 -21734 22953 1585220592 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj c5632da65dc0ffe5 -22534 22983 1585220592 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj caedd5ff754abe13 -22983 23356 1585220593 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj aaa94d714e9ad896 -22768 23703 1585220593 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 579b1110a728b0fe -22953 23845 1585220593 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj f3495d9c873cc11c -23356 24038 1585220593 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 70450d59c9999151 -23703 24457 1585220594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj adc85a1c6fc74dbd -23845 24630 1585220594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj d1813da7dc5a8553 -22646 24767 1585220594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj eb6571abe5b624c -24039 24941 1585220594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj 162421fe10f1a595 -24457 24994 1585220594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj d5202f55b0839f32 -24630 25078 1585220594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj 8b43857304f0f4b3 -24767 25156 1585220594 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj a1edad39e8cdc091 -25079 25436 1585220595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 39aaa31f66c5a298 -22741 26029 1585220595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj cbcf57c5c6e9332 -25157 26051 1585220595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 87c41747bceff9ee -25436 26102 1585220595 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj c60d9d921271099e -24941 26374 1585220596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj ecd40bf9fabd7784 -26030 26519 1585220596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj e5b55f2c6b5f39f7 -26051 26541 1585220596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj 6c8c1cc49e3ae20e -26103 26787 1585220596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 392a3478c7dc44a3 -26541 26875 1585220596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 2d4c80b7856db686 -26519 27036 1585220596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 8f8f73c3d1f3b327 -26374 27101 1585220596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj f323c15826d0b280 -24994 27118 1585220596 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj 7c390c15e23d2704 -26787 27324 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj 9b36f8fe69e7761b -27118 27457 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj 90c9a3efb58be2f -27101 27472 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 17d78e7cdcd41501 -26875 27558 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 54d871bc662d8b93 -27036 27621 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj 390c57d91cfb67e7 -27558 27708 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj a3af104b90b5231a -27324 27726 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj 54bddcfaa79e3506 -27457 27787 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj 56cdc2f4252454d1 -27473 27840 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj a1b6a90e645580f2 -27708 27844 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj 31260c3aecd004e8 -27726 27883 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj 6a5f09c6bfb92865 -27883 28083 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj fc74de41ec555ad9 -27787 28135 1585220597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj e308e3da6a0ed128 -27622 28299 1585220598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 18530610988ddd11 -27844 28558 1585220598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 6f66ad87d21690a1 -28299 28651 1585220598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj d8c6744c9cc4c780 -28136 28654 1585220598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj 486c094c1982ad19 -28654 28821 1585220598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj b63478115c5bbfd5 -13146 28882 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -13146 28882 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -13146 28882 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -13146 28882 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -27840 28950 1585220598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj 49dd6c5d51e4598f -28083 28962 1585220598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 767943c614345a1d -28822 29330 1585220599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj b8bc260091d71903 -28651 29379 1585220599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj 5458b43f470d9ee8 -28558 29517 1585220599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj 7031bebde3d1fac7 -28962 29529 1585220599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 1054d2f8ec3dffc7 -28883 29553 1585220599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj 39d64f2ad495303 -29330 29636 1585220599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj 1a0e09abb598049f -29553 29945 1585220599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj 41cfa15f86587e19 -29529 29976 1585220599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 483bfb4eab03e6aa -29636 30111 1585220599 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj 23e11a46290371a6 -29945 30274 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj ea8f61a53d391fa8 -29977 30382 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj a39fe3c82e29d4d1 -30111 30512 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj 96507abbf32a17a7 -29517 30527 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj 98e16976c8a48268 -29379 30677 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 34caa37341fd31b4 -28951 30707 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj bf63ad0d92a4c6eb -30274 30897 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj 1d16cd65a1fd42dc -30528 30997 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj e25568a543fd01fe -30382 31060 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj bd96bcfd10a93c1 -30512 31108 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj f653b907ddb5efa6 -30707 31201 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj 8b4b169a09eacd5d -30678 31214 1585220600 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj 3b32ed2a1367983c -30897 31240 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj 4694aa91c967c051 -31201 31448 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj db8eae0be7befb5e -30998 31472 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj 105c8465fffeeaf -31214 31505 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj f82fb5127beb33d2 -31448 31599 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj aa6e32bbf60ae965 -31240 31808 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj ed773ca4350acb97 -31600 31826 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj ea78ddbf1d04a8cc -31108 31861 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj 29743f81b591c7a4 -31472 31883 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 17da43368a4b666d -31505 31895 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 6a78f22896fdf5eb -31826 32159 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 509b21db3123f698 -31861 32200 1585220601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj d12d67e318af0586 -31809 32249 1585220602 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 7f297422df7da627 -31060 32459 1585220602 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj 1f397e451cb774fc -31895 32630 1585220602 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj a8aae163c70d0df0 -31883 32723 1585220602 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 1e4f1a9264a9a893 -32159 33097 1585220602 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj d7170eff8de976d1 -32249 33542 1585220603 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj 74a44b3e0940c2 -33542 33850 1585220603 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj cc772de4544f40b2 -32200 34133 1585220603 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj 5c2cde4546276322 -33097 34685 1585220604 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 5f52ae7f8dab3dca -32630 35223 1585220605 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj e28cd8d47756f0 -32723 35702 1585220605 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 11759b1956623d8c -32459 35944 1585220605 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj 61f97fde6e32a08 -33850 36740 1585220606 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj 5f928f73311093f0 -34685 36914 1585220606 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj 53e9e30b40eb25f9 -36740 36964 1585220606 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj 851babb53a5a349f -36964 37253 1585220607 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 53ca2d5e57280b97 -34133 37428 1585220607 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 80faa7a46b0120fc -36914 37472 1585220607 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj 31129163c6fa8bcd -37254 37706 1585220607 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj f3f8c5ce569f7ada -35702 37794 1585220607 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 1f50ff982a173be1 -35224 37896 1585220607 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 47bafa6cc48a53c7 -35944 37908 1585220607 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj d2e3cac4a9b21f66 -37472 38001 1585220607 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj be0636faf4db39cd -37706 38271 1585220608 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj eae37e074555e393 -37896 38297 1585220608 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj e84f19c8cb1b96e4 -37428 38392 1585220608 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj 89a4265024c628cf -37794 38427 1585220608 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj abfe8d8e1fb3afdc -38297 38664 1585220608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj cf7af956263e8b8f -37908 38727 1585220608 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj c9b8cc3df3d94c07 -38271 38871 1585220608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 13d808216093d732 -38664 38972 1585220608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 83649dec8a732855 -38427 39006 1585220608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj d0b7927b8ab0104e -38001 39165 1585220608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj e380d062e201769f -38872 39304 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj 577b62906c8a3e7d -38973 39307 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 1735022ecac1b951 -39006 39459 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj ecfb975dc192ca61 -39165 39515 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 9d3ab4dd77b7167a -38392 39526 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj e512427ef21e22ca -39304 39669 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 4d0caca18245133e -38728 39966 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj 7f83189e36467e49 -39526 40025 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 336dca2aed7bfdb2 -39516 40041 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 33b8e2ab6ab9d74b -39459 40082 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj cb4f1db05aaba428 -39966 40197 1585220609 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 3bd0b2a58c2bff52 -40042 40538 1585220610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 556e9711b484ccfb -40025 40542 1585220610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 4396063447d8a1c5 -40197 40546 1585220610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 6f8e56bcc948d49 -39670 40576 1585220610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj e8806157210c4a95 -40082 40586 1585220610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj c0e9c49c6f00cd8b -40546 40769 1585220610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 79bdcd2ec31af5e7 -40538 40771 1585220610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 9972798a0051c520 -40769 40952 1585220610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj ef3cedb52e3f6786 -40586 41186 1585220610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj e63c116cb56fba4a -40576 41396 1585220611 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj e1acfa369cc96352 -40542 41669 1585220611 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 67bb18b594e109d4 -41186 41758 1585220611 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj b1c2f31a5ad2945e -39307 41807 1585220611 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj fde02ce432e66fae -41758 42060 1585220611 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 6c13954ae5c00eed -40952 42174 1585220611 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj c5d4549662610d5 -40771 42267 1585220612 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj fade4a1edc9f0f96 -42175 42609 1585220612 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 8ce37f621eb9386e -41807 42788 1585220612 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 50c8912980e73ff3 -41669 43057 1585220612 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 8a5d43871eac97f4 -42267 43139 1585220612 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj bb60e82ed574f99d -42610 43200 1585220612 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 7bc8574675197530 -42789 43282 1585220613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj e314b9a35f4d0037 -43139 43343 1585220613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj c0e84898ade4229b -41396 43398 1585220613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj d802474ade654a1a -43058 43412 1585220613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj e8974ff718de6bd7 -43282 43617 1585220613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 1ba31e6710d4882d -42060 43681 1585220613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 8c17e5b31dd96f0f -43200 43686 1585220613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj b3515ff52023ed83 -43343 43702 1585220613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 47eddb4edc32e9d3 -43618 44096 1585220613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 634e49d8285dd6c9 -43412 44119 1585220613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj b29b9f01bc6218dd -43681 44260 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 7263fc09734a5790 -43398 44343 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj bef09bc64a1b42f6 -43702 44407 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj 20cf6a79fb7fb9dc -44119 44512 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj c25157fc13735247 -44261 44520 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 85ae330c0ee32c12 -44096 44530 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 771b807e11f8340d -44343 44584 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj 23480ceb1f263a3e -44512 44645 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 6db536946d4d31ad -44407 44736 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj 96093a349c709750 -44520 44798 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj f749bcc165837691 -44584 44849 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj 5889ae3ad146784e -44530 44860 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj d0e66fbc898d25a5 -44645 44886 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj e7c3444eb66231ef -44799 45083 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 9f8eea5345f6b0e4 -44850 45137 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 4de30b077d0583e1 -44860 45161 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 811b681e37787174 -44736 45177 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj ab8bc35a79c5e78e -44886 45186 1585220614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 15524cfa6d5673e7 -45083 45402 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj e3c651fccf8954b4 -43686 45445 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 47b7d5913f3c64a6 -45186 45449 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 615fc87f3c3f6a8a -45177 45536 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 635ce36b45669c07 -45403 45568 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj 7123e9fd03b086a6 -45138 45574 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 79c68902a7fcd46b -45449 45591 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 9d62b9dbba5c2c28 -45161 45609 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 2018746af2567636 -45536 45738 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 4298e5baf4d8c480 -45445 45762 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj d15920c299aaeaa -45568 45834 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj 2272bece4ce53f85 -45574 45893 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 2d493aba99a77003 -45609 45902 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 2d761c4e64017e62 -45591 45979 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj ab3940556b4ae489 -45762 46105 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj 44916de880e45d3b -45738 46169 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj fbd1f7eedb3a05c4 -45834 46201 1585220615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj dd0b65e4885c015 -45980 46261 1585220616 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj 26a9601ec2600d66 -45894 46318 1585220616 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj 332d026e324c4930 -45902 46346 1585220616 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj cfef06aebc3e3b0f -46105 46383 1585220616 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 33dfd192546c2f97 -46169 46451 1585220616 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 8475b11c18a5b94d -46201 46650 1585220616 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 8f7c82b032070b98 -46261 46934 1585220616 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 902688992b39eeb -46319 47033 1585220616 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj a08c6a8eedb203f2 -46383 47040 1585220616 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj c00408cfda051306 -46451 47232 1585220617 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj 4f6c98e632707eb4 -46346 47378 1585220617 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 2100604b1035a5c1 -46650 47463 1585220617 esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj 75c511ee5b0bab3d -46934 47762 1585220617 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj 9a19feffde4168a6 -47033 48160 1585220617 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj d338213d481b02f0 -47762 48333 1585220618 esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj 5ae287ce163eb22f -47040 48701 1585220618 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj b6998a1f1d5b1c9e -47463 48861 1585220618 esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj 86b8b633b78a24ca -48701 48903 1585220618 esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj 18ae6a8ffc476f28 -48861 49049 1585220618 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj 3eb587fd8ed0a9be -47233 49374 1585220619 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj cdf30f7e92ca0d33 -47379 49427 1585220619 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj 81c311aadc3fd67a -48333 49476 1585220619 esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj 501f4c45117fe01a -49049 49530 1585220619 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj 64f5eff0b7e388d9 -48903 49758 1585220619 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj bf6f2b3cb1cc4ea7 -49374 49807 1585220619 esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj 7534d43cb27a166e -48160 50055 1585220619 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj e99bf8196316f125 -49427 50357 1585220620 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj 40d2859175d530cf -49530 50446 1585220620 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj 17919c541a9d0ebc -49807 50471 1585220620 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj e96fc583988b5ade -49476 50869 1585220620 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj 4f96eac3f9e1f4e0 -49758 51177 1585220620 esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj 39acc43e17bc399 -50471 51262 1585220621 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj 54f91e3bb4f35712 -50446 51505 1585220621 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj 23bbec983db7100 -51263 51806 1585220621 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 97362a1088b6f67c -50870 51807 1585220621 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj 7d1742177fae65bb -51506 51847 1585220621 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 8b2f4f9940484ddb -51808 52077 1585220621 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 40dfa11f1feb5b20 -51806 52079 1585220621 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj dab6091bc01cb6c -50358 52148 1585220621 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj 4d8fa278be168fce -51847 52222 1585220622 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj 4265fd63be1e61ae -52079 52289 1585220622 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 707f879fed825658 -52077 52308 1585220622 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj da216bb7545b2a0c -51177 52353 1585220622 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj cc9dbe77cd37dd60 -52148 52431 1585220622 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj db2bda8711352316 -52222 52476 1585220622 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj d68a706dce5c1214 -50055 52639 1585220622 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj 859a78cf48b35d2e -52308 52787 1585220622 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj 8be06a60b2c208fa -52354 52818 1585220622 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj dce2d4af8d66e9b1 -52476 52828 1585220622 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj f3b09dafc2279a9 -52289 52974 1585220622 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj efd679088e15fab5 -52639 53121 1585220622 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj 1366150fbc1992c6 -52974 53209 1585220622 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj dd43e713ad2ee254 -52431 53329 1585220623 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj 9054a83e111c6e03 -52828 53408 1585220623 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj ab97a840cdbd0483 -52789 53436 1585220623 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj 92611242234b4037 -53121 53554 1585220623 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj 6591e07bb725b88f -52819 53568 1585220623 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj 3568da11267d93f -53569 53700 1585220623 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err.c.obj 394ce3fec6ec56ce -53408 53706 1585220623 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj 96ffc18083f4d5a0 -53329 53796 1585220623 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj dfd56f1a9ae11cc4 -53554 53862 1585220623 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj 820ad4d92fc9ebdc -53209 53949 1585220623 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj 4109da51c340ffea -53700 53960 1585220623 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj ffbe490ba865255 -53796 54094 1585220623 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj 20732dbdf6bafdb0 -53960 54219 1585220624 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj 51e1726fa176beff -53863 54224 1585220624 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj f721e23b6f442720 -54095 54274 1585220624 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj f4d4ff991b2b8da5 -53707 54371 1585220624 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 1e9aa4a44f4eb9c5 -54224 54463 1585220624 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b5acabc7084e2982 -54219 54526 1585220624 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj a0a789c8d266405d -54526 54603 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj b62a8c361cf41e20 -53436 54628 1585220624 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj 3c51dfa0d6e67fe6 -53949 54652 1585220624 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 72d4123064a034f4 -54274 54668 1585220624 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj bfa1eb8b238e25b5 -54604 54738 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj 4380aa60d7ecb4af -54464 54765 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj b6b27581006b9649 -54628 54833 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj c126678295a0b181 -54652 54841 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj 83fc2d72d8ad9582 -54738 54842 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj ae08d9a2a49512a7 -54765 54871 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj ddb73ac753f08268 -54372 54909 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj d6e491ed748fa4c4 -54668 54944 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj 5a63ea3680b3ee6a -54833 55095 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj 9bda50b0ef210b77 -54841 55097 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj de26f7a71e6bd1fd -54872 55160 1585220624 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj 4a00f00b17b062b0 -55095 55195 1585220624 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj 10213c4b563eaebf -55195 55400 1585220625 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj e920ca8ee03a2b44 -55160 55524 1585220625 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj b38d266c76cde2ae -54843 55556 1585220625 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj bb0c30ba3bf721d5 -55400 55660 1585220625 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj 8a80f314e6cc154a -55556 55740 1585220625 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj bb05141dc784637c -55524 55757 1585220625 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj ff7afc5ba7bab41f -55660 55928 1585220625 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj 1395c73602d0312 -55740 55985 1585220625 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj c94da83c0e25435 -55097 55988 1585220625 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj a6ebca211b2a7ab9 -55758 56009 1585220625 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj 1db1bc21ea98a0f2 -55985 56114 1585220625 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj b361c982f91bcf46 -55928 56146 1585220625 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 9d0f2c9de6f746c -56009 56239 1585220626 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj e5ba6daee3fe69aa -56114 56310 1585220626 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj 18736c5f9f3637a2 -56146 56349 1585220626 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj 41f4f556f1909f8f -56240 56613 1585220626 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj fc1713e8b0209c43 -56349 56692 1585220626 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj d74a4c9c79b4ac58 -54944 56721 1585220626 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 56f0a8ed35add288 -55988 56793 1585220626 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 2a1556cdc96337cc -56613 56946 1585220626 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj 12eed60425fd665b -54910 57047 1585220626 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj 8e48beebea188ef3 -56721 57075 1585220626 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj c8e0fb28b5b5e23c -56692 57202 1585220626 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 9d7477055e5648dc -56310 57309 1585220627 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj fb7a8af422402899 -56946 57334 1585220627 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj 71c80e7c70ec8c52 -57334 57486 1585220627 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj 24f0d34456b74a65 -57310 57582 1585220627 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj 1ee6226dffa8f490 -57202 57650 1585220627 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj 5b1c9d7760ab8b1e -57075 57675 1585220627 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj 765de8f82152873a -56794 57704 1585220627 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj c4303ecfa4dda4d2 -57582 57759 1585220627 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj 9e509cf86c24478c -57486 57833 1585220627 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj 44cb918d96c29c1 -57651 58243 1585220628 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj c087ac416aa084ec -57705 58393 1585220628 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj c2b6a0def2140719 -57047 58425 1585220628 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj 5151e6f485fda92c -57833 58699 1585220628 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj 37aec9588b0b98b4 -58699 58959 1585220628 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj e700c98cc4b5b57c -58393 59155 1585220628 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj d684f1aaa3ef4fef -58425 59199 1585220628 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 713d6119721d556f -58244 59205 1585220628 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj a8ef0e7c0c7ec6d3 -58959 59268 1585220629 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj 9a6f02a1bfb15382 -59205 59467 1585220629 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj c956d42bf1e6eee1 -59199 59709 1585220629 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 49de941a8fdd7369 -59467 59770 1585220629 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj fa774017de65ef7b -59155 59779 1585220629 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj e9c0ac3af2619026 -59779 60254 1585220630 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj d506c00f4561493a -59770 60308 1585220630 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 1362475d4a45ec43 -57759 60616 1585220630 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj 2f942485126681e1 -59709 60636 1585220630 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 85b0ac563ecd13e8 -59269 60649 1585220630 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj ade113e84032744e -60255 60669 1585220630 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj ff455323944b947b -60670 60902 1585220630 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj 1591b1b498aaf318 -60616 60985 1585220630 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj 49d3279ab0e2e2d9 -60649 60992 1585220630 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj e32cde81f33948f -60636 61001 1585220630 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 3cf8b0690a27d0a7 -60992 61028 1585220630 esp-idf/ulp/libulp.a b5ba4f97522c9ec3 -60309 61060 1585220630 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj e8eaf732e043d3ac -57676 61066 1585220630 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj 7a444a39fb81f014 -61060 61085 1585220630 esp-idf/esp_http_server/libesp_http_server.a 8ebd1da8c170e991 -61086 61103 1585220630 esp-idf/esp_http_client/libesp_http_client.a 4ffd10c652f4da0e -61103 61127 1585220630 esp-idf/tcp_transport/libtcp_transport.a ea2beb8be5ea9cac -61127 61143 1585220630 esp-idf/esp-tls/libesp-tls.a 31affc00a434415b -61143 61178 1585220630 esp-idf/nghttp/libnghttp.a c621045d4dc2c2e9 -61178 61201 1585220630 esp-idf/app_trace/libapp_trace.a b631249a9244a40a -61201 61221 1585220631 esp-idf/cxx/libcxx.a a50eeb7ca8b482fd -61221 61248 1585220631 esp-idf/newlib/libnewlib.a 855580b12edfb31b -61249 61272 1585220631 esp-idf/vfs/libvfs.a 49e38bc49dfb99ad -61273 61302 1585220631 esp-idf/freertos/libfreertos.a 8adaa22c425c727c -61302 61326 1585220631 esp-idf/esp_timer/libesp_timer.a 33b8c301002404d9 -61326 61350 1585220631 esp-idf/esp_common/libesp_common.a adf28ed1f2e8ebd2 -61350 61400 1585220631 esp-idf/esp32/libesp32.a 5ecf3157bee85aa5 -61400 61420 1585220631 esp-idf/perfmon/libperfmon.a b74d9df8a26398f8 -61420 61442 1585220631 esp-idf/espcoredump/libespcoredump.a 61e4a4fb412fae8c -61442 61463 1585220631 esp-idf/pthread/libpthread.a 3a7af1abd593645d -61463 61516 1585220631 esp-idf/driver/libdriver.a 5cd66d74d6544f4f -61516 61538 1585220631 esp-idf/esp_ringbuf/libesp_ringbuf.a 52142642e68b28d5 -61538 61562 1585220631 esp-idf/heap/libheap.a 651625a391e6c741 -61562 61583 1585220631 esp-idf/log/liblog.a 1274d7808513dadc -61583 61648 1585220631 esp-idf/lwip/liblwip.a cfc5b7a574b9e094 -61648 61675 1585220631 esp-idf/esp_wifi/libesp_wifi.a effb86670d9970ec -61675 61706 1585220631 esp-idf/nvs_flash/libnvs_flash.a ae6808df23dc8a0b -61706 61772 1585220631 esp-idf/wpa_supplicant/libwpa_supplicant.a 934adf958a664c37 -61772 61795 1585220631 esp-idf/esp_event/libesp_event.a 3706ea83ed15eb7f -61795 61822 1585220631 esp-idf/esp_netif/libesp_netif.a 9b9a8a1d361dc99f -61822 61845 1585220631 esp-idf/tcpip_adapter/libtcpip_adapter.a d3f10370c7462d1e -61845 61873 1585220631 esp-idf/esp_eth/libesp_eth.a 80e079e349f37dcc -61874 61896 1585220631 esp-idf/soc/soc/esp32/libsoc_esp32.a 5535786e5680a71 -61896 61939 1585220631 esp-idf/soc/libsoc.a bdb543765a75c368 -61940 61964 1585220631 esp-idf/esp_system/libesp_system.a 2059c603ec302120 -61964 61992 1585220631 esp-idf/spi_flash/libspi_flash.a bd64ee73ae26c95c -61993 62013 1585220631 esp-idf/app_update/libapp_update.a 629b42f69c26dd2b -62013 62041 1585220631 esp-idf/bootloader_support/libbootloader_support.a 81bd485cf13f5f2f -62042 62064 1585220631 esp-idf/efuse/libefuse.a 8b73fc3e19818359 -62064 62097 1585220631 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 48870cf31bc57c21 -62097 62146 1585220631 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a ba9822d5d40cb5ce -62146 62173 1585220631 esp-idf/mbedtls/mbedtls/library/libmbedx509.a cec41cc9a3a87882 -62174 62391 1585220632 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj 4ff4468879b463b -62178 62411 1585220632 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/esp32/trax_init.c.obj 1e6b1b8dc6601e4e -62174 62426 1585220632 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj 41e6898ed1bc5f1b -62177 62447 1585220632 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj 2f309274117d0c08 -62181 62540 1585220632 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj d8bf29ee2734cde2 -62392 62552 1585220632 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj 91d393ea06dd3512 -62540 62591 1585220632 esp-idf/mbedtls/libmbedtls.a 20f83969fcd73776 -62411 62614 1585220632 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj b00e0a354136e15b -62593 62664 1585220632 esp-idf/xtensa/libxtensa.a 39c97242db240995 -62615 62726 1585220632 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj 3bf0177c6f65799f -62553 62773 1585220632 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj deac31bc73c5ee1a -62664 62991 1585220632 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj 6f01aa75e1d2e488 -62426 63016 1585220632 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj 26b0137932b9755b -62727 63389 1585220633 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj c3669caed55c3d13 -63016 63434 1585220633 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj f97d3a67764aada5 -62447 63496 1585220633 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj f09de5fa975c8dfe -62773 63674 1585220633 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj df393e94294e1129 -62991 63749 1585220633 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj 31dd1bd388e97df7 -63434 63779 1585220633 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj c6b9f758af428cc7 -63749 63880 1585220633 esp-idf/cbor/libcbor.a a95ad5cc568fa046 -63674 63895 1585220633 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj ff178f4cfcd8bf73 -63390 64132 1585220633 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj a211b752d499d287 -63780 64178 1585220633 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj 5030558c6f6c36d4 -63880 64430 1585220634 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj d216d26246db22f1 -63895 64498 1585220634 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj 20c789316bcfbc08 -64430 64714 1585220634 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj ce351ace95fec134 -63496 64806 1585220634 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj 158af1b535b2db36 -64133 64841 1585220634 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj 2fd43b4877ff2e02 -64179 65215 1585220634 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj aa668b63c113b113 -64806 65234 1585220635 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj 4418a95749233797 -64715 65526 1585220635 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj 7a86b5521f36268d -65215 65617 1585220635 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj d67c5099e4246b75 -65617 65905 1585220635 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj fc6356ccb6a8853f -65906 66266 1585220636 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj ec2ebaeb338d11f0 -64842 66273 1585220636 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj f7ed387f54a38e44 -64498 66297 1585220636 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj e04671b07da484f1 -65526 66334 1585220636 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj a8b921496ea192fb -65234 66421 1585220636 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj 7f9e73c1ed300700 -66421 66675 1585220636 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj cf8d693130622701 -66334 66682 1585220636 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj a4bb384907bfc443 -66298 66843 1585220636 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj d4f5b287b54a3c43 -66273 66859 1585220636 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj c0e6f889c5a97127 -66675 66867 1585220636 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 6dc2aa1249423b76 -66682 66908 1585220636 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj 7d8dff5abf2c7103 -66843 66971 1585220636 esp-idf/esp_adc_cal/libesp_adc_cal.a 321a66f17fd37eef -66908 66976 1585220636 esp-idf/esp_gdbstub/libesp_gdbstub.a 17fa000c0dae215f -66859 66992 1585220636 esp-idf/console/libconsole.a 2633ce91f5d7cfbc -66992 67152 1585220636 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 5870011e5c57795a -66867 67201 1585220636 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj 8cac2adf84d73e55 -67201 67266 1585220637 esp-idf/esp_https_ota/libesp_https_ota.a fefb0d1df4e90f1e -67152 67413 1585220637 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj b5fe994343abd2e -66974 67503 1585220637 esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj afc83e823cb63ffe -67503 67575 1585220637 esp-idf/esp_https_server/libesp_https_server.a ebdd02b3e26beb0f -66266 67596 1585220637 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj b69597b97d3cb830 -67413 67639 1585220637 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj 3b8e3b92c3604e29 -67266 67654 1585220637 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj d8b13b07bec7c003 -67596 67738 1585220637 esp-idf/coap/libcoap.a 44ce67ee174d4c41 -67654 68015 1585220637 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj 9464fe2676084870 -67739 68101 1585220637 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj b154c0a48629be5d -67575 68128 1585220637 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj f0db0f1663453c8c -68015 68190 1585220637 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj b68f87ac68d3c486 -68101 68632 1585220638 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj b560ca64e20196f4 -68128 68836 1585220638 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj 85a610e2057e822f -66977 69122 1585220638 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj d119b991363a8fd -68836 69192 1585220638 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 90e7afa905c062a -69122 69196 1585220638 esp-idf/protobuf-c/libprotobuf-c.a f493e1ef2b08a025 -68632 69285 1585220639 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj ab8a934c142ad7ae -69196 69304 1585220639 esp-idf/protocomm/libprotocomm.a a24354d090c61c70 -68190 69361 1585220639 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj 1ff5446daf382c65 -69192 69705 1585220639 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 4a3f799b74144365 -69361 69731 1585220639 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj ca03177b1a43ea13 -69285 69744 1585220639 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj bcb8e8d8aa07b7cd -69304 69873 1585220639 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 9a086305f031f58b -69705 69927 1585220639 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj c1dc9b74cd464a15 -69744 70327 1585220640 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 572d0ba8df5d020e -69873 70538 1585220640 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj e0cb79d09b2cb159 -69731 70591 1585220640 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj bd8f20d1f0c5bbd2 -69928 70603 1585220640 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj aa578e42f9be6a86 -70591 70688 1585220640 esp-idf/sdmmc/libsdmmc.a 606b34034bb47675 -70327 70767 1585220640 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj ae1eb731b2cff3d0 -70767 71014 1585220640 esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a c887be8cb213e66c -70689 71085 1585220640 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj f22a6e962f71fda1 -71014 71322 1585220641 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj 9abcec7cdf265542 -71086 71427 1585220641 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj a4fcdafe6a6f3a04 -71322 71707 1585220641 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj ed354ad7932f627d -70538 71720 1585220641 esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj 9c0fd2ba8dc408df -67639 71838 1585220641 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj e7a9b92aae399379 -71720 71840 1585220641 esp-idf/esp_websocket_client/libesp_websocket_client.a 518e2577c9404339 -71838 71937 1585220641 esp-idf/mdns/libmdns.a 9e64c996f85b3dcf -71427 71967 1585220641 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj ceb1125b87df0301 -71937 72093 1585220641 esp-idf/esp_local_ctrl/libesp_local_ctrl.a 2b6d82bc97e55a06 -71840 72251 1585220642 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj f63896555ae6e124 -71968 72412 1585220642 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj abf72aabc7b0ca24 -72093 72467 1585220642 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 80ef5d78aa0b037 -72251 72608 1585220642 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 70935edbf864953a -72467 72709 1585220642 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj 33c5f29f99ac3c8e -71707 72718 1585220642 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj ac7206a89d348f62 -72718 72787 1585220642 esp-idf/wear_levelling/libwear_levelling.a 8ffc856a1c7bda8e -72608 72858 1585220642 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj 51da619fdf271782 -72858 73363 1585220643 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj 9f8e58ee3ba3bf74 -72787 73373 1585220643 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj 711bc61f6f0b486c -72709 73460 1585220643 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj 629d2aaace6094ec -73373 73699 1585220643 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj b1dd74aa655abbdd -73460 73884 1585220643 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj 345c4e46c30e44d4 -73364 73896 1585220643 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj f08854b60ace5ab7 -73699 73941 1585220643 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj 7cdc4c1411546151 -73942 74246 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj 6fd15834bc0e5dd7 -72412 74398 1585220644 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 89e8f39ba6501e65 -70604 74410 1585220644 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj 89474d8a15ca19e3 -73884 74426 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj acd0c427e5fe89ef -74398 74504 1585220644 esp-idf/fatfs/libfatfs.a d1d56c91828b233 -74411 74522 1585220644 esp-idf/expat/libexpat.a 2f48a09ddd2977e8 -73897 74542 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj 3af87427c190f5e0 -74246 74586 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj 4942da8c06074142 -74426 74594 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj 71f5b2b3c27cb015 -74522 74715 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj 7ba3837661953c26 -74505 74844 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj 162ecfb45450315a -74594 75016 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj 27568f8bf5b15b0b -74543 75071 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj 664b5ae299a869c5 -74587 75089 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj 853af9cddea3ef9f -74716 75098 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj f1d0bde7eb738bdf -74845 75194 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj f100a268baaadd38 -75016 75197 1585220644 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj 4d406265a90cfda2 -75098 75362 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj 5a7b0f2fbafa543a -75194 75370 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj 29b8cb18b001ef6d -75071 75428 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj 8cf34674e3e9546d -75089 75499 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj deb6d4f7f478a26a -75197 75548 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj 3fcbb1cf3b2882b8 -75370 75642 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj 50f45e2322e5c55f -75362 75656 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj a5dffd5f3e947339 -75499 75733 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj a078218bf69573e0 -75548 75801 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj e0cbeaf10e38d5de -75642 75816 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj 2a02c7b2f62b14de -75428 75850 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj 242eb8122309f5e8 -75656 75918 1585220645 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj aae3a4a20ed5ede5 -75850 76047 1585220645 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj 485ab61fb1169a7e -75816 76054 1585220645 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj 2a7064896d44c91f -75918 76148 1585220645 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj a36b3d96bc913085 -76054 76165 1585220645 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj c24f2597976d6ac3 -76148 76295 1585220646 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj f3562a37dfc2c3f9 -76047 76310 1585220646 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj 59b1a66aa08b64d6 -76165 76435 1585220646 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj e071d01350af156a -75733 76454 1585220646 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj ff1b4db2a3dffdd2 -76295 76496 1585220646 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj e7033fa879b68863 -75801 76520 1585220646 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj 9bb297ba606ec3f4 -76310 76552 1585220646 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj cd618e36b77f8ca2 -76436 76586 1585220646 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj 84c5f947aa7c40ea -76520 76684 1585220646 esp-idf/freemodbus/libfreemodbus.a ff1b2ecc7df2affc -76586 76766 1585220646 esp-idf/libsodium/liblibsodium.a bb822b24df56465d -76552 76888 1585220646 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 8608bc10135ef02 -76766 76943 1585220646 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj 621a72bd8ed4958d -76684 77136 1585220646 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj dcb63d57734e9c63 -76496 77253 1585220647 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj 87a2d5e1fc5df551 -77136 77378 1585220647 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj fa80b5ea9032e9aa -76888 77400 1585220647 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj a437ea867e2de563 -77378 77507 1585220647 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj d84e67b9536abc4 -77254 77554 1585220647 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj 48c722fc51154ad9 -62189 77638 1585220647 esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj ced96d88be2d2fba -77400 77679 1585220647 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj 2829bf3d0e3e1831 -77507 77695 1585220647 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj c485d1f53862c4ab -76454 77744 1585220647 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 34e4f57d4e995885 -76943 77881 1585220647 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj 21a99b9fd5d18414 -77638 77938 1585220647 esp-idf/asio/libasio.a 62a13e711bc33278 -77695 77942 1585220647 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 9c918e488f0b4333 -77744 77942 1585220647 esp-idf/mqtt/libmqtt.a 4b234aa7654b545c -77882 77956 1585220647 esp-idf/openssl/libopenssl.a dd8fd619cead68da -77680 78142 1585220647 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 6983e292af2f0d8 -77554 78526 1585220648 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj 1a79450b2d108418 -77942 78568 1585220648 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj b5592ea701ee6798 -77939 78847 1585220648 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj d58afb73471a712b -78569 78935 1585220648 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj e09bb6de59a31e7e -78526 78961 1585220648 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj d620c2d3b69fad15 -78142 79010 1585220648 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj 48dddb2d50ae04db -77942 79124 1585220648 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj 5798fb22062a0645 -78847 79372 1585220649 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj 9d5ba6d3fd5170f0 -78935 79394 1585220649 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 49a54dd4b4294f89 -79373 79490 1585220649 esp-idf/unity/libunity.a ffbd91855b17061e -79010 79720 1585220649 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 25380c247de24162 -79124 79733 1585220649 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj 6200e76ca3d0f74d -79733 79896 1585220649 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj 5bcad2caeebac799 -77956 79938 1585220649 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj c3fe7e01dac0e94f -79395 79957 1585220649 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj cc01b08d89ca2a70 -79491 79983 1585220649 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 8bba0d72acb2560 -79939 80031 1585220649 esp-idf/spiffs/libspiffs.a 3977dd0f919f2d3a -79896 80138 1585220649 esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj 2b4b3a1bcf6c4f61 -79720 80164 1585220649 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj f8d791db34a2a592 -80138 80282 1585220650 esp-idf/files/libfiles.a dc77d04f5b6e0879 -79984 80420 1585220650 esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj 49d7414e80ec5115 -78961 80458 1585220650 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj d0bd079cd392e22d -79957 80557 1585220650 esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj 214374bbb1ac680d -80458 80572 1585220650 esp-idf/wifi_provisioning/libwifi_provisioning.a e2c7ff7a52f6a2dd -80558 80588 1585220650 esp-idf/ca/libca.a 3b311f6ce51ffc82 -80032 80647 1585220650 esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj a28b135a45df7a95 -80647 80680 1585220650 esp-idf/cmd_nvs/libcmd_nvs.a 1b7bb0daa3755fe0 -80282 80706 1585220650 esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj d67807718f820db3 -80706 80730 1585220650 esp-idf/wifi/libwifi.a 318bc43937909b13 -80164 80732 1585220650 esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj b8f6030d8fc531ab -80732 80767 1585220650 esp-idf/cmd_system/libcmd_system.a a176a672918a9671 -80731 80968 1585220650 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -80730 80991 1585220650 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj d96bfafb6f45dd8 -80968 81004 1585220650 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -81004 81024 1585220650 esp-idf/main/libmain.a e50809bc3b1cf5a6 -81024 82116 1585220651 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -82116 86931 1585220656 bakalarka.elf 8fe1dd3d033f6afa -86931 87283 1585220657 .bin_timestamp 715a021d8f39a8be -87283 106700 0 CMakeFiles/flash d83eebc13dccbe41 -0 37644 0 CMakeFiles/menuconfig 52b3e75ddaf121f1 -1 5431 1585220830 build.ninja 1ff6234f96ac208 -28 47 1585220830 esp-idf/esp32/esp32_out.ld 8c63fbe09600b012 -69 224 1585220830 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj 5e53d85948e7e9ad -49 318 1585220830 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj 57757adf628f07e7 -59 327 1585220830 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj 6b085a47fcbea73c -24 446 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -47 531 1585220830 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 4fcc59e33c441db -57 681 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj e51851124e48b862 -319 741 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 5adf60210421eab7 -447 862 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 8150fd290267689c -532 934 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 29a60c9a3f5d374b -862 1025 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b024331307d43ac1 -934 1099 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj f5941347238563e6 -1025 1181 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj b08e3bad677e5e6e -328 1202 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 20149d7f8f904a11 -681 1243 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 620aeaae2b5db36f -741 1401 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 73eb55c318e7593c -1099 1469 1585220831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 30cdd68daa46c801 -224 1581 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj ab617c1a8d0a9e0b -1202 1588 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj eec509d157560d49 -1401 1589 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj e1b38e837b97f7e3 -1469 1590 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj af272ef8ae4dfbee -1181 1672 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj 812cb8e07fef19c8 -1582 1685 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj f6d250e066717798 -1590 1719 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 1577e50976fb2d19 -1686 1867 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj ea0eaf5f1d63e3fe -1719 1965 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 939c8482350cb653 -1589 1976 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b8d01f4cad94fe0f -1588 2394 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj bf06441f8e82e460 -1966 2495 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj f2eb0ba72f4332e -1867 2531 1585220832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 72bc9b6aabff2665 -1672 2650 1585220833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 9b6b7006c3f11791 -1977 2670 1585220833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 5105a773ef5aa6ad -2495 2676 1585220833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 37adafe73e9eaf1b -1244 2686 1585220833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj a04cf172379f7def -2395 2757 1585220833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj e2084f9e45d8f107 -2670 3047 1585220833 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj 6064f4f16f7c97ce -2687 3081 1585220833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 476d585b0bdb9deb -3047 3178 1585220833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj cb4d27aae9c1cbfe -3179 3313 1585220833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj 515c92f19bb486e -2676 3388 1585220833 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj bcbe7dbb7e325722 -3313 3480 1585220833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 6fa37e26332b1c12 -2757 3508 1585220833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 919e8ad01f40d753 -3480 3709 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj 627dd85d6337a7dd -3081 3788 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj f366ab2b02f940f5 -3388 3929 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj f219615cf93bce6b -3509 3938 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 69dd4915fa10937b -3789 3945 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj d2f85563099220d5 -3929 4087 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 6a31e43968ff5152 -3938 4203 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj 4b4f7600c7d59898 -4087 4335 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 8e38cbac0de40d73 -2650 4388 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj cd843719b30eeb20 -3945 4434 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj 8b7300551504b8af -2531 4468 1585220834 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj a3af968c67ab9c12 -4335 4588 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj dbc29a5bbec41aa0 -4203 4692 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj a225eb6ce43fb9bd -3709 4736 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj f73b5cfb92407c29 -4434 4747 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 7769b6d7f0a54bbc -4388 4823 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj f3ae3314e51a3fd1 -4588 4852 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 14b3504e24dab81d -4823 4933 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 9b97e17326eeb4f2 -4736 5015 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj e68b1851c640de7f -4852 5027 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj e45a382f87f6d832 -4747 5045 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj 1af46424c31458ff -4692 5132 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj cc0534c7a8f27a69 -5015 5265 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 766917eabdd8a007 -5132 5349 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 40c31b460fdab003 -5045 5455 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj a8769364554740cd -5027 5471 1585220835 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj b16b20888756824 -5349 5547 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj d987f94ba57bec33 -4468 5562 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 5a190d8071b957e6 -5455 5563 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 9bb5a701c114bc34 -5265 5663 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b1abbc269c8675b1 -5471 5703 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 6a9d8b5f4ba6cc62 -5547 5718 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj d9ff4450de980d72 -5562 5730 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj 62ab38891f030ec7 -5563 5813 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj ee171c25d1d16fc7 -5663 5957 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj c15c54b0d535a3d5 -5718 6002 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj 9749a3ce0bbc1f42 -5730 6018 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_aes_xts.c.obj 3e23693094c1ba56 -4933 6125 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 73728c0b3c8f987f -5813 6144 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj 3ef8c07f5770bf38 -5703 6236 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_bignum.c.obj 74646d4af8565ce3 -5957 6296 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/bignum.c.obj 4a609166be5cd2eb -6144 6387 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 3059b0b7c874632b -6296 6462 1585220836 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 5632daab98c1d48f -6002 6578 1585220837 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj a1752e16a1ea8bc4 -6387 6756 1585220837 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 1e59c3eb4df2f2d6 -6018 6802 1585220837 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha256.c.obj b99ef2be1306ff3e -6462 6821 1585220837 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj f9dc81bec0691839 -6125 6950 1585220837 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha1.c.obj bc883588bc31a39c -6821 7126 1585220837 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj 563b629bab6cf3a0 -6756 7185 1585220837 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 988c6be88ff3acd7 -7185 7415 1585220837 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj a991b5526a6aceac -7415 7567 1585220838 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj 16a2b7a94e230d59 -6236 7579 1585220838 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha512.c.obj 6c0a75daf7ea7e35 -7568 7729 1585220838 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj 2fd500af7243a5fe -7126 7745 1585220838 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj fdf13bd768d11fc7 -7579 7872 1585220838 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj 7ec20aae60cf6c97 -7745 7975 1585220838 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj e51bd55a96cba237 -6802 8180 1585220838 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj c421326f74b2ac8 -7729 8315 1585220838 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj e96fb5532089891d -7873 8483 1585220838 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj de350ce3c8976080 -8315 8753 1585220839 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj ee9e8a4c6dd92ab7 -8483 8783 1585220839 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj 652970286b569791 -8181 8853 1585220839 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj 77d42a6386fbc655 -6578 8953 1585220839 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj b2360ad368b2f2bc -8783 9008 1585220839 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 77339bf53aea2f30 -7976 9049 1585220839 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj 6273c4cacb9adf07 -8753 9361 1585220839 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 556a692629adfada -8954 9531 1585220839 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 4129d729ab162a8b -9049 9543 1585220840 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj 3ef55db686511db4 -8853 9596 1585220840 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 80ff88084e52f45d -9361 9684 1585220840 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 8cc366d0597a1718 -9543 9752 1585220840 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 4d86dbe548c9a429 -9008 9771 1585220840 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 2b0061bb7d6112da -9531 9822 1585220840 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj 28531746f777191c -9685 9897 1585220840 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj 25b11e69fe40069e -9596 9966 1585220840 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj db785e4a4d702179 -9823 10140 1585220840 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj 653074f99e9cb08a -10140 10426 1585220840 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 7edf8fde86d34f5f -9966 10575 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj aefc19da6bdfeaf9 -9772 10587 1585220841 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b856a6e5a204876f -10426 10613 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 5448385089a5e08b -10613 10914 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj a57dddea3cfdaf -6950 10927 1585220841 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj c052958e4d91e4b5 -9897 10950 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj 29f2bb102aea3cb8 -10587 10975 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 8f0739064d2111fe -10576 11203 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj c658d33faa41eccf -10914 11332 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj 2c7ecf53a8cb9c73 -10927 11401 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 7ab652436f384c5d -10975 11435 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 5a4f87c2088065fd -10950 11454 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj de5d38407180587b -11333 11531 1585220841 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj ff954394940372b0 -11435 11588 1585220842 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler_asm.S.obj d93b790f9d70e853 -11588 11704 1585220842 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/dport_panic_highint_hdl.S.obj 25acc6344a70bca6 -11401 11748 1585220842 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj c194966de020c997 -11531 11823 1585220842 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_api.c.obj fa46fd61e114a69b -11455 11882 1585220842 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 88c5429ac7e7980e -11882 12050 1585220842 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj 15906865c02c9425 -11823 12068 1585220842 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/cpu_util.c.obj ce8f5360513222d6 -11205 12082 1585220842 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b663a3b2bccf3e9e -11748 12084 1585220842 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/reset_reason.c.obj cfa4be0ea405f93 -12068 12273 1585220842 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj 9103b8c85948cf74 -12050 12285 1585220842 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj 87b7ab78145e3f62 -12082 12345 1585220842 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/cpu_hal.c.obj 102ecd7bf6775de1 -11704 12415 1585220842 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 63599ae4b5f7bc6e -12273 12529 1585220842 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj 7df79dfce608d244 -12345 12638 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj 90451c0ab1f76fcc -12285 12749 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj 9308a861601af43 -12415 12834 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj 2a8cc13113b45b58 -12749 12867 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj 17df9f7e2b3acb1c -12084 12884 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj d6712532d0d457a9 -12529 12907 1585220843 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 9729f133ca994898 -12638 12986 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj ff1bf688ceca3b01 -12885 13062 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj ff2d172f09e291a7 -12868 13081 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj a953452407fe38f3 -12908 13093 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj 930ee878ebc68233 -13062 13268 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj e2d908a1280d2476 -13081 13345 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj 93d15a4c5fc6ca5 -13093 13389 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj 12d104cdc4142f85 -12986 13456 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj cdc4814cd3fbbaea -12834 13501 1585220843 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj 3a55c388f7323eae -13345 13605 1585220844 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj ca877031b9acb682 -13389 13691 1585220844 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj 302b90d6cbc282fd -13501 13734 1585220844 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/soc_hal.c.obj 3888af6445c7d37f -13268 13788 1585220844 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj abd9833b1209a408 -13605 13819 1585220844 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mpu_hal.c.obj 3f283e59f35ad16c -13691 13889 1585220844 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj c3eb6bd6d9d84da3 -13456 13923 1585220844 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj 8a9332f103f8a33a -13734 14040 1585220844 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj c398ec746880507b -13923 14106 1585220844 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj 783d0c79d1ae9c1e -13819 14411 1585220844 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj 52c6f44b2db9fe4c -14040 14558 1585220845 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj 7a3c9d16b0460aa9 -13889 14678 1585220845 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj 9dc0432f52b8a829 -14106 14680 1585220845 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj a16547eb07882d6e -14411 14696 1585220845 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj 411f227e6e277e2f -14680 14881 1585220845 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj 2c400e461f32d012 -13788 14976 1585220845 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj 33c1b6f3aeda1f19 -14696 15210 1585220845 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj c1455a4579e8a5b1 -14678 15313 1585220845 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj 37f4ae2d1202f68c -14558 15342 1585220845 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj 63a67e43d93a99f7 -14976 15462 1585220845 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj 3f4777eab67e5dae -15210 15501 1585220845 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj 92a817c5d823e1d1 -15342 15545 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj e2012e8630b1c6d0 -15315 15561 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj ef893fed75657227 -15462 15653 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj af3c63cb6d556553 -15561 15700 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj d5e6bc758a6e69bf -15548 15754 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj 7d8103ff645be070 -14881 15803 1585220846 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj c63fc5dbac6ff491 -15653 15826 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj d338324988564c61 -15501 15876 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj dbbea780acaed617 -15700 15889 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj d1de44722f84f3f -15754 15978 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj fce760844ebb4f93 -15803 15998 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj 1660e6d436922db3 -15827 16010 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj 614cb5e812cefd2 -15876 16031 1585220846 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj b68d1ec4d8eb57f5 -15978 16413 1585220846 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj 29de2e665a306b37 -15998 16493 1585220846 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 17c8822bb71b1086 -16010 16678 1585220847 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj 79507c8ef577e5e3 -16031 16753 1585220847 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj 9d9f5bdb90c688a -15889 16813 1585220847 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 979109410e04f4b0 -16413 17062 1585220847 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj 5600f8a091c70d10 -16679 17376 1585220847 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 57ba8996a2eaa210 -16754 17690 1585220848 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj 179654b2d598a871 -16814 17712 1585220848 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 5256ffdf40f76a69 -16493 18087 1585220848 esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj b14c4d888f13f00c -17376 18126 1585220848 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj d48b4eb6ff82ff5f -17690 18372 1585220848 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj bd9ec6e062450dcf -18087 18464 1585220848 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj d5e0546299ee5964 -17712 18759 1585220849 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj c42878fcccf9203c -18126 18773 1585220849 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj dc32daafe861024c -18372 19743 1585220850 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 35a01ab84f5bb4e8 -18760 19771 1585220850 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj db0fdbd7b646c762 -18774 19793 1585220850 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj bbc08bc96e7b25a7 -18464 20177 1585220850 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b57b4fec865631e7 -19771 20200 1585220850 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 72f8ecf726a7fae0 -19794 20231 1585220850 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj caedd5ff754abe13 -17062 20563 1585220851 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 4ce3da35f990a752 -19743 20880 1585220851 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj c5632da65dc0ffe5 -20232 21354 1585220851 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 579b1110a728b0fe -20563 21419 1585220851 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj f3495d9c873cc11c -20880 21444 1585220851 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj aaa94d714e9ad896 -20178 21870 1585220852 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj eb6571abe5b624c -21444 21899 1585220852 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj d1813da7dc5a8553 -21354 22294 1585220852 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 70450d59c9999151 -21419 22431 1585220852 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj adc85a1c6fc74dbd -21899 22538 1585220853 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj d5202f55b0839f32 -21871 22711 1585220853 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj 162421fe10f1a595 -22294 22815 1585220853 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj 8b43857304f0f4b3 -22431 22959 1585220853 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj a1edad39e8cdc091 -20200 23152 1585220853 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj cbcf57c5c6e9332 -22815 23168 1585220853 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 39aaa31f66c5a298 -23168 23441 1585220853 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj e5b55f2c6b5f39f7 -22538 23540 1585220854 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj ecd40bf9fabd7784 -23152 23736 1585220854 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj c60d9d921271099e -22959 23961 1585220854 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 87c41747bceff9ee -23441 24070 1585220854 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj 6c8c1cc49e3ae20e -24070 24217 1585220854 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 2d4c80b7856db686 -23737 24353 1585220854 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj f323c15826d0b280 -23541 24368 1585220854 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 392a3478c7dc44a3 -23961 24381 1585220854 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 8f8f73c3d1f3b327 -24217 24578 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj 9b36f8fe69e7761b -22711 24658 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj 7c390c15e23d2704 -24381 24705 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 17d78e7cdcd41501 -24354 24846 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 54d871bc662d8b93 -24578 24870 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj 90c9a3efb58be2f -24705 24895 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj 56cdc2f4252454d1 -24368 24987 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj 390c57d91cfb67e7 -24870 25041 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj a3af104b90b5231a -24847 25054 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj a1b6a90e645580f2 -24987 25225 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj 31260c3aecd004e8 -25041 25334 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj 6a5f09c6bfb92865 -24659 25366 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj 54bddcfaa79e3506 -25055 25515 1585220855 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj e308e3da6a0ed128 -25366 25727 1585220856 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj fc74de41ec555ad9 -25335 25912 1585220856 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 6f66ad87d21690a1 -24896 26050 1585220856 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 18530610988ddd11 -25912 26247 1585220856 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj d8c6744c9cc4c780 -25225 26260 1585220856 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj 49dd6c5d51e4598f -25727 26274 1585220856 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj 486c094c1982ad19 -9752 26378 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -9752 26378 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -9752 26378 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -9752 26378 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -25515 26410 1585220856 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 767943c614345a1d -26260 26499 1585220856 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj b63478115c5bbfd5 -26247 26888 1585220857 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj 5458b43f470d9ee8 -26499 26968 1585220857 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 1054d2f8ec3dffc7 -26379 27043 1585220857 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj 39d64f2ad495303 -26274 27101 1585220857 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj b8bc260091d71903 -26050 27177 1585220857 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj 7031bebde3d1fac7 -26888 27259 1585220857 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj 1a0e09abb598049f -27178 27433 1585220857 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj 41cfa15f86587e19 -27101 27507 1585220857 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 483bfb4eab03e6aa -27259 27570 1585220858 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj 23e11a46290371a6 -27433 27766 1585220858 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj ea8f61a53d391fa8 -27507 27795 1585220858 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj a39fe3c82e29d4d1 -27570 27820 1585220858 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj 96507abbf32a17a7 -27766 28155 1585220858 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj 1d16cd65a1fd42dc -27820 28448 1585220858 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj f653b907ddb5efa6 -27796 28465 1585220858 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj bd96bcfd10a93c1 -28155 28620 1585220859 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj e25568a543fd01fe -26968 28747 1585220859 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 34caa37341fd31b4 -27043 28763 1585220859 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj 98e16976c8a48268 -26410 28818 1585220859 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj bf63ad0d92a4c6eb -28448 28961 1585220859 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj 3b32ed2a1367983c -28465 29220 1585220859 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj 8b4b169a09eacd5d -28620 29233 1585220859 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj 4694aa91c967c051 -28961 29358 1585220859 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj db8eae0be7befb5e -28747 29644 1585220860 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj 105c8465fffeeaf -29233 29679 1585220860 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj ed773ca4350acb97 -29220 29737 1585220860 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj f82fb5127beb33d2 -28819 29751 1585220860 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj 29743f81b591c7a4 -29358 29782 1585220860 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj aa6e32bbf60ae965 -29737 30138 1585220860 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj ea78ddbf1d04a8cc -29679 30163 1585220860 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 6a78f22896fdf5eb -28763 30257 1585220860 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj 1f397e451cb774fc -29783 30287 1585220860 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 509b21db3123f698 -29644 30347 1585220860 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 17da43368a4b666d -30163 30828 1585220861 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 1e4f1a9264a9a893 -30139 30847 1585220861 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj d12d67e318af0586 -29752 30876 1585220861 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 7f297422df7da627 -30257 30880 1585220861 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj a8aae163c70d0df0 -30287 31945 1585220862 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj d7170eff8de976d1 -30828 31969 1585220862 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj 74a44b3e0940c2 -31969 32211 1585220862 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj cc772de4544f40b2 -30347 32778 1585220863 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj 5c2cde4546276322 -30876 33407 1585220863 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj e28cd8d47756f0 -30880 34005 1585220864 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 11759b1956623d8c -31945 34192 1585220864 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 5f52ae7f8dab3dca -30847 34800 1585220865 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj 61f97fde6e32a08 -32779 35902 1585220866 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 80faa7a46b0120fc -32212 35929 1585220866 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj 5f928f73311093f0 -35902 36036 1585220866 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj 851babb53a5a349f -34801 36225 1585220866 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj d2e3cac4a9b21f66 -36036 36477 1585220866 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 53ca2d5e57280b97 -35929 36536 1585220867 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj 31129163c6fa8bcd -34192 36596 1585220867 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 1f50ff982a173be1 -36225 36848 1585220867 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj f3f8c5ce569f7ada -33407 36853 1585220867 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj 53e9e30b40eb25f9 -36596 36855 1585220867 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj eae37e074555e393 -36536 37017 1585220867 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj be0636faf4db39cd -34005 37280 1585220867 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 47bafa6cc48a53c7 -36853 37347 1585220867 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj e84f19c8cb1b96e4 -36848 37629 1585220868 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj abfe8d8e1fb3afdc -37347 37659 1585220868 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj cf7af956263e8b8f -36855 37679 1585220868 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj c9b8cc3df3d94c07 -36477 37710 1585220868 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj 89a4265024c628cf -37280 37875 1585220868 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 13d808216093d732 -37679 38063 1585220868 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 83649dec8a732855 -37017 38238 1585220868 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj e380d062e201769f -37659 38304 1585220868 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj d0b7927b8ab0104e -37875 38554 1585220869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj 577b62906c8a3e7d -38067 38571 1585220869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 1735022ecac1b951 -37630 38612 1585220869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj e512427ef21e22ca -38304 38663 1585220869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 9d3ab4dd77b7167a -38238 38829 1585220869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj ecfb975dc192ca61 -38613 39256 1585220869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj cb4f1db05aaba428 -38663 39272 1585220869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 33b8e2ab6ab9d74b -38554 39370 1585220869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 4d0caca18245133e -38829 39402 1585220869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 336dca2aed7bfdb2 -37710 39516 1585220869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj 7f83189e36467e49 -39272 39671 1585220870 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 3bd0b2a58c2bff52 -39517 40069 1585220870 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj c0e9c49c6f00cd8b -39370 40099 1585220870 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 4396063447d8a1c5 -39671 40202 1585220870 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 6f8e56bcc948d49 -39403 40213 1585220870 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 556e9711b484ccfb -40069 40617 1585220871 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 9972798a0051c520 -40202 40687 1585220871 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 79bdcd2ec31af5e7 -39256 40925 1585220871 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj e8806157210c4a95 -38571 41072 1585220871 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj fde02ce432e66fae -40687 41076 1585220871 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj ef3cedb52e3f6786 -40099 41441 1585220871 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 67bb18b594e109d4 -40617 41665 1585220872 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj e63c116cb56fba4a -40213 41725 1585220872 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj e1acfa369cc96352 -41076 41834 1585220872 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj b1c2f31a5ad2945e -41726 42201 1585220872 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 6c13954ae5c00eed -41072 42614 1585220873 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj c5d4549662610d5 -41835 43219 1585220873 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 50c8912980e73ff3 -42615 43462 1585220873 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 8ce37f621eb9386e -41665 43563 1585220874 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 8a5d43871eac97f4 -40926 43639 1585220874 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj fade4a1edc9f0f96 -43219 44099 1585220874 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj bb60e82ed574f99d -43563 44199 1585220874 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj e314b9a35f4d0037 -43639 44343 1585220874 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj e8974ff718de6bd7 -41441 44473 1585220874 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj d802474ade654a1a -44099 44516 1585220874 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj c0e84898ade4229b -43463 44733 1585220875 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 7bc8574675197530 -44343 44793 1585220875 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 1ba31e6710d4882d -44199 44823 1585220875 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj b3515ff52023ed83 -42201 44862 1585220875 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 8c17e5b31dd96f0f -44474 45106 1585220875 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 47eddb4edc32e9d3 -44794 45444 1585220875 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 634e49d8285dd6c9 -44823 45736 1585220876 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 7263fc09734a5790 -44733 45820 1585220876 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj b29b9f01bc6218dd -45444 46196 1585220876 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 771b807e11f8340d -44516 46306 1585220876 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj bef09bc64a1b42f6 -45821 46324 1585220876 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 85ae330c0ee32c12 -45736 46370 1585220876 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj c25157fc13735247 -45108 46416 1585220876 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj 20cf6a79fb7fb9dc -46196 46708 1585220877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj 23480ceb1f263a3e -46306 46720 1585220877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj 96093a349c709750 -46325 46811 1585220877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 6db536946d4d31ad -46370 46826 1585220877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj f749bcc165837691 -46416 46834 1585220877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj d0e66fbc898d25a5 -46720 47181 1585220877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj e7c3444eb66231ef -46811 47198 1585220877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj ab8bc35a79c5e78e -46826 47249 1585220877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 9f8eea5345f6b0e4 -46709 47335 1585220877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj 5889ae3ad146784e -46834 47336 1585220877 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 4de30b077d0583e1 -47198 47575 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 15524cfa6d5673e7 -47181 47664 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 811b681e37787174 -47336 47773 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 2018746af2567636 -47250 47800 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj e3c651fccf8954b4 -47335 47812 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 79c68902a7fcd46b -44863 47818 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 47b7d5913f3c64a6 -47575 47857 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 635ce36b45669c07 -47665 47907 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 615fc87f3c3f6a8a -47773 48157 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj 7123e9fd03b086a6 -47857 48180 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj 2272bece4ce53f85 -47813 48247 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 9d62b9dbba5c2c28 -47800 48259 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj d15920c299aaeaa -47818 48280 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 4298e5baf4d8c480 -47907 48327 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 2d493aba99a77003 -48180 48421 1585220878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 2d761c4e64017e62 -48158 48643 1585220879 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj ab3940556b4ae489 -48327 48729 1585220879 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj 332d026e324c4930 -48260 48760 1585220879 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj 44916de880e45d3b -48280 48889 1585220879 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj dd0b65e4885c015 -48643 48937 1585220879 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj 26a9601ec2600d66 -48421 48953 1585220879 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj cfef06aebc3e3b0f -48248 48974 1585220879 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj fbd1f7eedb3a05c4 -48729 49091 1585220879 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 33dfd192546c2f97 -48761 49206 1585220879 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 8475b11c18a5b94d -48890 49501 1585220879 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 8f7c82b032070b98 -48937 49743 1585220880 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 902688992b39eeb -49207 50145 1585220880 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj 4f6c98e632707eb4 -48954 50300 1585220880 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj a08c6a8eedb203f2 -49743 50328 1585220880 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj 9a19feffde4168a6 -49091 50447 1585220880 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj c00408cfda051306 -48974 50592 1585220881 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 2100604b1035a5c1 -49501 50773 1585220881 esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj 75c511ee5b0bab3d -50774 51321 1585220881 esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj 5ae287ce163eb22f -50145 51830 1585220882 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj d338213d481b02f0 -50300 52291 1585220882 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj b6998a1f1d5b1c9e -50592 52348 1585220882 esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj 86b8b633b78a24ca -52349 52556 1585220883 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj 3eb587fd8ed0a9be -50447 52575 1585220883 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj 81c311aadc3fd67a -50328 52616 1585220883 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj cdf30f7e92ca0d33 -52291 52896 1585220883 esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj 18ae6a8ffc476f28 -51830 53014 1585220883 esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj 501f4c45117fe01a -52575 53166 1585220883 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj 64f5eff0b7e388d9 -52617 53732 1585220884 esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj 7534d43cb27a166e -51321 53896 1585220884 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj e99bf8196316f125 -53167 54204 1585220884 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj 17919c541a9d0ebc -52897 54271 1585220884 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj 40d2859175d530cf -52556 54281 1585220884 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj bf6f2b3cb1cc4ea7 -53896 54653 1585220885 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj e96fc583988b5ade -53015 54664 1585220885 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj 4f96eac3f9e1f4e0 -54281 55275 1585220885 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj 23bbec983db7100 -54653 55454 1585220885 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj 54f91e3bb4f35712 -53732 55534 1585220885 esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj 39acc43e17bc399 -55454 55854 1585220886 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 97362a1088b6f67c -54664 55927 1585220886 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj 7d1742177fae65bb -55534 55998 1585220886 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 8b2f4f9940484ddb -54271 56055 1585220886 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj 4d8fa278be168fce -55276 56069 1585220886 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj cc9dbe77cd37dd60 -55856 56154 1585220886 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj dab6091bc01cb6c -55928 56191 1585220886 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 40dfa11f1feb5b20 -56056 56264 1585220886 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj da216bb7545b2a0c -56070 56344 1585220886 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 707f879fed825658 -55998 56361 1585220886 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj 4265fd63be1e61ae -56155 56422 1585220886 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj db2bda8711352316 -56191 56596 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj d68a706dce5c1214 -56361 56789 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj dce2d4af8d66e9b1 -56344 56919 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj 8be06a60b2c208fa -56264 56927 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj efd679088e15fab5 -56596 56966 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj f3b09dafc2279a9 -54204 57038 1585220887 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj 859a78cf48b35d2e -56789 57249 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj 1366150fbc1992c6 -57038 57303 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj dd43e713ad2ee254 -56422 57335 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj 9054a83e111c6e03 -56919 57391 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj 92611242234b4037 -56927 57476 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj 3568da11267d93f -56966 57503 1585220887 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj ab97a840cdbd0483 -57249 57536 1585220888 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj 6591e07bb725b88f -57391 57667 1585220888 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj 96ffc18083f4d5a0 -57536 57737 1585220888 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err.c.obj 394ce3fec6ec56ce -57503 57765 1585220888 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj 820ad4d92fc9ebdc -57335 57925 1585220888 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj dfd56f1a9ae11cc4 -57667 57958 1585220888 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj ffbe490ba865255 -57737 58006 1585220888 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj f4d4ff991b2b8da5 -57765 58032 1585220888 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj 20732dbdf6bafdb0 -57925 58150 1585220888 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj f721e23b6f442720 -57303 58360 1585220888 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj 4109da51c340ffea -58006 58483 1585220888 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj 51e1726fa176beff -58032 58520 1585220888 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj a0a789c8d266405d -57476 58523 1585220888 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj 3c51dfa0d6e67fe6 -58151 58586 1585220889 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 1e9aa4a44f4eb9c5 -57958 58702 1585220889 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 72d4123064a034f4 -58523 58770 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj c126678295a0b181 -58702 58870 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj 17b3efe38e3617e2 -58770 58885 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj 4380aa60d7ecb4af -58483 58905 1585220889 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b5acabc7084e2982 -58586 58922 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj d7498b9b552fa6b5 -58870 58956 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj b62a8c361cf41e20 -58922 59052 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj ae08d9a2a49512a7 -58360 59074 1585220889 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj bfa1eb8b238e25b5 -58956 59151 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj ddb73ac753f08268 -58906 59194 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj 5a63ea3680b3ee6a -58885 59233 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj 83fc2d72d8ad9582 -59074 59330 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj 4a00f00b17b062b0 -58521 59439 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj bb0c30ba3bf721d5 -59194 59466 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj b6b27581006b9649 -59151 59510 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj 9bda50b0ef210b77 -59052 59534 1585220889 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj de26f7a71e6bd1fd -59467 59758 1585220890 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj 10213c4b563eaebf -59330 59935 1585220890 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj d6e491ed748fa4c4 -59758 59954 1585220890 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj e920ca8ee03a2b44 -59534 60169 1585220890 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj b38d266c76cde2ae -59935 60322 1585220890 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj 8a80f314e6cc154a -59954 60334 1585220890 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj ff7afc5ba7bab41f -60170 60478 1585220890 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj bb05141dc784637c -60334 60617 1585220891 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj c94da83c0e25435 -59510 60712 1585220891 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj a6ebca211b2a7ab9 -60322 60727 1585220891 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj 1395c73602d0312 -60478 60752 1585220891 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj 1db1bc21ea98a0f2 -60618 61057 1585220891 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 9d0f2c9de6f746c -60712 61083 1585220891 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj b361c982f91bcf46 -61083 61236 1585220891 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj 41f4f556f1909f8f -59439 61263 1585220891 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 56f0a8ed35add288 -60727 61352 1585220891 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 2a1556cdc96337cc -60752 61405 1585220891 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj e5ba6daee3fe69aa -61057 61444 1585220891 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj 18736c5f9f3637a2 -59233 61539 1585220891 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj 8e48beebea188ef3 -61353 61591 1585220892 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj d74a4c9c79b4ac58 -61236 61629 1585220892 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj fc1713e8b0209c43 -61405 61700 1585220892 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj 12eed60425fd665b -61539 61799 1585220892 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj c8e0fb28b5b5e23c -61444 61889 1585220892 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 9d7477055e5648dc -61629 61947 1585220892 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj 71c80e7c70ec8c52 -61947 62404 1585220892 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj 1ee6226dffa8f490 -61799 62429 1585220892 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj 765de8f82152873a -61890 62483 1585220892 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj 5b1c9d7760ab8b1e -61263 62764 1585220893 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj fb7a8af422402899 -62404 62770 1585220893 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj 24f0d34456b74a65 -62429 62833 1585220893 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj 44cb918d96c29c1 -62483 62868 1585220893 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj 9e509cf86c24478c -61591 62928 1585220893 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj c4303ecfa4dda4d2 -62833 63423 1585220893 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj c2b6a0def2140719 -61701 63628 1585220894 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj 5151e6f485fda92c -62765 63652 1585220894 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj c087ac416aa084ec -62928 63738 1585220894 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj 37aec9588b0b98b4 -63738 64025 1585220894 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj e700c98cc4b5b57c -63652 64241 1585220894 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 713d6119721d556f -63628 64419 1585220894 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj d684f1aaa3ef4fef -64025 64549 1585220895 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj 9a6f02a1bfb15382 -63423 64734 1585220895 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj a8ef0e7c0c7ec6d3 -64243 64845 1585220895 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj e9c0ac3af2619026 -64549 65030 1585220895 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj c956d42bf1e6eee1 -64419 65213 1585220895 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 49de941a8fdd7369 -64845 65352 1585220895 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj fa774017de65ef7b -62869 65537 1585220895 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj 2f942485126681e1 -65030 65945 1585220896 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 85b0ac563ecd13e8 -65353 66020 1585220896 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj d506c00f4561493a -65213 66163 1585220896 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 1362475d4a45ec43 -65538 66241 1585220896 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj ff455323944b947b -66020 66288 1585220896 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj 49d3279ab0e2e2d9 -66241 66505 1585220896 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj e32cde81f33948f -66289 66646 1585220897 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj 1591b1b498aaf318 -66163 66708 1585220897 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 3cf8b0690a27d0a7 -66646 66719 1585220897 esp-idf/ulp/libulp.a b5ba4f97522c9ec3 -64734 66754 1585220897 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj ade113e84032744e -65945 66829 1585220897 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj e8eaf732e043d3ac -66829 66874 1585220897 esp-idf/esp_http_server/libesp_http_server.a 8ebd1da8c170e991 -66875 66907 1585220897 esp-idf/esp_http_client/libesp_http_client.a 4ffd10c652f4da0e -66907 66937 1585220897 esp-idf/tcp_transport/libtcp_transport.a ea2beb8be5ea9cac -66937 66968 1585220897 esp-idf/esp-tls/libesp-tls.a 31affc00a434415b -62771 67049 1585220897 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj 7a444a39fb81f014 -67049 67108 1585220897 esp-idf/nghttp/libnghttp.a c621045d4dc2c2e9 -67109 67131 1585220897 esp-idf/app_trace/libapp_trace.a b631249a9244a40a -67131 67152 1585220897 esp-idf/cxx/libcxx.a a50eeb7ca8b482fd -67152 67180 1585220897 esp-idf/newlib/libnewlib.a 855580b12edfb31b -67180 67206 1585220897 esp-idf/vfs/libvfs.a 49e38bc49dfb99ad -67206 67238 1585220897 esp-idf/freertos/libfreertos.a 8adaa22c425c727c -67238 67260 1585220897 esp-idf/esp_timer/libesp_timer.a 33b8c301002404d9 -67261 67286 1585220897 esp-idf/esp_common/libesp_common.a adf28ed1f2e8ebd2 -67286 67319 1585220897 esp-idf/esp32/libesp32.a 5ecf3157bee85aa5 -67320 67344 1585220897 esp-idf/perfmon/libperfmon.a b74d9df8a26398f8 -67344 67368 1585220897 esp-idf/espcoredump/libespcoredump.a 61e4a4fb412fae8c -67368 67390 1585220897 esp-idf/pthread/libpthread.a 3a7af1abd593645d -67391 67444 1585220897 esp-idf/driver/libdriver.a 5cd66d74d6544f4f -67444 67470 1585220897 esp-idf/esp_ringbuf/libesp_ringbuf.a 52142642e68b28d5 -67470 67497 1585220897 esp-idf/heap/libheap.a 651625a391e6c741 -67497 67520 1585220897 esp-idf/log/liblog.a 1274d7808513dadc -67520 67587 1585220898 esp-idf/lwip/liblwip.a cfc5b7a574b9e094 -67587 67628 1585220898 esp-idf/esp_wifi/libesp_wifi.a effb86670d9970ec -67628 67665 1585220898 esp-idf/nvs_flash/libnvs_flash.a ae6808df23dc8a0b -67665 67734 1585220898 esp-idf/wpa_supplicant/libwpa_supplicant.a 934adf958a664c37 -67734 67755 1585220898 esp-idf/esp_event/libesp_event.a 3706ea83ed15eb7f -67755 67784 1585220898 esp-idf/esp_netif/libesp_netif.a 9b9a8a1d361dc99f -67784 67806 1585220898 esp-idf/tcpip_adapter/libtcpip_adapter.a d3f10370c7462d1e -67807 67835 1585220898 esp-idf/esp_eth/libesp_eth.a 80e079e349f37dcc -67836 67864 1585220898 esp-idf/soc/soc/esp32/libsoc_esp32.a 5535786e5680a71 -67865 67907 1585220898 esp-idf/soc/libsoc.a bdb543765a75c368 -67907 67935 1585220898 esp-idf/esp_system/libesp_system.a 2059c603ec302120 -67935 67967 1585220898 esp-idf/spi_flash/libspi_flash.a bd64ee73ae26c95c -67967 67988 1585220898 esp-idf/app_update/libapp_update.a 629b42f69c26dd2b -67988 68021 1585220898 esp-idf/bootloader_support/libbootloader_support.a 81bd485cf13f5f2f -68021 68047 1585220898 esp-idf/efuse/libefuse.a 8b73fc3e19818359 -68047 68076 1585220898 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 48870cf31bc57c21 -68076 68132 1585220898 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a ba9822d5d40cb5ce -68132 68157 1585220898 esp-idf/mbedtls/mbedtls/library/libmbedx509.a cec41cc9a3a87882 -68166 68378 1585220898 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/esp32/trax_init.c.obj 1e6b1b8dc6601e4e -68158 68395 1585220898 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj 4ff4468879b463b -68161 68420 1585220898 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj 2f309274117d0c08 -68159 68448 1585220898 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj 41e6898ed1bc5f1b -68379 68513 1585220898 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj 91d393ea06dd3512 -68170 68577 1585220899 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj d8bf29ee2734cde2 -68577 68647 1585220899 esp-idf/mbedtls/libmbedtls.a 20f83969fcd73776 -68647 68701 1585220899 esp-idf/xtensa/libxtensa.a 39c97242db240995 -68513 68708 1585220899 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj deac31bc73c5ee1a -68395 68734 1585220899 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj b00e0a354136e15b -68702 68850 1585220899 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj 3bf0177c6f65799f -68708 69005 1585220899 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj 6f01aa75e1d2e488 -68421 69128 1585220899 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj 26b0137932b9755b -68448 69176 1585220899 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj f09de5fa975c8dfe -68734 69567 1585220900 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj c3669caed55c3d13 -68850 69575 1585220900 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj df393e94294e1129 -69129 69609 1585220900 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj f97d3a67764aada5 -69176 69997 1585220900 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj a211b752d499d287 -69567 70045 1585220900 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj c6b9f758af428cc7 -69609 70085 1585220900 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj ff178f4cfcd8bf73 -69005 70213 1585220900 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj 31dd1bd388e97df7 -70213 70382 1585220900 esp-idf/cbor/libcbor.a a95ad5cc568fa046 -69997 70466 1585220900 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj 5030558c6f6c36d4 -70085 70659 1585220901 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj 20c789316bcfbc08 -70045 70703 1585220901 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj d216d26246db22f1 -69575 71192 1585220901 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj 158af1b535b2db36 -70466 71219 1585220901 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj aa668b63c113b113 -70660 71245 1585220901 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj ce351ace95fec134 -70382 71429 1585220901 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj 2fd43b4877ff2e02 -71220 71770 1585220902 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj 4418a95749233797 -71429 71818 1585220902 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj d67c5099e4246b75 -71192 72236 1585220902 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj 7a86b5521f36268d -71818 72550 1585220903 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj a8b921496ea192fb -72236 72640 1585220903 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj fc6356ccb6a8853f -71246 72868 1585220903 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj f7ed387f54a38e44 -72551 73103 1585220903 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj ec2ebaeb338d11f0 -70703 73111 1585220903 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj e04671b07da484f1 -72868 73322 1585220903 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj c0e6f889c5a97127 -73111 73335 1585220903 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj a4bb384907bfc443 -71770 73452 1585220903 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj 7f9e73c1ed300700 -73323 73469 1585220903 esp-idf/console/libconsole.a 2633ce91f5d7cfbc -73104 73559 1585220904 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj d4f5b287b54a3c43 -73335 73560 1585220904 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj cf8d693130622701 -73559 73608 1585220904 esp-idf/esp_adc_cal/libesp_adc_cal.a 321a66f17fd37eef -73452 73661 1585220904 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 6dc2aa1249423b76 -73469 73776 1585220904 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj 7d8dff5abf2c7103 -73776 73893 1585220904 esp-idf/esp_gdbstub/libesp_gdbstub.a 17fa000c0dae215f -72641 74045 1585220904 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj b69597b97d3cb830 -73893 74154 1585220904 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 5870011e5c57795a -74045 74303 1585220904 esp-idf/coap/libcoap.a 44ce67ee174d4c41 -73608 74380 1585220904 esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj afc83e823cb63ffe -73560 74430 1585220904 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj 8cac2adf84d73e55 -74381 74465 1585220904 esp-idf/esp_https_server/libesp_https_server.a ebdd02b3e26beb0f -74430 74543 1585220905 esp-idf/esp_https_ota/libesp_https_ota.a fefb0d1df4e90f1e -74304 74661 1585220905 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj d8b13b07bec7c003 -74154 74666 1585220905 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj b5fe994343abd2e -74465 74687 1585220905 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj 3b8e3b92c3604e29 -74687 75144 1585220905 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj b154c0a48629be5d -75145 75318 1585220905 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj b68f87ac68d3c486 -74666 75348 1585220905 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj 9464fe2676084870 -74544 75458 1585220905 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj f0db0f1663453c8c -75318 75830 1585220906 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj b560ca64e20196f4 -75348 76145 1585220906 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj 85a610e2057e822f -75830 76411 1585220906 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj ab8a934c142ad7ae -76145 76540 1585220907 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 90e7afa905c062a -75459 77054 1585220907 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj 1ff5446daf382c65 -76411 77074 1585220907 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 4a3f799b74144365 -76540 77083 1585220907 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj bcb8e8d8aa07b7cd -73661 77473 1585220907 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj d119b991363a8fd -77084 77505 1585220907 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj c1dc9b74cd464a15 -77473 77593 1585220908 esp-idf/protobuf-c/libprotobuf-c.a f493e1ef2b08a025 -77074 77613 1585220908 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj ca03177b1a43ea13 -77593 77725 1585220908 esp-idf/protocomm/libprotocomm.a a24354d090c61c70 -77055 77862 1585220908 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 9a086305f031f58b -77613 78208 1585220908 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 572d0ba8df5d020e -77505 78322 1585220908 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj bd8f20d1f0c5bbd2 -77862 78496 1585220908 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj aa578e42f9be6a86 -77726 78559 1585220909 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj e0cb79d09b2cb159 -78560 78684 1585220909 esp-idf/sdmmc/libsdmmc.a 606b34034bb47675 -78209 78826 1585220909 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj ae1eb731b2cff3d0 -78826 78966 1585220909 esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a c887be8cb213e66c -78684 79054 1585220909 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj f22a6e962f71fda1 -79055 79363 1585220909 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj a4fcdafe6a6f3a04 -78966 79471 1585220909 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj 9abcec7cdf265542 -78322 79807 1585220910 esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj 9c0fd2ba8dc408df -79807 79893 1585220910 esp-idf/esp_websocket_client/libesp_websocket_client.a 518e2577c9404339 -79363 79927 1585220910 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj ed354ad7932f627d -74661 79960 1585220910 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj e7a9b92aae399379 -79960 80123 1585220910 esp-idf/mdns/libmdns.a 9e64c996f85b3dcf -79471 80159 1585220910 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj ceb1125b87df0301 -80123 80255 1585220910 esp-idf/esp_local_ctrl/libesp_local_ctrl.a 2b6d82bc97e55a06 -79927 80423 1585220910 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj f63896555ae6e124 -80159 80568 1585220911 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj abf72aabc7b0ca24 -80255 80651 1585220911 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 80ef5d78aa0b037 -80423 80913 1585220911 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 70935edbf864953a -79893 81010 1585220911 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj ac7206a89d348f62 -80651 81066 1585220911 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj 33c5f29f99ac3c8e -81010 81147 1585220911 esp-idf/wear_levelling/libwear_levelling.a 8ffc856a1c7bda8e -80914 81269 1585220911 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj 51da619fdf271782 -81147 81943 1585220912 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj 9f8e58ee3ba3bf74 -81067 81960 1585220912 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj 629d2aaace6094ec -81269 82001 1585220912 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj 711bc61f6f0b486c -82002 82362 1585220912 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj b1dd74aa655abbdd -81960 82617 1585220913 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj 345c4e46c30e44d4 -81943 82625 1585220913 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj f08854b60ace5ab7 -80568 82783 1585220913 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 89e8f39ba6501e65 -82783 82935 1585220913 esp-idf/fatfs/libfatfs.a d1d56c91828b233 -82363 82980 1585220913 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj 3af87427c190f5e0 -82625 83060 1585220913 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj acd0c427e5fe89ef -82617 83181 1585220913 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj 7cdc4c1411546151 -82980 83393 1585220913 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj 7ba3837661953c26 -82935 83411 1585220913 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj 6fd15834bc0e5dd7 -78497 83450 1585220913 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj 89474d8a15ca19e3 -83181 83563 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj 162ecfb45450315a -83451 83564 1585220914 esp-idf/expat/libexpat.a 2f48a09ddd2977e8 -83060 83681 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj 4942da8c06074142 -83393 83695 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj 71f5b2b3c27cb015 -83412 83741 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj 664b5ae299a869c5 -83563 83882 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj f1d0bde7eb738bdf -83564 83896 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj f100a268baaadd38 -83741 84165 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj 4d406265a90cfda2 -83896 84199 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj 3fcbb1cf3b2882b8 -83695 84361 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj deb6d4f7f478a26a -83682 84362 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj 27568f8bf5b15b0b -84199 84481 1585220914 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj 5a7b0f2fbafa543a -84165 84533 1585220915 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj 8cf34674e3e9546d -83882 84677 1585220915 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj 853af9cddea3ef9f -84362 84768 1585220915 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj a078218bf69573e0 -84534 84850 1585220915 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj 29b8cb18b001ef6d -84362 84870 1585220915 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj e0cbeaf10e38d5de -84677 84999 1585220915 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj a5dffd5f3e947339 -84482 85125 1585220915 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj 242eb8122309f5e8 -84851 85195 1585220915 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj 2a02c7b2f62b14de -84999 85212 1585220915 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj aae3a4a20ed5ede5 -68170 85243 1585220915 esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj ced96d88be2d2fba -84768 85246 1585220915 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj 50f45e2322e5c55f -85244 85470 1585220915 esp-idf/asio/libasio.a 62a13e711bc33278 -85246 85742 1585220916 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj 2a7064896d44c91f -85471 85762 1585220916 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj 485ab61fb1169a7e -85762 86002 1585220916 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj 59b1a66aa08b64d6 -85742 86072 1585220916 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj a36b3d96bc913085 -84870 86087 1585220916 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj ff1b4db2a3dffdd2 -86003 86195 1585220916 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj c24f2597976d6ac3 -85212 86202 1585220916 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj 87a2d5e1fc5df551 -86072 86207 1585220916 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj f3562a37dfc2c3f9 -85125 86245 1585220916 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj 9bb297ba606ec3f4 -86087 86327 1585220916 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj e071d01350af156a -86207 86355 1585220916 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj 84c5f947aa7c40ea -86195 86429 1585220916 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj e7033fa879b68863 -86245 86449 1585220916 esp-idf/freemodbus/libfreemodbus.a ff1b2ecc7df2affc -86327 86619 1585220917 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 8608bc10135ef02 -86429 86636 1585220917 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj 621a72bd8ed4958d -86202 86794 1585220917 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj cd618e36b77f8ca2 -86636 86875 1585220917 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj fa80b5ea9032e9aa -86449 86876 1585220917 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj 48c722fc51154ad9 -86795 87053 1585220917 esp-idf/libsodium/liblibsodium.a bb822b24df56465d -86876 87067 1585220917 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj d84e67b9536abc4 -86355 87089 1585220917 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj dcb63d57734e9c63 -86876 87150 1585220917 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj 2829bf3d0e3e1831 -87067 87203 1585220917 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj c485d1f53862c4ab -85195 87454 1585220917 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 34e4f57d4e995885 -87150 87462 1585220917 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 6983e292af2f0d8 -87454 87536 1585220917 esp-idf/mqtt/libmqtt.a 4b234aa7654b545c -87203 87721 1585220918 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 9c918e488f0b4333 -86619 87807 1585220918 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj 21a99b9fd5d18414 -87054 87824 1585220918 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj a437ea867e2de563 -87824 88033 1585220918 esp-idf/openssl/libopenssl.a dd8fd619cead68da -87462 88390 1585220918 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj d58afb73471a712b -87536 88429 1585220918 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj b5592ea701ee6798 -87089 88494 1585220918 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj 1a79450b2d108418 -88430 88679 1585220919 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj e09bb6de59a31e7e -87725 88986 1585220919 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj 5798fb22062a0645 -88390 89088 1585220919 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj d620c2d3b69fad15 -88494 89115 1585220919 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj 9d5ba6d3fd5170f0 -88033 89352 1585220919 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj 48dddb2d50ae04db -88679 89435 1585220919 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 49a54dd4b4294f89 -89353 89495 1585220919 esp-idf/unity/libunity.a ffbd91855b17061e -89089 89637 1585220920 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 25380c247de24162 -89115 89768 1585220920 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj 6200e76ca3d0f74d -89495 89987 1585220920 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 8bba0d72acb2560 -89769 90037 1585220920 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj 5bcad2caeebac799 -87808 90114 1585220920 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj c3fe7e01dac0e94f -89637 90202 1585220920 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj f8d791db34a2a592 -90114 90288 1585220920 esp-idf/spiffs/libspiffs.a 3977dd0f919f2d3a -89987 90338 1585220920 esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj 2b4b3a1bcf6c4f61 -90338 90417 1585220920 esp-idf/files/libfiles.a dc77d04f5b6e0879 -89435 90430 1585220920 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj cc01b08d89ca2a70 -88986 90616 1585220921 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj d0bd079cd392e22d -90616 90764 1585220921 esp-idf/wifi_provisioning/libwifi_provisioning.a e2c7ff7a52f6a2dd +802 910 1585440584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj af272ef8ae4dfbee +13680 13901 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj 96507abbf32a17a7 +33720 34054 1585440617 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj 44cb918d96c29c1 +7041 7317 1585440590 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj d6712532d0d457a9 +45100 45242 1584850610 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c.obj 36a6c5ec59b3ea26 +67472 67818 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj a613c453db777f1f +58133 59767 1585440643 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj d0bd079cd392e22d +41953 42045 1584850607 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_easy.c.obj 40097f7a5d3921c8 +68866 69041 1585440652 esp-idf/lv_examples/liblv_examples.a 82f3a76acecb0edf +14248 14686 1585440598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj f653b907ddb5efa6 +54959 55069 1585440638 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj f3562a37dfc2c3f9 +54067 55195 1585440638 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj 9bb297ba606ec3f4 +8526 8953 1585440592 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj 52c6f44b2db9fe4c +68744 69345 1585440652 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj a3e3c008e203a60b 90202 90868 1585220921 esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj 49d7414e80ec5115 -90430 90932 1585220921 esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj d67807718f820db3 -90288 90935 1585220921 esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj a28b135a45df7a95 -90932 90989 1585220921 esp-idf/wifi/libwifi.a 318bc43937909b13 -90038 90996 1585220921 esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj 214374bbb1ac680d -90935 91005 1585220921 esp-idf/cmd_nvs/libcmd_nvs.a 1b7bb0daa3755fe0 -90996 91027 1585220921 esp-idf/ca/libca.a 3b311f6ce51ffc82 -90417 91129 1585220921 esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj b8f6030d8fc531ab -91129 91220 1585220921 esp-idf/cmd_system/libcmd_system.a a176a672918a9671 -91036 91343 1585220921 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -91343 91379 1585220921 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -91027 91385 1585220921 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj d96bfafb6f45dd8 -91385 91414 1585220921 esp-idf/main/libmain.a e50809bc3b1cf5a6 -91414 92566 1585220922 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -92566 98869 1585220928 bakalarka.elf 8fe1dd3d033f6afa -98869 99270 1585220929 .bin_timestamp 715a021d8f39a8be -99270 118445 0 CMakeFiles/flash d83eebc13dccbe41 -19 154 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -154 187 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -154 187 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -154 187 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -154 187 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -20 234 1585222222 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -234 257 1585222222 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -257 1273 1585222223 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1273 6080 1585222228 bakalarka.elf 8fe1dd3d033f6afa -6080 6428 1585222228 .bin_timestamp 715a021d8f39a8be -6428 25708 0 CMakeFiles/flash d83eebc13dccbe41 -24 170 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -170 206 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -170 206 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -170 206 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -170 206 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -24 283 1585231898 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -283 332 1585231898 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -332 1860 1585231900 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1861 7916 1585231906 bakalarka.elf 8fe1dd3d033f6afa -7916 8292 1585231906 .bin_timestamp 715a021d8f39a8be -8292 28229 0 CMakeFiles/flash d83eebc13dccbe41 -17 125 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -125 155 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -125 155 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -125 155 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -125 155 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 131 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -131 154 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -131 154 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -131 154 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -131 154 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 103 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -103 125 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -103 125 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -103 125 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -103 125 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 178 1585320234 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -178 212 1585320234 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -212 1819 1585320236 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1819 5977 1585320240 bakalarka.elf 8fe1dd3d033f6afa -5977 6326 1585320240 .bin_timestamp 715a021d8f39a8be -6326 26039 0 CMakeFiles/flash d83eebc13dccbe41 -15 108 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -109 132 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -109 132 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -109 132 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -109 132 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 169 1585320478 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -169 187 1585320478 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -187 1199 1585320479 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1199 7043 1585320484 bakalarka.elf 8fe1dd3d033f6afa -7043 7506 1585320485 .bin_timestamp 715a021d8f39a8be -7506 27262 0 CMakeFiles/flash d83eebc13dccbe41 -15 101 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -101 128 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -101 128 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -101 128 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -101 128 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 170 1585320592 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -170 187 1585320592 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -187 1172 1585320593 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1173 5031 1585320597 bakalarka.elf 8fe1dd3d033f6afa -5031 5321 1585320597 .bin_timestamp 715a021d8f39a8be -5321 25446 0 CMakeFiles/flash d83eebc13dccbe41 -17 110 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -110 134 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -110 134 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -110 134 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -110 134 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -17 175 1585320862 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -175 195 1585320862 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -195 1252 1585320863 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1252 5728 1585320868 bakalarka.elf 8fe1dd3d033f6afa -5728 6032 1585320868 .bin_timestamp 715a021d8f39a8be -6033 26034 0 CMakeFiles/flash d83eebc13dccbe41 -18 144 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -144 169 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -144 169 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -144 169 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -144 169 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -19 223 1585322920 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -223 244 1585322920 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -244 1282 1585322921 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1282 5881 1585322926 bakalarka.elf 8fe1dd3d033f6afa -5881 6315 1585322926 .bin_timestamp 715a021d8f39a8be -6316 26217 0 CMakeFiles/flash d83eebc13dccbe41 -15 112 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -112 137 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -112 137 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -112 137 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -112 137 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 185 1585323458 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -185 204 1585323458 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -204 1094 1585323459 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1094 7195 1585323465 bakalarka.elf 8fe1dd3d033f6afa -7195 7538 1585323465 .bin_timestamp 715a021d8f39a8be -7538 27370 0 CMakeFiles/flash d83eebc13dccbe41 -17 137 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -137 160 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -137 160 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -137 160 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -137 160 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -17 211 1585323560 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -211 234 1585323560 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -234 1232 1585323561 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1242 7280 1585323567 bakalarka.elf 8fe1dd3d033f6afa -7281 7622 1585323567 .bin_timestamp 715a021d8f39a8be -7622 27813 0 CMakeFiles/flash d83eebc13dccbe41 -16 112 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -113 135 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -113 135 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -113 135 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -113 135 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -17 181 1585323891 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -181 204 1585323891 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -204 1134 1585323892 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1134 6981 1585323898 bakalarka.elf 8fe1dd3d033f6afa -6981 7785 1585323899 .bin_timestamp 715a021d8f39a8be -7785 27722 0 CMakeFiles/flash d83eebc13dccbe41 -16 103 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -103 127 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -103 127 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -103 127 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -103 127 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 174 1585324159 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -174 196 1585324159 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -196 1227 1585324160 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1227 5129 1585324164 bakalarka.elf 8fe1dd3d033f6afa -5129 5414 1585324164 .bin_timestamp 715a021d8f39a8be -5414 25344 0 CMakeFiles/flash d83eebc13dccbe41 -20 163 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -164 205 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -164 205 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -164 205 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -164 205 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -20 314 1585332151 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -314 357 1585332151 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -357 2279 1585332153 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -2279 12393 1585332163 bakalarka.elf 8fe1dd3d033f6afa -12393 12945 1585332164 .bin_timestamp 715a021d8f39a8be -25 142 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -142 224 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -142 224 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -142 224 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -142 224 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -25 277 1585332299 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -277 307 1585332299 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -308 1693 1585332300 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1693 8458 1585332307 bakalarka.elf 8fe1dd3d033f6afa -8459 8875 1585332307 .bin_timestamp 715a021d8f39a8be -16 119 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -119 148 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -119 148 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -119 148 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -119 148 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -148 19932 0 CMakeFiles/flash d83eebc13dccbe41 -16 111 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -111 134 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -111 134 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -111 134 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -111 134 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -17 184 1585333040 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -184 201 1585333040 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -201 1243 1585333041 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1243 7206 1585333047 bakalarka.elf 8fe1dd3d033f6afa -7206 7593 1585333047 .bin_timestamp 715a021d8f39a8be -24 141 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -141 173 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -141 173 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -141 173 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -141 173 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -173 20110 0 CMakeFiles/flash d83eebc13dccbe41 -15 105 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -105 129 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -105 129 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -105 129 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -105 129 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 175 1585333174 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -175 196 1585333174 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -196 1169 1585333175 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1169 5667 1585333179 bakalarka.elf 8fe1dd3d033f6afa -5667 5959 1585333180 .bin_timestamp 715a021d8f39a8be -5959 25650 0 CMakeFiles/flash d83eebc13dccbe41 -23 165 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -165 221 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -165 221 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -165 221 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -165 221 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -24 341 1585333502 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -341 371 1585333502 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -371 1960 1585333503 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1960 8760 1585333510 bakalarka.elf 8fe1dd3d033f6afa -8760 9207 1585333511 .bin_timestamp 715a021d8f39a8be -9207 28949 0 CMakeFiles/flash d83eebc13dccbe41 -26 128 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -128 155 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -128 155 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -128 155 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -128 155 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -26 241 1585334321 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -241 269 1585334321 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -269 1341 1585334322 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1341 8232 1585334329 bakalarka.elf 8fe1dd3d033f6afa -8232 8610 1585334330 .bin_timestamp 715a021d8f39a8be -8610 28339 0 CMakeFiles/flash d83eebc13dccbe41 -17 133 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -133 155 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -133 155 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -133 155 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -133 155 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -17 202 1585334645 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -202 223 1585334645 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -223 1171 1585334646 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1171 5292 1585334650 bakalarka.elf 8fe1dd3d033f6afa -5292 5645 1585334650 .bin_timestamp 715a021d8f39a8be -5645 25173 0 CMakeFiles/flash d83eebc13dccbe41 -17 116 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +68027 68395 1585440651 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj 83a7321f3c8a7dc5 +57691 58058 1585440641 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj e09bb6de59a31e7e +43334 43657 1584850609 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c.obj 3f65de6445569d6d +63332 64027 1585440647 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj b171991e5afcede5 +51479 51889 1585440635 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj 3af87427c190f5e0 +10070 10263 1585440593 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 57ba8996a2eaa210 +14166 14541 1585440597 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj bd96bcfd10a93c1 +5824 6108 1585440589 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj aefc19da6bdfeaf9 +1 5333 1585440691 build.ninja 1ff6234f96ac208 +30 242 1585440691 esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj 2b4b3a1bcf6c4f61 +242 382 1585440691 esp-idf/files/libfiles.a dc77d04f5b6e0879 +31 410 1585440691 esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj 49d7414e80ec5115 +30 426 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +31 452 1585440691 esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj a28b135a45df7a95 +410 530 1585440691 esp-idf/lvgl_tft/liblvgl_tft.a 54e6a07d61896206 +427 556 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +427 556 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +427 556 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +427 556 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +453 584 1585440691 esp-idf/cmd_nvs/libcmd_nvs.a 1b7bb0daa3755fe0 +31 630 1585440691 esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj 214374bbb1ac680d +33 651 1585440691 esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj b8f6030d8fc531ab +530 663 1585440691 esp-idf/lvgl_touch/liblvgl_touch.a a84b401e288a8a96 +630 667 1585440691 esp-idf/ca/libca.a 3b311f6ce51ffc82 +651 707 1585440691 esp-idf/cmd_system/libcmd_system.a a176a672918a9671 +383 758 1585440692 esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj d67807718f820db3 +759 786 1585440692 esp-idf/wifi/libwifi.a 318bc43937909b13 +787 1001 1585440692 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj 9e52798f51b4b14a +787 1002 1585440692 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 +1002 1032 1585440692 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d +1032 1057 1585440692 esp-idf/main/libmain.a e50809bc3b1cf5a6 +1057 2285 1585440693 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +2285 2309 1585440693 CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj b5b34317791e90e7 +2310 7480 1585440698 bakalarka.elf b08faf5817ad4f44 +7480 7808 1585440699 .bin_timestamp 715a021d8f39a8be +21 116 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 116 141 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 116 141 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 116 141 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 116 141 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -141 19866 0 CMakeFiles/flash d83eebc13dccbe41 -27 132 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -132 166 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -132 166 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -132 166 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -132 166 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -27 322 1585334878 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -322 348 1585334878 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -348 1805 1585334879 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1805 9100 1585334886 bakalarka.elf 8fe1dd3d033f6afa -9101 9921 1585334887 .bin_timestamp 715a021d8f39a8be -9921 29727 0 CMakeFiles/flash d83eebc13dccbe41 -28 144 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -145 177 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -145 177 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -145 177 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -145 177 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -28 354 1585335545 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -354 385 1585335545 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -385 1928 1585335546 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1928 9283 1585335554 bakalarka.elf 8fe1dd3d033f6afa -9284 9774 1585335554 .bin_timestamp 715a021d8f39a8be -9774 29378 0 CMakeFiles/flash d83eebc13dccbe41 -27 150 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -150 191 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -150 191 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -150 191 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -150 191 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -19 152 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -152 184 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -152 184 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -152 184 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -152 184 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -27 118 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -118 144 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -118 144 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -118 144 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -118 144 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -27 499 1585404934 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj a04cf172379f7def -499 627 1585404935 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a ba9822d5d40cb5ce -628 808 1585404935 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -808 832 1585404935 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -832 2379 1585404936 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -2379 6639 1585404941 bakalarka.elf 8fe1dd3d033f6afa -6639 6969 1585404941 .bin_timestamp 715a021d8f39a8be -16 114 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -114 140 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -114 140 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -114 140 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -114 140 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -15 102 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -102 127 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -102 127 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -102 127 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -102 127 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -127 19939 0 CMakeFiles/flash d83eebc13dccbe41 -22 112 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -112 144 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -112 144 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -112 144 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -112 144 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -23 194 1585405399 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -194 217 1585405399 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -217 1273 1585405400 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1273 5327 1585405404 bakalarka.elf 8fe1dd3d033f6afa -5327 5620 1585405404 .bin_timestamp 715a021d8f39a8be -5621 25443 0 CMakeFiles/flash d83eebc13dccbe41 -16 122 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -122 147 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -122 147 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -122 147 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -122 147 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -17 189 1585405573 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -189 209 1585405573 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -209 1230 1585405574 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1230 5220 1585405578 bakalarka.elf 8fe1dd3d033f6afa -5220 5512 1585405578 .bin_timestamp 715a021d8f39a8be -5512 25190 0 CMakeFiles/flash d83eebc13dccbe41 -94 205 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -205 240 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -205 240 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -205 240 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -205 240 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -94 421 1585405823 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -421 447 1585405823 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -447 2006 1585405825 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -2006 6329 1585405829 bakalarka.elf 8fe1dd3d033f6afa -6329 6625 1585405830 .bin_timestamp 715a021d8f39a8be -6626 26378 0 CMakeFiles/flash d83eebc13dccbe41 -23 97 1585406143 esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj 2b4b3a1bcf6c4f61 -97 124 1585406143 esp-idf/files/libfiles.a dc77d04f5b6e0879 -23 125 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -125 152 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -125 152 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -125 152 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -125 152 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -125 282 1585406143 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -282 306 1585406143 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -306 1300 1585406144 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1300 5211 1585406148 bakalarka.elf 8fe1dd3d033f6afa -5211 5498 1585406149 .bin_timestamp 715a021d8f39a8be -5498 25322 0 CMakeFiles/flash d83eebc13dccbe41 -21 122 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -122 154 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -122 154 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -122 154 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -122 154 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -22 218 1585406514 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -218 241 1585406514 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -241 1272 1585406515 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1272 5464 1585406519 bakalarka.elf 8fe1dd3d033f6afa -5464 5756 1585406519 .bin_timestamp 715a021d8f39a8be -5756 25661 0 CMakeFiles/flash d83eebc13dccbe41 -17 141 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -141 171 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -141 171 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -141 171 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -141 171 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -17 227 1585406757 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -228 248 1585406757 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -248 1329 1585406758 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1329 5929 1585406763 bakalarka.elf 8fe1dd3d033f6afa -5929 6296 1585406763 .bin_timestamp 715a021d8f39a8be -6296 26071 0 CMakeFiles/flash d83eebc13dccbe41 -22 137 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -137 160 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -137 160 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -137 160 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -137 160 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -23 222 1585406858 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -222 249 1585406858 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -249 1386 1585406859 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1386 6461 1585406864 bakalarka.elf 8fe1dd3d033f6afa -6461 6806 1585406864 .bin_timestamp 715a021d8f39a8be -6806 26434 0 CMakeFiles/flash d83eebc13dccbe41 -67 167 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -167 202 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -167 202 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -167 202 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -167 202 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -67 405 1585407245 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj d96bfafb6f45dd8 -405 443 1585407245 esp-idf/main/libmain.a e50809bc3b1cf5a6 -443 2039 1585407247 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -2039 7161 1585407252 bakalarka.elf 8fe1dd3d033f6afa -7161 7514 1585407253 .bin_timestamp 715a021d8f39a8be -7514 26803 0 CMakeFiles/flash d83eebc13dccbe41 -17 155 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -155 195 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -155 195 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -155 195 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -155 195 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -18 232 1585407425 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -233 265 1585407425 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -18 271 1585407425 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj d96bfafb6f45dd8 -271 289 1585407425 esp-idf/main/libmain.a e50809bc3b1cf5a6 -289 1369 1585407426 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1369 6837 1585407431 bakalarka.elf 8fe1dd3d033f6afa -6837 7190 1585407432 .bin_timestamp 715a021d8f39a8be -7190 26339 0 CMakeFiles/flash d83eebc13dccbe41 -16 119 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -119 145 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -119 145 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -119 145 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -119 145 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -17 193 1585407538 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -193 214 1585407538 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -214 1173 1585407539 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1173 5129 1585407543 bakalarka.elf 8fe1dd3d033f6afa -5129 5416 1585407544 .bin_timestamp 715a021d8f39a8be -5416 25224 0 CMakeFiles/flash d83eebc13dccbe41 -109 216 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -217 246 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -217 246 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -217 246 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -217 246 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -109 420 1585408594 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -420 453 1585408594 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -453 2042 1585408596 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -2042 6753 1585408600 bakalarka.elf 8fe1dd3d033f6afa -6753 7054 1585408601 .bin_timestamp 715a021d8f39a8be -7054 26462 0 CMakeFiles/flash d83eebc13dccbe41 -26 172 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -173 224 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -173 224 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -173 224 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -173 224 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -26 301 1585408992 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -301 329 1585408992 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -329 1674 1585408994 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1674 7708 1585409000 bakalarka.elf 8fe1dd3d033f6afa -7708 8151 1585409000 .bin_timestamp 715a021d8f39a8be -8151 27367 0 CMakeFiles/flash d83eebc13dccbe41 -1 84916 0 CMakeFiles/menuconfig 52b3e75ddaf121f1 -1 5326 1585409935 build.ninja 1ff6234f96ac208 -15 123 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -15 211 1585409935 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -211 234 1585409935 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -234 1353 1585409936 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -123 1967 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -123 1967 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -123 1967 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -123 1967 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -1353 5425 1585409940 bakalarka.elf 8fe1dd3d033f6afa -5425 5710 1585409941 .bin_timestamp 715a021d8f39a8be -5710 24978 0 CMakeFiles/flash d83eebc13dccbe41 -16 108 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -108 132 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -108 132 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -108 132 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -108 132 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 185 1585410313 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -186 209 1585410313 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -209 1177 1585410314 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1177 7289 1585410321 bakalarka.elf 8fe1dd3d033f6afa -7289 7828 1585410321 .bin_timestamp 715a021d8f39a8be -7828 27087 0 CMakeFiles/flash d83eebc13dccbe41 -21 171 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -171 210 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -171 210 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -171 210 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -171 210 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -22 261 1585410430 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -261 289 1585410430 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -290 1492 1585410432 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1492 7826 1585410438 bakalarka.elf 8fe1dd3d033f6afa -7826 8213 1585410438 .bin_timestamp 715a021d8f39a8be -8214 27425 0 CMakeFiles/flash d83eebc13dccbe41 -33 209 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -210 249 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -210 249 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -210 249 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -210 249 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -34 315 1585411023 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -315 360 1585411023 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -360 1834 1585411024 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1834 8425 1585411031 bakalarka.elf 8fe1dd3d033f6afa -8426 8944 1585411031 .bin_timestamp 715a021d8f39a8be -8944 28172 0 CMakeFiles/flash d83eebc13dccbe41 -32 164 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -164 202 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -164 202 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -164 202 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -164 202 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -33 430 1585411378 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -430 464 1585411378 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -465 1805 1585411379 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1806 7802 1585411385 bakalarka.elf 8fe1dd3d033f6afa -7802 8195 1585411385 .bin_timestamp 715a021d8f39a8be -8195 27569 0 CMakeFiles/flash d83eebc13dccbe41 -27 163 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -163 200 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -163 200 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -163 200 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -163 200 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -28 259 1585411602 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -259 294 1585411602 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -294 1517 1585411603 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1518 7712 1585411609 bakalarka.elf 8fe1dd3d033f6afa -7712 8086 1585411610 .bin_timestamp 715a021d8f39a8be -8086 27465 0 CMakeFiles/flash d83eebc13dccbe41 -23 154 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -154 192 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -154 192 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -154 192 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -154 192 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -23 243 1585411806 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -243 272 1585411806 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -272 1459 1585411807 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1460 11047 1585411816 bakalarka.elf 8fe1dd3d033f6afa -11048 11524 1585411817 .bin_timestamp 715a021d8f39a8be -11524 30707 0 CMakeFiles/flash d83eebc13dccbe41 -15 133 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -133 160 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -133 160 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -133 160 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -133 160 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -15 210 1585412362 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -210 232 1585412362 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -232 1124 1585412363 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1124 4962 1585412367 bakalarka.elf 8fe1dd3d033f6afa -4963 5243 1585412367 .bin_timestamp 715a021d8f39a8be -5243 24588 0 CMakeFiles/flash d83eebc13dccbe41 -16 111 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -111 134 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -111 134 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -111 134 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -111 134 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -17 187 1585412665 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -187 211 1585412665 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -211 1205 1585412666 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1205 6296 1585412671 bakalarka.elf 8fe1dd3d033f6afa -6296 6667 1585412671 .bin_timestamp 715a021d8f39a8be -6667 26013 0 CMakeFiles/flash d83eebc13dccbe41 -16 111 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 -111 136 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 -111 136 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 -111 136 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 -111 136 1585139896 bootloader/bootloader.map c9d3074ff32525e5 -16 185 1585412792 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj adaeb60f8b50b574 -186 205 1585412792 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d -205 1114 1585412793 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 -1114 5085 1585412797 bakalarka.elf 8fe1dd3d033f6afa -5085 5369 1585412797 .bin_timestamp 715a021d8f39a8be -5369 25093 0 CMakeFiles/flash d83eebc13dccbe41 +22 126 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +126 156 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +126 156 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +126 156 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +126 156 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +156 20000 0 CMakeFiles/flash d83eebc13dccbe41 +0 7005 1585443041 build.ninja 1ff6234f96ac208 +31 276 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +0 5999 1585443230 build.ninja 1ff6234f96ac208 +41 390 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +41 608 1585443231 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj bf90d2cdaeef053 +28 236 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +29 241 1585443300 esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj 6504e6605799e59d +236 303 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +236 303 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +236 303 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +236 303 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +241 312 1585443300 esp-idf/display/libdisplay.a c1fabff6ccad588e +28 498 1585443301 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj bf90d2cdaeef053 +498 535 1585443301 esp-idf/main/libmain.a e50809bc3b1cf5a6 +535 1787 1585443302 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +1787 1808 1585443302 CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj fca4e1eb106fd9d6 +1808 9049 1585443309 bakalarka.elf c04f9fc94062d514 +9049 9450 1585443309 .bin_timestamp 715a021d8f39a8be +25 158 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +158 190 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +158 190 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +158 190 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +158 190 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +190 25556 0 CMakeFiles/flash d83eebc13dccbe41 +0 5645 1585443944 build.ninja 1ff6234f96ac208 +31 120 1585443944 partition_table/partition-table.bin 7655812377592a4e +120 246 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +246 275 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +246 275 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +246 275 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +246 275 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +276 25832 0 CMakeFiles/flash d83eebc13dccbe41 +33 185 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +185 217 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +185 217 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +185 217 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +185 217 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +33 323 1585444391 esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj 6504e6605799e59d +323 357 1585444391 esp-idf/display/libdisplay.a c1fabff6ccad588e +357 1610 1585444393 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +31 209 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +209 256 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +209 256 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +209 256 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +209 256 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +31 258 1585444528 esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj 6504e6605799e59d +259 289 1585444528 esp-idf/display/libdisplay.a c1fabff6ccad588e +289 1470 1585444529 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +1 6043 1585444909 build.ninja 1ff6234f96ac208 +19 149 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +150 209 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +150 209 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +150 209 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +150 209 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +20 251 1585444909 esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj 6504e6605799e59d +251 279 1585444909 esp-idf/display/libdisplay.a c1fabff6ccad588e +279 1500 1585444910 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +32 202 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +202 258 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +202 258 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +202 258 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +202 258 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +27 216 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +217 255 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +217 255 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +217 255 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +217 255 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +28 299 1585445021 esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj 6504e6605799e59d +300 332 1585445021 esp-idf/display/libdisplay.a c1fabff6ccad588e +332 1574 1585445022 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +1574 9027 1585445029 bakalarka.elf c04f9fc94062d514 +9027 9488 1585445030 .bin_timestamp 715a021d8f39a8be +9488 35225 0 CMakeFiles/flash d83eebc13dccbe41 +0 5089 1585445261 build.ninja 1ff6234f96ac208 +28 152 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +152 189 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +152 189 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +152 189 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +152 189 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +30 394 1585445262 esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj 6504e6605799e59d +395 434 1585445262 esp-idf/display/libdisplay.a c1fabff6ccad588e +29 561 1585445262 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj de708fb2de3b8d2 +561 578 1585445262 esp-idf/main/libmain.a e50809bc3b1cf5a6 +578 2045 1585445264 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +2046 8411 1585445270 bakalarka.elf c04f9fc94062d514 +8411 8875 1585445270 .bin_timestamp 715a021d8f39a8be +8875 34549 0 CMakeFiles/flash d83eebc13dccbe41 +19 117 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +117 146 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +117 146 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +117 146 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +117 146 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +20 170 1585445361 esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj 6504e6605799e59d +170 191 1585445361 esp-idf/display/libdisplay.a c1fabff6ccad588e +191 1270 1585445362 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +18 100 1585445474 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj 5748e906d82d91ed +100 147 1585445474 esp-idf/lv_examples/liblv_examples.a 82f3a76acecb0edf +18 157 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +158 182 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +158 182 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +158 182 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +158 182 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +19 202 1585445474 esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj 6504e6605799e59d +203 218 1585445474 esp-idf/display/libdisplay.a c1fabff6ccad588e +218 1282 1585445475 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +1 4799 1585445634 build.ninja 1ff6234f96ac208 +17 144 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +144 176 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +144 176 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +144 176 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +144 176 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +17 287 1585445634 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj bf90d2cdaeef053 +287 304 1585445634 esp-idf/main/libmain.a e50809bc3b1cf5a6 +304 1340 1585445635 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +1 6270 1585445711 build.ninja 1ff6234f96ac208 +25 300 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +300 341 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +300 341 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +300 341 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +300 341 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +30 164 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj 8fa76961a41028e6 +30 391 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj 93a1970f2c273778 +30 400 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj 5e07921c9aacaf19 +164 424 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj e38a4a0347079586 +29 426 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +34 479 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj 5748e906d82d91ed +426 497 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +426 497 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +426 497 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +426 497 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +30 542 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj ecd611595e720ba3 +391 722 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj 69b0c4ae97524ea6 +400 773 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj 5a9c2462a81ddeec +497 786 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj b076966bdf16c707 +424 815 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj a993bce1a54eca11 +542 831 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj fc0ef17776683fd6 +722 1045 1585445880 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj ab38eba3bcb313e3 +773 1164 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj 84578a5e50de7182 +786 1166 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj c03800bc186dd997 +832 1178 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj 3e03a99d557c86c4 +479 1234 1585445881 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj bf90d2cdaeef053 +815 1242 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj 81d9c5fd3de599b +1045 1436 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj c83056a0964ae9db +1178 1465 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj 9b53bc270ffb3df3 +1164 1480 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj 5776d0d0a5e5e73c +1166 1537 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj c338a0344c420e5d +1243 1638 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj 86e81365dc9a5187 +1234 1646 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj 815339598b898403 +1436 1750 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj b73ef31ebdd9048c +1537 1822 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj 5b9c86171d95e6e8 +1480 1845 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj b434a88a7533255c +1465 1927 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj 3b82865c640fe6f1 +1646 2004 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj e32da812a2b4f5eb +1638 2035 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj 1625ea4f614b1b56 +1822 2053 1585445881 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj 1f937a3f80a7a36d +1750 2176 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj 42e129e9a51de81e +2035 2208 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj cf8acb385bc747ee +1845 2211 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj 3412524185bc6a98 +1928 2278 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj 6e059b721aeb91c8 +2005 2317 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj a613c453db777f1f +2208 2491 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj f65903b8c9c1a18d +2053 2579 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj 5da4d897f34c5be0 +2176 2628 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj 8df07527f8fb699d +2317 2682 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj a7d070943958ffc5 +2278 2691 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj a63cbd3c50116b8f +2211 2726 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj 2a26f883b680cff7 +2491 2861 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj 5e437dc3ab6d77e +2579 3026 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj 86747d137de54150 +2628 3031 1585445882 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj fe7e28099504e083 +2692 3121 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj bda59e04ff6326ef +2726 3167 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj 9b36489dffdaf198 +2682 3197 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj bec180ac9dd2210 +2865 3341 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj 3d66a4f4ef12d80 +3121 3531 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj 7ba51764ab8f6abb +3026 3540 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj b702f54cb3b75592 +3031 3544 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj ae0cce16dafcdce2 +3197 3546 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj 7c2797d5ee22551c +3168 3625 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj 83a7321f3c8a7dc5 +3341 3735 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj 8eb33159e4f14d2c +3540 4004 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj 5cec7a5acdaec7 +3531 4018 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj 99e303c39258e4ec +3546 4034 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj 980beab92d60fc5 +3544 4061 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj 671d993d0e2ce6ca +3625 4089 1585445883 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj 4a12ad6d003f753b +3735 4151 1585445884 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj 49ed7435d550c91a +4004 4205 1585445884 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj eacac3dd3e68109c +4205 4286 1585445884 esp-idf/lv_examples/liblv_examples.a 82f3a76acecb0edf +29 165 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +165 210 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +165 210 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +165 210 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +165 210 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +29 302 1585446107 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj 5e07921c9aacaf19 +28 315 1585446107 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj 8fa76961a41028e6 +28 340 1585446107 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj 93a1970f2c273778 +28 369 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +30 442 1585446107 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj 5748e906d82d91ed +369 500 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +369 500 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +369 500 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +369 500 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +302 520 1585446107 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj e38a4a0347079586 +442 643 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj a993bce1a54eca11 +341 685 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj 5a9c2462a81ddeec +29 737 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj ecd611595e720ba3 +315 815 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj 69b0c4ae97524ea6 +520 933 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj b076966bdf16c707 +686 936 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj ab38eba3bcb313e3 +643 1001 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj fc0ef17776683fd6 +816 1031 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj c03800bc186dd997 +737 1138 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj 84578a5e50de7182 +1001 1281 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj c83056a0964ae9db +1031 1404 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj 5776d0d0a5e5e73c +936 1424 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj 3e03a99d557c86c4 +500 1509 1585446108 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj bf90d2cdaeef053 +933 1518 1585446108 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj 81d9c5fd3de599b +1138 1563 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj c338a0344c420e5d +1281 1665 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj 9b53bc270ffb3df3 +1405 1695 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj 815339598b898403 +1424 1732 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj 86e81365dc9a5187 +1509 1793 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj b73ef31ebdd9048c +1666 1954 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj 5b9c86171d95e6e8 +1518 1995 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj 3b82865c640fe6f1 +1563 2056 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj b434a88a7533255c +1794 2106 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj 42e129e9a51de81e +1695 2123 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj 1625ea4f614b1b56 +1733 2317 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj e32da812a2b4f5eb +1955 2374 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj 1f937a3f80a7a36d +2056 2387 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj 6e059b721aeb91c8 +1995 2398 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj 3412524185bc6a98 +2107 2459 1585446109 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj a613c453db777f1f +2124 2546 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj cf8acb385bc747ee +2317 2639 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj 5da4d897f34c5be0 +2375 2667 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj 8df07527f8fb699d +2387 2705 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj f65903b8c9c1a18d +2399 2743 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj 2a26f883b680cff7 +2459 2829 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj a63cbd3c50116b8f +2546 2896 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj a7d070943958ffc5 +2667 2950 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj 86747d137de54150 +2639 2959 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj 5e437dc3ab6d77e +2743 3092 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj bec180ac9dd2210 +2706 3201 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj fe7e28099504e083 +2829 3235 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj bda59e04ff6326ef +2950 3246 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj 3d66a4f4ef12d80 +2960 3277 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj b702f54cb3b75592 +2896 3318 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj 9b36489dffdaf198 +3201 3481 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj 7ba51764ab8f6abb +3092 3490 1585446110 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj ae0cce16dafcdce2 +3318 3569 1585446111 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj 99e303c39258e4ec +3236 3606 1585446111 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj 83a7321f3c8a7dc5 +3277 3667 1585446111 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj 8eb33159e4f14d2c +3246 3700 1585446111 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj 7c2797d5ee22551c +3481 3794 1585446111 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj 5cec7a5acdaec7 +3569 3848 1585446111 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj 980beab92d60fc5 +3490 3857 1585446111 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj 671d993d0e2ce6ca +3667 3935 1585446111 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj 49ed7435d550c91a +3606 3968 1585446111 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj 4a12ad6d003f753b +3701 4028 1585446111 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj eacac3dd3e68109c +4029 4082 1585446111 esp-idf/lv_examples/liblv_examples.a 82f3a76acecb0edf +35 268 1585446252 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj 93a1970f2c273778 +35 279 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +35 325 1585446252 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj 8fa76961a41028e6 +279 340 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +279 340 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +279 340 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +279 340 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +40 423 1585446252 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj 5748e906d82d91ed +37 432 1585446252 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj 5e07921c9aacaf19 +268 440 1585446252 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj e38a4a0347079586 +36 535 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj ecd611595e720ba3 +325 693 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj 69b0c4ae97524ea6 +423 707 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj a993bce1a54eca11 +340 728 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj 5a9c2462a81ddeec +440 805 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj b076966bdf16c707 +536 916 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj fc0ef17776683fd6 +708 926 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj 84578a5e50de7182 +693 1016 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj ab38eba3bcb313e3 +728 1186 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj c03800bc186dd997 +805 1194 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj 81d9c5fd3de599b +432 1253 1585446253 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj bf90d2cdaeef053 +916 1262 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj 3e03a99d557c86c4 +1016 1278 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj 5776d0d0a5e5e73c +926 1390 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj c83056a0964ae9db +1186 1419 1585446253 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj c338a0344c420e5d +1195 1498 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj 9b53bc270ffb3df3 +1253 1566 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj 815339598b898403 +1278 1585 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj b73ef31ebdd9048c +1390 1643 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj 3b82865c640fe6f1 +1262 1758 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj 86e81365dc9a5187 +1566 1784 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj 1625ea4f614b1b56 +1498 1909 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj 5b9c86171d95e6e8 +1420 1913 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj b434a88a7533255c +1784 2003 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj 3412524185bc6a98 +1586 2045 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj e32da812a2b4f5eb +1643 2127 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj 42e129e9a51de81e +1758 2229 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj 1f937a3f80a7a36d +1909 2310 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj 6e059b721aeb91c8 +2004 2331 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj cf8acb385bc747ee +1913 2346 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj a613c453db777f1f +2045 2441 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj 5da4d897f34c5be0 +2127 2465 1585446254 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj 8df07527f8fb699d +2230 2533 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj f65903b8c9c1a18d +2347 2605 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj a7d070943958ffc5 +2332 2614 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj a63cbd3c50116b8f +2310 2703 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj 2a26f883b680cff7 +2533 2742 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj fe7e28099504e083 +2441 2819 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj 5e437dc3ab6d77e +2605 2834 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj bec180ac9dd2210 +2703 2931 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj 9b36489dffdaf198 +2465 3024 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj 86747d137de54150 +2743 3089 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj 3d66a4f4ef12d80 +2614 3106 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj bda59e04ff6326ef +2834 3143 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj ae0cce16dafcdce2 +2819 3159 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj b702f54cb3b75592 +2931 3235 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj 7ba51764ab8f6abb +3024 3256 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj 83a7321f3c8a7dc5 +3090 3302 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj 7c2797d5ee22551c +3302 3475 1585446255 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj 4a12ad6d003f753b +3143 3534 1585446256 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj 99e303c39258e4ec +3235 3559 1585446256 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj 671d993d0e2ce6ca +3256 3609 1585446256 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj 980beab92d60fc5 +3476 3646 1585446256 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj 49ed7435d550c91a +3106 3671 1585446256 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj 8eb33159e4f14d2c +3159 3678 1585446256 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj 5cec7a5acdaec7 +3534 3730 1585446256 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj eacac3dd3e68109c +3730 3796 1585446256 esp-idf/lv_examples/liblv_examples.a 82f3a76acecb0edf +29 175 1585446444 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj 5748e906d82d91ed +28 209 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +176 265 1585446444 esp-idf/lv_examples/liblv_examples.a 82f3a76acecb0edf +209 292 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +209 292 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +209 292 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +209 292 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +25 229 1585446524 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj 8fa76961a41028e6 +29 303 1585446524 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj 5748e906d82d91ed +25 372 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +26 415 1585446524 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj 5e07921c9aacaf19 +372 485 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +372 485 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +372 485 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +372 485 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +303 529 1585446524 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj 69b0c4ae97524ea6 +230 540 1585446524 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj e38a4a0347079586 +25 755 1585446524 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj 93a1970f2c273778 +415 856 1585446524 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj 5a9c2462a81ddeec +485 981 1585446524 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj a993bce1a54eca11 +541 985 1585446524 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj b076966bdf16c707 +755 1157 1585446524 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj fc0ef17776683fd6 +856 1191 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj ab38eba3bcb313e3 +981 1279 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj 84578a5e50de7182 +530 1304 1585446525 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj bf90d2cdaeef053 +986 1404 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj c03800bc186dd997 +1192 1432 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj 3e03a99d557c86c4 +1305 1525 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj 5776d0d0a5e5e73c +1158 1601 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj 81d9c5fd3de599b +1279 1748 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj c83056a0964ae9db +1404 1777 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj c338a0344c420e5d +1432 1826 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj 9b53bc270ffb3df3 +1525 1856 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj 815339598b898403 +1601 1965 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj 86e81365dc9a5187 +1748 2089 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj b73ef31ebdd9048c +1777 2142 1585446525 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj 3b82865c640fe6f1 +1826 2181 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj b434a88a7533255c +1856 2233 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj 5b9c86171d95e6e8 +1965 2291 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj 1625ea4f614b1b56 +2142 2379 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj 42e129e9a51de81e +2089 2504 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj e32da812a2b4f5eb +2233 2532 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj 3412524185bc6a98 +2181 2608 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj 1f937a3f80a7a36d +26 2742 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj ecd611595e720ba3 +2291 2819 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj 6e059b721aeb91c8 +2380 2852 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj a613c453db777f1f +2504 2915 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj cf8acb385bc747ee +2532 2934 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj 5da4d897f34c5be0 +2608 2975 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj 8df07527f8fb699d +2852 3128 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj a63cbd3c50116b8f +2915 3146 1585446526 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj a7d070943958ffc5 +2823 3226 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj 2a26f883b680cff7 +2742 3243 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj f65903b8c9c1a18d +2934 3369 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj 5e437dc3ab6d77e +2975 3396 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj 86747d137de54150 +3128 3405 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj fe7e28099504e083 +3146 3459 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj bec180ac9dd2210 +3226 3523 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj bda59e04ff6326ef +3243 3648 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj 9b36489dffdaf198 +3459 3678 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj 7ba51764ab8f6abb +3369 3749 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj 3d66a4f4ef12d80 +3406 3781 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj ae0cce16dafcdce2 +3396 3816 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj b702f54cb3b75592 +3678 3972 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj 8eb33159e4f14d2c +3523 4004 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj 83a7321f3c8a7dc5 +3749 4139 1585446527 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj 99e303c39258e4ec +3649 4210 1585446528 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj 7c2797d5ee22551c +3817 4223 1585446528 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj 671d993d0e2ce6ca +3781 4243 1585446528 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj 5cec7a5acdaec7 +3973 4261 1585446528 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj 980beab92d60fc5 +4143 4384 1585446528 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj 49ed7435d550c91a +4004 4386 1585446528 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj 4a12ad6d003f753b +4210 4412 1585446528 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj eacac3dd3e68109c +4412 4483 1585446528 esp-idf/lv_examples/liblv_examples.a 82f3a76acecb0edf +4223 4501 1585446528 esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj 6504e6605799e59d +4501 4521 1585446528 esp-idf/display/libdisplay.a c1fabff6ccad588e +4521 4548 1585446528 esp-idf/main/libmain.a e50809bc3b1cf5a6 +4548 5844 1585446529 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +5844 12304 1585446536 bakalarka.elf c04f9fc94062d514 +12304 12701 1585446536 .bin_timestamp 715a021d8f39a8be +25 147 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +147 176 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +147 176 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +147 176 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +147 176 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +176 21496 0 CMakeFiles/flash d83eebc13dccbe41 +27 243 1585446776 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj 8fa76961a41028e6 +29 295 1585446776 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj 5748e906d82d91ed +26 364 0 esp-idf/partition_table/CMakeFiles/partition_table fb7f74782daa0374 +28 371 1585446776 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj 5e07921c9aacaf19 +365 433 1585139896 bootloader-prefix/src/bootloader-stamp/bootloader-build c9d3074ff32525e5 +365 433 1585139896 bootloader/bootloader.elf c9d3074ff32525e5 +365 433 1585139896 bootloader/bootloader.bin c9d3074ff32525e5 +365 433 1585139896 bootloader/bootloader.map c9d3074ff32525e5 +27 594 1585446776 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj 93a1970f2c273778 +296 754 1585446776 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj 69b0c4ae97524ea6 +434 773 1585446776 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj a993bce1a54eca11 +243 785 1585446776 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj e38a4a0347079586 +371 940 1585446776 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj 5a9c2462a81ddeec +785 1133 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj ab38eba3bcb313e3 +774 1139 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj fc0ef17776683fd6 +754 1157 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj b076966bdf16c707 +941 1172 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj 84578a5e50de7182 +1139 1348 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj 81d9c5fd3de599b +1133 1447 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj c03800bc186dd997 +1157 1456 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj 3e03a99d557c86c4 +1173 1472 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj c83056a0964ae9db +595 1670 1585446777 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj bf90d2cdaeef053 +1349 1686 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj 5776d0d0a5e5e73c +1457 1802 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj 9b53bc270ffb3df3 +1447 1836 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj c338a0344c420e5d +1472 1851 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj 815339598b898403 +1802 2030 1585446777 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj 3b82865c640fe6f1 +1686 2121 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj b73ef31ebdd9048c +1670 2133 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj 86e81365dc9a5187 +1851 2273 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj 5b9c86171d95e6e8 +1836 2285 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj b434a88a7533255c +2030 2399 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj 1625ea4f614b1b56 +2285 2527 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj 3412524185bc6a98 +2121 2653 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj e32da812a2b4f5eb +2273 2676 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj 1f937a3f80a7a36d +2399 2754 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj 6e059b721aeb91c8 +2133 2782 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj 42e129e9a51de81e +2528 2842 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj a613c453db777f1f +2653 2978 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj cf8acb385bc747ee +28 3007 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj ecd611595e720ba3 +2676 3059 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj 5da4d897f34c5be0 +2755 3102 1585446778 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj 8df07527f8fb699d +2842 3205 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj 2a26f883b680cff7 +2782 3267 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj f65903b8c9c1a18d +3007 3339 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj a7d070943958ffc5 +2978 3411 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj a63cbd3c50116b8f +3059 3464 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj 5e437dc3ab6d77e +3268 3508 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj bec180ac9dd2210 +3102 3537 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj 86747d137de54150 +3205 3543 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj fe7e28099504e083 +3411 3705 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj 9b36489dffdaf198 +3509 3717 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj b702f54cb3b75592 +3339 3833 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj bda59e04ff6326ef +3464 3876 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj 3d66a4f4ef12d80 +3537 3897 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj ae0cce16dafcdce2 +3543 4010 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj 7ba51764ab8f6abb +3705 4129 1585446779 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj 83a7321f3c8a7dc5 +3833 4145 1585446780 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj 8eb33159e4f14d2c +3897 4183 1585446780 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj 5cec7a5acdaec7 +3717 4206 1585446780 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj 7c2797d5ee22551c +3876 4354 1585446780 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj 99e303c39258e4ec +4010 4368 1585446780 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj 671d993d0e2ce6ca +4146 4385 1585446780 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj 4a12ad6d003f753b +4130 4448 1585446780 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj 980beab92d60fc5 +4183 4496 1585446780 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj 49ed7435d550c91a +4206 4509 1585446780 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj eacac3dd3e68109c +4509 4579 1585446780 esp-idf/lv_examples/liblv_examples.a 82f3a76acecb0edf +4355 4637 1585446780 esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj 6504e6605799e59d +4637 4661 1585446780 esp-idf/display/libdisplay.a c1fabff6ccad588e +4662 4694 1585446780 esp-idf/main/libmain.a e50809bc3b1cf5a6 +4694 5946 1585446781 esp-idf/esp32/ld/esp32.project.ld 95952199604882f3 +5946 12877 1585446788 bakalarka.elf c04f9fc94062d514 +12877 13246 1585446789 .bin_timestamp 715a021d8f39a8be +13246 34819 0 CMakeFiles/flash d83eebc13dccbe41 diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt index 44f8e1d..5593e61 100644 --- a/build/CMakeCache.txt +++ b/build/CMakeCache.txt @@ -279,6 +279,9 @@ __idf_console_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general; //Dependencies for the target __idf_cxx_LIB_DEPENDS:STATIC=general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;__idf_esp32;general;stdc++;general;gcc; +//Dependencies for the target +__idf_display_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;__idf_esp32; + //Dependencies for the target __idf_driver_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;__idf_esp32; @@ -610,7 +613,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=88 +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=94 //ADVANCED property for variable: CMAKE_OBJCOPY CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_OBJDUMP diff --git a/build/CMakeFiles/3.10.2/CMakeSystem.cmake b/build/CMakeFiles/3.10.2/CMakeSystem.cmake index 1a63a5c..77b5704 100644 --- a/build/CMakeFiles/3.10.2/CMakeSystem.cmake +++ b/build/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -1,6 +1,6 @@ -set(CMAKE_HOST_SYSTEM "Linux-5.0.0-32-generic") +set(CMAKE_HOST_SYSTEM "Linux-5.3.0-42-generic") set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "5.0.0-32-generic") +set(CMAKE_HOST_SYSTEM_VERSION "5.3.0-42-generic") set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") include("/home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake") diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log index ed782ee..e1a34d4 100644 --- a/build/CMakeFiles/CMakeOutput.log +++ b/build/CMakeFiles/CMakeOutput.log @@ -447,6 +447,512 @@ Run Build Command:"/usr/bin/ninja" "cmTC_028d4" [2/2] Linking CXX executable cmTC_028d4 + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates +The target system is: Generic - - +The host system is: Linux - 5.3.0-42-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc +Build flags: -mlongcalls;-Wno-frame-address +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/mithras/esp/bakalarka/build/CMakeFiles/3.10.2/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ +Build flags: -mlongcalls;-Wno-frame-address +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/mithras/esp/bakalarka/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out" + +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +xtensa-esp32-elf-gcc (crosstool-NG esp-2019r2) 8.2.0 +Copyright (C) 2018 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +Determining if the C compiler works passed with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_60b50" +[1/2] Building C object CMakeFiles/cmTC_60b50.dir/testCCompiler.c.obj +[2/2] Linking C executable cmTC_60b50 + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_f1a0e" +[1/2] Building C object CMakeFiles/cmTC_f1a0e.dir/CMakeCCompilerABI.c.obj +[2/2] Linking C executable cmTC_f1a0e +Using built-in specs. +COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc +COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper +Target: xtensa-esp32-elf +Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes +Thread model: posix +gcc version 8.2.0 (crosstool-NG esp-2019r2) +COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/ +LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_f1a0e' + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccYQTlQa.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_f1a0e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_f1a0e.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_f1a0e' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_f1a0e"] + ignore line: [[1/2] Building C object CMakeFiles/cmTC_f1a0e.dir/CMakeCCompilerABI.c.obj] + ignore line: [[2/2] Linking C executable cmTC_f1a0e] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc] + ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] + ignore line: [Target: xtensa-esp32-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ] + ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/] + ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_f1a0e'] + link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccYQTlQa.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_f1a0e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_f1a0e.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccYQTlQa.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-o] ==> ignore + arg [cmTC_f1a0e] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] + arg [CMakeFiles/cmTC_f1a0e.dir/CMakeCCompilerABI.c.obj] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_0acb3" +[1/2] Building C object CMakeFiles/cmTC_0acb3.dir/feature_tests.c.obj +[2/2] Linking C executable cmTC_0acb3 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_52387" +[1/2] Building C object CMakeFiles/cmTC_52387.dir/feature_tests.c.obj +[2/2] Linking C executable cmTC_52387 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_46287" +[1/2] Building C object CMakeFiles/cmTC_46287.dir/feature_tests.c.obj +[2/2] Linking C executable cmTC_46287 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_6ed15" +[1/2] Building CXX object CMakeFiles/cmTC_6ed15.dir/testCXXCompiler.cxx.obj +[2/2] Linking CXX executable cmTC_6ed15 + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_7b9e7" +[1/2] Building CXX object CMakeFiles/cmTC_7b9e7.dir/CMakeCXXCompilerABI.cpp.obj +[2/2] Linking CXX executable cmTC_7b9e7 +Using built-in specs. +COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ +COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper +Target: xtensa-esp32-elf +Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes +Thread model: posix +gcc version 8.2.0 (crosstool-NG esp-2019r2) +COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/ +LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_7b9e7' + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8BZWAq.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_7b9e7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_7b9e7.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_7b9e7' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_7b9e7"] + ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_7b9e7.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [[2/2] Linking CXX executable cmTC_7b9e7] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++] + ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] + ignore line: [Target: xtensa-esp32-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ] + ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/] + ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_7b9e7'] + link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8BZWAq.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_7b9e7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_7b9e7.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc8BZWAq.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-o] ==> ignore + arg [cmTC_7b9e7] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] + arg [CMakeFiles/cmTC_7b9e7.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++1z] compiler features compiled with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_44fe5" +[1/2] Building CXX object CMakeFiles/cmTC_44fe5.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_44fe5 + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_cfc07" +[1/2] Building CXX object CMakeFiles/cmTC_cfc07.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_cfc07 + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_ec5f8" +[1/2] Building CXX object CMakeFiles/cmTC_ec5f8.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_ec5f8 + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_0572c" +[1/2] Building CXX object CMakeFiles/cmTC_0572c.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_0572c + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers Feature record: CXX_FEATURE:0cxx_alias_templates Feature record: CXX_FEATURE:0cxx_alignas diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt index d92ff2f..4eb7b18 100644 --- a/build/CMakeFiles/TargetDirectories.txt +++ b/build/CMakeFiles/TargetDirectories.txt @@ -617,6 +617,48 @@ /home/mithras/esp/bakalarka/build/esp-idf/cmd_system/CMakeFiles/list_install_components.dir /home/mithras/esp/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install/local.dir /home/mithras/esp/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/install/strip.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/edit_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/rebuild_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/list_install_components.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/install/local.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/install.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install/strip.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/edit_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/rebuild_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/list_install_components.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install/local.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install.dir +/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install/strip.dir +/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/edit_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir +/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/rebuild_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/list_install_components.dir +/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install/local.dir +/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install/strip.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/edit_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/rebuild_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/list_install_components.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install/local.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install/strip.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/edit_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/rebuild_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/list_install_components.dir +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install/local.dir +/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/install/strip.dir +/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/edit_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/__idf_display.dir +/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/list_install_components.dir +/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/install/local.dir +/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/rebuild_cache.dir +/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/install.dir /home/mithras/esp/bakalarka/build/esp-idf/wifi/CMakeFiles/install/strip.dir /home/mithras/esp/bakalarka/build/esp-idf/wifi/CMakeFiles/edit_cache.dir /home/mithras/esp/bakalarka/build/esp-idf/wifi/CMakeFiles/__idf_wifi.dir diff --git a/build/CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj b/build/CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj new file mode 100644 index 0000000..aaa8e2b Binary files /dev/null and b/build/CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj differ diff --git a/build/CMakeFiles/bootloader-complete b/build/CMakeFiles/bootloader-complete new file mode 100644 index 0000000..e69de29 diff --git a/build/bakalarka.bin b/build/bakalarka.bin index f162128..d2efc0c 100644 Binary files a/build/bakalarka.bin and b/build/bakalarka.bin differ diff --git a/build/bakalarka.elf b/build/bakalarka.elf new file mode 100755 index 0000000..3871f88 Binary files /dev/null and b/build/bakalarka.elf differ diff --git a/build/bakalarka.map b/build/bakalarka.map index a0370e2..5c92e1c 100644 --- a/build/bakalarka.map +++ b/build/bakalarka.map @@ -123,6 +123,8 @@ esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) esp-idf/main/libmain.a(main.c.obj) (register_nvs) esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) esp-idf/main/libmain.a(main.c.obj) (register_system) +esp-idf/display/libdisplay.a(display.c.obj) + esp-idf/main/libmain.a(main.c.obj) (guiTask) esp-idf/wifi/libwifi.a(wifi.c.obj) esp-idf/main/libmain.a(main.c.obj) (register_wifi) esp-idf/https_server/libhttps_server.a(https_server.c.obj) @@ -443,6 +445,100 @@ esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) (spiffs_lookup_consistency_check) esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) (spiffs_gc_quick) +esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) (lvgl_driver_init) +esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) (sysmon_create) +esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) (disp_driver_init) +esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) (disp_spi_init) +esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) (ili9341_flush) +esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) (lv_disp_get_scr_act) +esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) (lv_init) +esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_refr_init) +esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_style_scr) +esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) (lv_draw_free_buf) +esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) (lv_draw_px) +esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_draw_rect) +esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_img_cache_set_size) +esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) (lv_img_decoder_open) +esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) (lv_font_get_glyph_bitmap) +esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + esp-idf/lvgl/liblvgl.a(lv_style.c.obj) (lv_font_roboto_16) +esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) (lv_disp_drv_init) +esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_indev_get_next) +esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) (lv_tick_inc) +esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_style.c.obj) (lv_anim_path_linear) +esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) (lv_area_set) +esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_async_call) +esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) (lv_circ_init) +esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_fs_init) +esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (_lv_disp_ll) +esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_ll_init) +esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_log_register_print_cb) +esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) (lv_bezier3) +esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_mem_init) +esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) (lv_task_del) +esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) (lv_chart_create) +esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) (lv_label_set_text) +esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) (lv_win_set_layout) +esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_theme_get_current) +esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) (lv_group_init) +esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) (lv_indev_read_task) +esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) (lv_img_color_format_get_px_size) +esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) (lv_draw_label) +esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) (lv_draw_line) +esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) (lv_draw_triangle) +esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) (lv_font_get_bitmap_fmt_txt) +esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) (lv_txt_encoded_size) +esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) (lv_utils_bsearch) +esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) (lv_btn_set_style) +esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) (lv_cont_create) +esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) (lv_img_set_src) +esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) (lv_page_set_sb_mode) esp-idf/newlib/libnewlib.a(select.c.obj) esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) (select) esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) @@ -721,6 +817,8 @@ esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) (phy_printf) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) (xRingbufferCreate) +esp-idf/driver/libdriver.a(spi_master.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) (spi_bus_initialize) esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) esp-idf/esp32/libesp32.a(sleep_modes.c.obj) (touch_pad_get_wakeup_status) esp-idf/nghttp/libnghttp.a(http_parser.c.obj) @@ -737,10 +835,16 @@ esp-idf/lwip/liblwip.a(ethernetif.c.obj) esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (ethernetif_input) esp-idf/lwip/liblwip.a(ethip6.c.obj) esp-idf/lwip/liblwip.a(wlanif.c.obj) (ethip6_output) +esp-idf/soc/libsoc.a(spi_hal.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) (spi_hal_init) +esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) (spi_hal_setup_device) esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_hal_set_voltage) esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_hal_get_wakeup_status) +esp-idf/soc/libsoc.a(lldesc.c.obj) + esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) (lldesc_setup_link) esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_ssl_init) esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) @@ -861,6 +965,8 @@ esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (__bswapsi2) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) (__bswapdi2) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) @@ -1090,7 +1196,7 @@ esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) esp-idf/log/liblog.a(log.c.obj) (vprintf) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) - esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) (vsnprintf) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) (vsnprintf) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) (__swbuf_r) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) @@ -1175,8 +1281,10 @@ pwrdet_offset 0x2 /home/mithras/esp/esp-idf/components/esp_w registered_heaps 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) default_router_list 0x24 esp-idf/lwip/liblwip.a(nd6.c.obj) +_lv_draw_buf 0x4 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) phy_rxbb_dc 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) netif_list 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) +lv_style_btn_ina 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) tcp_active_pcbs_changed 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) mesh_self_xonseq 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) @@ -1184,26 +1292,42 @@ phy_chan_gain_table 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) prefix_list 0x8c esp-idf/lwip/liblwip.a(nd6.c.obj) phy_rxrf_dc 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +lv_style_transp 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) phy_chan_pwr_index 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) g_mesh_manual_nwk 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) g_mesh_self_map_addr 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) __packed__ 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) g_cnxMgr 0xc18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +lv_style_transp_tight + 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_style_plain_color + 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_style_pretty 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) wDevCtrl 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) g_misc_nvs 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) netif_default 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) +xGuiSemaphore 0x4 esp-idf/display/libdisplay.a(display.c.obj) DefFreqCalTimer 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) bt_wifi_chan_data 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) global_arg_task 0x8 esp-idf/https_server/libhttps_server.a(https_server.c.obj) +lv_style_pretty_color + 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_style_scr 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +_lv_file_ll 0xc esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) neighbor_cache 0x1b8 esp-idf/lwip/liblwip.a(nd6.c.obj) g_ic 0x22c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) udp_pcbs 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) +_lv_task_act 0x4 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) destination_cache 0x1e0 esp-idf/lwip/liblwip.a(nd6.c.obj) +lv_style_btn_tgl_rel + 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) ip_data 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) chip7_sleep_params 0xc4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) phy_chan_target_power 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +_lv_img_cache_array + 0x4 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) g_mesh_xon_cfg_qsize 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) s_cpu_freq_by_mode 0x40 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) @@ -1214,13 +1338,18 @@ set_most_tpw 0x1 /home/mithras/esp/esp-idf/components/esp_w SigInMacISR 0x190 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) pbuf_free_ooseq_pending 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) +_lv_img_defoder_ll 0xc esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) +lv_style_btn_tgl_pr + 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) gWpaSm 0x25c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) dhcp_rx_options_given 0xb esp-idf/lwip/liblwip.a(dhcp.c.obj) freq_i2c_addr 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +_lv_indev_ll 0xc esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) mesh_conn_leave 0x2c8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) h_errno 0x4 esp-idf/lwip/liblwip.a(netdb.c.obj) tcp_input_pcb 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) +_lv_group_ll 0xc esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) g_dbg_cnt_hmac 0x240 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) g_wifi_menuconfig 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) gScanStruct 0x114 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) @@ -1231,13 +1360,19 @@ s_microseconds_offset 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) tcp_bound_pcbs 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) tcp_ticks 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) +_lv_task_ll 0xc esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) +lv_style_transp_fit + 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) mesh_xmit_state_mbox 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) mbedtls_cipher_supported 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +lv_style_btn_rel 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) chip7_phy_init_ctrl 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +_lv_anim_ll 0xc esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) lmacConfMib 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +_lv_drv_ll 0xc esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) g_mesh_current_parent 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) g_log_mod 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) @@ -1246,10 +1381,13 @@ g_mesh_self_sta_addr interface_mask 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) tcp_tw_pcbs 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) tcp_listen_pcbs 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) +_lv_disp_ll 0xc esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) g_mesh_ext_vote_state 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +lv_style_plain 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) g_mesh_ext_cfg 0xcc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) dport_access_start 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) +lv_style_btn_pr 0x3c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) ff_raw_handles 0x8 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) g_dbg_cnt_lmac 0x6d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) assoc_ie_buf 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) @@ -2414,6 +2552,11 @@ Discarded input sections .bss 0x0000000000000000 0x0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .xt.lit 0x0000000000000000 0x78 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .xt.prop 0x0000000000000000 0x528 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .text 0x0000000000000000 0x0 esp-idf/display/libdisplay.a(display.c.obj) + .data 0x0000000000000000 0x0 esp-idf/display/libdisplay.a(display.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/display/libdisplay.a(display.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/display/libdisplay.a(display.c.obj) + .xt.prop 0x0000000000000000 0x9c esp-idf/display/libdisplay.a(display.c.obj) .text 0x0000000000000000 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) .data 0x0000000000000000 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) .bss 0x0000000000000000 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) @@ -4922,20 +5065,8 @@ Discarded input sections 0x0000000000000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) .xt.lit 0x0000000000000000 0x80 esp-idf/heap/libheap.a(multi_heap.c.obj) .xt.prop 0x0000000000000000 0xcd8 esp-idf/heap/libheap.a(multi_heap.c.obj) - .literal.gpio_od_enable - 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) - .literal.gpio_od_disable - 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) - .literal.gpio_input_enable - 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) - .literal.gpio_input_disable - 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) - .literal.gpio_output_disable - 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) .literal.gpio_intr_enable_on_core 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) - .literal.gpio_output_enable - 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) .literal.gpio_isr_register_on_core_static 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) .iram1.22.literal @@ -4954,14 +5085,10 @@ Discarded input sections 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) .literal.gpio_intr_disable 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) - .literal.gpio_set_level - 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) .literal.gpio_get_level 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) .literal.gpio_set_pull_mode 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) - .literal.gpio_set_direction - 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) .literal.gpio_config 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(gpio.c.obj) .literal.gpio_reset_pin @@ -4990,35 +5117,11 @@ Discarded input sections 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) .literal.gpio_deep_sleep_hold_dis 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) - .literal.gpio_iomux_in - 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) - .literal.gpio_iomux_out - 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(gpio.c.obj) .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_od_enable - 0x0000000000000000 0x62 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_od_disable - 0x0000000000000000 0x62 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_input_enable.str1.4 - 0x0000000000000000 0x101 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_input_enable - 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_input_disable.str1.4 - 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_input_disable - 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_output_disable.str1.4 - 0x0000000000000000 0xc0 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_output_disable - 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) .text.gpio_intr_enable_on_core 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_output_enable.str1.4 - 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_output_enable - 0x0000000000000000 0x95 esp-idf/driver/libdriver.a(gpio.c.obj) .text.gpio_isr_register_on_core_static 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) .iram1.22 0x0000000000000000 0xf8 esp-idf/driver/libdriver.a(gpio.c.obj) @@ -5042,18 +5145,12 @@ Discarded input sections 0x0000000000000000 0x76 esp-idf/driver/libdriver.a(gpio.c.obj) .text.gpio_intr_disable 0x0000000000000000 0x51 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_set_level - 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(gpio.c.obj) .text.gpio_get_level 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) .rodata.gpio_set_pull_mode.str1.4 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(gpio.c.obj) .text.gpio_set_pull_mode 0x0000000000000000 0xf5 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_set_direction.str1.4 - 0x0000000000000000 0x33 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_set_direction - 0x0000000000000000 0xb8 esp-idf/driver/libdriver.a(gpio.c.obj) .rodata.gpio_config.str1.4 0x0000000000000000 0x1c3 esp-idf/driver/libdriver.a(gpio.c.obj) .text.gpio_config @@ -5098,18 +5195,6 @@ Discarded input sections 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(gpio.c.obj) .text.gpio_deep_sleep_hold_dis 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_iomux_in.str1.4 - 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_iomux_in - 0x0000000000000000 0x5b esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_iomux_out.str1.4 - 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_iomux_out - 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__func__$6169 - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__func__$6159 - 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) .rodata.__FUNCTION__$6390 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) .rodata.__FUNCTION__$6385 @@ -5136,30 +5221,8 @@ Discarded input sections 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) .rodata.__func__$6302 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__$6260 - 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__$6264 - 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__func__$6075 - 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__$6252 - 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__$6256 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__func__$6059 - 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__$6244 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__func__$6067 - 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__$6248 - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__$6289 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) .rodata.__FUNCTION__$6277 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__$6269 - 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) .rodata.__FUNCTION__$6240 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) .rodata.__FUNCTION__$6232 @@ -5323,30 +5386,14 @@ Discarded input sections 0x0000000000000000 0x61 esp-idf/driver/libdriver.a(rtc_module.c.obj) .xt.lit 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_module.c.obj) .xt.prop 0x0000000000000000 0x1b0 esp-idf/driver/libdriver.a(rtc_module.c.obj) - .literal.bus_uses_iomux_pins - 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) - .literal.spicommon_periph_claim - 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) .literal.spicommon_periph_in_use 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) - .literal.spicommon_periph_free - 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) - .literal.spicommon_irqsource_for_host - 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) .literal.spicommon_irqdma_source_for_host 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) - .literal.spicommon_dma_chan_claim - 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_common.c.obj) .literal.spicommon_dma_chan_in_use 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_common.c.obj) - .literal.spicommon_dma_chan_free - 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_common.c.obj) - .literal.spicommon_bus_initialize_io - 0x0000000000000000 0x178 esp-idf/driver/libdriver.a(spi_common.c.obj) .literal.spicommon_bus_free_io_cfg 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) - .literal.spicommon_cs_initialize - 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(spi_common.c.obj) .literal.spicommon_cs_free_io 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) .literal.spicommon_bus_using_iomux @@ -5355,49 +5402,19 @@ Discarded input sections 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) .iram1.25.literal 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) - .iram1.26.literal - 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) - .iram1.27.literal - 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.bus_uses_iomux_pins - 0x0000000000000000 0xa0 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.spicommon_periph_claim.str1.4 - 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_periph_claim - 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(spi_common.c.obj) .text.spicommon_periph_in_use 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_periph_free - 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_irqsource_for_host - 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) .text.spicommon_irqdma_source_for_host 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.spicommon_dma_chan_claim.str1.4 - 0x0000000000000000 0x6d esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_dma_chan_claim - 0x0000000000000000 0x57 esp-idf/driver/libdriver.a(spi_common.c.obj) .rodata.spicommon_dma_chan_in_use.str1.4 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(spi_common.c.obj) .text.spicommon_dma_chan_in_use 0x0000000000000000 0x36 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.spicommon_dma_chan_free.str1.4 - 0x0000000000000000 0x55 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_dma_chan_free - 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.spicommon_bus_initialize_io.str1.4 - 0x0000000000000000 0x5d6 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_bus_initialize_io - 0x0000000000000000 0x77c esp-idf/driver/libdriver.a(spi_common.c.obj) .text.spicommon_bus_free_io_cfg 0x0000000000000000 0x43 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.spicommon_cs_initialize.str1.4 - 0x0000000000000000 0xba esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_cs_initialize - 0x0000000000000000 0x10c esp-idf/driver/libdriver.a(spi_common.c.obj) .rodata.spicommon_cs_free_io.str1.4 0x0000000000000000 0x32 esp-idf/driver/libdriver.a(spi_common.c.obj) .text.spicommon_cs_free_io @@ -5406,50 +5423,10 @@ Discarded input sections 0x0000000000000000 0xa4 esp-idf/driver/libdriver.a(spi_common.c.obj) .iram1.24 0x0000000000000000 0x52 esp-idf/driver/libdriver.a(spi_common.c.obj) .iram1.25 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) - .iram1.26 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(spi_common.c.obj) - .iram1.27 0x0000000000000000 0x2a esp-idf/driver/libdriver.a(spi_common.c.obj) .rodata.__func__$6746 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__func__$6736 - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__func__$6705 - 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__FUNCTION__$6702 - 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__func__$6684 - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) .rodata.__func__$6680 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__func__$6676 - 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) - .bss.dmaworkaround_waiting_for_chan - 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) - .data.dmaworkaround_mux - 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) - .bss.dmaworkaround_cb_arg - 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) - .bss.dmaworkaround_cb - 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) - .bss.dmaworkaround_channels_busy - 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) - .data.spi_dma_spinlock - 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) - .bss.spi_dma_chan_enabled - 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(spi_common.c.obj) - .bss.spi_claiming_func - 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) - .data.spi_periph_claimed - 0x0000000000000000 0x3 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_frame 0x0000000000000000 0x1c0 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_info 0x0000000000000000 0x5997 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_abbrev 0x0000000000000000 0x4b9 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_loc 0x0000000000000000 0xb8b esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_aranges - 0x0000000000000000 0xa8 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_ranges 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_line 0x0000000000000000 0x224b esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_str 0x0000000000000000 0x34f6 esp-idf/driver/libdriver.a(spi_common.c.obj) - .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(spi_common.c.obj) .xt.lit 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(spi_common.c.obj) .xt.prop 0x0000000000000000 0x948 esp-idf/driver/libdriver.a(spi_common.c.obj) .literal.uart_pattern_dequeue @@ -6600,6 +6577,1132 @@ Discarded input sections .bss 0x0000000000000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) .xt.lit 0x0000000000000000 0x30 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) .xt.prop 0x0000000000000000 0x888 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .xt.prop 0x0000000000000000 0xfc esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .xt.prop 0x0000000000000000 0x6c esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .xt.prop 0x0000000000000000 0x1e0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .xt.prop 0x0000000000000000 0x180 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .literal.lv_disp_load_scr + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .literal.lv_disp_assign_screen + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .literal.lv_disp_get_refr_task + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .literal.lv_disp_get_inactive_time + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .literal.lv_disp_trig_activity + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .text.lv_disp_load_scr + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .rodata.lv_disp_assign_screen.str1.4 + 0x0000000000000000 0x39 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .text.lv_disp_assign_screen + 0x0000000000000000 0x42 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .rodata.lv_disp_get_refr_task.str1.4 + 0x0000000000000000 0x2d esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .text.lv_disp_get_refr_task + 0x0000000000000000 0x28 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .rodata.lv_disp_get_inactive_time.str1.4 + 0x0000000000000000 0x31 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .text.lv_disp_get_inactive_time + 0x0000000000000000 0x31 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .rodata.lv_disp_trig_activity.str1.4 + 0x0000000000000000 0x2d esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .text.lv_disp_trig_activity + 0x0000000000000000 0x2f esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .xt.prop 0x0000000000000000 0x27c esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .literal.lv_deinit + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_del_async + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_set_drag_dir + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.base_dir_refr_children + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_set_base_dir + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_count_children + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_count_children_recursive + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_move_background + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.report_style_mod_core + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_report_style_mod + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_set_hidden + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_set_opa_scale + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_set_width + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_get_type + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_del_async_cb + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_clean + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_get_inner_coords + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_deinit + 0x0000000000000000 0x29 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_del_async + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_auto_realign + 0x0000000000000000 0x16 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_ext_click_area + 0x0000000000000000 0x5 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_top + 0x0000000000000000 0x1a esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_drag_dir + 0x0000000000000000 0x2a esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_drag_parent + 0x0000000000000000 0x19 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_parent_event + 0x0000000000000000 0x1a esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_opa_scale_enable + 0x0000000000000000 0x1a esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_signal_send + 0x0000000000000000 0x13 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.base_dir_refr_children + 0x0000000000000000 0x47 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .rodata.lv_obj_set_base_dir.str1.4 + 0x0000000000000000 0x26 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_base_dir + 0x0000000000000000 0x48 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_count_children + 0x0000000000000000 0x26 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_count_children_recursive + 0x0000000000000000 0x34 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_ext_click_pad_left + 0x0000000000000000 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_ext_click_pad_right + 0x0000000000000000 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_ext_click_pad_top + 0x0000000000000000 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_ext_click_pad_bottom + 0x0000000000000000 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_ext_draw_pad + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_move_background + 0x0000000000000000 0x47 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.report_style_mod_core + 0x0000000000000000 0x41 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_report_style_mod + 0x0000000000000000 0x58 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_hidden + 0x0000000000000000 0x50 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_opa_scale + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_click + 0x0000000000000000 0xb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_top + 0x0000000000000000 0xb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_drag + 0x0000000000000000 0xb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_drag_dir + 0x0000000000000000 0xa esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_drag_throw + 0x0000000000000000 0xb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_drag_parent + 0x0000000000000000 0xb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_parent_event + 0x0000000000000000 0xb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_set_width + 0x0000000000000000 0x1c esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_opa_scale_enable + 0x0000000000000000 0xb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_protect + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_event_cb + 0x0000000000000000 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_type + 0x0000000000000000 0x6c esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_del_async_cb + 0x0000000000000000 0xe esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_clean + 0x0000000000000000 0x2d esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .text.lv_obj_get_inner_coords + 0x0000000000000000 0x54 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .xt.lit 0x0000000000000000 0x1d0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .xt.prop 0x0000000000000000 0x1d28 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_refr_set_disp_refreshing + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .literal.lv_refr_now + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .text.lv_refr_set_disp_refreshing + 0x0000000000000000 0xa esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .text.lv_refr_now + 0x0000000000000000 0x34 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .xt.prop 0x0000000000000000 0x5c4 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .literal.style_animation_common_end_cb + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .literal.lv_style_mix + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .literal.style_animator + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .literal.lv_style_anim_init + 0x0000000000000000 0x20 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .literal.lv_style_anim_set_styles + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .text.style_animation_common_end_cb + 0x0000000000000000 0x1a esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .text.lv_style_mix + 0x0000000000000000 0x58e esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .text.style_animator + 0x0000000000000000 0x1f esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .text.lv_style_anim_init + 0x0000000000000000 0x54 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .text.lv_style_anim_set_styles + 0x0000000000000000 0x30 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .xt.prop 0x0000000000000000 0x354 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .xt.prop 0x0000000000000000 0x24c esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .xt.prop 0x0000000000000000 0x84c esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .xt.prop 0x0000000000000000 0xb58 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .xt.prop 0x0000000000000000 0x228 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .literal.lv_img_decoder_delete + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .text.lv_img_decoder_delete + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .xt.prop 0x0000000000000000 0x8dc esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .xt.prop 0x0000000000000000 0x78 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .literal.lv_disp_set_default + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .literal.lv_disp_remove + 0x0000000000000000 0x20 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .literal.lv_disp_drv_update + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .literal.lv_disp_get_next + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .text.lv_disp_set_default + 0x0000000000000000 0xa esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .text.lv_disp_remove + 0x0000000000000000 0x58 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .text.lv_disp_drv_update + 0x0000000000000000 0x51 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .text.lv_disp_get_next + 0x0000000000000000 0x24 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .text.lv_disp_get_inv_buf_size + 0x0000000000000000 0xb esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .text.lv_disp_pop_from_inv_buf + 0x0000000000000000 0x37 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .xt.prop 0x0000000000000000 0x4a4 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .literal.lv_indev_drv_init + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .literal.lv_indev_drv_register + 0x0000000000000000 0x28 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .literal.lv_indev_drv_update + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .literal.lv_indev_read + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .text.lv_indev_drv_init + 0x0000000000000000 0x28 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .rodata.lv_indev_drv_register.str1.4 + 0x0000000000000000 0xa3 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .text.lv_indev_drv_register + 0x0000000000000000 0x7a esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .text.lv_indev_drv_update + 0x0000000000000000 0x12 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .rodata.lv_indev_read.str1.4 + 0x0000000000000000 0x1a esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .text.lv_indev_read + 0x0000000000000000 0x52 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .xt.prop 0x0000000000000000 0x174 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .xt.prop 0x0000000000000000 0xc0 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .literal.lv_anim_init + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .literal.lv_anim_count_running + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .literal.lv_anim_path_ease_in + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .literal.lv_anim_path_ease_out + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .literal.lv_anim_path_ease_in_out + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .literal.lv_anim_path_overshoot + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .literal.lv_anim_path_bounce + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .text.lv_anim_init + 0x0000000000000000 0x22 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .text.lv_anim_count_running + 0x0000000000000000 0x26 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .text.lv_anim_path_ease_in + 0x0000000000000000 0x3c esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .text.lv_anim_path_ease_out + 0x0000000000000000 0x3c esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .text.lv_anim_path_ease_in_out + 0x0000000000000000 0x3d esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .text.lv_anim_path_overshoot + 0x0000000000000000 0x3d esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .text.lv_anim_path_bounce + 0x0000000000000000 0xe0 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .text.lv_anim_path_step + 0x0000000000000000 0x19 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .xt.prop 0x0000000000000000 0x4f8 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .text.lv_area_is_point_on + 0x0000000000000000 0x39 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .text.lv_area_increment + 0x0000000000000000 0x2a esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .xt.prop 0x0000000000000000 0x2e8 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .literal.lv_async_task_cb + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .literal.lv_async_call + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .text.lv_async_task_cb + 0x0000000000000000 0x16 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .text.lv_async_call + 0x0000000000000000 0x45 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .debug_info 0x0000000000000000 0x31f esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .debug_abbrev 0x0000000000000000 0x172 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .debug_loc 0x0000000000000000 0xd0 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .debug_line 0x0000000000000000 0x2e9 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .debug_str 0x0000000000000000 0x2f0 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .literal.lv_fs_dir_close + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_fs_drv_init + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_fs_drv_register + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_fs_is_ready + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_fs_remove + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_fs_rename + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_fs_dir_open + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_fs_free_space + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_fs_get_letters + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_fs_up + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_fs_get_last + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_write + 0x0000000000000000 0x35 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_tell + 0x0000000000000000 0x21 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_trunc + 0x0000000000000000 0x21 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_size + 0x0000000000000000 0x28 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_dir_read + 0x0000000000000000 0x29 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_dir_close + 0x0000000000000000 0x38 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_drv_init + 0x0000000000000000 0x12 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_drv_register + 0x0000000000000000 0x1a esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_is_ready + 0x0000000000000000 0x24 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_remove + 0x0000000000000000 0x49 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_rename + 0x0000000000000000 0x6a esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_dir_open + 0x0000000000000000 0x5a esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_free_space + 0x0000000000000000 0x3a esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_get_letters + 0x0000000000000000 0x35 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_up + 0x0000000000000000 0x6b esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .text.lv_fs_get_last + 0x0000000000000000 0x62 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .xt.prop 0x0000000000000000 0x9c0 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .literal.lv_gc_clear_roots + 0x0000000000000000 0x2c esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .text.lv_gc_clear_roots + 0x0000000000000000 0x5e esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .literal.lv_ll_get_len + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .text.lv_ll_get_len + 0x0000000000000000 0x25 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .xt.prop 0x0000000000000000 0x51c esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .text.lv_log_register_print_cb + 0x0000000000000000 0x5 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .xt.prop 0x0000000000000000 0x60 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .literal.lv_trigo_sin + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .literal.lv_sqrt + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .text.lv_trigo_sin + 0x0000000000000000 0xb0 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .text.lv_bezier3 + 0x0000000000000000 0x51 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .text.lv_atan2 + 0x0000000000000000 0xd2 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .text.lv_sqrt 0x0000000000000000 0x2e esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .rodata.sin0_90_table + 0x0000000000000000 0xb6 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .debug_info 0x0000000000000000 0xc16 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .debug_abbrev 0x0000000000000000 0x212 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .debug_loc 0x0000000000000000 0x553 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .debug_line 0x0000000000000000 0xa36 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .debug_str 0x0000000000000000 0x644 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .xt.prop 0x0000000000000000 0x24c esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .literal.lv_mem_deinit + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .literal.lv_mem_defrag + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .text.lv_mem_deinit + 0x0000000000000000 0x1c esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .text.lv_mem_defrag + 0x0000000000000000 0x5d esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .xt.prop 0x0000000000000000 0x420 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .literal.lv_task_reset + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .text.lv_task_once + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .text.lv_task_reset + 0x0000000000000000 0xd esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .xt.prop 0x0000000000000000 0x4bc esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .literal.lv_chart_clear_serie + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_div_line_count + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_series_opa + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_series_darking + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_update_mode + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_x_tick_length + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_y_tick_length + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_secondary_y_tick_length + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_x_tick_texts + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_y_tick_texts + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_secondary_y_tick_texts + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_margin + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_get_type + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_get_point_cnt + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_get_series_opa + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_get_series_width + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_get_series_darking + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_init_points + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_set_points + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_get_margin + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_clear_serie + 0x0000000000000000 0x48 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_div_line_count + 0x0000000000000000 0x2e esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_series_opa + 0x0000000000000000 0x22 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_series_darking + 0x0000000000000000 0x22 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_update_mode + 0x0000000000000000 0x32 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_x_tick_length + 0x0000000000000000 0x19 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_y_tick_length + 0x0000000000000000 0x19 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_secondary_y_tick_length + 0x0000000000000000 0x19 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_x_tick_texts + 0x0000000000000000 0x1b esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_y_tick_texts + 0x0000000000000000 0x1b esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_secondary_y_tick_texts + 0x0000000000000000 0x1b esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_margin + 0x0000000000000000 0x1b esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_get_type + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_get_point_cnt + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_get_series_opa + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_get_series_width + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_get_series_darking + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_init_points + 0x0000000000000000 0x38 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_set_points + 0x0000000000000000 0x2b esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .text.lv_chart_get_margin + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .xt.lit 0x0000000000000000 0x158 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .xt.prop 0x0000000000000000 0x10e0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_label_get_anim_speed + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .literal.lv_label_get_letter_pos + 0x0000000000000000 0x34 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .literal.lv_label_set_text_fmt + 0x0000000000000000 0x20 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .literal.lv_label_set_array_text + 0x0000000000000000 0x1c esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .literal.lv_label_set_anim_speed + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .literal.lv_label_is_char_under_pos + 0x0000000000000000 0x3c esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .literal.lv_label_ins_text + 0x0000000000000000 0x24 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .literal.lv_label_cut_text + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text.lv_label_set_text_sel_start + 0x0000000000000000 0x5 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text.lv_label_set_text_sel_end + 0x0000000000000000 0x5 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text.lv_label_get_anim_speed + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text.lv_label_get_letter_pos + 0x0000000000000000 0x1de esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text.lv_label_set_text_fmt + 0x0000000000000000 0xa2 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text.lv_label_set_array_text + 0x0000000000000000 0x72 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text.lv_label_set_anim_speed + 0x0000000000000000 0x30 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text.lv_label_is_char_under_pos + 0x0000000000000000 0x1fd esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text.lv_label_ins_text + 0x0000000000000000 0x66 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .text.lv_label_cut_text + 0x0000000000000000 0x36 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .xt.lit 0x0000000000000000 0x100 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .xt.prop 0x0000000000000000 0xeac esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .literal.lv_win_clean + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_set_content_size + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_set_sb_mode + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_set_drag + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_get_title + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_get_content + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_set_anim_time + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_get_btn_size + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_get_from_btn + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_close_event_cb + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_get_layout + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_get_sb_mode + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_get_anim_time + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_get_width + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_set_title + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_set_btn_size + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_win_focus + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_clean + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_set_content_size + 0x0000000000000000 0x2e esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_set_sb_mode + 0x0000000000000000 0x1a esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_set_drag + 0x0000000000000000 0x24 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_get_title + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_get_content + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_set_anim_time + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_get_btn_size + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_get_from_btn + 0x0000000000000000 0x16 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_close_event_cb + 0x0000000000000000 0x19 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_get_layout + 0x0000000000000000 0x1e esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_get_sb_mode + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_get_anim_time + 0x0000000000000000 0x16 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_get_width + 0x0000000000000000 0x3f esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_set_title + 0x0000000000000000 0x20 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_set_btn_size + 0x0000000000000000 0x22 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .text.lv_win_focus + 0x0000000000000000 0x1c esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .xt.lit 0x0000000000000000 0xc0 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .xt.prop 0x0000000000000000 0x7b0 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .literal.lv_theme_set_current + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .text.lv_theme_set_current + 0x0000000000000000 0x1a esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .xt.prop 0x0000000000000000 0x6c esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .literal.refresh_theme + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.style_mod_edit_def + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.style_mod_def + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.lv_group_create + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.lv_group_del + 0x0000000000000000 0x1c esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.lv_group_remove_all_objs + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.lv_group_set_style_mod_cb + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.lv_group_set_style_mod_edit_cb + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.lv_group_send_data + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.lv_group_set_editing + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.lv_group_focus_obj + 0x0000000000000000 0x20 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.lv_group_report_style_mod + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.refresh_theme + 0x0000000000000000 0x22 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.style_mod_edit_def + 0x0000000000000000 0x232 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .rodata 0x0000000000000000 0x2 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.style_mod_def + 0x0000000000000000 0x28e esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_create + 0x0000000000000000 0x52 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_del + 0x0000000000000000 0x5e esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_remove_all_objs + 0x0000000000000000 0x4e esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_focus_freeze + 0x0000000000000000 0x25 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_set_style_mod_cb + 0x0000000000000000 0x13 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_set_style_mod_edit_cb + 0x0000000000000000 0x13 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_set_focus_cb + 0x0000000000000000 0x7 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_set_click_focus + 0x0000000000000000 0x19 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_set_refocus_policy + 0x0000000000000000 0x19 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_set_wrap + 0x0000000000000000 0x19 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_send_data + 0x0000000000000000 0x36 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_set_editing + 0x0000000000000000 0x56 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_focus_obj + 0x0000000000000000 0xb3 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_get_style_mod_cb + 0x0000000000000000 0xe esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_get_style_mod_edit_cb + 0x0000000000000000 0xe esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_get_focus_cb + 0x0000000000000000 0xe esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_get_editing + 0x0000000000000000 0x12 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_get_click_focus + 0x0000000000000000 0x12 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_get_wrap + 0x0000000000000000 0x12 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .text.lv_group_report_style_mod + 0x0000000000000000 0x47 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .xt.lit 0x0000000000000000 0xa8 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .xt.prop 0x0000000000000000 0x948 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .literal.indev_proc_reset_query_handler + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.indev_reset_check + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.indev_search_obj + 0x0000000000000000 0x18 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.indev_drag_throw + 0x0000000000000000 0x58 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.indev_drag + 0x0000000000000000 0x60 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.indev_proc_press + 0x0000000000000000 0xa0 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.indev_proc_release + 0x0000000000000000 0x94 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.indev_pointer_proc + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.indev_button_proc + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.indev_keypad_proc + 0x0000000000000000 0xa8 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.indev_encoder_proc + 0x0000000000000000 0x94 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.lv_indev_read_task + 0x0000000000000000 0x30 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.lv_indev_reset_long_press + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.lv_indev_set_cursor + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.lv_indev_get_read_task + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_proc_reset_query_handler + 0x0000000000000000 0x46 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_reset_check + 0x0000000000000000 0x15 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_search_obj + 0x0000000000000000 0x7e esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_drag_throw + 0x0000000000000000 0x1d0 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_drag + 0x0000000000000000 0x210 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_proc_press + 0x0000000000000000 0x356 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_proc_release + 0x0000000000000000 0x26a esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_pointer_proc + 0x0000000000000000 0x52 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_button_proc + 0x0000000000000000 0x53 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_keypad_proc + 0x0000000000000000 0x312 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.indev_encoder_proc + 0x0000000000000000 0x36e esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_read_task + 0x0000000000000000 0xd6 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_get_type + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_reset_long_press + 0x0000000000000000 0x22 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_enable + 0x0000000000000000 0x23 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_set_cursor + 0x0000000000000000 0x31 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_set_group + 0x0000000000000000 0x22 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_set_button_points + 0x0000000000000000 0xe esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_get_point + 0x0000000000000000 0x33 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_get_key + 0x0000000000000000 0x12 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_wait_release + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .rodata.lv_indev_get_read_task.str1.4 + 0x0000000000000000 0x70 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .text.lv_indev_get_read_task + 0x0000000000000000 0x20 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .xt.prop 0x0000000000000000 0xe10 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.lv_img_buf_get_px_alpha + 0x0000000000000000 0x2c esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .literal.lv_img_buf_set_palette + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .literal.lv_img_buf_get_px_color + 0x0000000000000000 0x2c esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .literal.lv_img_buf_set_px_color + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .literal.lv_img_buf_set_px_alpha + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .literal.lv_img_buf_free + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .literal.lv_img_buf_get_img_size + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .literal.lv_img_buf_alloc + 0x0000000000000000 0x20 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .rodata 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .text.lv_img_buf_get_px_alpha + 0x0000000000000000 0x196 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .rodata.lv_img_buf_set_palette.str1.4 + 0x0000000000000000 0x26 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .text.lv_img_buf_set_palette + 0x0000000000000000 0xaf esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .text.lv_img_buf_get_px_color + 0x0000000000000000 0x1dd esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .text.lv_img_buf_set_px_color + 0x0000000000000000 0x18c esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .text.lv_img_buf_set_px_alpha + 0x0000000000000000 0x12b esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .text.lv_img_buf_free + 0x0000000000000000 0x1a esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .text.lv_img_buf_get_img_size + 0x0000000000000000 0xc0 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .rodata.lv_img_buf_get_img_size + 0x0000000000000000 0x2c esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .text.lv_img_buf_alloc + 0x0000000000000000 0xb2 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .xt.prop 0x0000000000000000 0x960 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .xt.prop 0x0000000000000000 0x348 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .xt.prop 0x0000000000000000 0x72c esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .literal.lv_draw_polygon + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .text.lv_draw_polygon + 0x0000000000000000 0x57 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .xt.prop 0x0000000000000000 0x510 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .xt.prop 0x0000000000000000 0x744 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .literal.lv_txt_unicode_to_utf8 + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .literal.lv_txt_ins + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .literal.lv_txt_cut + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .text.lv_txt_unicode_to_utf8 + 0x0000000000000000 0x98 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .text.lv_txt_utf8_conv_wc + 0x0000000000000000 0x3c esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .text.lv_txt_ins + 0x0000000000000000 0x4e esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .text.lv_txt_cut + 0x0000000000000000 0x3e esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .data.lv_txt_encoded_conv_wc + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .data.lv_txt_unicode_to_encoded + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .xt.prop 0x0000000000000000 0x948 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .literal.lv_utils_num_to_str + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .text.lv_utils_num_to_str + 0x0000000000000000 0x9e esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .xt.prop 0x0000000000000000 0xf0 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .literal.lv_btn_set_toggle + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .literal.lv_btn_toggle + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .literal.lv_btn_set_ink_in_time + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .literal.lv_btn_set_ink_wait_time + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .literal.lv_btn_set_ink_out_time + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .literal.lv_btn_get_state + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .literal.lv_btn_get_style + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text.lv_btn_set_toggle + 0x0000000000000000 0x24 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text.lv_btn_toggle + 0x0000000000000000 0x60 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .rodata.lv_btn_set_ink_in_time.str1.4 + 0x0000000000000000 0xa6 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text.lv_btn_set_ink_in_time + 0x0000000000000000 0x16 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .rodata.lv_btn_set_ink_wait_time.str1.4 + 0x0000000000000000 0x5e esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text.lv_btn_set_ink_wait_time + 0x0000000000000000 0x16 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .rodata.lv_btn_set_ink_out_time.str1.4 + 0x0000000000000000 0x5d esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text.lv_btn_set_ink_out_time + 0x0000000000000000 0x16 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text.lv_btn_get_state + 0x0000000000000000 0x13 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text.lv_btn_get_ink_in_time + 0x0000000000000000 0x7 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text.lv_btn_get_ink_wait_time + 0x0000000000000000 0x7 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text.lv_btn_get_ink_out_time + 0x0000000000000000 0x7 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .text.lv_btn_get_style + 0x0000000000000000 0xc1 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .rodata.lv_btn_get_style + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .xt.prop 0x0000000000000000 0x6c0 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .literal.lv_cont_get_fit_bottom + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .text.lv_cont_get_fit_bottom + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .xt.prop 0x0000000000000000 0x930 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .literal.lv_img_set_auto_size + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .literal.lv_img_set_offset_x + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .literal.lv_img_set_offset_y + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .literal.lv_img_get_src + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .literal.lv_img_get_file_name + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .literal.lv_img_get_offset_x + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .literal.lv_img_get_offset_y + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .text.lv_img_set_auto_size + 0x0000000000000000 0x2d esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .text.lv_img_set_offset_x + 0x0000000000000000 0x23 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .text.lv_img_set_offset_y + 0x0000000000000000 0x23 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .text.lv_img_get_src + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .rodata.lv_img_get_file_name.str1.4 + 0x0000000000000000 0x1 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .text.lv_img_get_file_name + 0x0000000000000000 0x21 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .text.lv_img_get_offset_x + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .text.lv_img_get_offset_y + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .xt.prop 0x0000000000000000 0x474 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .literal.lv_page_set_anim_time + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_set_scroll_propagation + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_set_edge_flash + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_clean + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_get_anim_time + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_get_sb_mode + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_get_scroll_propagation + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_get_edge_flash + 0x0000000000000000 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_get_fit_width + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_get_fit_height + 0x0000000000000000 0xc esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_on_edge + 0x0000000000000000 0x10 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_glue_obj + 0x0000000000000000 0x8 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .literal.lv_page_focus + 0x0000000000000000 0x60 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_set_anim_time + 0x0000000000000000 0x13 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_set_scroll_propagation + 0x0000000000000000 0x21 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_set_edge_flash + 0x0000000000000000 0x21 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_clean + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_get_anim_time + 0x0000000000000000 0x11 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_get_sb_mode + 0x0000000000000000 0x13 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_get_scroll_propagation + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_get_edge_flash + 0x0000000000000000 0x14 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_get_fit_width + 0x0000000000000000 0x4d esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_get_fit_height + 0x0000000000000000 0x4d esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_on_edge + 0x0000000000000000 0x91 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_glue_obj + 0x0000000000000000 0x1c esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .text.lv_page_focus + 0x0000000000000000 0x2bc esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .xt.lit 0x0000000000000000 0xe8 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .xt.prop 0x0000000000000000 0xe34 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) @@ -8435,15 +9538,6 @@ Discarded input sections .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) - .rodata.spi_periph_signal - 0x0000000000000000 0x6c esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) - .debug_info 0x0000000000000000 0x30c0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) - .debug_abbrev 0x0000000000000000 0x255 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) - .debug_aranges - 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) - .debug_line 0x0000000000000000 0x33e esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) - .debug_str 0x0000000000000000 0x1f28 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) - .comment 0x0000000000000000 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) .xt.prop 0x0000000000000000 0xc esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) @@ -13335,6 +14429,100 @@ Discarded input sections 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .xt.lit 0x0000000000000000 0x128 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .xt.prop 0x0000000000000000 0x15fc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .iram1.23.literal + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_master.c.obj) + .iram1.25.literal + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_master.c.obj) + .literal.spi_bus_free + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(spi_master.c.obj) + .literal.spi_get_timing + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_master.c.obj) + .literal.spi_get_freq_limit + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_master.c.obj) + .literal.spi_bus_remove_device + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(spi_master.c.obj) + .literal.spi_cal_clock + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_master.c.obj) + .literal.spi_get_actual_clock + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_master.c.obj) + .literal.spi_device_get_trans_result + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_master.c.obj) + .literal.spi_device_transmit + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_master.c.obj) + .literal.spi_device_acquire_bus + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(spi_master.c.obj) + .literal.spi_device_release_bus + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(spi_master.c.obj) + .iram1.33.literal + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(spi_master.c.obj) + .iram1.34.literal + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(spi_master.c.obj) + .iram1.35.literal + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_master.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_master.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_master.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_master.c.obj) + .iram1.23 0x0000000000000000 0xb1 esp-idf/driver/libdriver.a(spi_master.c.obj) + .iram1.25 0x0000000000000000 0xff esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.spi_bus_free.str1.4 + 0x0000000000000000 0x63 esp-idf/driver/libdriver.a(spi_master.c.obj) + .text.spi_bus_free + 0x0000000000000000 0x124 esp-idf/driver/libdriver.a(spi_master.c.obj) + .text.spi_get_timing + 0x0000000000000000 0x22 esp-idf/driver/libdriver.a(spi_master.c.obj) + .text.spi_get_freq_limit + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.spi_bus_remove_device.str1.4 + 0x0000000000000000 0x6c esp-idf/driver/libdriver.a(spi_master.c.obj) + .text.spi_bus_remove_device + 0x0000000000000000 0x146 esp-idf/driver/libdriver.a(spi_master.c.obj) + .text.spi_cal_clock + 0x0000000000000000 0x177 esp-idf/driver/libdriver.a(spi_master.c.obj) + .text.spi_get_actual_clock + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_master.c.obj) + .text.spi_device_get_trans_result + 0x0000000000000000 0x56 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.spi_device_transmit.str1.4 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_master.c.obj) + .text.spi_device_transmit + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.spi_device_acquire_bus.str1.4 + 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(spi_master.c.obj) + .text.spi_device_acquire_bus + 0x0000000000000000 0xec esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.spi_device_release_bus.str1.4 + 0x0000000000000000 0x5a esp-idf/driver/libdriver.a(spi_master.c.obj) + .text.spi_device_release_bus + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(spi_master.c.obj) + .iram1.33 0x0000000000000000 0x14a esp-idf/driver/libdriver.a(spi_master.c.obj) + .iram1.34 0x0000000000000000 0xb4 esp-idf/driver/libdriver.a(spi_master.c.obj) + .iram1.35 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__func__$8382 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__FUNCTION__$8377 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__func__$8372 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__FUNCTION__$8367 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__func__$8360 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__func__$8205 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__FUNCTION__$8201 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__FUNCTION__$8354 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__func__$8348 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__FUNCTION__$8341 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__FUNCTION__$8156 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(spi_master.c.obj) + .rodata.__FUNCTION__$8109 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(spi_master.c.obj) + .xt.lit 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(spi_master.c.obj) + .xt.prop 0x0000000000000000 0x1020 esp-idf/driver/libdriver.a(spi_master.c.obj) .literal.touch_pad_isr_deregister 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) .literal.touch_pad_set_voltage @@ -13708,6 +14896,20 @@ Discarded input sections .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) .xt.lit 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ethip6.c.obj) .xt.prop 0x0000000000000000 0x54 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .literal.spi_hal_master_cal_clock + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .text.spi_hal_master_cal_clock + 0x0000000000000000 0x16e esp-idf/soc/libsoc.a(spi_hal.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .xt.prop 0x0000000000000000 0x300 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .xt.prop 0x0000000000000000 0x3e4 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) .literal.touch_hal_config 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) .literal.touch_hal_set_voltage @@ -13770,6 +14972,11 @@ Discarded input sections .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) .xt.prop 0x0000000000000000 0xa8 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(lldesc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(lldesc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(lldesc.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(lldesc.c.obj) + .xt.prop 0x0000000000000000 0x78 esp-idf/soc/libsoc.a(lldesc.c.obj) .literal.mbedtls_ssl_conf_dtls_anti_replay 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .literal.mbedtls_ssl_set_timer_cb @@ -17720,6 +18927,21 @@ Discarded input sections .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .literal 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .text 0x0000000000000000 0x56 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .debug_info 0x0000000000000000 0xb02 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .debug_abbrev 0x0000000000000000 0x1b1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .debug_loc 0x0000000000000000 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .debug_line 0x0000000000000000 0x332 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .debug_str 0x0000000000000000 0x6df /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) .text 0x0000000000000000 0x2aa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) @@ -19273,6 +20495,12 @@ LOAD esp-idf/files/libfiles.a LOAD esp-idf/ca/libca.a LOAD esp-idf/cmd_nvs/libcmd_nvs.a LOAD esp-idf/cmd_system/libcmd_system.a +LOAD esp-idf/lvgl/liblvgl.a +LOAD esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a +LOAD esp-idf/lv_examples/liblv_examples.a +LOAD esp-idf/lvgl_tft/liblvgl_tft.a +LOAD esp-idf/lvgl_touch/liblvgl_touch.a +LOAD esp-idf/display/libdisplay.a LOAD esp-idf/wifi/libwifi.a LOAD esp-idf/https_server/libhttps_server.a LOAD esp-idf/xtensa/libxtensa.a @@ -19345,6 +20573,11 @@ LOAD esp-idf/protocomm/libprotocomm.a LOAD esp-idf/protobuf-c/libprotobuf-c.a LOAD esp-idf/mdns/libmdns.a LOAD esp-idf/json/libjson.a +LOAD esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a +LOAD esp-idf/lv_examples/liblv_examples.a +LOAD esp-idf/lvgl_tft/liblvgl_tft.a +LOAD esp-idf/lvgl_touch/liblvgl_touch.a +LOAD esp-idf/lvgl/liblvgl.a LOAD esp-idf/esp_https_server/libesp_https_server.a LOAD esp-idf/wifi/libwifi.a LOAD esp-idf/ca/libca.a @@ -21317,7 +22550,7 @@ LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp 0x0000000040058920 wcrtomb = 0x40058920 0x00000000400588d8 _wcrtomb_r = 0x400588d8 0x0000000040058f14 _wctomb_r = 0x40058f14 - 0x000000003ffb9620 _static_data_end = _bss_end + 0x000000003ffce578 _static_data_end = _bss_end 0x0000000040000000 _heap_end = 0x40000000 0x000000003ff80000 _data_seg_org = ORIGIN (rtc_data_seg) @@ -21464,7 +22697,7 @@ LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp 0x0000000040080400 _init 0x0000000040080403 _init_end = ABSOLUTE (.) -.iram0.text 0x0000000040080404 0x16991 +.iram0.text 0x0000000040080404 0x17a99 0x0000000040080404 _iram_text_start = ABSOLUTE (.) *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .iram1 EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .iram1.*) .iram1.1.literal @@ -21669,6 +22902,9 @@ LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp .iram1.22.literal 0x000000004008075c 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) 0x8 (size before relaxing) + .iram1.24.literal + 0x000000004008075c 0x0 esp-idf/display/libdisplay.a(display.c.obj) + 0x4 (size before relaxing) .iram1.19.literal 0x000000004008075c 0x2c esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) 0x30 (size before relaxing) @@ -21887,3150 +23123,3273 @@ LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp .iram1.32.literal 0x0000000040080964 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) 0x8 (size before relaxing) + .iram1.26.literal + 0x0000000040080964 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x20 (size before relaxing) + .iram1.27.literal + 0x000000004008097c 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x10 (size before relaxing) .iram1.0.literal - 0x0000000040080964 0x8 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x000000004008097c 0x8 esp-idf/esp32/libesp32.a(hw_random.c.obj) 0x10 (size before relaxing) .iram1.33.literal - 0x000000004008096c 0x1c esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x0000000040080984 0x1c esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x24 (size before relaxing) .iram1.34.literal - 0x0000000040080988 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400809a0 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x2c (size before relaxing) .iram1.35.literal - 0x000000004008099c 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400809b4 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x20 (size before relaxing) .iram1.36.literal - 0x00000000400809a4 0x30 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400809bc 0x30 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x58 (size before relaxing) .iram1.38.literal - 0x00000000400809d4 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400809ec 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0xc (size before relaxing) .iram1.37.literal - 0x00000000400809d4 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400809ec 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x20 (size before relaxing) .iram1.22.literal - 0x00000000400809e8 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x0000000040080a00 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) .iram1.23.literal - 0x00000000400809ec 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x0000000040080a04 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) 0x30 (size before relaxing) .iram1.24.literal - 0x0000000040080a04 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x0000000040080a1c 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) 0x30 (size before relaxing) .iram1.25.literal - 0x0000000040080a08 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x0000000040080a20 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) 0x8 (size before relaxing) + .iram1.24.literal + 0x0000000040080a20 0x14 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .iram1.1.literal + 0x0000000040080a34 0x8 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) .iram1.0.literal - 0x0000000040080a08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x0000000040080a3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) 0x8 (size before relaxing) .iram1.1.literal - 0x0000000040080a08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x0000000040080a3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) 0x4 (size before relaxing) - .literal 0x0000000040080a08 0x4 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) - .literal.memspi_host_read_id_hs - 0x0000000040080a0c 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x18 (size before relaxing) - .literal.memspi_host_flush_cache - 0x0000000040080a1c 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x8 (size before relaxing) - .literal.spi_flash_chip_generic_detect_size - 0x0000000040080a20 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x8 (size before relaxing) - .literal.spi_flash_chip_generic_erase_chip - 0x0000000040080a24 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .literal.spi_flash_chip_generic_write_encrypted - 0x0000000040080a28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4 (size before relaxing) - .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 - 0x0000000040080a28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x8 (size before relaxing) - .literal.spi_flash_common_write_status_16b_wrsr - 0x0000000040080a28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4 (size before relaxing) - .literal.spi_flash_chip_generic_get_write_protect - 0x0000000040080a28 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .iram1.30.literal + 0x0000000040080a3c 0x30 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x88 (size before relaxing) + .iram1.31.literal + 0x0000000040080a6c 0x0 esp-idf/driver/libdriver.a(spi_master.c.obj) 0x10 (size before relaxing) - .literal.spi_flash_chip_generic_wait_idle - 0x0000000040080a34 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .iram1.32.literal + 0x0000000040080a6c 0x4 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x28 (size before relaxing) + .iram1.28.literal + 0x0000000040080a70 0x0 esp-idf/driver/libdriver.a(spi_master.c.obj) 0x4 (size before relaxing) - .literal.spi_flash_chip_generic_config_host_io_mode - 0x0000000040080a34 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x8 (size before relaxing) - .literal.spi_flash_chip_generic_read - 0x0000000040080a38 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x14 (size before relaxing) - .literal.spi_flash_common_read_status_8b_rdsr2 - 0x0000000040080a40 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .iram1.22.literal + 0x0000000040080a70 0x0 esp-idf/driver/libdriver.a(spi_master.c.obj) 0x4 (size before relaxing) - .literal.spi_flash_chip_generic_get_io_mode - 0x0000000040080a40 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4 (size before relaxing) - .literal.spi_flash_common_read_status_8b_rdsr - 0x0000000040080a40 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4 (size before relaxing) - .literal.spi_flash_common_write_status_8b_wrsr - 0x0000000040080a40 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4 (size before relaxing) - .literal.spi_flash_common_write_status_8b_wrsr2 - 0x0000000040080a40 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4 (size before relaxing) - .literal.spi_flash_chip_generic_set_io_mode - 0x0000000040080a40 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0xc (size before relaxing) + .iram1.27.literal + 0x0000000040080a70 0x0 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x10 (size before relaxing) + .iram1.29.literal + 0x0000000040080a70 0x14 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x50 (size before relaxing) + .literal 0x0000000040080a84 0x4 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) .literal.spi_flash_chip_gd_probe - 0x0000000040080a48 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040080a88 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) .literal.spi_flash_chip_gd_set_io_mode - 0x0000000040080a4c 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040080a8c 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) 0x20 (size before relaxing) .literal.spi_flash_chip_gd_get_io_mode - 0x0000000040080a58 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040080aa0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) 0x4 (size before relaxing) .literal.spi_flash_chip_issi_probe - 0x0000000040080a58 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x0000000040080aa0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) 0x8 (size before relaxing) .literal.spi_flash_chip_issi_set_io_mode - 0x0000000040080a5c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x0000000040080aa4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) 0xc (size before relaxing) .literal.spi_flash_chip_issi_get_io_mode - 0x0000000040080a64 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x0000000040080aac 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_detect_size + 0x0000000040080aac 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_erase_chip + 0x0000000040080ab0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_chip_generic_write_encrypted + 0x0000000040080ab4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x0000000040080ab4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_common_write_status_16b_wrsr + 0x0000000040080ab4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_get_write_protect + 0x0000000040080ab4 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_wait_idle + 0x0000000040080ac0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x0000000040080ac0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x0000000040080ac4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x0000000040080acc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_get_io_mode + 0x0000000040080acc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr + 0x0000000040080acc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr + 0x0000000040080acc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr2 + 0x0000000040080acc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_set_io_mode + 0x0000000040080acc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.memspi_host_read_id_hs + 0x0000000040080acc 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.memspi_host_flush_cache + 0x0000000040080adc 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) .literal.reconfigure_all_wdts - 0x0000000040080a64 0x14 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040080ae0 0x14 esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x2c (size before relaxing) .literal.panic_print_char - 0x0000000040080a78 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040080af4 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) .literal.panic_print_str - 0x0000000040080a80 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040080afc 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x4 (size before relaxing) .literal.print_abort_details - 0x0000000040080a80 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040080afc 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x8 (size before relaxing) .literal.panic_print_hex - 0x0000000040080a84 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040080b00 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x8 (size before relaxing) .literal.panic_print_dec - 0x0000000040080a84 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040080b00 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x10 (size before relaxing) .literal.esp_panic_handler - 0x0000000040080a88 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040080b04 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) 0xd0 (size before relaxing) .literal.panic_abort - 0x0000000040080ab4 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040080b30 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x8 (size before relaxing) - .literal.esp_system_abort - 0x0000000040080ab4 0x0 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - 0x4 (size before relaxing) .literal.frame_to_panic_info - 0x0000000040080ab4 0x24 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080b30 0x24 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x28 (size before relaxing) .literal.panic_handler - 0x0000000040080ad8 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080b54 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x34 (size before relaxing) .literal.print_backtrace_entry - 0x0000000040080ae0 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080b5c 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x18 (size before relaxing) .literal.print_illegal_instruction_details - 0x0000000040080ae8 0x14 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080b64 0x14 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x34 (size before relaxing) .literal.print_registers - 0x0000000040080afc 0x2c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080b78 0x2c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x84 (size before relaxing) .literal.print_backtrace - 0x0000000040080b28 0xc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080ba4 0xc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x5c (size before relaxing) .literal.print_state_for_core - 0x0000000040080b34 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080bb0 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x14 (size before relaxing) .literal.print_state - 0x0000000040080b34 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080bb0 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x18 (size before relaxing) .literal.print_debug_exception_details - 0x0000000040080b34 0x24 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080bb0 0x24 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x58 (size before relaxing) .literal.esp_digital_reset - 0x0000000040080b58 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080bd4 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x18 (size before relaxing) .literal.panicHandler - 0x0000000040080b58 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080bd4 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x4 (size before relaxing) .literal.xt_unhandled_exception - 0x0000000040080b58 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080bd4 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x4 (size before relaxing) .literal.panic_restart - 0x0000000040080b58 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040080bd4 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x10 (size before relaxing) + .literal.esp_system_abort + 0x0000000040080bd4 0x0 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x4 (size before relaxing) .literal.get_reset_reason - 0x0000000040080b58 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x0000000040080bd4 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) .literal.esp_reset_reason_clear_hint - 0x0000000040080b5c 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x0000000040080bd8 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) 0x4 (size before relaxing) .literal.esp_reset_reason - 0x0000000040080b5c 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x0000000040080bd8 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) .literal.esp_reset_reason_init - 0x0000000040080b60 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x0000000040080bdc 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) 0x14 (size before relaxing) - .literal.rtc_clk_32k_enable_common - 0x0000000040080b60 0x18 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - .literal.rtc_clk_bbpll_disable - 0x0000000040080b78 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x10 (size before relaxing) - .literal.rtc_clk_bbpll_enable - 0x0000000040080b80 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x1c (size before relaxing) - .literal.rtc_clk_32k_enable - 0x0000000040080b88 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x10 (size before relaxing) - .literal.rtc_clk_32k_enable_external - 0x0000000040080b90 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x4 (size before relaxing) - .literal.rtc_clk_8m_enable - 0x0000000040080b90 0xc esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x10 (size before relaxing) - .literal.rtc_clk_slow_freq_set - 0x0000000040080b9c 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0xc (size before relaxing) - .literal.rtc_clk_slow_freq_get - 0x0000000040080b9c 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x4 (size before relaxing) - .literal.rtc_clk_slow_freq_get_hz - 0x0000000040080b9c 0xc esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x10 (size before relaxing) - .literal.rtc_clk_fast_freq_set - 0x0000000040080ba8 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x10 (size before relaxing) - .literal.rtc_clk_bbpll_configure - 0x0000000040080bb0 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x40 (size before relaxing) - .literal.rtc_clk_xtal_freq_get - 0x0000000040080bc0 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - .literal.rtc_clk_cpu_freq_mhz_to_config - 0x0000000040080bc8 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x4 (size before relaxing) - .literal.rtc_clk_cpu_freq_get_config - 0x0000000040080bc8 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x34 (size before relaxing) - .literal.rtc_clk_apb_freq_update - 0x0000000040080bd8 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - .literal.rtc_clk_cpu_freq_to_xtal - 0x0000000040080bdc 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x2c (size before relaxing) - .literal.rtc_clk_cpu_freq_set_xtal - 0x0000000040080be4 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x10 (size before relaxing) - .literal.rtc_clk_cpu_freq_to_pll_mhz - 0x0000000040080be4 0xc esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x44 (size before relaxing) - .literal.rtc_clk_cpu_freq_to_8m - 0x0000000040080bf0 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x28 (size before relaxing) - .literal.rtc_clk_cpu_freq_set_config - 0x0000000040080bf4 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x30 (size before relaxing) - .literal.rtc_clk_cal_internal - 0x0000000040080bf4 0x34 esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0x70 (size before relaxing) - .literal.rtc_clk_cal - 0x0000000040080c28 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0xc (size before relaxing) - .literal.rtc_time_us_to_slowclk - 0x0000000040080c28 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0x4 (size before relaxing) - .literal.rtc_time_get - 0x0000000040080c28 0x10 esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0x18 (size before relaxing) - .literal.rtc_clk_wait_for_slow_cycle - 0x0000000040080c38 0x8 esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0x20 (size before relaxing) .literal.spi_flash_hal_configure_host_io_mode - 0x0000000040080c40 0x30 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040080bdc 0x34 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) 0x4c (size before relaxing) .literal.spi_flash_hal_common_command - 0x0000000040080c70 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040080c10 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) 0x24 (size before relaxing) .literal.spi_flash_hal_read - 0x0000000040080c70 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040080c10 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) 0x18 (size before relaxing) .literal.spi_flash_hal_erase_chip - 0x0000000040080c70 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040080c10 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) 0x4 (size before relaxing) .literal.spi_flash_hal_erase_sector - 0x0000000040080c70 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040080c10 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) 0x14 (size before relaxing) .literal.spi_flash_hal_erase_block - 0x0000000040080c74 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040080c14 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) 0x14 (size before relaxing) .literal.spi_flash_hal_program_page - 0x0000000040080c74 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040080c14 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) 0x1c (size before relaxing) .literal.spi_flash_hal_set_write_protect - 0x0000000040080c78 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040080c18 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) 0x8 (size before relaxing) .literal.spi_flash_hal_host_idle - 0x0000000040080c78 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x8 (size before relaxing) - .literal.cpu_hal_set_watchpoint - 0x0000000040080c7c 0x0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + 0x0000000040080c1c 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) 0x8 (size before relaxing) .literal.rtc_wdt_get_protect_status - 0x0000000040080c7c 0x8 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c20 0x8 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) .literal.rtc_wdt_protect_off - 0x0000000040080c84 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c28 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x8 (size before relaxing) .literal.rtc_wdt_protect_on - 0x0000000040080c84 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c28 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x4 (size before relaxing) .literal.rtc_wdt_enable - 0x0000000040080c84 0xc esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c28 0xc esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x10 (size before relaxing) .literal.rtc_wdt_flashboot_mode_enable - 0x0000000040080c90 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c34 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x4 (size before relaxing) .literal.rtc_wdt_feed - 0x0000000040080c90 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c34 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x14 (size before relaxing) .literal.rtc_wdt_set_time - 0x0000000040080c90 0x14 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c34 0x14 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x20 (size before relaxing) .literal.rtc_wdt_set_stage - 0x0000000040080ca4 0x14 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c48 0x14 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x24 (size before relaxing) .literal.rtc_wdt_disable - 0x0000000040080cb8 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c5c 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x2c (size before relaxing) .literal.rtc_wdt_set_length_of_reset_signal - 0x0000000040080cb8 0x8 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c5c 0x10 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x14 (size before relaxing) .literal.rtc_wdt_is_on - 0x0000000040080cc0 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040080c6c 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x4 (size before relaxing) - .literal.rtc_sleep_pd - 0x0000000040080cc0 0x24 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .literal.spi_hal_setup_device + 0x0000000040080c6c 0x8 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_hal_setup_trans + 0x0000000040080c74 0x24 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x64 (size before relaxing) + .literal.spi_hal_prepare_data + 0x0000000040080c98 0xc esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) 0x2c (size before relaxing) - .literal.rtc_sleep_init - 0x0000000040080ce4 0x68 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - 0xd0 (size before relaxing) - .literal.rtc_sleep_set_wakeup_time - 0x0000000040080d4c 0x8 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - .literal.rtc_sleep_start - 0x0000000040080d54 0x18 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - 0x28 (size before relaxing) - .literal.soc_hal_stall_core - 0x0000000040080d6c 0x10 esp-idf/soc/libsoc.a(soc_hal.c.obj) - 0x14 (size before relaxing) - .literal.soc_hal_unstall_core - 0x0000000040080d7c 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .literal.spi_hal_user_start + 0x0000000040080ca4 0x0 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_hal_fetch_result + 0x0000000040080ca4 0x0 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.lldesc_setup_link + 0x0000000040080ca4 0xc esp-idf/soc/libsoc.a(lldesc.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_32k_enable_common + 0x0000000040080cb0 0x18 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_disable + 0x0000000040080cc8 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_enable + 0x0000000040080cd0 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_32k_enable + 0x0000000040080cd8 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_32k_enable_external + 0x0000000040080ce0 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x0000000040080ce0 0xc esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_slow_freq_set + 0x0000000040080cec 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_freq_get + 0x0000000040080cec 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x0000000040080cec 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_freq_set + 0x0000000040080cf4 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_configure + 0x0000000040080cf4 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x40 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x0000000040080cfc 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x0000000040080d04 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_get_config + 0x0000000040080d04 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x34 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x0000000040080d14 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_xtal + 0x0000000040080d18 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_cpu_freq_set_xtal + 0x0000000040080d20 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040080d20 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x44 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_8m + 0x0000000040080d28 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x0000000040080d2c 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x30 (size before relaxing) .literal.rtc_init - 0x0000000040080d7c 0x20 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x0000000040080d2c 0x50 esp-idf/soc/libsoc.a(rtc_init.c.obj) 0xe0 (size before relaxing) .literal.rtc_vddsdio_get_config - 0x0000000040080d9c 0x8 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x0000000040080d7c 0xc esp-idf/soc/libsoc.a(rtc_init.c.obj) 0x10 (size before relaxing) .literal.rtc_vddsdio_set_config - 0x0000000040080da4 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x0000000040080d88 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) 0x8 (size before relaxing) - .literal.esp_log_early_timestamp - 0x0000000040080da4 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .literal.rtc_sleep_pd + 0x0000000040080d88 0x18 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x2c (size before relaxing) + .literal.rtc_sleep_init + 0x0000000040080da0 0x44 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0xd0 (size before relaxing) + .literal.rtc_sleep_set_wakeup_time + 0x0000000040080de4 0x8 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x0000000040080dec 0x18 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x28 (size before relaxing) + .literal.soc_hal_stall_core + 0x0000000040080e04 0x10 esp-idf/soc/libsoc.a(soc_hal.c.obj) + 0x14 (size before relaxing) + .literal.soc_hal_unstall_core + 0x0000000040080e14 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + 0x10 (size before relaxing) + .literal.cpu_hal_set_watchpoint + 0x0000000040080e14 0x0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_cal_internal + 0x0000000040080e14 0x2c esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x70 (size before relaxing) + .literal.rtc_clk_cal + 0x0000000040080e40 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0xc (size before relaxing) + .literal.rtc_time_us_to_slowclk + 0x0000000040080e40 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) 0x4 (size before relaxing) + .literal.rtc_time_get + 0x0000000040080e40 0xc esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x0000000040080e4c 0x8 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x20 (size before relaxing) + .literal.esp_log_timestamp + 0x0000000040080e54 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1c (size before relaxing) + .literal.esp_log_early_timestamp + 0x0000000040080e58 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_impl_lock + 0x0000000040080e58 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0xc (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x0000000040080e5c 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0xc (size before relaxing) .literal.esp_log_impl_unlock - 0x0000000040080da4 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x0000000040080e5c 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) 0x8 (size before relaxing) .literal.esp_log_write - 0x0000000040080da8 0x4 esp-idf/log/liblog.a(log.c.obj) - .literal.esp_log_impl_lock - 0x0000000040080dac 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) - 0xc (size before relaxing) - .literal.esp_log_timestamp - 0x0000000040080dac 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) - 0x1c (size before relaxing) - .literal.esp_log_impl_lock_timeout - 0x0000000040080db0 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) - 0xc (size before relaxing) + 0x0000000040080e5c 0x4 esp-idf/log/liblog.a(log.c.obj) .literal.get_prev_free_block - 0x0000000040080db0 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040080e60 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x28 (size before relaxing) .literal.split_if_necessary - 0x0000000040080dc0 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040080e70 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x50 (size before relaxing) .literal.assert_valid_block - 0x0000000040080dd0 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040080e80 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x2c (size before relaxing) .literal.merge_adjacent - 0x0000000040080dd0 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040080e80 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x4c (size before relaxing) .literal.multi_heap_get_allocated_size_impl - 0x0000000040080dd8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040080e88 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x10 (size before relaxing) .literal.multi_heap_malloc_impl - 0x0000000040080dd8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040080e88 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x28 (size before relaxing) .literal.multi_heap_free_impl - 0x0000000040080dd8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040080e88 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x50 (size before relaxing) .literal.multi_heap_realloc_impl - 0x0000000040080dd8 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040080e88 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) 0x68 (size before relaxing) .literal.multi_heap_get_info_impl - 0x0000000040080de4 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040080e94 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x2c (size before relaxing) .literal.prvReturnItemByteBuf - 0x0000000040080de4 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080e94 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x14 (size before relaxing) .literal.prvGetItemByteBuf - 0x0000000040080df0 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080ea0 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x18 (size before relaxing) .literal.prvCheckItemFitsByteBuffer - 0x0000000040080df4 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080ea4 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x10 (size before relaxing) .literal.prvReturnItemDefault - 0x0000000040080df8 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080ea8 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x28 (size before relaxing) .literal.prvGetItemDefault - 0x0000000040080dfc 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080eac 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x2c (size before relaxing) .literal.prvAcquireItemNoSplit - 0x0000000040080e00 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080eb0 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x18 (size before relaxing) .literal.prvSendItemDoneNoSplit - 0x0000000040080e04 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080eb4 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x28 (size before relaxing) .literal.prvCheckItemFitsDefault - 0x0000000040080e08 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080eb8 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x14 (size before relaxing) .literal.prvGetFreeSize - 0x0000000040080e0c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080ebc 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x10 (size before relaxing) .literal.prvCopyItemByteBuf - 0x0000000040080e10 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080ec0 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x18 (size before relaxing) .literal.prvCopyItemAllowSplit - 0x0000000040080e14 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080ec4 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x20 (size before relaxing) .literal.prvCopyItemNoSplit - 0x0000000040080e18 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080ec8 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0xc (size before relaxing) .literal.prvInitializeNewRingbuffer - 0x0000000040080e18 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080ec8 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x48 (size before relaxing) .literal.prvReceiveGeneric - 0x0000000040080e58 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f08 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x34 (size before relaxing) .literal.prvReceiveGenericFromISR - 0x0000000040080e5c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f0c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x24 (size before relaxing) .literal.xRingbufferCreate - 0x0000000040080e60 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f10 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x38 (size before relaxing) .literal.xRingbufferSend - 0x0000000040080e64 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f14 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x38 (size before relaxing) .literal.xRingbufferSendFromISR - 0x0000000040080e68 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f18 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x28 (size before relaxing) .literal.xRingbufferReceive - 0x0000000040080e6c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f1c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x14 (size before relaxing) .literal.xRingbufferReceiveFromISR - 0x0000000040080e70 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f20 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x14 (size before relaxing) .literal.vRingbufferReturnItem - 0x0000000040080e74 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f24 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x20 (size before relaxing) .literal.vRingbufferReturnItemFromISR - 0x0000000040080e78 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f28 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x20 (size before relaxing) .literal.vRingbufferDelete - 0x0000000040080e7c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f2c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x20 (size before relaxing) .literal.xRingbufferGetMaxItemSize - 0x0000000040080e80 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040080f30 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x10 (size before relaxing) .literal.vPortTaskWrapper - 0x0000000040080e84 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f34 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) 0x18 (size before relaxing) .literal.pxPortInitialiseStack - 0x0000000040080e8c 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f3c 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) 0x1c (size before relaxing) .literal.xPortStartScheduler - 0x0000000040080ea0 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f50 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) 0x14 (size before relaxing) .literal.xPortSysTickHandler - 0x0000000040080ea0 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f50 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) 0x8 (size before relaxing) .literal.vPortYieldOtherCore - 0x0000000040080ea0 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f50 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) 0x4 (size before relaxing) .literal.vPortReleaseTaskMPUSettings - 0x0000000040080ea0 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f50 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) 0x4 (size before relaxing) .literal.xPortInIsrContext - 0x0000000040080ea0 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f50 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) 0x8 (size before relaxing) .literal.vPortSetStackWatchpoint - 0x0000000040080ea0 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f50 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) 0x8 (size before relaxing) .literal.vPortEnterCritical - 0x0000000040080ea0 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f50 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) 0x3c (size before relaxing) .literal.vPortExitCritical - 0x0000000040080ec8 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f78 0xc esp-idf/freertos/libfreertos.a(port.c.obj) 0x30 (size before relaxing) .literal.vApplicationStackOverflowHook - 0x0000000040080ed4 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040080f84 0xc esp-idf/freertos/libfreertos.a(port.c.obj) 0x14 (size before relaxing) - .literal 0x0000000040080ee0 0xc esp-idf/freertos/libfreertos.a(portasm.S.obj) + .literal 0x0000000040080f90 0xc esp-idf/freertos/libfreertos.a(portasm.S.obj) 0x54 (size before relaxing) - .literal 0x0000000040080eec 0x4 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .literal 0x0000000040080f9c 0x4 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) 0x14 (size before relaxing) .literal._xt_tick_divisor_init - 0x0000000040080ef0 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x0000000040080fa0 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) 0xc (size before relaxing) .literal.xt_unhandled_interrupt - 0x0000000040080ef4 0x4 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x0000000040080fa4 0x4 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) 0x8 (size before relaxing) .literal.xt_set_interrupt_handler - 0x0000000040080ef8 0x8 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x0000000040080fa8 0x8 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) 0xc (size before relaxing) .literal.prvIsQueueFull - 0x0000000040080f00 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fb0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x8 (size before relaxing) .literal.prvCopyDataToQueue - 0x0000000040080f00 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fb0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) 0xc (size before relaxing) .literal.prvNotifyQueueSetContainer - 0x0000000040080f00 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fb0 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x2c (size before relaxing) .literal.prvCopyDataFromQueue - 0x0000000040080f14 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fc4 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x4 (size before relaxing) .literal.xQueueGenericReset - 0x0000000040080f14 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fc4 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x3c (size before relaxing) .literal.prvInitialiseNewQueue - 0x0000000040080f24 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fd4 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x4 (size before relaxing) .literal.xQueueGenericCreate - 0x0000000040080f24 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fd4 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x18 (size before relaxing) .literal.xQueueGetMutexHolder - 0x0000000040080f28 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fd8 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x8 (size before relaxing) .literal.xQueueCreateCountingSemaphore - 0x0000000040080f28 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fd8 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x1c (size before relaxing) .literal.xQueueGenericSend - 0x0000000040080f2c 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fdc 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x74 (size before relaxing) .literal.prvInitialiseMutex - 0x0000000040080f30 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fe0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x18 (size before relaxing) .literal.xQueueCreateMutex - 0x0000000040080f30 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fe0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x8 (size before relaxing) .literal.xQueueGiveMutexRecursive - 0x0000000040080f30 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fe0 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x18 (size before relaxing) .literal.xQueueGenericSendFromISR - 0x0000000040080f34 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fe4 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x30 (size before relaxing) .literal.xQueueGiveFromISR - 0x0000000040080f38 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fe8 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x28 (size before relaxing) .literal.xQueueGenericReceive - 0x0000000040080f3c 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080fec 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x6c (size before relaxing) .literal.xQueueTakeMutexRecursive - 0x0000000040080f40 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080ff0 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x18 (size before relaxing) .literal.xQueueReceiveFromISR - 0x0000000040080f44 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080ff4 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x28 (size before relaxing) .literal.uxQueueMessagesWaiting - 0x0000000040080f48 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080ff8 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x18 (size before relaxing) .literal.uxQueueSpacesAvailable - 0x0000000040080f4c 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040080ffc 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x18 (size before relaxing) .literal.vQueueDelete - 0x0000000040080f50 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040081000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x14 (size before relaxing) .literal.vQueueWaitForMessageRestricted - 0x0000000040080f54 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040081004 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) 0xc (size before relaxing) .literal.prvListTaskWithinSingleList - 0x0000000040080f54 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081004 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x4 (size before relaxing) .literal.prvResetNextTaskUnblockTime - 0x0000000040080f54 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081004 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) .literal.prvDeleteTLS - 0x0000000040080f5c 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008100c 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x14 (size before relaxing) .literal.prvInitialiseNewTask - 0x0000000040080f6c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008101c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x18 (size before relaxing) .literal.prvInitialiseTaskLists - 0x0000000040080f6c 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008101c 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x40 (size before relaxing) .literal.prvDeleteTCB - 0x0000000040080f8c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008103c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x28 (size before relaxing) .literal.prvCheckTasksWaitingTermination - 0x0000000040080f98 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081048 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x30 (size before relaxing) .literal.prvAddCurrentTaskToDelayedList - 0x0000000040080fac 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008105c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x1c (size before relaxing) .literal.prvIdleTask - 0x0000000040080fb0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081060 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x8 (size before relaxing) .literal.prvWriteNameToBuffer - 0x0000000040080fb4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081064 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) .literal.taskYIELD_OTHER_CORE - 0x0000000040080fbc 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008106c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x10 (size before relaxing) .literal.prvAddNewTaskToReadyList - 0x0000000040080fbc 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008106c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x54 (size before relaxing) .literal.xTaskCreatePinnedToCore - 0x0000000040080fd0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081080 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x18 (size before relaxing) .literal.vTaskStartScheduler - 0x0000000040080fd0 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081080 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x38 (size before relaxing) .literal.vTaskSuspendAll - 0x0000000040080fe8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081098 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x8 (size before relaxing) .literal.xTaskGetTickCount - 0x0000000040080fec 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008109c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x4 (size before relaxing) .literal.xTaskGetTickCountFromISR - 0x0000000040080fec 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008109c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x4 (size before relaxing) .literal.uxTaskGetNumberOfTasks - 0x0000000040080fec 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008109c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x4 (size before relaxing) .literal.uxTaskGetSystemState - 0x0000000040080fec 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008109c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x38 (size before relaxing) .literal.xTaskGetIdleTaskHandleForCPU - 0x0000000040080fec 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008109c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x18 (size before relaxing) .literal.xTaskIncrementTick - 0x0000000040080ff4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400810a4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x64 (size before relaxing) .literal.vTaskSwitchContext - 0x0000000040081008 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400810b8 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x78 (size before relaxing) .literal.vTaskPlaceOnEventList - 0x0000000040081034 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400810e4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x3c (size before relaxing) .literal.vTaskPlaceOnUnorderedEventList - 0x000000004008103c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400810ec 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x4c (size before relaxing) .literal.vTaskPlaceOnEventListRestricted - 0x0000000040081048 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400810f8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x34 (size before relaxing) .literal.xTaskRemoveFromEventList - 0x0000000040081050 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081100 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x54 (size before relaxing) .literal.xTaskRemoveFromUnorderedEventList - 0x0000000040081058 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081108 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x54 (size before relaxing) .literal.vTaskSetTimeOutState - 0x0000000040081064 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081114 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x1c (size before relaxing) .literal.xTaskCheckForTimeOut - 0x000000004008106c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008111c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x34 (size before relaxing) .literal.xTaskGetCurrentTaskHandle - 0x0000000040081078 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081128 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x8 (size before relaxing) .literal.uxTaskPriorityGet - 0x0000000040081078 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081128 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x10 (size before relaxing) .literal.vTaskPrioritySet - 0x0000000040081078 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081128 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x40 (size before relaxing) .literal.__getreent - 0x000000004008107c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008112c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x8 (size before relaxing) .literal.pcTaskGetTaskName - 0x000000004008107c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008112c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x18 (size before relaxing) .literal.vTaskSetThreadLocalStoragePointerAndDelCallback - 0x0000000040081084 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081134 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x10 (size before relaxing) .literal.pvTaskGetThreadLocalStoragePointer - 0x0000000040081084 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081134 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x4 (size before relaxing) .literal.xTaskGetAffinity - 0x0000000040081084 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081134 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x4 (size before relaxing) .literal.xTaskGetCurrentTaskHandleForCPU - 0x0000000040081084 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081134 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x4 (size before relaxing) .literal.xTaskGetSchedulerState - 0x0000000040081084 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081134 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0xc (size before relaxing) .literal.vTaskDelete - 0x0000000040081084 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081134 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x5c (size before relaxing) .literal.vTaskDelay - 0x0000000040081088 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081138 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x34 (size before relaxing) .literal.vTaskSuspend - 0x000000004008108c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004008113c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x5c (size before relaxing) .literal.xTaskResumeAll - 0x0000000040081090 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081140 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x5c (size before relaxing) .literal.vTaskPriorityInherit - 0x0000000040081098 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081148 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x28 (size before relaxing) .literal.xTaskPriorityDisinherit - 0x0000000040081098 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081148 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x38 (size before relaxing) .literal.vTaskList - 0x00000000400810a0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081150 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x20 (size before relaxing) .literal.uxTaskResetEventItemValue - 0x00000000400810a8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081158 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x10 (size before relaxing) .literal.pvTaskIncrementMutexHeldCount - 0x00000000400810a8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040081158 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x10 (size before relaxing) .literal.prvGetNextExpireTime - 0x00000000400810a8 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040081158 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) .literal.prvInsertTimerInActiveList - 0x00000000400810ac 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000004008115c 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x10 (size before relaxing) .literal.prvCheckForValidListAndQueue - 0x00000000400810b0 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040081160 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) 0x40 (size before relaxing) .literal.xTimerCreateTimerTask - 0x00000000400810cc 0xc esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000004008117c 0xc esp-idf/freertos/libfreertos.a(timers.c.obj) 0x28 (size before relaxing) .literal.xTimerGenericCommand - 0x00000000400810d8 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040081188 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x14 (size before relaxing) .literal.prvSwitchTimerLists - 0x00000000400810d8 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040081188 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x24 (size before relaxing) .literal.prvSampleTimeNow - 0x00000000400810dc 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000004008118c 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) 0xc (size before relaxing) .literal.prvProcessExpiredTimer - 0x00000000400810e0 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040081190 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x20 (size before relaxing) .literal.prvProcessTimerOrBlockTask - 0x00000000400810e4 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040081194 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x24 (size before relaxing) .literal.prvProcessReceivedCommands - 0x00000000400810e4 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040081194 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x38 (size before relaxing) .literal.prvTimerTask - 0x00000000400810ec 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000004008119c 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) 0xc (size before relaxing) .literal.xEventGroupCreate - 0x00000000400810ec 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x000000004008119c 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x1c (size before relaxing) .literal.xEventGroupWaitBits - 0x00000000400810f8 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x00000000400811a8 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x5c (size before relaxing) .literal.xEventGroupClearBits - 0x0000000040081104 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x00000000400811b4 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x20 (size before relaxing) .literal.xEventGroupSetBits - 0x0000000040081108 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x00000000400811b8 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x34 (size before relaxing) .literal.vEventGroupDelete - 0x000000004008110c 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x00000000400811bc 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x2c (size before relaxing) - .literal.abort - 0x0000000040081110 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) - 0x24 (size before relaxing) .literal.malloc - 0x0000000040081120 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000400811c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) 0x4 (size before relaxing) .literal.realloc - 0x0000000040081120 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000400811c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) 0x4 (size before relaxing) - .literal.free 0x0000000040081120 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.free 0x00000000400811c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) 0x4 (size before relaxing) .literal._malloc_r - 0x0000000040081120 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000400811c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) 0x4 (size before relaxing) .literal._free_r - 0x0000000040081120 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000400811c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) 0x4 (size before relaxing) .literal._realloc_r - 0x0000000040081120 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000400811c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) 0x4 (size before relaxing) .literal._calloc_r - 0x0000000040081120 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000400811c0 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) 0x8 (size before relaxing) .literal.calloc - 0x0000000040081124 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000400811c4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) 0x8 (size before relaxing) - .iram1.1 0x0000000040081124 0x69 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) - 0x0000000040081124 esp_ota_get_app_elf_sha256 - *fill* 0x000000004008118d 0x3 - .iram1 0x0000000040081190 0xe6 esp-idf/esp_system/libesp_system.a(dport_panic_highint_hdl.S.obj) - 0x0000000040081190 xt_highint4 - 0x0000000040081276 ld_include_panic_highint_hdl - *fill* 0x0000000040081276 0x2 - .iram1.0 0x0000000040081278 0x31 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x0000000040081278 esp_reset_reason_set_hint - *fill* 0x00000000400812a9 0x3 - .iram1.1 0x00000000400812ac 0x2f esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x00000000400812ac esp_reset_reason_get_hint - *fill* 0x00000000400812db 0x1 - .iram1.0 0x00000000400812dc 0xa esp-idf/soc/libsoc.a(cpu_util.c.obj) - 0xe (size before relaxing) - 0x00000000400812dc esp_cpu_stall - *fill* 0x00000000400812e6 0x2 - .iram1.1 0x00000000400812e8 0xa esp-idf/soc/libsoc.a(cpu_util.c.obj) - 0xe (size before relaxing) - 0x00000000400812e8 esp_cpu_unstall - *fill* 0x00000000400812f2 0x2 - .iram1.2 0x00000000400812f4 0x21 esp-idf/soc/libsoc.a(cpu_util.c.obj) - 0x00000000400812f4 esp_cpu_reset - *fill* 0x0000000040081315 0x3 - .iram1.3 0x0000000040081318 0x39 esp-idf/soc/libsoc.a(cpu_util.c.obj) - 0x0000000040081318 esp_set_watchpoint - *fill* 0x0000000040081351 0x3 - .iram1.5 0x0000000040081354 0xe esp-idf/soc/libsoc.a(cpu_util.c.obj) - 0x0000000040081354 esp_cpu_in_ocd_debug_mode - *fill* 0x0000000040081362 0x2 - .iram1.23 0x0000000040081364 0x58 esp-idf/pthread/libpthread.a(pthread.c.obj) - 0x64 (size before relaxing) - .iram1.24 0x00000000400813bc 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) - 0x00000000400813bc pthread_mutex_lock - *fill* 0x00000000400813de 0x2 - .iram1.27 0x00000000400813e0 0x65 esp-idf/pthread/libpthread.a(pthread.c.obj) - 0x6d (size before relaxing) - 0x00000000400813e0 pthread_mutex_unlock - *fill* 0x0000000040081445 0x3 - .iram1.24 0x0000000040081448 0x2c esp-idf/esp32/libesp32.a(cache_err_int.c.obj) - 0x30 (size before relaxing) - 0x0000000040081448 esp_cache_err_get_cpuid - .iram1.4 0x0000000040081474 0x10 esp-idf/esp32/libesp32.a(clk.c.obj) - 0x0000000040081474 esp_clk_cpu_freq - .iram1.5 0x0000000040081484 0x15 esp-idf/esp32/libesp32.a(clk.c.obj) - 0x0000000040081484 esp_clk_apb_freq - *fill* 0x0000000040081499 0x3 - .iram1.7 0x000000004008149c 0xf esp-idf/esp32/libesp32.a(clk.c.obj) - 0x000000004008149c ets_update_cpu_frequency - *fill* 0x00000000400814ab 0x1 - .iram1.33 0x00000000400814ac 0x165 esp-idf/esp32/libesp32.a(cpu_start.c.obj) - 0x185 (size before relaxing) - 0x00000000400814ac start_cpu0_default - 0x00000000400814ac start_cpu0 - *fill* 0x0000000040081611 0x3 - .iram1.35 0x0000000040081614 0x3e esp-idf/esp32/libesp32.a(cpu_start.c.obj) - 0x46 (size before relaxing) - 0x0000000040081614 start_cpu1 - 0x0000000040081614 start_cpu1_default - *fill* 0x0000000040081652 0x2 - .iram1.37 0x0000000040081654 0x4e esp-idf/esp32/libesp32.a(cpu_start.c.obj) - 0x56 (size before relaxing) - *fill* 0x00000000400816a2 0x2 - .iram1.36 0x00000000400816a4 0x1c4 esp-idf/esp32/libesp32.a(cpu_start.c.obj) - 0x216 (size before relaxing) - 0x00000000400816a4 call_start_cpu0 - *fill* 0x0000000040081868 0x0 - .iram1.28 0x0000000040081868 0x58 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) - 0x5c (size before relaxing) - .iram1.27 0x00000000400818c0 0x44 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) - 0x4c (size before relaxing) - .iram1.29 0x0000000040081904 0xf esp-idf/esp32/libesp32.a(crosscore_int.c.obj) - 0x0000000040081904 esp_crosscore_int_send_yield - *fill* 0x0000000040081913 0x1 - .iram1.26 0x0000000040081914 0xb6 esp-idf/esp32/libesp32.a(dport_access.c.obj) - 0x0000000040081914 esp_dport_access_stall_other_cpu_start - *fill* 0x00000000400819ca 0x2 - .iram1.27 0x00000000400819cc 0x83 esp-idf/esp32/libesp32.a(dport_access.c.obj) - 0x00000000400819cc esp_dport_access_stall_other_cpu_end - *fill* 0x0000000040081a4f 0x1 - .iram1.29 0x0000000040081a50 0x14 esp-idf/esp32/libesp32.a(dport_access.c.obj) - 0x0000000040081a50 esp_dport_access_int_abort - .iram1.32 0x0000000040081a64 0x15 esp-idf/esp32/libesp32.a(dport_access.c.obj) - 0x0000000040081a64 esp_dport_access_reg_read - *fill* 0x0000000040081a79 0x3 - .iram1.33 0x0000000040081a7c 0xc esp-idf/esp32/libesp32.a(dport_access.c.obj) - 0x0000000040081a7c esp_dport_access_sequence_reg_read - .iram1.31 0x0000000040081a88 0x2a esp-idf/esp32/libesp32.a(dport_access.c.obj) - 0x0000000040081a88 esp_dport_access_read_buffer - *fill* 0x0000000040081ab2 0x2 - .iram1.22 0x0000000040081ab4 0x56 esp-idf/esp32/libesp32.a(int_wdt.c.obj) - *fill* 0x0000000040081b0a 0x2 - .iram1.22 0x0000000040081b0c 0x39 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) - 0x3c (size before relaxing) - *fill* 0x0000000040081b45 0x3 - .iram1.24 0x0000000040081b48 0xad esp-idf/esp32/libesp32.a(intr_alloc.c.obj) - 0xb9 (size before relaxing) - 0x0000000040081b48 esp_intr_enable - *fill* 0x0000000040081bf5 0x3 - .iram1.25 0x0000000040081bf8 0xfb esp-idf/esp32/libesp32.a(intr_alloc.c.obj) - 0x117 (size before relaxing) - 0x0000000040081bf8 esp_intr_disable - *fill* 0x0000000040081cf3 0x1 - .iram1.26 0x0000000040081cf4 0x52 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) - 0x0000000040081cf4 esp_intr_noniram_disable - *fill* 0x0000000040081d46 0x2 - .iram1.27 0x0000000040081d48 0x41 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) - 0x0000000040081d48 esp_intr_noniram_enable - *fill* 0x0000000040081d89 0x3 - .iram1.32 0x0000000040081d8c 0x16f esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) - 0x1bb (size before relaxing) - 0x0000000040081d8c esp_restart_noos - *fill* 0x0000000040081efb 0x1 - .iram1.21 0x0000000040081efc 0x2b esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) - 0x0000000040081efc esp_vApplicationTickHook - *fill* 0x0000000040081f27 0x1 - .iram1.22 0x0000000040081f28 0xa0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) - 0xa4 (size before relaxing) - .iram1.31 0x0000000040081fc8 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - *fill* 0x0000000040081fdb 0x1 - .iram1.28 0x0000000040081fdc 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x23 (size before relaxing) - *fill* 0x0000000040081ff8 0x0 - .iram1.25 0x0000000040081ff8 0x86 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - *fill* 0x000000004008207e 0x2 - .iram1.29 0x0000000040082080 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x23 (size before relaxing) - *fill* 0x000000004008209c 0x0 - .iram1.26 0x000000004008209c 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x30 (size before relaxing) - .iram1.30 0x00000000400820c8 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x20 (size before relaxing) - .iram1.24 0x00000000400820e4 0x31 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x39 (size before relaxing) - 0x00000000400820e4 esp_timer_stop - *fill* 0x0000000040082115 0x3 - .iram1.33 0x0000000040082118 0xf esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x0000000040082118 esp_timer_get_time - *fill* 0x0000000040082127 0x1 - .iram1.22 0x0000000040082128 0x57 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x67 (size before relaxing) - 0x0000000040082128 esp_timer_start_once - *fill* 0x000000004008217f 0x1 - .iram1.23 0x0000000040082180 0x69 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x81 (size before relaxing) - 0x0000000040082180 esp_timer_start_periodic - *fill* 0x00000000400821e9 0x3 - .iram1.24 0x00000000400821ec 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) - *fill* 0x0000000040082206 0x2 - .iram1.21 0x0000000040082208 0x51 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) - 0x0000000040082208 esp_timer_impl_get_counter_reg - *fill* 0x0000000040082259 0x3 - .iram1.22 0x000000004008225c 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) - 0x17 (size before relaxing) - 0x000000004008225c esp_timer_impl_get_time - *fill* 0x0000000040082270 0x0 - .iram1.23 0x0000000040082270 0xe4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) - 0xf7 (size before relaxing) - 0x0000000040082270 esp_timer_impl_set_alarm - *fill* 0x0000000040082354 0x0 - .iram1.25 0x0000000040082354 0x63 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) - 0x0000000040082354 esp_timer_impl_update_apb_freq - 0x0000000040082354 esp_timer_private_update_apb_freq - *fill* 0x00000000400823b7 0x1 - .iram1.26 0x00000000400823b8 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) - 0x00000000400823b8 esp_timer_impl_get_min_period_us - *fill* 0x00000000400823c3 0x1 - .iram1.22 0x00000000400823c4 0x1e esp-idf/freertos/libfreertos.a(port.c.obj) - 0x00000000400823c4 xPortInterruptedFromISRContext - *fill* 0x00000000400823e2 0x2 - .iram1 0x00000000400823e4 0x490 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) - 0x0000000040082498 _xt_user_exit - 0x00000000400827b0 _xt_medint2_exit - 0x0000000040082860 _xt_medint3_exit - .iram1.22 0x0000000040082874 0x34 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x43 (size before relaxing) - *fill* 0x00000000400828a8 0x0 - .iram1.26 0x00000000400828a8 0x9e esp-idf/newlib/libnewlib.a(locks.c.obj) - 0xb6 (size before relaxing) - *fill* 0x0000000040082946 0x2 - .iram1.31 0x0000000040082948 0x46 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4e (size before relaxing) - *fill* 0x000000004008298e 0x2 - .iram1.23 0x0000000040082990 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x0000000040082990 _lock_init - *fill* 0x00000000400829a3 0x1 - .iram1.24 0x00000000400829a4 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x00000000400829a4 _lock_init_recursive - *fill* 0x00000000400829b7 0x1 - .iram1.25 0x00000000400829b8 0x3b esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x43 (size before relaxing) - 0x00000000400829b8 _lock_close - 0x00000000400829b8 _lock_close_recursive - *fill* 0x00000000400829f3 0x1 - .iram1.27 0x00000000400829f4 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x12 (size before relaxing) - 0x00000000400829f4 _lock_acquire - *fill* 0x0000000040082a02 0x2 - .iram1.28 0x0000000040082a04 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x12 (size before relaxing) - 0x0000000040082a04 _lock_acquire_recursive - *fill* 0x0000000040082a12 0x2 - .iram1.29 0x0000000040082a14 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x14 (size before relaxing) - 0x0000000040082a14 _lock_try_acquire - .iram1.30 0x0000000040082a24 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x14 (size before relaxing) - 0x0000000040082a24 _lock_try_acquire_recursive - .iram1.32 0x0000000040082a34 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x0000000040082a34 _lock_release - *fill* 0x0000000040082a43 0x1 - .iram1.33 0x0000000040082a44 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x0000000040082a44 _lock_release_recursive - *fill* 0x0000000040082a53 0x1 - .iram1.0 0x0000000040082a54 0x37 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - 0x0000000040082a54 esp_reent_init - *fill* 0x0000000040082a8b 0x1 - .iram1.23 0x0000000040082a8c 0x4a esp-idf/newlib/libnewlib.a(time.c.obj) - 0x0000000040082a8c _gettimeofday_r - *fill* 0x0000000040082ad6 0x2 - .iram1.22 0x0000000040082ad8 0x29 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x2d (size before relaxing) - 0x0000000040082ad8 _times_r - *fill* 0x0000000040082b01 0x3 - .iram1.19 0x0000000040082b04 0xa9 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) - 0x0000000040082b04 esp_backtrace_get_next_frame - *fill* 0x0000000040082bad 0x3 - .iram1.0 0x0000000040082bb0 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) - 0x0000000040082bb0 bootloader_flash_cs_timing_config - *fill* 0x0000000040082c1e 0x2 - .iram1.1 0x0000000040082c20 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) - 0x0000000040082c20 bootloader_flash_clock_config - *fill* 0x0000000040082c5e 0x2 - .iram1.2 0x0000000040082c60 0x240 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) - 0x0000000040082c60 bootloader_flash_gpio_config - .iram1.3 0x0000000040082ea0 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) - 0x0000000040082ea0 bootloader_flash_dummy_config - .iram1.39 0x0000000040082f50 0x64 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x6c (size before relaxing) - .iram1.33 0x0000000040082fb4 0x46 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x52 (size before relaxing) - 0x0000000040082fb4 spi_flash_op_block_func - *fill* 0x0000000040082ffa 0x2 - .iram1.38 0x0000000040082ffc 0x66 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x6e (size before relaxing) - *fill* 0x0000000040083062 0x2 - .iram1.34 0x0000000040083064 0x11b esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x12f (size before relaxing) - 0x0000000040083064 spi_flash_disable_interrupts_caches_and_other_cpu - *fill* 0x000000004008317f 0x1 - .iram1.35 0x0000000040083180 0xa1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0xa9 (size before relaxing) - 0x0000000040083180 spi_flash_enable_interrupts_caches_and_other_cpu - *fill* 0x0000000040083221 0x3 - .iram1.40 0x0000000040083224 0x25 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x29 (size before relaxing) - 0x0000000040083224 spi_flash_cache_enabled - *fill* 0x0000000040083249 0x3 - .iram1.41 0x000000004008324c 0xf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x000000004008324c spi_flash_enable_cache - *fill* 0x000000004008325b 0x1 - .iram1.33 0x000000004008325c 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x000000004008325c spi_flash_guard_set - *fill* 0x0000000040083266 0x2 - .iram1.35 0x0000000040083268 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x0000000040083268 spi_flash_get_chip_size - *fill* 0x0000000040083272 0x2 - .iram1.41 0x0000000040083274 0x32 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x0000000040083274 spi_flash_erase_sector - *fill* 0x00000000400832a6 0x2 - .iram1.39 0x00000000400832a8 0x76 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x7a (size before relaxing) - *fill* 0x000000004008331e 0x2 - .iram1.23 0x0000000040083320 0x7c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x84 (size before relaxing) - .iram1.22 0x000000004008339c 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x3e (size before relaxing) - 0x000000004008339c esp_flash_read_chip_id - *fill* 0x00000000400833d2 0x2 - .iram1.25 0x00000000400833d4 0x74 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x7c (size before relaxing) - 0x00000000400833d4 esp_flash_get_size - .iram1.21 0x0000000040083448 0xe2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0xfa (size before relaxing) - 0x0000000040083448 esp_flash_init - *fill* 0x000000004008352a 0x2 - .iram1.27 0x000000004008352c 0x1e8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x1f4 (size before relaxing) - 0x000000004008352c esp_flash_erase_region - .iram1.32 0x0000000040083714 0x153 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x157 (size before relaxing) - 0x0000000040083714 esp_flash_read - *fill* 0x0000000040083867 0x1 - .iram1.33 0x0000000040083868 0xf0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0xf4 (size before relaxing) - 0x0000000040083868 esp_flash_write - .iram1.40 0x0000000040083958 0x16 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x1a (size before relaxing) - 0x0000000040083958 spi_flash_erase_range - *fill* 0x000000004008396e 0x2 - .iram1.41 0x0000000040083970 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x1b (size before relaxing) - 0x0000000040083970 spi_flash_write - *fill* 0x0000000040083987 0x1 - .iram1.42 0x0000000040083988 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x1b (size before relaxing) - 0x0000000040083988 spi_flash_read - *fill* 0x000000004008399f 0x1 - .iram1.2 0x00000000400839a0 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.3 0x00000000400839b0 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.4 0x00000000400839c0 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *fill* 0x00000000400839dd 0x3 - .iram1.5 0x00000000400839e0 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *fill* 0x00000000400839fe 0x2 - .iram1.11 0x0000000040083a00 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - *fill* 0x0000000040083a1d 0x3 - .iram1.10 0x0000000040083a20 0x3f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - 0x57 (size before relaxing) - *fill* 0x0000000040083a5f 0x1 - .iram1.9 0x0000000040083a60 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - 0x2f (size before relaxing) - *fill* 0x0000000040083a83 0x1 - .iram1.33 0x0000000040083a84 0x25 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - *fill* 0x0000000040083aa9 0x3 - .iram1.32 0x0000000040083aac 0x84 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x8c (size before relaxing) - .iram1.41 0x0000000040083b30 0x64 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .iram1.38 0x0000000040083b94 0x1a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x22 (size before relaxing) - *fill* 0x0000000040083bae 0x2 - .iram1.35 0x0000000040083bb0 0x232 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x256 (size before relaxing) - 0x0000000040083bb0 spi_flash_mmap_pages - *fill* 0x0000000040083de2 0x2 - .iram1.34 0x0000000040083de4 0x75 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x79 (size before relaxing) - 0x0000000040083de4 spi_flash_mmap - *fill* 0x0000000040083e59 0x3 - .iram1.36 0x0000000040083e5c 0xa0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0xa6 (size before relaxing) - 0x0000000040083e5c spi_flash_munmap - *fill* 0x0000000040083efc 0x0 - .iram1.42 0x0000000040083efc 0x6b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x77 (size before relaxing) - 0x0000000040083efc spi_flash_check_and_flush_cache - *fill* 0x0000000040083f67 0x1 - .iram1.22 0x0000000040083f68 0x24 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - 0x2a (size before relaxing) - 0x0000000040083f68 esp_restart - *fill* 0x0000000040083f8c 0x0 - .iram1 0x0000000040083f8c 0x42 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) - 0x0000000040083f8c _xt_panic - *fill* 0x0000000040083fce 0x2 - .iram1.39 0x0000000040083fd0 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x0000000040083fde 0x2 - .iram1.27 0x0000000040083fe0 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x10 (size before relaxing) - 0x0000000040083fe0 wifi_malloc - .iram1.28 0x0000000040083fec 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x0000000040083fec wifi_realloc - *fill* 0x0000000040083ffd 0x3 - .iram1.29 0x0000000040084000 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x0000000040084000 wifi_calloc - *fill* 0x0000000040084011 0x3 - .iram1.43 0x0000000040084014 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x0000000040084026 0x2 - .iram1.30 0x0000000040084028 0x1c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x20 (size before relaxing) - .iram1.46 0x0000000040084044 0x22 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x0000000040084066 0x2 - .iram1.45 0x0000000040084068 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.44 0x000000004008407c 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .iram1.42 0x0000000040084090 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400840a2 0x2 - .iram1.41 0x00000000400840a4 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0xe (size before relaxing) - *fill* 0x00000000400840ae 0x2 - .iram1.40 0x00000000400840b0 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400840c2 0x2 - .iram1.26 0x00000000400840c4 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0xb (size before relaxing) - *fill* 0x00000000400840cc 0x0 - .iram1.25 0x00000000400840cc 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0xb (size before relaxing) - *fill* 0x00000000400840d4 0x0 - .iram1.38 0x00000000400840d4 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400840e9 0x3 - .iram1.37 0x00000000400840ec 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x10 (size before relaxing) - .iram1.36 0x00000000400840f8 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x0000000040084109 0x3 - .iram1.33 0x000000004008410c 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0xb (size before relaxing) - *fill* 0x0000000040084114 0x0 - .iram1.32 0x0000000040084114 0x1a esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - 0x21 (size before relaxing) - *fill* 0x000000004008412e 0x2 - .iram1.31 0x0000000040084130 0x1c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.abort + 0x00000000400811c4 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) 0x24 (size before relaxing) - .iram1.26 0x000000004008414c 0x1e esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - 0x25 (size before relaxing) - 0x000000004008414c phy_enter_critical - *fill* 0x000000004008416a 0x2 - .iram1.27 0x000000004008416c 0x1c esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - 0x23 (size before relaxing) - 0x000000004008416c phy_exit_critical - *fill* 0x0000000040084188 0x0 - .iram1.30 0x0000000040084188 0x54 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - 0x63 (size before relaxing) - 0x0000000040084188 esp_phy_common_clock_enable - *fill* 0x00000000400841dc 0x0 - .iram1.31 0x00000000400841dc 0x61 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - 0x74 (size before relaxing) - 0x00000000400841dc esp_phy_common_clock_disable - *fill* 0x000000004008423d 0x3 - .iram1.29 0x0000000040084240 0x23 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x0000000040084263 0x1 - .iram1.22 0x0000000040084264 0x81 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x00000000400842e5 0x3 - .iram1.23 0x00000000400842e8 0xac esp-idf/heap/libheap.a(heap_caps.c.obj) - 0xb0 (size before relaxing) - 0x00000000400842e8 heap_caps_malloc - .iram1.24 0x0000000040084394 0x41 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x49 (size before relaxing) - 0x0000000040084394 heap_caps_malloc_default - *fill* 0x00000000400843d5 0x3 - .iram1.30 0x00000000400843d8 0x37 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x3e (size before relaxing) - 0x00000000400843d8 heap_caps_free - *fill* 0x000000004008440f 0x1 - .iram1.31 0x0000000040084410 0x116 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x12a (size before relaxing) - 0x0000000040084410 heap_caps_realloc - *fill* 0x0000000040084526 0x2 - .iram1.25 0x0000000040084528 0x5e esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x62 (size before relaxing) - 0x0000000040084528 heap_caps_realloc_default - *fill* 0x0000000040084586 0x2 - .iram1.32 0x0000000040084588 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x34 (size before relaxing) - 0x0000000040084588 heap_caps_calloc - .iram1.0 0x00000000400845b8 0x42 esp-idf/esp32/libesp32.a(hw_random.c.obj) - 0x46 (size before relaxing) - 0x00000000400845b8 esp_random - *fill* 0x00000000400845fa 0x2 - .iram1.33 0x00000000400845fc 0x52 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x000000004008464e 0x2 - .iram1.34 0x0000000040084650 0x7b esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x00000000400846cb 0x1 - .iram1.35 0x00000000400846cc 0x70 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - .iram1.36 0x000000004008473c 0x100 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x118 (size before relaxing) - .iram1.38 0x000000004008483c 0x24 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x28 (size before relaxing) - .iram1.37 0x0000000040084860 0x3f esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x47 (size before relaxing) - 0x0000000040084860 esp_deep_sleep_start - *fill* 0x000000004008489f 0x1 - .iram1.22 0x00000000400848a0 0x15 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - *fill* 0x00000000400848b5 0x3 - .iram1.23 0x00000000400848b8 0x62 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - 0x6e (size before relaxing) - 0x00000000400848b8 os_timer_arm_us - 0x00000000400848b8 ets_timer_arm_us - *fill* 0x000000004008491a 0x2 - .iram1.24 0x000000004008491c 0x6a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - 0x76 (size before relaxing) - 0x000000004008491c ets_timer_arm - 0x000000004008491c os_timer_arm - *fill* 0x0000000040084986 0x2 - .iram1.25 0x0000000040084988 0x14 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - 0x18 (size before relaxing) - 0x0000000040084988 ets_timer_disarm - 0x0000000040084988 os_timer_disarm - .iram1.0 0x000000004008499c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - 0x000000004008499c esp_mbedtls_mem_calloc - .iram1.1 0x00000000400849b0 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .iram1.1 0x00000000400811d4 0x69 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x00000000400811d4 esp_ota_get_app_elf_sha256 + *fill* 0x000000004008123d 0x3 + .iram1 0x0000000040081240 0xe6 esp-idf/esp_system/libesp_system.a(dport_panic_highint_hdl.S.obj) + 0x0000000040081240 xt_highint4 + 0x0000000040081326 ld_include_panic_highint_hdl + *fill* 0x0000000040081326 0x2 + .iram1.0 0x0000000040081328 0x31 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x0000000040081328 esp_reset_reason_set_hint + *fill* 0x0000000040081359 0x3 + .iram1.1 0x000000004008135c 0x2f esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x000000004008135c esp_reset_reason_get_hint + *fill* 0x000000004008138b 0x1 + .iram1.0 0x000000004008138c 0xa esp-idf/soc/libsoc.a(cpu_util.c.obj) 0xe (size before relaxing) - 0x00000000400849b0 esp_mbedtls_mem_free - *fill* 0x00000000400849ba 0x2 - .iram1.4 0x00000000400849bc 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x00000000400849c0 esp_wifi_internal_update_mac_time - .iram1.2 0x00000000400849d0 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) - 0x00000000400849d4 ieee80211_sta_is_connected - .iram1.5 0x00000000400849e8 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - 0x13 (size before relaxing) - 0x00000000400849e8 lmacProcessCollisions - *fill* 0x00000000400849f7 0x1 - .iram1.6 0x00000000400849f8 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - 0x13 (size before relaxing) - 0x00000000400849f8 lmacProcessAllTxTimeout - *fill* 0x0000000040084a07 0x1 - .iram1.7 0x0000000040084a08 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - 0x13 (size before relaxing) - 0x0000000040084a08 lmacPostTxComplete - *fill* 0x0000000040084a17 0x1 - .iram1.8 0x0000000040084a18 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - 0x28 (size before relaxing) - 0x0000000040084a1c lmacProcessRxSucData - .iram1.10 0x0000000040084a38 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - 0x58 (size before relaxing) - 0x0000000040084a40 lmacAdjustTimestamp - .iram1.25 0x0000000040084a88 0x18d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x191 (size before relaxing) - 0x0000000040084aac pp_post - *fill* 0x0000000040084c15 0x3 - .iram1.3 0x0000000040084c18 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) - 0x0000000040084c1c wifi_gpio_debug - *fill* 0x0000000040084c2f 0x1 - .iram1.7 0x0000000040084c30 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004008138c esp_cpu_stall + *fill* 0x0000000040081396 0x2 + .iram1.1 0x0000000040081398 0xa esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0xe (size before relaxing) + 0x0000000040081398 esp_cpu_unstall + *fill* 0x00000000400813a2 0x2 + .iram1.2 0x00000000400813a4 0x21 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x00000000400813a4 esp_cpu_reset + *fill* 0x00000000400813c5 0x3 + .iram1.3 0x00000000400813c8 0x39 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x00000000400813c8 esp_set_watchpoint + *fill* 0x0000000040081401 0x3 + .iram1.5 0x0000000040081404 0xe esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x0000000040081404 esp_cpu_in_ocd_debug_mode + *fill* 0x0000000040081412 0x2 + .iram1.23 0x0000000040081414 0x58 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x64 (size before relaxing) + .iram1.24 0x000000004008146c 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x000000004008146c pthread_mutex_lock + *fill* 0x000000004008148e 0x2 + .iram1.27 0x0000000040081490 0x65 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x6d (size before relaxing) + 0x0000000040081490 pthread_mutex_unlock + *fill* 0x00000000400814f5 0x3 + .iram1.24 0x00000000400814f8 0x2c esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x30 (size before relaxing) + 0x00000000400814f8 esp_cache_err_get_cpuid + .iram1.4 0x0000000040081524 0x10 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x0000000040081524 esp_clk_cpu_freq + .iram1.5 0x0000000040081534 0x15 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x0000000040081534 esp_clk_apb_freq + *fill* 0x0000000040081549 0x3 + .iram1.7 0x000000004008154c 0xf esp-idf/esp32/libesp32.a(clk.c.obj) + 0x000000004008154c ets_update_cpu_frequency + *fill* 0x000000004008155b 0x1 + .iram1.33 0x000000004008155c 0x165 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x185 (size before relaxing) + 0x000000004008155c start_cpu0_default + 0x000000004008155c start_cpu0 + *fill* 0x00000000400816c1 0x3 + .iram1.35 0x00000000400816c4 0x3e esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x46 (size before relaxing) + 0x00000000400816c4 start_cpu1 + 0x00000000400816c4 start_cpu1_default + *fill* 0x0000000040081702 0x2 + .iram1.37 0x0000000040081704 0x4e esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x56 (size before relaxing) + *fill* 0x0000000040081752 0x2 + .iram1.36 0x0000000040081754 0x1c4 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x216 (size before relaxing) + 0x0000000040081754 call_start_cpu0 + *fill* 0x0000000040081918 0x0 + .iram1.28 0x0000000040081918 0x58 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x5c (size before relaxing) + .iram1.27 0x0000000040081970 0x44 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x4c (size before relaxing) + .iram1.29 0x00000000400819b4 0xf esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x00000000400819b4 esp_crosscore_int_send_yield + *fill* 0x00000000400819c3 0x1 + .iram1.26 0x00000000400819c4 0xb6 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x00000000400819c4 esp_dport_access_stall_other_cpu_start + *fill* 0x0000000040081a7a 0x2 + .iram1.27 0x0000000040081a7c 0x83 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x0000000040081a7c esp_dport_access_stall_other_cpu_end + *fill* 0x0000000040081aff 0x1 + .iram1.29 0x0000000040081b00 0x14 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x0000000040081b00 esp_dport_access_int_abort + .iram1.32 0x0000000040081b14 0x15 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x0000000040081b14 esp_dport_access_reg_read + *fill* 0x0000000040081b29 0x3 + .iram1.33 0x0000000040081b2c 0xc esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x0000000040081b2c esp_dport_access_sequence_reg_read + .iram1.31 0x0000000040081b38 0x2a esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x0000000040081b38 esp_dport_access_read_buffer + *fill* 0x0000000040081b62 0x2 + .iram1.22 0x0000000040081b64 0x56 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + *fill* 0x0000000040081bba 0x2 + .iram1.22 0x0000000040081bbc 0x39 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x3c (size before relaxing) + *fill* 0x0000000040081bf5 0x3 + .iram1.24 0x0000000040081bf8 0xad esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0xb9 (size before relaxing) + 0x0000000040081bf8 esp_intr_enable + *fill* 0x0000000040081ca5 0x3 + .iram1.25 0x0000000040081ca8 0xfb esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x117 (size before relaxing) + 0x0000000040081ca8 esp_intr_disable + *fill* 0x0000000040081da3 0x1 + .iram1.26 0x0000000040081da4 0x52 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x0000000040081da4 esp_intr_noniram_disable + *fill* 0x0000000040081df6 0x2 + .iram1.27 0x0000000040081df8 0x41 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x0000000040081df8 esp_intr_noniram_enable + *fill* 0x0000000040081e39 0x3 + .iram1.32 0x0000000040081e3c 0x16f esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + 0x1bb (size before relaxing) + 0x0000000040081e3c esp_restart_noos + *fill* 0x0000000040081fab 0x1 + .iram1.21 0x0000000040081fac 0x2b esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x0000000040081fac esp_vApplicationTickHook + *fill* 0x0000000040081fd7 0x1 + .iram1.22 0x0000000040081fd8 0xa0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0xa4 (size before relaxing) + .iram1.31 0x0000000040082078 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000004008208b 0x1 + .iram1.28 0x000000004008208c 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x23 (size before relaxing) + *fill* 0x00000000400820a8 0x0 + .iram1.25 0x00000000400820a8 0x86 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000004008212e 0x2 + .iram1.29 0x0000000040082130 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x23 (size before relaxing) + *fill* 0x000000004008214c 0x0 + .iram1.26 0x000000004008214c 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x30 (size before relaxing) + .iram1.30 0x0000000040082178 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x20 (size before relaxing) + .iram1.24 0x0000000040082194 0x31 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x39 (size before relaxing) + 0x0000000040082194 esp_timer_stop + *fill* 0x00000000400821c5 0x3 + .iram1.33 0x00000000400821c8 0xf esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x00000000400821c8 esp_timer_get_time + *fill* 0x00000000400821d7 0x1 + .iram1.22 0x00000000400821d8 0x57 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x67 (size before relaxing) + 0x00000000400821d8 esp_timer_start_once + *fill* 0x000000004008222f 0x1 + .iram1.23 0x0000000040082230 0x69 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) 0x81 (size before relaxing) - 0x0000000040084c34 wdev_push_promis_misc_buf - *fill* 0x0000000040084ca9 0x3 - .iram1.20 0x0000000040084cac 0x396 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x0000000040082230 esp_timer_start_periodic + *fill* 0x0000000040082299 0x3 + .iram1.24 0x000000004008229c 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x00000000400822b6 0x2 + .iram1.21 0x00000000400822b8 0x51 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x00000000400822b8 esp_timer_impl_get_counter_reg + *fill* 0x0000000040082309 0x3 + .iram1.22 0x000000004008230c 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x17 (size before relaxing) + 0x000000004008230c esp_timer_impl_get_time + *fill* 0x0000000040082320 0x0 + .iram1.23 0x0000000040082320 0xe4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xf7 (size before relaxing) + 0x0000000040082320 esp_timer_impl_set_alarm + *fill* 0x0000000040082404 0x0 + .iram1.25 0x0000000040082404 0x63 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x0000000040082404 esp_timer_impl_update_apb_freq + 0x0000000040082404 esp_timer_private_update_apb_freq + *fill* 0x0000000040082467 0x1 + .iram1.26 0x0000000040082468 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x0000000040082468 esp_timer_impl_get_min_period_us + *fill* 0x0000000040082473 0x1 + .iram1.22 0x0000000040082474 0x1e esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040082474 xPortInterruptedFromISRContext + *fill* 0x0000000040082492 0x2 + .iram1 0x0000000040082494 0x490 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040082548 _xt_user_exit + 0x0000000040082860 _xt_medint2_exit + 0x0000000040082910 _xt_medint3_exit + .iram1.22 0x0000000040082924 0x34 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x43 (size before relaxing) + *fill* 0x0000000040082958 0x0 + .iram1.26 0x0000000040082958 0x9e esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xb6 (size before relaxing) + *fill* 0x00000000400829f6 0x2 + .iram1.31 0x00000000400829f8 0x46 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4e (size before relaxing) + *fill* 0x0000000040082a3e 0x2 + .iram1.23 0x0000000040082a40 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082a40 _lock_init + *fill* 0x0000000040082a53 0x1 + .iram1.24 0x0000000040082a54 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082a54 _lock_init_recursive + *fill* 0x0000000040082a67 0x1 + .iram1.25 0x0000000040082a68 0x3b esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x43 (size before relaxing) + 0x0000000040082a68 _lock_close + 0x0000000040082a68 _lock_close_recursive + *fill* 0x0000000040082aa3 0x1 + .iram1.27 0x0000000040082aa4 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x0000000040082aa4 _lock_acquire + *fill* 0x0000000040082ab2 0x2 + .iram1.28 0x0000000040082ab4 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x0000000040082ab4 _lock_acquire_recursive + *fill* 0x0000000040082ac2 0x2 + .iram1.29 0x0000000040082ac4 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x0000000040082ac4 _lock_try_acquire + .iram1.30 0x0000000040082ad4 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x0000000040082ad4 _lock_try_acquire_recursive + .iram1.32 0x0000000040082ae4 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082ae4 _lock_release + *fill* 0x0000000040082af3 0x1 + .iram1.33 0x0000000040082af4 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082af4 _lock_release_recursive + *fill* 0x0000000040082b03 0x1 + .iram1.0 0x0000000040082b04 0x37 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x0000000040082b04 esp_reent_init + *fill* 0x0000000040082b3b 0x1 + .iram1.23 0x0000000040082b3c 0x4a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x0000000040082b3c _gettimeofday_r + *fill* 0x0000000040082b86 0x2 + .iram1.22 0x0000000040082b88 0x29 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2d (size before relaxing) + 0x0000000040082b88 _times_r + *fill* 0x0000000040082bb1 0x3 + .iram1.24 0x0000000040082bb4 0xa esp-idf/display/libdisplay.a(display.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000040082bbe 0x2 + .iram1.19 0x0000000040082bc0 0xa9 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + 0x0000000040082bc0 esp_backtrace_get_next_frame + *fill* 0x0000000040082c69 0x3 + .iram1.0 0x0000000040082c6c 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040082c6c bootloader_flash_cs_timing_config + *fill* 0x0000000040082cda 0x2 + .iram1.1 0x0000000040082cdc 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040082cdc bootloader_flash_clock_config + *fill* 0x0000000040082d1a 0x2 + .iram1.2 0x0000000040082d1c 0x240 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040082d1c bootloader_flash_gpio_config + .iram1.3 0x0000000040082f5c 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040082f5c bootloader_flash_dummy_config + .iram1.39 0x000000004008300c 0x64 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x6c (size before relaxing) + .iram1.33 0x0000000040083070 0x46 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x52 (size before relaxing) + 0x0000000040083070 spi_flash_op_block_func + *fill* 0x00000000400830b6 0x2 + .iram1.38 0x00000000400830b8 0x66 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x6e (size before relaxing) + *fill* 0x000000004008311e 0x2 + .iram1.34 0x0000000040083120 0x11b esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x12f (size before relaxing) + 0x0000000040083120 spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x000000004008323b 0x1 + .iram1.35 0x000000004008323c 0xa1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xa9 (size before relaxing) + 0x000000004008323c spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x00000000400832dd 0x3 + .iram1.40 0x00000000400832e0 0x25 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x29 (size before relaxing) + 0x00000000400832e0 spi_flash_cache_enabled + *fill* 0x0000000040083305 0x3 + .iram1.41 0x0000000040083308 0xf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040083308 spi_flash_enable_cache + *fill* 0x0000000040083317 0x1 + .iram1.33 0x0000000040083318 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040083318 spi_flash_guard_set + *fill* 0x0000000040083322 0x2 + .iram1.35 0x0000000040083324 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040083324 spi_flash_get_chip_size + *fill* 0x000000004008332e 0x2 + .iram1.41 0x0000000040083330 0x32 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040083330 spi_flash_erase_sector + *fill* 0x0000000040083362 0x2 + .iram1.39 0x0000000040083364 0x76 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x7a (size before relaxing) + *fill* 0x00000000400833da 0x2 + .iram1.23 0x00000000400833dc 0x7c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x84 (size before relaxing) + .iram1.22 0x0000000040083458 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3e (size before relaxing) + 0x0000000040083458 esp_flash_read_chip_id + *fill* 0x000000004008348e 0x2 + .iram1.25 0x0000000040083490 0x74 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x7c (size before relaxing) + 0x0000000040083490 esp_flash_get_size + .iram1.21 0x0000000040083504 0xe2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xfa (size before relaxing) + 0x0000000040083504 esp_flash_init + *fill* 0x00000000400835e6 0x2 + .iram1.27 0x00000000400835e8 0x1e8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1f4 (size before relaxing) + 0x00000000400835e8 esp_flash_erase_region + .iram1.32 0x00000000400837d0 0x153 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x157 (size before relaxing) + 0x00000000400837d0 esp_flash_read + *fill* 0x0000000040083923 0x1 + .iram1.33 0x0000000040083924 0xf0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xf4 (size before relaxing) + 0x0000000040083924 esp_flash_write + .iram1.40 0x0000000040083a14 0x16 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1a (size before relaxing) + 0x0000000040083a14 spi_flash_erase_range + *fill* 0x0000000040083a2a 0x2 + .iram1.41 0x0000000040083a2c 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1b (size before relaxing) + 0x0000000040083a2c spi_flash_write + *fill* 0x0000000040083a43 0x1 + .iram1.42 0x0000000040083a44 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1b (size before relaxing) + 0x0000000040083a44 spi_flash_read + *fill* 0x0000000040083a5b 0x1 + .iram1.2 0x0000000040083a5c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x0000000040083a6c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4 0x0000000040083a7c 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x0000000040083a99 0x3 + .iram1.5 0x0000000040083a9c 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x0000000040083aba 0x2 + .iram1.11 0x0000000040083abc 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + *fill* 0x0000000040083ad9 0x3 + .iram1.10 0x0000000040083adc 0x3f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x57 (size before relaxing) + *fill* 0x0000000040083b1b 0x1 + .iram1.9 0x0000000040083b1c 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x0000000040083b3f 0x1 + .iram1.33 0x0000000040083b40 0x25 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x0000000040083b65 0x3 + .iram1.32 0x0000000040083b68 0x84 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x8c (size before relaxing) + .iram1.41 0x0000000040083bec 0x64 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.38 0x0000000040083c50 0x1a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x22 (size before relaxing) + *fill* 0x0000000040083c6a 0x2 + .iram1.35 0x0000000040083c6c 0x232 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x256 (size before relaxing) + 0x0000000040083c6c spi_flash_mmap_pages + *fill* 0x0000000040083e9e 0x2 + .iram1.34 0x0000000040083ea0 0x75 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x79 (size before relaxing) + 0x0000000040083ea0 spi_flash_mmap + *fill* 0x0000000040083f15 0x3 + .iram1.36 0x0000000040083f18 0xa0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0xa6 (size before relaxing) + 0x0000000040083f18 spi_flash_munmap + *fill* 0x0000000040083fb8 0x0 + .iram1.42 0x0000000040083fb8 0x6b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x77 (size before relaxing) + 0x0000000040083fb8 spi_flash_check_and_flush_cache + *fill* 0x0000000040084023 0x1 + .iram1.22 0x0000000040084024 0x24 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x2a (size before relaxing) + 0x0000000040084024 esp_restart + *fill* 0x0000000040084048 0x0 + .iram1 0x0000000040084048 0x42 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x0000000040084048 _xt_panic + *fill* 0x000000004008408a 0x2 + .iram1.39 0x000000004008408c 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004008409a 0x2 + .iram1.27 0x000000004008409c 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + 0x000000004008409c wifi_malloc + .iram1.28 0x00000000400840a8 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400840a8 wifi_realloc + *fill* 0x00000000400840b9 0x3 + .iram1.29 0x00000000400840bc 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400840bc wifi_calloc + *fill* 0x00000000400840cd 0x3 + .iram1.43 0x00000000400840d0 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400840e2 0x2 + .iram1.30 0x00000000400840e4 0x1c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x20 (size before relaxing) + .iram1.46 0x0000000040084100 0x22 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040084122 0x2 + .iram1.45 0x0000000040084124 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.44 0x0000000040084138 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.42 0x000000004008414c 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004008415e 0x2 + .iram1.41 0x0000000040084160 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004008416a 0x2 + .iram1.40 0x000000004008416c 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004008417e 0x2 + .iram1.26 0x0000000040084180 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x0000000040084188 0x0 + .iram1.25 0x0000000040084188 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x0000000040084190 0x0 + .iram1.38 0x0000000040084190 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400841a5 0x3 + .iram1.37 0x00000000400841a8 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .iram1.36 0x00000000400841b4 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400841c5 0x3 + .iram1.33 0x00000000400841c8 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400841d0 0x0 + .iram1.32 0x00000000400841d0 0x1a esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x21 (size before relaxing) + *fill* 0x00000000400841ea 0x2 + .iram1.31 0x00000000400841ec 0x1c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x24 (size before relaxing) + .iram1.26 0x0000000040084208 0x1e esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x25 (size before relaxing) + 0x0000000040084208 phy_enter_critical + *fill* 0x0000000040084226 0x2 + .iram1.27 0x0000000040084228 0x1c esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x23 (size before relaxing) + 0x0000000040084228 phy_exit_critical + *fill* 0x0000000040084244 0x0 + .iram1.30 0x0000000040084244 0x54 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x63 (size before relaxing) + 0x0000000040084244 esp_phy_common_clock_enable + *fill* 0x0000000040084298 0x0 + .iram1.31 0x0000000040084298 0x61 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x74 (size before relaxing) + 0x0000000040084298 esp_phy_common_clock_disable + *fill* 0x00000000400842f9 0x3 + .iram1.29 0x00000000400842fc 0x23 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000004008431f 0x1 + .iram1.22 0x0000000040084320 0x81 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x00000000400843a1 0x3 + .iram1.23 0x00000000400843a4 0xac esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xb0 (size before relaxing) + 0x00000000400843a4 heap_caps_malloc + .iram1.24 0x0000000040084450 0x41 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x49 (size before relaxing) + 0x0000000040084450 heap_caps_malloc_default + *fill* 0x0000000040084491 0x3 + .iram1.30 0x0000000040084494 0x37 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x3e (size before relaxing) + 0x0000000040084494 heap_caps_free + *fill* 0x00000000400844cb 0x1 + .iram1.31 0x00000000400844cc 0x116 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x12a (size before relaxing) + 0x00000000400844cc heap_caps_realloc + *fill* 0x00000000400845e2 0x2 + .iram1.25 0x00000000400845e4 0x5e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x62 (size before relaxing) + 0x00000000400845e4 heap_caps_realloc_default + *fill* 0x0000000040084642 0x2 + .iram1.32 0x0000000040084644 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x34 (size before relaxing) + 0x0000000040084644 heap_caps_calloc + .iram1.26 0x0000000040084674 0x49 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x4c (size before relaxing) + 0x0000000040084674 spicommon_dmaworkaround_idle + *fill* 0x00000000400846bd 0x3 + .iram1.27 0x00000000400846c0 0x26 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x2a (size before relaxing) + 0x00000000400846c0 spicommon_dmaworkaround_transfer_active + *fill* 0x00000000400846e6 0x2 + .iram1.0 0x00000000400846e8 0x42 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x46 (size before relaxing) + 0x00000000400846e8 esp_random + *fill* 0x000000004008472a 0x2 + .iram1.33 0x000000004008472c 0x52 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000004008477e 0x2 + .iram1.34 0x0000000040084780 0x7b esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x00000000400847fb 0x1 + .iram1.35 0x00000000400847fc 0x70 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .iram1.36 0x000000004008486c 0x100 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x118 (size before relaxing) + .iram1.38 0x000000004008496c 0x24 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x28 (size before relaxing) + .iram1.37 0x0000000040084990 0x3f esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x47 (size before relaxing) + 0x0000000040084990 esp_deep_sleep_start + *fill* 0x00000000400849cf 0x1 + .iram1.22 0x00000000400849d0 0x15 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x00000000400849e5 0x3 + .iram1.23 0x00000000400849e8 0x62 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x6e (size before relaxing) + 0x00000000400849e8 os_timer_arm_us + 0x00000000400849e8 ets_timer_arm_us + *fill* 0x0000000040084a4a 0x2 + .iram1.24 0x0000000040084a4c 0x6a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x76 (size before relaxing) + 0x0000000040084a4c ets_timer_arm + 0x0000000040084a4c os_timer_arm + *fill* 0x0000000040084ab6 0x2 + .iram1.25 0x0000000040084ab8 0x14 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x18 (size before relaxing) + 0x0000000040084ab8 ets_timer_disarm + 0x0000000040084ab8 os_timer_disarm + .iram1.24 0x0000000040084acc 0x33 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + *fill* 0x0000000040084aff 0x1 + .iram1.1 0x0000000040084b00 0x19 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + 0x0000000040084b00 lv_tick_inc + *fill* 0x0000000040084b19 0x3 + .iram1.0 0x0000000040084b1c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x0000000040084b1c esp_mbedtls_mem_calloc + .iram1.1 0x0000000040084b30 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0xe (size before relaxing) + 0x0000000040084b30 esp_mbedtls_mem_free + *fill* 0x0000000040084b3a 0x2 + .iram1.4 0x0000000040084b3c 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x0000000040084b40 esp_wifi_internal_update_mac_time + .iram1.2 0x0000000040084b50 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x0000000040084b54 ieee80211_sta_is_connected + .iram1.5 0x0000000040084b68 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x0000000040084b68 lmacProcessCollisions + *fill* 0x0000000040084b77 0x1 + .iram1.6 0x0000000040084b78 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x0000000040084b78 lmacProcessAllTxTimeout + *fill* 0x0000000040084b87 0x1 + .iram1.7 0x0000000040084b88 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x0000000040084b88 lmacPostTxComplete + *fill* 0x0000000040084b97 0x1 + .iram1.8 0x0000000040084b98 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x28 (size before relaxing) + 0x0000000040084b9c lmacProcessRxSucData + .iram1.10 0x0000000040084bb8 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x58 (size before relaxing) + 0x0000000040084bc0 lmacAdjustTimestamp + .iram1.25 0x0000000040084c08 0x18d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x191 (size before relaxing) + 0x0000000040084c2c pp_post + *fill* 0x0000000040084d95 0x3 + .iram1.3 0x0000000040084d98 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x0000000040084d9c wifi_gpio_debug + *fill* 0x0000000040084daf 0x1 + .iram1.7 0x0000000040084db0 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x81 (size before relaxing) + 0x0000000040084db4 wdev_push_promis_misc_buf + *fill* 0x0000000040084e29 0x3 + .iram1.20 0x0000000040084e2c 0x392 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x3f2 (size before relaxing) - 0x0000000040084d04 wDev_ProcessFiq - *fill* 0x0000000040085042 0x2 - .iram1 0x0000000040085044 0x7f6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x0000000040084e80 wDev_ProcessFiq + *fill* 0x00000000400851be 0x2 + .iram1 0x00000000400851c0 0x7f6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x90a (size before relaxing) - 0x0000000040085074 pll_correct_dcap - 0x0000000040085160 phy_unforce_wifi_chan - 0x00000000400851dc phy_dis_hw_set_freq - 0x0000000040085218 phy_force_wifi_chan - 0x00000000400852d0 ram_chip_i2c_writeReg - 0x0000000040085388 ram_chip_i2c_readReg - 0x0000000040085474 phy_en_hw_set_freq - 0x0000000040085490 wifi_track_pll_cap - 0x000000004008552c phy_get_fetx_delay - 0x0000000040085568 btpwr_tsens_track - 0x0000000040085674 btpwr_pll_track - 0x0000000040085744 bt_track_tx_power - 0x00000000400857d0 bt_track_pll_cap - *fill* 0x000000004008583a 0x2 - .iram1 0x000000004008583c 0x405 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x00000000400851f0 pll_correct_dcap + 0x00000000400852dc phy_unforce_wifi_chan + 0x0000000040085358 phy_dis_hw_set_freq + 0x0000000040085394 phy_force_wifi_chan + 0x000000004008544c ram_chip_i2c_writeReg + 0x0000000040085504 ram_chip_i2c_readReg + 0x00000000400855f0 phy_en_hw_set_freq + 0x000000004008560c wifi_track_pll_cap + 0x00000000400856a8 phy_get_fetx_delay + 0x00000000400856e4 btpwr_tsens_track + 0x00000000400857f0 btpwr_pll_track + 0x00000000400858c0 bt_track_tx_power + 0x000000004008594c bt_track_pll_cap + *fill* 0x00000000400859b6 0x2 + .iram1 0x00000000400859b8 0x401 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x435 (size before relaxing) - 0x0000000040085840 ram_disable_agc - 0x0000000040085858 ram_enable_agc - 0x0000000040085888 ram_write_gain_mem - 0x0000000040085900 wr_bt_tx_atten - 0x000000004008594c set_tx_gain_table - 0x0000000040085a28 set_most_pwr_reg - 0x0000000040085bd8 bb_wdt_rst_enable - 0x0000000040085bf8 bb_wdt_int_enable - 0x0000000040085c1c bb_wdt_timeout_clear - 0x0000000040085c34 bb_wdt_get_status - *fill* 0x0000000040085c41 0x3 - .iram1 0x0000000040085c44 0xd5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x00000000400859bc ram_disable_agc + 0x00000000400859d4 ram_enable_agc + 0x0000000040085a00 ram_write_gain_mem + 0x0000000040085a78 wr_bt_tx_atten + 0x0000000040085ac4 set_tx_gain_table + 0x0000000040085ba0 set_most_pwr_reg + 0x0000000040085d50 bb_wdt_rst_enable + 0x0000000040085d70 bb_wdt_int_enable + 0x0000000040085d94 bb_wdt_timeout_clear + 0x0000000040085dac bb_wdt_get_status + *fill* 0x0000000040085db9 0x3 + .iram1 0x0000000040085dbc 0xd5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0xdfc (size before relaxing) - 0x0000000040085c4c get_target_power_offset - 0x0000000040085c94 ram_txbbgain_to_index - 0x0000000040085ccc ram_set_chan_cal_interp - 0x0000000040085d94 write_txrate_power_offset - 0x0000000040085f00 get_phy_target_power - 0x0000000040085f6c ram_read_sar_dout - 0x0000000040085f9c get_rate_fcc_index - 0x000000004008607c get_rate_target_power - 0x00000000400860c8 get_chan_pwr_index - 0x000000004008614c write_wifi_dig_gain - 0x0000000040086190 set_chan_dig_gain - 0x00000000400863cc tx_pwctrl_cal - 0x0000000040086788 wifi_11g_rate_chg - 0x00000000400867a0 ram_set_txcap_reg - 0x0000000040086828 phy_pwdet_onetime_en - 0x0000000040086880 tx_pwctrl_background - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - *fill* 0x00000000400869a0 0x0 - .iram1.27 0x00000000400869a0 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x0 - *fill* 0x00000000400869b3 0x1 - .iram1 0x00000000400869b4 0x2e esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) - 0x00000000400869b4 xt_debugexception - 0x00000000400869d4 xt_highint5 - 0x00000000400869dc _xt_nmi - 0x00000000400869dc xt_nmi - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x0 - *fill* 0x00000000400869e2 0x2 - .iram1.19 0x00000000400869e4 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.20 0x0000000040086a04 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 - *fill* 0x0000000040086a1c 0x0 + 0x0000000040085dc4 get_target_power_offset + 0x0000000040085e0c ram_txbbgain_to_index + 0x0000000040085e44 ram_set_chan_cal_interp + 0x0000000040085f0c write_txrate_power_offset + 0x0000000040086078 get_phy_target_power + 0x00000000400860e4 ram_read_sar_dout + 0x0000000040086114 get_rate_fcc_index + 0x00000000400861f4 get_rate_target_power + 0x0000000040086240 get_chan_pwr_index + 0x00000000400862c4 write_wifi_dig_gain + 0x0000000040086308 set_chan_dig_gain + 0x0000000040086544 tx_pwctrl_cal + 0x0000000040086900 wifi_11g_rate_chg + 0x0000000040086918 ram_set_txcap_reg + 0x00000000400869a0 phy_pwdet_onetime_en + 0x00000000400869f8 tx_pwctrl_background + .iram1.30 0x0000000040086b18 0x202 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x242 (size before relaxing) + *fill* 0x0000000040086d1a 0x2 + .iram1.31 0x0000000040086d1c 0x53 esp-idf/driver/libdriver.a(spi_master.c.obj) + *fill* 0x0000000040086d6f 0x1 + .iram1.32 0x0000000040086d70 0xb2 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0xc1 (size before relaxing) + *fill* 0x0000000040086e22 0x2 + .iram1.28 0x0000000040086e24 0x2f esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x33 (size before relaxing) + *fill* 0x0000000040086e53 0x1 + .iram1.22 0x0000000040086e54 0x98 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x9b (size before relaxing) + *fill* 0x0000000040086eec 0x0 + .iram1.27 0x0000000040086eec 0xd5 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0xdc (size before relaxing) + *fill* 0x0000000040086fc1 0x3 + .iram1.29 0x0000000040086fc4 0x148 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x164 (size before relaxing) + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + *fill* 0x000000004008710c 0x0 + .iram1.27 0x000000004008710c 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x0 + *fill* 0x000000004008711f 0x1 + .iram1 0x0000000040087120 0x2e esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0x0000000040087120 xt_debugexception + 0x0000000040087140 xt_highint5 + 0x0000000040087148 _xt_nmi + 0x0000000040087148 xt_nmi + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x0 + *fill* 0x000000004008714e 0x2 + .iram1.19 0x0000000040087150 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.20 0x0000000040087170 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 + *fill* 0x0000000040087188 0x0 *libxtensa.a:eri.*(.literal .literal.* .text .text.*) *libxtensa.a:stdatomic.*(.literal .literal.* .text .text.*) *libhal.a:(.literal .literal.* .text .text.*) - .text 0x0000000040086a1c 0x137 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) - 0x0000000040086a1c xthal_spill_registers_into_stack_nw - 0x0000000040086a1c xthal_window_spill_nw - 0x0000000040086b30 xthal_window_spill - *fill* 0x0000000040086b53 0x1 - .text 0x0000000040086b54 0x8 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) - 0x0000000040086b54 xthal_set_intclear - .text 0x0000000040086b5c 0x3e /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) - 0x0000000040086b5c xthal_restore_extra_nw - *fill* 0x0000000040086b9a 0x2 - .text 0x0000000040086b9c 0x3e /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) - 0x0000000040086b9c xthal_save_extra_nw - *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) - *fill* 0x0000000040086bda 0x2 - .text.memspi_host_read_id_hs - 0x0000000040086bdc 0x79 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x7d (size before relaxing) - 0x0000000040086bdc memspi_host_read_id_hs - *fill* 0x0000000040086c55 0x3 - .text.memspi_host_flush_cache - 0x0000000040086c58 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x1c (size before relaxing) - 0x0000000040086c58 memspi_host_flush_cache - *fill* 0x0000000040086c70 0x0 - .text.memspi_host_read_status_hs - 0x0000000040086c70 0x2d esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x0000000040086c70 memspi_host_read_status_hs - *fill* 0x0000000040086c9d 0x0 - *fill* 0x0000000040086c9d 0x0 - *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) - *fill* 0x0000000040086c9d 0x3 - .text.spi_flash_chip_generic_detect_size - 0x0000000040086ca0 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086ca0 spi_flash_chip_generic_detect_size - *fill* 0x0000000040086cc5 0x3 - .text.spi_flash_chip_generic_erase_chip - 0x0000000040086cc8 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086cc8 spi_flash_chip_generic_erase_chip - .text.spi_flash_chip_generic_write_encrypted - 0x0000000040086d10 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086d10 spi_flash_chip_generic_write_encrypted - .text.spi_flash_common_read_status_16b_rdsr_rdsr2 - 0x0000000040086d18 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x38 (size before relaxing) - 0x0000000040086d18 spi_flash_common_read_status_16b_rdsr_rdsr2 - .text.spi_flash_common_write_status_16b_wrsr - 0x0000000040086d4c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086d4c spi_flash_common_write_status_16b_wrsr - *fill* 0x0000000040086d61 0x3 - .text.spi_flash_chip_generic_get_write_protect - 0x0000000040086d64 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086d64 spi_flash_chip_generic_get_write_protect - .text.spi_flash_chip_generic_wait_idle - 0x0000000040086d9c 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x5c (size before relaxing) - 0x0000000040086d9c spi_flash_chip_generic_wait_idle - .text.spi_flash_chip_generic_config_host_io_mode - 0x0000000040086df4 0x5e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086df4 spi_flash_chip_generic_config_host_io_mode - *fill* 0x0000000040086e52 0x2 - .text.spi_flash_chip_generic_read - 0x0000000040086e54 0x5d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x65 (size before relaxing) - 0x0000000040086e54 spi_flash_chip_generic_read - *fill* 0x0000000040086eb1 0x3 - .text.spi_flash_common_read_status_8b_rdsr2 - 0x0000000040086eb4 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086eb4 spi_flash_common_read_status_8b_rdsr2 - *fill* 0x0000000040086ec9 0x3 - .text.spi_flash_chip_generic_get_io_mode - 0x0000000040086ecc 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x20 (size before relaxing) - 0x0000000040086ecc spi_flash_chip_generic_get_io_mode - .text.spi_flash_common_read_status_8b_rdsr - 0x0000000040086ee8 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086ee8 spi_flash_common_read_status_8b_rdsr - *fill* 0x0000000040086efd 0x3 - .text.spi_flash_common_write_status_8b_wrsr - 0x0000000040086f00 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086f00 spi_flash_common_write_status_8b_wrsr - *fill* 0x0000000040086f15 0x3 - .text.spi_flash_common_write_status_8b_wrsr2 - 0x0000000040086f18 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086f18 spi_flash_common_write_status_8b_wrsr2 - *fill* 0x0000000040086f2d 0x3 - .text.spi_flash_chip_generic_set_io_mode - 0x0000000040086f30 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086f30 spi_flash_chip_generic_set_io_mode - .text.spi_flash_chip_generic_probe - 0x0000000040086f48 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086f48 spi_flash_chip_generic_probe - *fill* 0x0000000040086f4f 0x1 - .text.spi_flash_chip_generic_reset - 0x0000000040086f50 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086f50 spi_flash_chip_generic_reset - *fill* 0x0000000040086f9c 0x0 - .text.spi_flash_chip_generic_erase_sector - 0x0000000040086f9c 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086f9c spi_flash_chip_generic_erase_sector - .text.spi_flash_chip_generic_erase_block - 0x0000000040086fe8 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040086fe8 spi_flash_chip_generic_erase_block - .text.spi_flash_chip_generic_page_program - 0x0000000040087034 0x31 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040087034 spi_flash_chip_generic_page_program - *fill* 0x0000000040087065 0x3 - .text.spi_flash_chip_generic_write - 0x0000000040087068 0x7a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040087068 spi_flash_chip_generic_write - *fill* 0x00000000400870e2 0x2 - .text.spi_flash_chip_generic_set_write_protect - 0x00000000400870e4 0x3b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x00000000400870e4 spi_flash_chip_generic_set_write_protect - *fill* 0x000000004008711f 0x1 - .text.spi_flash_common_read_qe_sr - 0x0000000040087120 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x0000000040087149 0x3 - .text.spi_flash_common_write_qe_sr - 0x000000004008714c 0x31 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x000000004008717d 0x0 - *fill* 0x000000004008717d 0x3 - .text.spi_flash_generic_wait_host_idle - 0x0000000040087180 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040087180 spi_flash_generic_wait_host_idle - *fill* 0x00000000400871ba 0x0 - *fill* 0x00000000400871ba 0x0 - *fill* 0x00000000400871ba 0x0 - *fill* 0x00000000400871ba 0x0 - *fill* 0x00000000400871ba 0x0 - *fill* 0x00000000400871ba 0x0 - *fill* 0x00000000400871ba 0x2 - .text.spi_flash_common_set_io_mode - 0x00000000400871bc 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x00000000400871bc spi_flash_common_set_io_mode + .text 0x0000000040087188 0x137 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + 0x0000000040087188 xthal_spill_registers_into_stack_nw + 0x0000000040087188 xthal_window_spill_nw + 0x000000004008729c xthal_window_spill + *fill* 0x00000000400872bf 0x1 + .text 0x00000000400872c0 0x8 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + 0x00000000400872c0 xthal_set_intclear + .text 0x00000000400872c8 0x3e /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + 0x00000000400872c8 xthal_restore_extra_nw + *fill* 0x0000000040087306 0x2 + .text 0x0000000040087308 0x3e /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + 0x0000000040087308 xthal_save_extra_nw *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040087346 0x2 .text.spi_flash_chip_gd_probe - 0x0000000040087234 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x0000000040087234 spi_flash_chip_gd_probe - *fill* 0x0000000040087275 0x3 + 0x0000000040087348 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040087348 spi_flash_chip_gd_probe + *fill* 0x0000000040087389 0x3 .text.spi_flash_chip_gd_set_io_mode - 0x0000000040087278 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x0000000040087278 spi_flash_chip_gd_set_io_mode + 0x000000004008738c 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004008738c spi_flash_chip_gd_set_io_mode .text.spi_flash_chip_gd_get_io_mode - 0x00000000400872bc 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x00000000400873d0 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) 0x20 (size before relaxing) - 0x00000000400872bc spi_flash_chip_gd_get_io_mode - *fill* 0x00000000400872d8 0x0 + 0x00000000400873d0 spi_flash_chip_gd_get_io_mode + *fill* 0x00000000400873ec 0x0 + *fill* 0x00000000400873ec 0x0 *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) .text.spi_flash_chip_issi_probe - 0x00000000400872d8 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x00000000400872d8 spi_flash_chip_issi_probe - *fill* 0x0000000040087301 0x3 + 0x00000000400873ec 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x00000000400873ec spi_flash_chip_issi_probe + *fill* 0x0000000040087415 0x3 .text.spi_flash_chip_issi_set_io_mode - 0x0000000040087304 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x0000000040087418 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) 0x18 (size before relaxing) - 0x0000000040087304 spi_flash_chip_issi_set_io_mode + 0x0000000040087418 spi_flash_chip_issi_set_io_mode .text.spi_flash_chip_issi_get_io_mode - 0x0000000040087318 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000004008742c 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) 0x20 (size before relaxing) - 0x0000000040087318 spi_flash_chip_issi_get_io_mode - *fill* 0x0000000040087334 0x0 + 0x000000004008742c spi_flash_chip_issi_get_io_mode + *fill* 0x0000000040087448 0x0 + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_generic_detect_size + 0x0000000040087448 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040087448 spi_flash_chip_generic_detect_size + *fill* 0x000000004008746d 0x3 + .text.spi_flash_chip_generic_erase_chip + 0x0000000040087470 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040087470 spi_flash_chip_generic_erase_chip + .text.spi_flash_chip_generic_write_encrypted + 0x00000000400874b8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400874b8 spi_flash_chip_generic_write_encrypted + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x00000000400874c0 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x00000000400874c0 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x00000000400874f4 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400874f4 spi_flash_common_write_status_16b_wrsr + *fill* 0x0000000040087509 0x3 + .text.spi_flash_chip_generic_get_write_protect + 0x000000004008750c 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004008750c spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_wait_idle + 0x0000000040087544 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x5c (size before relaxing) + 0x0000000040087544 spi_flash_chip_generic_wait_idle + .text.spi_flash_chip_generic_config_host_io_mode + 0x000000004008759c 0x5e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004008759c spi_flash_chip_generic_config_host_io_mode + *fill* 0x00000000400875fa 0x2 + .text.spi_flash_chip_generic_read + 0x00000000400875fc 0x5d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x65 (size before relaxing) + 0x00000000400875fc spi_flash_chip_generic_read + *fill* 0x0000000040087659 0x3 + .text.spi_flash_common_read_status_8b_rdsr2 + 0x000000004008765c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004008765c spi_flash_common_read_status_8b_rdsr2 + *fill* 0x0000000040087671 0x3 + .text.spi_flash_chip_generic_get_io_mode + 0x0000000040087674 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x20 (size before relaxing) + 0x0000000040087674 spi_flash_chip_generic_get_io_mode + .text.spi_flash_common_read_status_8b_rdsr + 0x0000000040087690 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040087690 spi_flash_common_read_status_8b_rdsr + *fill* 0x00000000400876a5 0x3 + .text.spi_flash_common_write_status_8b_wrsr + 0x00000000400876a8 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400876a8 spi_flash_common_write_status_8b_wrsr + *fill* 0x00000000400876bd 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x00000000400876c0 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400876c0 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x00000000400876d5 0x3 + .text.spi_flash_chip_generic_set_io_mode + 0x00000000400876d8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400876d8 spi_flash_chip_generic_set_io_mode + .text.spi_flash_chip_generic_probe + 0x00000000400876f0 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400876f0 spi_flash_chip_generic_probe + *fill* 0x00000000400876f7 0x1 + .text.spi_flash_chip_generic_reset + 0x00000000400876f8 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400876f8 spi_flash_chip_generic_reset + *fill* 0x0000000040087744 0x0 + .text.spi_flash_chip_generic_erase_sector + 0x0000000040087744 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040087744 spi_flash_chip_generic_erase_sector + .text.spi_flash_chip_generic_erase_block + 0x0000000040087790 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040087790 spi_flash_chip_generic_erase_block + .text.spi_flash_chip_generic_page_program + 0x00000000400877dc 0x31 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400877dc spi_flash_chip_generic_page_program + *fill* 0x000000004008780d 0x3 + .text.spi_flash_chip_generic_write + 0x0000000040087810 0x7a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040087810 spi_flash_chip_generic_write + *fill* 0x000000004008788a 0x2 + .text.spi_flash_chip_generic_set_write_protect + 0x000000004008788c 0x3b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004008788c spi_flash_chip_generic_set_write_protect + *fill* 0x00000000400878c7 0x1 + .text.spi_flash_common_read_qe_sr + 0x00000000400878c8 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x00000000400878f1 0x3 + .text.spi_flash_common_write_qe_sr + 0x00000000400878f4 0x31 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x0000000040087925 0x0 + *fill* 0x0000000040087925 0x3 + .text.spi_flash_generic_wait_host_idle + 0x0000000040087928 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040087928 spi_flash_generic_wait_host_idle + *fill* 0x0000000040087962 0x0 + *fill* 0x0000000040087962 0x0 + *fill* 0x0000000040087962 0x0 + *fill* 0x0000000040087962 0x0 + *fill* 0x0000000040087962 0x0 + *fill* 0x0000000040087962 0x0 + *fill* 0x0000000040087962 0x2 + .text.spi_flash_common_set_io_mode + 0x0000000040087964 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040087964 spi_flash_common_set_io_mode *libspi_flash.a:spi_flash_rom_patch.*(.literal .literal.* .text .text.*) + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + .text.memspi_host_read_id_hs + 0x00000000400879dc 0x79 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x7d (size before relaxing) + 0x00000000400879dc memspi_host_read_id_hs + *fill* 0x0000000040087a55 0x3 + .text.memspi_host_flush_cache + 0x0000000040087a58 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x1c (size before relaxing) + 0x0000000040087a58 memspi_host_flush_cache + .text.memspi_host_read_status_hs + 0x0000000040087a70 0x2d esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040087a70 memspi_host_read_status_hs + *fill* 0x0000000040087a9d 0x0 + *fill* 0x0000000040087a9d 0x0 *libesp_system.a:panic.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040087a9d 0x3 .text.reconfigure_all_wdts - 0x0000000040087334 0xcc esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040087aa0 0xcc esp-idf/esp_system/libesp_system.a(panic.c.obj) .text.panic_print_char - 0x0000000040087400 0x2e esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x0000000040087400 panic_print_char - *fill* 0x000000004008742e 0x2 + 0x0000000040087b6c 0x2e esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040087b6c panic_print_char + *fill* 0x0000000040087b9a 0x2 .text.panic_print_str - 0x0000000040087430 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x0000000040087430 panic_print_str - *fill* 0x000000004008744a 0x2 + 0x0000000040087b9c 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040087b9c panic_print_str + *fill* 0x0000000040087bb6 0x2 .text.print_abort_details - 0x000000004008744c 0xd esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040087bb8 0xd esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x10 (size before relaxing) - *fill* 0x0000000040087459 0x3 + *fill* 0x0000000040087bc5 0x3 .text.panic_print_hex - 0x000000004008745c 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040087bc8 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x2f (size before relaxing) - 0x000000004008745c panic_print_hex - *fill* 0x0000000040087488 0x0 + 0x0000000040087bc8 panic_print_hex + *fill* 0x0000000040087bf4 0x0 .text.panic_print_dec - 0x0000000040087488 0x40 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040087bf4 0x40 esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x46 (size before relaxing) - 0x0000000040087488 panic_print_dec - *fill* 0x00000000400874c8 0x0 + 0x0000000040087bf4 panic_print_dec + *fill* 0x0000000040087c34 0x0 .text.esp_panic_handler - 0x00000000400874c8 0x162 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040087c34 0x162 esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x1cb (size before relaxing) - 0x00000000400874c8 esp_panic_handler - *fill* 0x000000004008762a 0x2 + 0x0000000040087c34 esp_panic_handler + *fill* 0x0000000040087d96 0x2 .text.panic_abort - 0x000000004008762c 0x17 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x000000004008762c panic_abort - *fill* 0x0000000040087643 0x0 - *fill* 0x0000000040087643 0x0 - *fill* 0x0000000040087643 0x0 - *fill* 0x0000000040087643 0x0 - *fill* 0x0000000040087643 0x0 - *libesp_system.a:system_api.*(.literal.esp_system_abort .text.esp_system_abort) - *fill* 0x0000000040087643 0x1 - .text.esp_system_abort - 0x0000000040087644 0x8 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - 0xc (size before relaxing) - 0x0000000040087644 esp_system_abort - *fill* 0x000000004008764c 0x0 + 0x0000000040087d98 0x17 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040087d98 panic_abort + *fill* 0x0000000040087daf 0x0 + *fill* 0x0000000040087daf 0x0 + *fill* 0x0000000040087daf 0x0 + *fill* 0x0000000040087daf 0x0 + *fill* 0x0000000040087daf 0x0 *libesp_system.a:panic_handler.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040087daf 0x1 .text.frame_to_panic_info - 0x000000004008764c 0xa5 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040087db0 0xa5 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0xa9 (size before relaxing) - *fill* 0x00000000400876f1 0x3 + *fill* 0x0000000040087e55 0x3 .text.panic_handler - 0x00000000400876f4 0xa2 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040087e58 0xa2 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0xbe (size before relaxing) - *fill* 0x0000000040087796 0x2 + *fill* 0x0000000040087efa 0x2 .text.print_backtrace_entry - 0x0000000040087798 0x1b esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040087efc 0x1b esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x27 (size before relaxing) - *fill* 0x00000000400877b3 0x1 + *fill* 0x0000000040087f17 0x1 .text.print_illegal_instruction_details - 0x00000000400877b4 0x52 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040087f18 0x52 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x6a (size before relaxing) - *fill* 0x0000000040087806 0x2 + *fill* 0x0000000040087f6a 0x2 .text.print_registers - 0x0000000040087808 0xd7 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040087f6c 0xd7 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x113 (size before relaxing) - *fill* 0x00000000400878df 0x1 + *fill* 0x0000000040088043 0x1 .text.print_backtrace - 0x00000000400878e0 0x11c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040088044 0x11c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x12f (size before relaxing) - *fill* 0x00000000400879fc 0x0 + *fill* 0x0000000040088160 0x0 .text.print_state_for_core - 0x00000000400879fc 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040088160 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x2a (size before relaxing) - *fill* 0x0000000040087a22 0x2 + *fill* 0x0000000040088186 0x2 .text.print_state - 0x0000000040087a24 0x4c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040088188 0x4c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x54 (size before relaxing) .text.print_debug_exception_details - 0x0000000040087a70 0x7c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x00000000400881d4 0x7c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x97 (size before relaxing) - *fill* 0x0000000040087aec 0x0 + *fill* 0x0000000040088250 0x0 .text.esp_digital_reset - 0x0000000040087aec 0x32 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040088250 0x32 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x36 (size before relaxing) - *fill* 0x0000000040087b1e 0x2 + *fill* 0x0000000040088282 0x2 .text.panicHandler - 0x0000000040087b20 0xf esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x0000000040087b20 panicHandler - *fill* 0x0000000040087b2f 0x1 + 0x0000000040088284 0xf esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040088284 panicHandler + *fill* 0x0000000040088293 0x1 .text.xt_unhandled_exception - 0x0000000040087b30 0xf esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x0000000040087b30 xt_unhandled_exception - *fill* 0x0000000040087b3f 0x1 + 0x0000000040088294 0xf esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000040088294 xt_unhandled_exception + *fill* 0x00000000400882a3 0x1 .text.panic_restart - 0x0000000040087b40 0x15 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x00000000400882a4 0x15 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x21 (size before relaxing) - 0x0000000040087b40 panic_restart - *fill* 0x0000000040087b55 0x0 - *fill* 0x0000000040087b55 0x0 - *fill* 0x0000000040087b55 0x0 - *fill* 0x0000000040087b55 0x0 - *fill* 0x0000000040087b55 0x0 - *fill* 0x0000000040087b55 0x0 - *fill* 0x0000000040087b55 0x0 - *fill* 0x0000000040087b55 0x0 - *fill* 0x0000000040087b55 0x0 - *fill* 0x0000000040087b55 0x0 - *fill* 0x0000000040087b55 0x0 + 0x00000000400882a4 panic_restart + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *fill* 0x00000000400882b9 0x0 + *libesp_system.a:system_api.*(.literal.esp_system_abort .text.esp_system_abort) + *fill* 0x00000000400882b9 0x3 + .text.esp_system_abort + 0x00000000400882bc 0x8 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0xc (size before relaxing) + 0x00000000400882bc esp_system_abort + *fill* 0x00000000400882c4 0x0 *libesp_system.a:reset_reason.*(.literal .literal.* .text .text.*) - *fill* 0x0000000040087b55 0x3 .text.get_reset_reason - 0x0000000040087b58 0x6f esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - *fill* 0x0000000040087bc7 0x1 + 0x00000000400882c4 0x6f esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + *fill* 0x0000000040088333 0x1 .text.esp_reset_reason_clear_hint - 0x0000000040087bc8 0xf esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - *fill* 0x0000000040087bd7 0x1 + 0x0000000040088334 0xf esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + *fill* 0x0000000040088343 0x1 .text.esp_reset_reason - 0x0000000040087bd8 0xa esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x0000000040087bd8 esp_reset_reason - *fill* 0x0000000040087be2 0x2 + 0x0000000040088344 0xa esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x0000000040088344 esp_reset_reason + *fill* 0x000000004008834e 0x2 .text.esp_reset_reason_init - 0x0000000040087be4 0x23 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x0000000040088350 0x23 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) 0x2b (size before relaxing) - *fill* 0x0000000040087c07 0x0 - *fill* 0x0000000040087c07 0x0 - *fill* 0x0000000040087c07 0x0 - *fill* 0x0000000040087c07 0x0 - *libsoc.a:rtc_clk.*(.literal .literal.* .text .text.*) - *fill* 0x0000000040087c07 0x1 - .text.rtc_clk_32k_enable_common - 0x0000000040087c08 0x88 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_disable - 0x0000000040087c90 0x3e esp-idf/soc/libsoc.a(rtc_clk.c.obj) - *fill* 0x0000000040087cce 0x2 - .text.rtc_clk_bbpll_enable - 0x0000000040087cd0 0x66 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - *fill* 0x0000000040087d36 0x2 - .text.rtc_clk_32k_enable - 0x0000000040087d38 0x3d esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x0000000040087d38 rtc_clk_32k_enable - *fill* 0x0000000040087d75 0x3 - .text.rtc_clk_32k_enable_external - 0x0000000040087d78 0xe esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x12 (size before relaxing) - 0x0000000040087d78 rtc_clk_32k_enable_external - *fill* 0x0000000040087d86 0x2 - .text.rtc_clk_8m_enable - 0x0000000040087d88 0x9c esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x0000000040087d88 rtc_clk_8m_enable - .text.rtc_clk_slow_freq_set - 0x0000000040087e24 0x48 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x0000000040087e24 rtc_clk_slow_freq_set - .text.rtc_clk_slow_freq_get - 0x0000000040087e6c 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x0000000040087e6c rtc_clk_slow_freq_get - .text.rtc_clk_slow_freq_get_hz - 0x0000000040087e7c 0x29 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x2d (size before relaxing) - 0x0000000040087e7c rtc_clk_slow_freq_get_hz - *fill* 0x0000000040087ea5 0x3 - .text.rtc_clk_fast_freq_set - 0x0000000040087ea8 0x2c esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x0000000040087ea8 rtc_clk_fast_freq_set - .text.rtc_clk_bbpll_configure - 0x0000000040087ed4 0x19d esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x1a1 (size before relaxing) - 0x0000000040087ed4 rtc_clk_bbpll_configure - *fill* 0x0000000040088071 0x3 - .text.rtc_clk_xtal_freq_get - 0x0000000040088074 0x36 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x0000000040088074 rtc_get_xtal - 0x0000000040088074 rtc_clk_xtal_freq_get - *fill* 0x00000000400880aa 0x2 - .text.rtc_clk_cpu_freq_mhz_to_config - 0x00000000400880ac 0x64 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x00000000400880ac rtc_clk_cpu_freq_mhz_to_config - .text.rtc_clk_cpu_freq_get_config - 0x0000000040088110 0xa6 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0xb6 (size before relaxing) - 0x0000000040088110 rtc_clk_cpu_freq_get_config - *fill* 0x00000000400881b6 0x2 - .text.rtc_clk_apb_freq_update - 0x00000000400881b8 0x19 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x00000000400881b8 rtc_clk_apb_freq_update - *fill* 0x00000000400881d1 0x3 - .text.rtc_clk_cpu_freq_to_xtal - 0x00000000400881d4 0x87 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x8b (size before relaxing) - 0x00000000400881d4 rtc_clk_cpu_freq_to_xtal - *fill* 0x000000004008825b 0x1 - .text.rtc_clk_cpu_freq_set_xtal - 0x000000004008825c 0x13 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x1f (size before relaxing) - 0x000000004008825c rtc_clk_cpu_freq_set_xtal - *fill* 0x000000004008826f 0x1 - .text.rtc_clk_cpu_freq_to_pll_mhz - 0x0000000040088270 0x9c esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0xa8 (size before relaxing) - .text.rtc_clk_cpu_freq_to_8m - 0x000000004008830c 0x58 esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x5c (size before relaxing) - .text.rtc_clk_cpu_freq_set_config - 0x0000000040088364 0x5c esp-idf/soc/libsoc.a(rtc_clk.c.obj) - 0x77 (size before relaxing) - 0x0000000040088364 rtc_clk_cpu_freq_set_config - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *fill* 0x00000000400883c0 0x0 - *libsoc.a:rtc_time.*(.literal .literal.* .text .text.*) - *fill* 0x00000000400883c0 0x0 - .text.rtc_clk_cal_internal - 0x00000000400883c0 0x1d4 esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0x1dc (size before relaxing) - .text.rtc_clk_cal - 0x0000000040088594 0x4e esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0x52 (size before relaxing) - 0x0000000040088594 rtc_clk_cal - *fill* 0x00000000400885e2 0x2 - .text.rtc_time_us_to_slowclk - 0x00000000400885e4 0x1f esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0x00000000400885e4 rtc_time_us_to_slowclk - *fill* 0x0000000040088603 0x1 - .text.rtc_time_get - 0x0000000040088604 0x50 esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0x0000000040088604 rtc_time_get - .text.rtc_clk_wait_for_slow_cycle - 0x0000000040088654 0x79 esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0x0000000040088654 rtc_clk_wait_for_slow_cycle - *fill* 0x00000000400886cd 0x0 - *fill* 0x00000000400886cd 0x0 - *fill* 0x00000000400886cd 0x3 - .text.rtc_time_slowclk_to_us - 0x00000000400886d0 0x1e esp-idf/soc/libsoc.a(rtc_time.c.obj) - 0x00000000400886d0 rtc_time_slowclk_to_us - *fill* 0x00000000400886ee 0x0 - *libsoc.a:cpu_util.*(.literal .literal.* .text .text.*) - *libsoc.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) - *libsoc.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) - *fill* 0x00000000400886ee 0x2 - .text.spi_flash_hal_configure_host_io_mode - 0x00000000400886f0 0x1b4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x00000000400886f0 spi_flash_hal_configure_host_io_mode - .text.spi_flash_hal_common_command - 0x00000000400888a4 0x1c3 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x00000000400888a4 spi_flash_hal_common_command - *fill* 0x0000000040088a67 0x1 - .text.spi_flash_hal_read - 0x0000000040088a68 0xf3 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x0000000040088a68 spi_flash_hal_read - *fill* 0x0000000040088b5b 0x1 - .text.spi_flash_hal_erase_chip - 0x0000000040088b5c 0x22 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x0000000040088b5c spi_flash_hal_erase_chip - *fill* 0x0000000040088b7e 0x2 - .text.spi_flash_hal_erase_sector - 0x0000000040088b80 0x5a esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x0000000040088b80 spi_flash_hal_erase_sector - *fill* 0x0000000040088bda 0x2 - .text.spi_flash_hal_erase_block - 0x0000000040088bdc 0x52 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x0000000040088bdc spi_flash_hal_erase_block - *fill* 0x0000000040088c2e 0x2 - .text.spi_flash_hal_program_page - 0x0000000040088c30 0xa7 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x0000000040088c30 spi_flash_hal_program_page - *fill* 0x0000000040088cd7 0x1 - .text.spi_flash_hal_set_write_protect - 0x0000000040088cd8 0x40 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x0000000040088cd8 spi_flash_hal_set_write_protect - .text.spi_flash_hal_host_idle - 0x0000000040088d18 0x3a esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x0000000040088d18 spi_flash_hal_host_idle - *fill* 0x0000000040088d52 0x2 - .text.spi_flash_hal_poll_cmd_done - 0x0000000040088d54 0x11 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x0000000040088d54 spi_flash_hal_poll_cmd_done - *fill* 0x0000000040088d65 0x3 - .text.spi_flash_hal_device_config - 0x0000000040088d68 0x74 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - 0x0000000040088d68 spi_flash_hal_device_config - *fill* 0x0000000040088ddc 0x0 - *fill* 0x0000000040088ddc 0x0 - *fill* 0x0000000040088ddc 0x0 - *fill* 0x0000000040088ddc 0x0 - *fill* 0x0000000040088ddc 0x0 - *fill* 0x0000000040088ddc 0x0 - *libsoc.a:spi_hal_iram.*(.literal .literal.* .text .text.*) - *libsoc.a:uart_hal_iram.*(.iram1 .iram1.*) - *libsoc.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) - *libsoc.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) - *libsoc.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) - *libsoc.a:cpu_hal.*(.literal .literal.* .text .text.*) - .text.cpu_hal_set_watchpoint - 0x0000000040088ddc 0x5c esp-idf/soc/libsoc.a(cpu_hal.c.obj) - 0x0000000040088ddc cpu_hal_set_watchpoint - *fill* 0x0000000040088e38 0x0 - .text.cpu_hal_set_breakpoint - 0x0000000040088e38 0x22 esp-idf/soc/libsoc.a(cpu_hal.c.obj) - 0x0000000040088e38 cpu_hal_set_breakpoint - *fill* 0x0000000040088e5a 0x2 - .text.cpu_hal_set_vecbase - 0x0000000040088e5c 0x8 esp-idf/soc/libsoc.a(cpu_hal.c.obj) - 0x0000000040088e5c cpu_hal_set_vecbase - *libsoc.a:rtc_periph.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040088373 0x0 + *fill* 0x0000000040088373 0x0 + *fill* 0x0000000040088373 0x0 *libsoc.a:rtc_clk_init.*(.literal .literal.* .text .text.*) + *libsoc.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libsoc.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040088373 0x1 + .text.spi_flash_hal_configure_host_io_mode + 0x0000000040088374 0x1b4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040088374 spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x0000000040088528 0x1c3 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040088528 spi_flash_hal_common_command + *fill* 0x00000000400886eb 0x1 + .text.spi_flash_hal_read + 0x00000000400886ec 0xf3 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400886ec spi_flash_hal_read + *fill* 0x00000000400887df 0x1 + .text.spi_flash_hal_erase_chip + 0x00000000400887e0 0x22 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400887e0 spi_flash_hal_erase_chip + *fill* 0x0000000040088802 0x2 + .text.spi_flash_hal_erase_sector + 0x0000000040088804 0x5a esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040088804 spi_flash_hal_erase_sector + *fill* 0x000000004008885e 0x2 + .text.spi_flash_hal_erase_block + 0x0000000040088860 0x52 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040088860 spi_flash_hal_erase_block + *fill* 0x00000000400888b2 0x2 + .text.spi_flash_hal_program_page + 0x00000000400888b4 0xa7 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400888b4 spi_flash_hal_program_page + *fill* 0x000000004008895b 0x1 + .text.spi_flash_hal_set_write_protect + 0x000000004008895c 0x40 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x000000004008895c spi_flash_hal_set_write_protect + .text.spi_flash_hal_host_idle + 0x000000004008899c 0x3a esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x000000004008899c spi_flash_hal_host_idle + *fill* 0x00000000400889d6 0x2 + .text.spi_flash_hal_poll_cmd_done + 0x00000000400889d8 0x11 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400889d8 spi_flash_hal_poll_cmd_done + *fill* 0x00000000400889e9 0x3 + .text.spi_flash_hal_device_config + 0x00000000400889ec 0x74 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400889ec spi_flash_hal_device_config + *fill* 0x0000000040088a60 0x0 + *fill* 0x0000000040088a60 0x0 + *fill* 0x0000000040088a60 0x0 + *fill* 0x0000000040088a60 0x0 + *fill* 0x0000000040088a60 0x0 + *fill* 0x0000000040088a60 0x0 *libsoc.a:rtc_wdt.*(.literal .literal.* .text .text.*) .text.rtc_wdt_get_protect_status - 0x0000000040088e64 0x1b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) - 0x0000000040088e64 rtc_wdt_get_protect_status - *fill* 0x0000000040088e7f 0x1 + 0x0000000040088a60 0x1b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088a60 rtc_wdt_get_protect_status + *fill* 0x0000000040088a7b 0x1 .text.rtc_wdt_protect_off - 0x0000000040088e80 0x10 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) - 0x0000000040088e80 rtc_wdt_protect_off + 0x0000000040088a7c 0x10 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088a7c rtc_wdt_protect_off .text.rtc_wdt_protect_on - 0x0000000040088e90 0xf esp-idf/soc/libsoc.a(rtc_wdt.c.obj) - 0x0000000040088e90 rtc_wdt_protect_on - *fill* 0x0000000040088e9f 0x1 + 0x0000000040088a8c 0xf esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088a8c rtc_wdt_protect_on + *fill* 0x0000000040088a9b 0x1 .text.rtc_wdt_enable - 0x0000000040088ea0 0x2b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) - 0x0000000040088ea0 rtc_wdt_enable - *fill* 0x0000000040088ecb 0x1 + 0x0000000040088a9c 0x2b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088a9c rtc_wdt_enable + *fill* 0x0000000040088ac7 0x1 .text.rtc_wdt_flashboot_mode_enable - 0x0000000040088ecc 0x18 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) - 0x0000000040088ecc rtc_wdt_flashboot_mode_enable + 0x0000000040088ac8 0x18 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088ac8 rtc_wdt_flashboot_mode_enable .text.rtc_wdt_feed - 0x0000000040088ee4 0x2a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088ae0 0x2a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x32 (size before relaxing) - 0x0000000040088ee4 rtc_wdt_feed - *fill* 0x0000000040088f0e 0x2 + 0x0000000040088ae0 rtc_wdt_feed + *fill* 0x0000000040088b0a 0x2 .text.rtc_wdt_set_time - 0x0000000040088f10 0x61 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) - 0x0000000040088f10 rtc_wdt_set_time - *fill* 0x0000000040088f71 0x3 + 0x0000000040088b0c 0x61 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088b0c rtc_wdt_set_time + *fill* 0x0000000040088b6d 0x3 .text.rtc_wdt_set_stage - 0x0000000040088f74 0xc1 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) - 0x0000000040088f74 rtc_wdt_set_stage - *fill* 0x0000000040089035 0x3 + 0x0000000040088b70 0xc1 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088b70 rtc_wdt_set_stage + *fill* 0x0000000040088c31 0x3 .text.rtc_wdt_disable - 0x0000000040089038 0x6a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088c34 0x6a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x7e (size before relaxing) - 0x0000000040089038 rtc_wdt_disable - *fill* 0x00000000400890a2 0x2 + 0x0000000040088c34 rtc_wdt_disable + *fill* 0x0000000040088c9e 0x2 .text.rtc_wdt_set_length_of_reset_signal - 0x00000000400890a4 0x71 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) - 0x00000000400890a4 rtc_wdt_set_length_of_reset_signal - *fill* 0x0000000040089115 0x3 + 0x0000000040088ca0 0x71 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088ca0 rtc_wdt_set_length_of_reset_signal + *fill* 0x0000000040088d11 0x3 .text.rtc_wdt_is_on - 0x0000000040089118 0x28 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) - 0x0000000040089118 rtc_wdt_is_on - *fill* 0x0000000040089140 0x0 - *fill* 0x0000000040089140 0x0 - *fill* 0x0000000040089140 0x0 - *fill* 0x0000000040089140 0x0 - *fill* 0x0000000040089140 0x0 - *fill* 0x0000000040089140 0x0 - *fill* 0x0000000040089140 0x0 - *fill* 0x0000000040089140 0x0 - *libsoc.a:rtc_sleep.*(.literal .literal.* .text .text.*) - .text.rtc_sleep_pd - 0x0000000040089140 0x1bb esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - *fill* 0x00000000400892fb 0x1 - .text.rtc_sleep_init - 0x00000000400892fc 0x483 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - 0x487 (size before relaxing) - 0x00000000400892fc rtc_sleep_init - *fill* 0x000000004008977f 0x1 - .text.rtc_sleep_set_wakeup_time - 0x0000000040089780 0x15 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - 0x0000000040089780 rtc_sleep_set_wakeup_time - *fill* 0x0000000040089795 0x3 - .text.rtc_sleep_start - 0x0000000040089798 0x7d esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - 0x0000000040089798 rtc_sleep_start - *fill* 0x0000000040089815 0x0 - *fill* 0x0000000040089815 0x0 - *fill* 0x0000000040089815 0x0 - *libsoc.a:soc_hal.*(.literal .literal.* .text .text.*) - *fill* 0x0000000040089815 0x3 - .text.soc_hal_stall_core - 0x0000000040089818 0x8e esp-idf/soc/libsoc.a(soc_hal.c.obj) - 0x0000000040089818 soc_hal_stall_core - *fill* 0x00000000400898a6 0x2 - .text.soc_hal_unstall_core - 0x00000000400898a8 0x4c esp-idf/soc/libsoc.a(soc_hal.c.obj) - 0x00000000400898a8 soc_hal_unstall_core - *fill* 0x00000000400898f4 0x0 - *fill* 0x00000000400898f4 0x0 - *libsoc.a:rtc_pm.*(.literal .literal.* .text .text.*) - *libsoc.a:rtc_init.*(.literal .literal.* .text .text.*) - .text.rtc_init - 0x00000000400898f4 0x344 esp-idf/soc/libsoc.a(rtc_init.c.obj) - 0x368 (size before relaxing) - 0x00000000400898f4 rtc_init - .text.rtc_vddsdio_get_config - 0x0000000040089c38 0xd7 esp-idf/soc/libsoc.a(rtc_init.c.obj) - 0x0000000040089c38 rtc_vddsdio_get_config - *fill* 0x0000000040089d0f 0x1 - .text.rtc_vddsdio_set_config - 0x0000000040089d10 0x46 esp-idf/soc/libsoc.a(rtc_init.c.obj) - 0x0000000040089d10 rtc_vddsdio_set_config - *fill* 0x0000000040089d56 0x0 + 0x0000000040088d14 0x28 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040088d14 rtc_wdt_is_on + *fill* 0x0000000040088d3c 0x0 + *fill* 0x0000000040088d3c 0x0 + *fill* 0x0000000040088d3c 0x0 + *fill* 0x0000000040088d3c 0x0 + *fill* 0x0000000040088d3c 0x0 + *fill* 0x0000000040088d3c 0x0 + *fill* 0x0000000040088d3c 0x0 + *fill* 0x0000000040088d3c 0x0 + *fill* 0x0000000040088d3c 0x0 + *libsoc.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libsoc.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) + *libsoc.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + .text.spi_hal_setup_device + 0x0000000040088d3c 0x29f esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x0000000040088d3c spi_hal_setup_device + *fill* 0x0000000040088fdb 0x1 + .text.spi_hal_setup_trans + 0x0000000040088fdc 0x378 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x0000000040088fdc spi_hal_setup_trans + .text.spi_hal_prepare_data + 0x0000000040089354 0x1f0 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x1f8 (size before relaxing) + 0x0000000040089354 spi_hal_prepare_data + .text.spi_hal_user_start + 0x0000000040089544 0x17 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x0000000040089544 spi_hal_user_start + *fill* 0x000000004008955b 0x1 + .text.spi_hal_fetch_result + 0x000000004008955c 0x60 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x000000004008955c spi_hal_fetch_result + *fill* 0x00000000400895bc 0x0 + *fill* 0x00000000400895bc 0x0 + .text.spi_hal_usr_is_done + 0x00000000400895bc 0xf esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x00000000400895bc spi_hal_usr_is_done + *fill* 0x00000000400895cb 0x0 *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *fill* 0x00000000400895cb 0x1 + .text.lldesc_setup_link + 0x00000000400895cc 0x111 esp-idf/soc/libsoc.a(lldesc.c.obj) + 0x00000000400895cc lldesc_setup_link + *libsoc.a:rtc_clk.*(.literal .literal.* .text .text.*) + *fill* 0x00000000400896dd 0x3 + .text.rtc_clk_32k_enable_common + 0x00000000400896e0 0x88 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_disable + 0x0000000040089768 0x3e esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x00000000400897a6 0x2 + .text.rtc_clk_bbpll_enable + 0x00000000400897a8 0x66 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x000000004008980e 0x2 + .text.rtc_clk_32k_enable + 0x0000000040089810 0x3d esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040089810 rtc_clk_32k_enable + *fill* 0x000000004008984d 0x3 + .text.rtc_clk_32k_enable_external + 0x0000000040089850 0xe esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x12 (size before relaxing) + 0x0000000040089850 rtc_clk_32k_enable_external + *fill* 0x000000004008985e 0x2 + .text.rtc_clk_8m_enable + 0x0000000040089860 0x9c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040089860 rtc_clk_8m_enable + .text.rtc_clk_slow_freq_set + 0x00000000400898fc 0x48 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x00000000400898fc rtc_clk_slow_freq_set + .text.rtc_clk_slow_freq_get + 0x0000000040089944 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040089944 rtc_clk_slow_freq_get + .text.rtc_clk_slow_freq_get_hz + 0x0000000040089954 0x29 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x2d (size before relaxing) + 0x0000000040089954 rtc_clk_slow_freq_get_hz + *fill* 0x000000004008997d 0x3 + .text.rtc_clk_fast_freq_set + 0x0000000040089980 0x2c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040089980 rtc_clk_fast_freq_set + .text.rtc_clk_bbpll_configure + 0x00000000400899ac 0x19d esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x1a1 (size before relaxing) + 0x00000000400899ac rtc_clk_bbpll_configure + *fill* 0x0000000040089b49 0x3 + .text.rtc_clk_xtal_freq_get + 0x0000000040089b4c 0x36 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040089b4c rtc_get_xtal + 0x0000000040089b4c rtc_clk_xtal_freq_get + *fill* 0x0000000040089b82 0x2 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x0000000040089b84 0x64 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040089b84 rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_get_config + 0x0000000040089be8 0xa6 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xb6 (size before relaxing) + 0x0000000040089be8 rtc_clk_cpu_freq_get_config + *fill* 0x0000000040089c8e 0x2 + .text.rtc_clk_apb_freq_update + 0x0000000040089c90 0x19 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040089c90 rtc_clk_apb_freq_update + *fill* 0x0000000040089ca9 0x3 + .text.rtc_clk_cpu_freq_to_xtal + 0x0000000040089cac 0x87 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x8b (size before relaxing) + 0x0000000040089cac rtc_clk_cpu_freq_to_xtal + *fill* 0x0000000040089d33 0x1 + .text.rtc_clk_cpu_freq_set_xtal + 0x0000000040089d34 0x13 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x1f (size before relaxing) + 0x0000000040089d34 rtc_clk_cpu_freq_set_xtal + *fill* 0x0000000040089d47 0x1 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040089d48 0x9c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xa8 (size before relaxing) + .text.rtc_clk_cpu_freq_to_8m + 0x0000000040089de4 0x58 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x5c (size before relaxing) + .text.rtc_clk_cpu_freq_set_config + 0x0000000040089e3c 0x5c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x77 (size before relaxing) + 0x0000000040089e3c rtc_clk_cpu_freq_set_config + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *fill* 0x0000000040089e98 0x0 + *libsoc.a:rtc_init.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040089e98 0x0 + .text.rtc_init + 0x0000000040089e98 0x344 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x368 (size before relaxing) + 0x0000000040089e98 rtc_init + .text.rtc_vddsdio_get_config + 0x000000004008a1dc 0xd7 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x000000004008a1dc rtc_vddsdio_get_config + *fill* 0x000000004008a2b3 0x1 + .text.rtc_vddsdio_set_config + 0x000000004008a2b4 0x46 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x000000004008a2b4 rtc_vddsdio_set_config + *fill* 0x000000004008a2fa 0x0 + *fill* 0x000000004008a2fa 0x0 + *libsoc.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *fill* 0x000000004008a2fa 0x2 + .text.rtc_sleep_pd + 0x000000004008a2fc 0x1bb esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + *fill* 0x000000004008a4b7 0x1 + .text.rtc_sleep_init + 0x000000004008a4b8 0x483 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x487 (size before relaxing) + 0x000000004008a4b8 rtc_sleep_init + *fill* 0x000000004008a93b 0x1 + .text.rtc_sleep_set_wakeup_time + 0x000000004008a93c 0x15 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x000000004008a93c rtc_sleep_set_wakeup_time + *fill* 0x000000004008a951 0x3 + .text.rtc_sleep_start + 0x000000004008a954 0x7d esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x000000004008a954 rtc_sleep_start + *fill* 0x000000004008a9d1 0x0 + *fill* 0x000000004008a9d1 0x0 + *fill* 0x000000004008a9d1 0x0 + *fill* 0x000000004008a9d1 0x0 + *libsoc.a:soc_hal.*(.literal .literal.* .text .text.*) + *fill* 0x000000004008a9d1 0x3 + .text.soc_hal_stall_core + 0x000000004008a9d4 0x8e esp-idf/soc/libsoc.a(soc_hal.c.obj) + 0x000000004008a9d4 soc_hal_stall_core + *fill* 0x000000004008aa62 0x2 + .text.soc_hal_unstall_core + 0x000000004008aa64 0x4c esp-idf/soc/libsoc.a(soc_hal.c.obj) + 0x000000004008aa64 soc_hal_unstall_core + *fill* 0x000000004008aab0 0x0 + *fill* 0x000000004008aab0 0x0 + *libsoc.a:uart_hal_iram.*(.iram1 .iram1.*) + *libsoc.a:cpu_hal.*(.literal .literal.* .text .text.*) + .text.cpu_hal_set_watchpoint + 0x000000004008aab0 0x5c esp-idf/soc/libsoc.a(cpu_hal.c.obj) + 0x000000004008aab0 cpu_hal_set_watchpoint + .text.cpu_hal_set_breakpoint + 0x000000004008ab0c 0x22 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + 0x000000004008ab0c cpu_hal_set_breakpoint + *fill* 0x000000004008ab2e 0x2 + .text.cpu_hal_set_vecbase + 0x000000004008ab30 0x8 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + 0x000000004008ab30 cpu_hal_set_vecbase + *libsoc.a:rtc_pm.*(.literal .literal.* .text .text.*) + *libsoc.a:cpu_util.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_time.*(.literal .literal.* .text .text.*) + .text.rtc_clk_cal_internal + 0x000000004008ab38 0x1d4 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x1dc (size before relaxing) + .text.rtc_clk_cal + 0x000000004008ad0c 0x4e esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x52 (size before relaxing) + 0x000000004008ad0c rtc_clk_cal + *fill* 0x000000004008ad5a 0x2 + .text.rtc_time_us_to_slowclk + 0x000000004008ad5c 0x1f esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x000000004008ad5c rtc_time_us_to_slowclk + *fill* 0x000000004008ad7b 0x1 + .text.rtc_time_get + 0x000000004008ad7c 0x50 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x000000004008ad7c rtc_time_get + .text.rtc_clk_wait_for_slow_cycle + 0x000000004008adcc 0x79 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x000000004008adcc rtc_clk_wait_for_slow_cycle + *fill* 0x000000004008ae45 0x0 + *fill* 0x000000004008ae45 0x3 + .text.rtc_time_slowclk_to_us + 0x000000004008ae48 0x1e esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x000000004008ae48 rtc_time_slowclk_to_us + *fill* 0x000000004008ae66 0x0 + *libsoc.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_periph.*(.literal .literal.* .text .text.*) *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) *librtc.a:(.literal .literal.* .text .text.*) - *fill* 0x0000000040089d56 0x2 + *fill* 0x000000004008ae66 0x2 .text.coex_bt_high_prio - 0x0000000040089d58 0x127 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + 0x000000004008ae68 0x127 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) 0x137 (size before relaxing) - 0x0000000040089d84 coex_bt_high_prio - *fill* 0x0000000040089e7f 0x1 + 0x000000004008ae94 coex_bt_high_prio + *fill* 0x000000004008af8f 0x1 .text.temprature_sens_read - 0x0000000040089e80 0xbd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + 0x000000004008af90 0xbd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) 0xe1 (size before relaxing) - 0x0000000040089e90 temprature_sens_read - *fill* 0x0000000040089f3d 0x0 - *fill* 0x0000000040089f3d 0x0 + 0x000000004008afa0 temprature_sens_read + *fill* 0x000000004008b04d 0x0 + *fill* 0x000000004008b04d 0x0 *libpp.a:(.wifi0iram .wifi0iram.*) - *fill* 0x0000000040089f3d 0x3 - .wifi0iram.12 0x0000000040089f40 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000004008b04d 0x3 + .wifi0iram.12 0x000000004008b050 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x97 (size before relaxing) - *fill* 0x0000000040089fb8 0x0 - .wifi0iram.2 0x0000000040089fb8 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000004008b0c8 0x0 + .wifi0iram.2 0x000000004008b0c8 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x15 (size before relaxing) - 0x0000000040089fb8 GetAccess - *fill* 0x0000000040089fc9 0x3 - .wifi0iram.3 0x0000000040089fcc 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000004008b0c8 GetAccess + *fill* 0x000000004008b0d9 0x3 + .wifi0iram.3 0x000000004008b0dc 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0xc8 (size before relaxing) - 0x0000000040089fcc lmacRecycleMPDU - .wifi0iram.9 0x000000004008a060 0x5d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000004008b0dc lmacRecycleMPDU + .wifi0iram.9 0x000000004008b170 0x5d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x6d (size before relaxing) - 0x000000004008a060 lmacMSDUAged - *fill* 0x000000004008a0bd 0x3 - .wifi0iram.11 0x000000004008a0c0 0x1eb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000004008b170 lmacMSDUAged + *fill* 0x000000004008b1cd 0x3 + .wifi0iram.11 0x000000004008b1d0 0x1eb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x21b (size before relaxing) - 0x000000004008a0d4 lmacTxFrame - *fill* 0x000000004008a2ab 0x1 - .wifi0iram.4 0x000000004008a2ac 0x2d2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000004008b1e4 lmacTxFrame + *fill* 0x000000004008b3bb 0x1 + .wifi0iram.4 0x000000004008b3bc 0x2d2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x30e (size before relaxing) - *fill* 0x000000004008a57e 0x2 - .wifi0iram.13 0x000000004008a580 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000004008b68e 0x2 + .wifi0iram.13 0x000000004008b690 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x20 (size before relaxing) - 0x000000004008a580 is_lmac_idle - .wifi0iram.7 0x000000004008a59c 0xb7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008b690 is_lmac_idle + .wifi0iram.7 0x000000004008b6ac 0xb7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0xc3 (size before relaxing) - 0x000000004008a59c ppTxProtoProc - *fill* 0x000000004008a653 0x1 - .wifi0iram.23 0x000000004008a654 0x1a1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008b6ac ppTxProtoProc + *fill* 0x000000004008b763 0x1 + .wifi0iram.23 0x000000004008b764 0x1a1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x1a5 (size before relaxing) - 0x000000004008a658 ppSearchTxQueue - *fill* 0x000000004008a7f5 0x3 - .wifi0iram.22 0x000000004008a7f8 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008b768 ppSearchTxQueue + *fill* 0x000000004008b905 0x3 + .wifi0iram.22 0x000000004008b908 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x134 (size before relaxing) - 0x000000004008a800 ppSearchTxframe - .wifi0iram.24 0x000000004008a918 0x1e2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008b910 ppSearchTxframe + .wifi0iram.24 0x000000004008ba28 0x1e2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x206 (size before relaxing) - 0x000000004008a924 ppMapTxQueue - *fill* 0x000000004008aafa 0x2 - .wifi0iram.26 0x000000004008aafc 0x138 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008ba34 ppMapTxQueue + *fill* 0x000000004008bc0a 0x2 + .wifi0iram.26 0x000000004008bc0c 0x134 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x158 (size before relaxing) - 0x000000004008ab14 ppProcTxSecFrame - .wifi0iram.27 0x000000004008ac34 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008bc20 ppProcTxSecFrame + .wifi0iram.27 0x000000004008bd40 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x6c (size before relaxing) - 0x000000004008ac40 ppCalFrameTimes - .wifi0iram.18 0x000000004008ac9c 0x5e5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008bd4c ppCalFrameTimes + .wifi0iram.18 0x000000004008bda8 0x5e5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x629 (size before relaxing) - 0x000000004008acb0 ppCalTxAMPDULength - *fill* 0x000000004008b281 0x3 - .wifi0iram.10 0x000000004008b284 0x232 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008bdbc ppCalTxAMPDULength + *fill* 0x000000004008c38d 0x3 + .wifi0iram.10 0x000000004008c390 0x232 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x276 (size before relaxing) - 0x000000004008b290 ppProcessTxQ - *fill* 0x000000004008b4b6 0x2 - .wifi0iram.9 0x000000004008b4b8 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008c39c ppProcessTxQ + *fill* 0x000000004008c5c2 0x2 + .wifi0iram.9 0x000000004008c5c4 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x46 (size before relaxing) - 0x000000004008b4c0 ppProcessAllTxQ - *fill* 0x000000004008b4fa 0x2 - .wifi0iram.19 0x000000004008b4fc 0x587 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008c5cc ppProcessAllTxQ + *fill* 0x000000004008c606 0x2 + .wifi0iram.19 0x000000004008c608 0x587 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x606 (size before relaxing) - 0x000000004008b508 ppResortTxAMPDU - *fill* 0x000000004008ba83 0x1 - .wifi0iram.6 0x000000004008ba84 0x272 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008c614 ppResortTxAMPDU + *fill* 0x000000004008cb8f 0x1 + .wifi0iram.6 0x000000004008cb90 0x272 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x2ba (size before relaxing) - 0x000000004008babc ppTask - *fill* 0x000000004008bcf6 0x2 - .wifi0iram.8 0x000000004008bcf8 0x27e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008cbc8 ppTask + *fill* 0x000000004008ce02 0x2 + .wifi0iram.8 0x000000004008ce04 0x27e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x2ee (size before relaxing) - 0x000000004008bd04 ppTxPkt - *fill* 0x000000004008bf76 0x2 - .wifi0iram.2 0x000000004008bf78 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004008ce10 ppTxPkt + *fill* 0x000000004008d082 0x2 + .wifi0iram.2 0x000000004008d084 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0xe2 (size before relaxing) - 0x000000004008bf7c rcUpdateTxDone - *fill* 0x000000004008c04e 0x2 - .wifi0iram.3 0x000000004008c050 0x90a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004008d088 rcUpdateTxDone + *fill* 0x000000004008d15a 0x2 + .wifi0iram.3 0x000000004008d15c 0x90a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x982 (size before relaxing) - 0x000000004008c080 rcUpdateTxDoneAmpdu2 - *fill* 0x000000004008c95a 0x2 - .wifi0iram.4 0x000000004008c95c 0x45b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004008d18c rcUpdateTxDoneAmpdu2 + *fill* 0x000000004008da66 0x2 + .wifi0iram.4 0x000000004008da68 0x45b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x477 (size before relaxing) - 0x000000004008c990 rcGetSched - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x0 - *fill* 0x000000004008cdb7 0x1 - .wifi0iram.5 0x000000004008cdb8 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - 0x000000004008cdb8 trc_isTxAmpduOperational - *fill* 0x000000004008cdca 0x2 - .wifi0iram.6 0x000000004008cdcc 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - 0x000000004008cdcc trc_tid_isTxAmpduOperational + 0x000000004008da9c rcGetSched + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x0 + *fill* 0x000000004008dec3 0x1 + .wifi0iram.5 0x000000004008dec4 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004008dec4 trc_isTxAmpduOperational + *fill* 0x000000004008ded6 0x2 + .wifi0iram.6 0x000000004008ded8 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004008ded8 trc_tid_isTxAmpduOperational *libpp.a:(.wifirxiram .wifirxiram.*) - *fill* 0x000000004008cde3 0x1 - .wifirxiram.3 0x000000004008cde4 0x344 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + *fill* 0x000000004008deef 0x1 + .wifirxiram.3 0x000000004008def0 0x344 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) 0x36c (size before relaxing) - 0x000000004008ce04 esf_buf_alloc - .wifirxiram.4 0x000000004008d128 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x000000004008df10 esf_buf_alloc + .wifirxiram.4 0x000000004008e234 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) 0xfc (size before relaxing) - 0x000000004008d130 esf_buf_recycle - .wifirxiram.4 0x000000004008d208 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004008e23c esf_buf_recycle + .wifirxiram.4 0x000000004008e314 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x6e (size before relaxing) - *fill* 0x000000004008d26e 0x2 - .wifirxiram.3 0x000000004008d270 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + *fill* 0x000000004008e37a 0x2 + .wifirxiram.3 0x000000004008e37c 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x32 (size before relaxing) - 0x000000004008d274 pm_sleep_for - *fill* 0x000000004008d29a 0x2 - .wifirxiram.5 0x000000004008d29c 0xfb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004008e380 pm_sleep_for + *fill* 0x000000004008e3a6 0x2 + .wifirxiram.5 0x000000004008e3a8 0xfb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x107 (size before relaxing) - 0x000000004008d2ac pm_dream - *fill* 0x000000004008d397 0x1 - .wifirxiram.6 0x000000004008d398 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004008e3b8 pm_dream + *fill* 0x000000004008e4a3 0x1 + .wifirxiram.6 0x000000004008e4a4 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x30 (size before relaxing) - 0x000000004008d398 pm_check_state - *fill* 0x000000004008d3bd 0x3 - .wifirxiram.7 0x000000004008d3c0 0x6b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004008e4a4 pm_check_state + *fill* 0x000000004008e4c9 0x3 + .wifirxiram.7 0x000000004008e4cc 0x6b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x82 (size before relaxing) - 0x000000004008d3c4 pm_rx_data_process - *fill* 0x000000004008d42b 0x1 - .wifirxiram.8 0x000000004008d42c 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004008e4d0 pm_rx_data_process + *fill* 0x000000004008e537 0x1 + .wifirxiram.8 0x000000004008e538 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x3f (size before relaxing) - 0x000000004008d42c pm_on_data_rx - *fill* 0x000000004008d457 0x1 - .wifirxiram.5 0x000000004008d458 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008e538 pm_on_data_rx + *fill* 0x000000004008e563 0x1 + .wifirxiram.5 0x000000004008e564 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x36 (size before relaxing) - 0x000000004008d458 ppProcessRxPktHdr - *fill* 0x000000004008d486 0x2 + 0x000000004008e564 ppProcessRxPktHdr + *fill* 0x000000004008e592 0x2 .wifirxiram.11 - 0x000000004008d488 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008e594 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x122 (size before relaxing) - 0x000000004008d498 ppRxProtoProc - *fill* 0x000000004008d592 0x2 + 0x000000004008e5a4 ppRxProtoProc + *fill* 0x000000004008e69e 0x2 .wifirxiram.20 - 0x000000004008d594 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008e6a0 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x3f (size before relaxing) - 0x000000004008d594 ppEnqueueRxq - *fill* 0x000000004008d5cb 0x1 + 0x000000004008e6a0 ppEnqueueRxq + *fill* 0x000000004008e6d7 0x1 .wifirxiram.21 - 0x000000004008d5cc 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008e6d8 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x64 (size before relaxing) - 0x000000004008d5cc ppDequeueRxq_Locked + 0x000000004008e6d8 ppDequeueRxq_Locked .wifirxiram.13 - 0x000000004008d620 0x835 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004008e72c 0x835 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x915 (size before relaxing) - 0x000000004008d638 ppRxPkt - *fill* 0x000000004008de55 0x3 - .wifirxiram.7 0x000000004008de58 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004008e744 ppRxPkt + *fill* 0x000000004008ef61 0x3 + .wifirxiram.7 0x000000004008ef64 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x64 (size before relaxing) - 0x000000004008de60 rc_get_trc + 0x000000004008ef6c rc_get_trc .wifirxiram.13 - 0x000000004008deb8 0x27d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004008efc4 0x27d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x2c1 (size before relaxing) - 0x000000004008dedc wDev_Rxbuf_Init - *fill* 0x000000004008e135 0x3 + 0x000000004008efe8 wDev_Rxbuf_Init + *fill* 0x000000004008f241 0x3 .wifirxiram.21 - 0x000000004008e138 0x1ac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004008f244 0x1ac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x1d8 (size before relaxing) - 0x000000004008e15c wDev_AppendRxBlocks + 0x000000004008f268 wDev_AppendRxBlocks .wifirxiram.12 - 0x000000004008e2e4 0xf36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004008f3f0 0xf36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x103e (size before relaxing) - 0x000000004008e32c wdevProcessRxSucDataAll - *fill* 0x000000004008f21a 0x2 + 0x000000004008f438 wdevProcessRxSucDataAll + *fill* 0x0000000040090326 0x2 .wifirxiram.22 - 0x000000004008f21c 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x0000000040090328 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x98 (size before relaxing) - 0x000000004008f228 wDevCheckBlockError - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 - *fill* 0x000000004008f29c 0x0 + 0x0000000040090334 wDevCheckBlockError + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 + *fill* 0x00000000400903a8 0x0 *libnet80211.a:(.wifi0iram .wifi0iram.*) - .wifi0iram.2 0x000000004008f29c 0xd33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.2 0x00000000400903a8 0xd2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0xdf3 (size before relaxing) - 0x000000004008f300 ieee80211_output_process - *fill* 0x000000004008ffcf 0x1 - .wifi0iram.2 0x000000004008ffd0 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) - 0x000000004008ffd4 chm_is_at_home_channel - *fill* 0x000000004008ffee 0x2 - .wifi0iram.3 0x000000004008fff0 0x88 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040090408 ieee80211_output_process + *fill* 0x00000000400910d7 0x1 + .wifi0iram.2 0x00000000400910d8 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x00000000400910dc chm_is_at_home_channel + *fill* 0x00000000400910f6 0x2 + .wifi0iram.3 0x00000000400910f8 0x88 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x98 (size before relaxing) - 0x0000000040090000 cnx_node_search - .wifi0iram.4 0x0000000040090078 0x59 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040091108 cnx_node_search + .wifi0iram.4 0x0000000040091180 0x59 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x71 (size before relaxing) - 0x000000004009007c cnx_node_is_existing - *fill* 0x00000000400900d1 0x0 - *fill* 0x00000000400900d1 0x0 + 0x0000000040091184 cnx_node_is_existing + *fill* 0x00000000400911d9 0x0 + *fill* 0x00000000400911d9 0x0 *libnet80211.a:(.wifirxiram .wifirxiram.*) - *fill* 0x00000000400900d1 0x3 - .wifirxiram.2 0x00000000400900d4 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + *fill* 0x00000000400911d9 0x3 + .wifirxiram.2 0x00000000400911dc 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x78 (size before relaxing) - .wifirxiram.4 0x000000004009013c 0xee /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.4 0x0000000040091244 0xee /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x10e (size before relaxing) - *fill* 0x000000004009022a 0x2 - .wifirxiram.5 0x000000004009022c 0x179 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + *fill* 0x0000000040091332 0x2 + .wifirxiram.5 0x0000000040091334 0x179 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x199 (size before relaxing) - *fill* 0x00000000400903a5 0x3 - .wifirxiram.6 0x00000000400903a8 0x360 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + *fill* 0x00000000400914ad 0x3 + .wifirxiram.6 0x00000000400914b0 0x360 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x39c (size before relaxing) - 0x00000000400903cc ieee80211_ampdu_reorder - .wifirxiram.2 0x0000000040090708 0x182e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x00000000400914d4 ieee80211_ampdu_reorder + .wifirxiram.2 0x0000000040091810 0x182e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x1952 (size before relaxing) - 0x0000000040090848 sta_input - *fill* 0x0000000040091f36 0x2 - .wifirxiram.3 0x0000000040091f38 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x0000000040091950 sta_input + *fill* 0x000000004009303e 0x2 + .wifirxiram.3 0x0000000040093040 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x20 (size before relaxing) - 0x0000000040091f38 sta_rx_cb - *fill* 0x0000000040091f50 0x0 - *fill* 0x0000000040091f50 0x0 - *fill* 0x0000000040091f50 0x0 - *fill* 0x0000000040091f50 0x0 - *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) - .text.esp_log_early_timestamp - 0x0000000040091f50 0x1e esp-idf/log/liblog.a(log_freertos.c.obj) - 0x0000000040091f50 esp_log_early_timestamp - *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) - *fill* 0x0000000040091f6e 0x2 - .text.esp_log_impl_unlock - 0x0000000040091f70 0x16 esp-idf/log/liblog.a(log_freertos.c.obj) - 0x0000000040091f70 esp_log_impl_unlock - *fill* 0x0000000040091f86 0x0 - *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) - *fill* 0x0000000040091f86 0x2 - .text.esp_log_write - 0x0000000040091f88 0x26 esp-idf/log/liblog.a(log.c.obj) - 0x0000000040091f88 esp_log_write - *fill* 0x0000000040091fae 0x0 - *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) - *fill* 0x0000000040091fae 0x2 - .text.esp_log_impl_lock - 0x0000000040091fb0 0x28 esp-idf/log/liblog.a(log_freertos.c.obj) - 0x2c (size before relaxing) - 0x0000000040091fb0 esp_log_impl_lock - *fill* 0x0000000040091fd8 0x0 + 0x0000000040093040 sta_rx_cb + *fill* 0x0000000040093058 0x0 + *fill* 0x0000000040093058 0x0 + *fill* 0x0000000040093058 0x0 + *fill* 0x0000000040093058 0x0 *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) .text.esp_log_timestamp - 0x0000000040091fd8 0x4f esp-idf/log/liblog.a(log_freertos.c.obj) + 0x0000000040093058 0x4f esp-idf/log/liblog.a(log_freertos.c.obj) 0x5b (size before relaxing) - 0x0000000040091fd8 esp_log_timestamp + 0x0000000040093058 esp_log_timestamp + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *fill* 0x00000000400930a7 0x1 + .text.esp_log_early_timestamp + 0x00000000400930a8 0x1e esp-idf/log/liblog.a(log_freertos.c.obj) + 0x00000000400930a8 esp_log_early_timestamp + *fill* 0x00000000400930c6 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *fill* 0x00000000400930c6 0x2 + .text.esp_log_impl_lock + 0x00000000400930c8 0x28 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x2c (size before relaxing) + 0x00000000400930c8 esp_log_impl_lock + *fill* 0x00000000400930f0 0x0 *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) - *fill* 0x0000000040092027 0x1 .text.esp_log_impl_lock_timeout - 0x0000000040092028 0x31 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x00000000400930f0 0x31 esp-idf/log/liblog.a(log_freertos.c.obj) 0x35 (size before relaxing) - 0x0000000040092028 esp_log_impl_lock_timeout - *fill* 0x0000000040092059 0x0 - *libheap.a:multi_heap_poisoning.*(.literal .literal.* .text .text.*) + 0x00000000400930f0 esp_log_impl_lock_timeout + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + *fill* 0x0000000040093121 0x3 + .text.esp_log_impl_unlock + 0x0000000040093124 0x16 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x0000000040093124 esp_log_impl_unlock + *fill* 0x000000004009313a 0x0 + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + *fill* 0x000000004009313a 0x2 + .text.esp_log_write + 0x000000004009313c 0x26 esp-idf/log/liblog.a(log.c.obj) + 0x000000004009313c esp_log_write + *fill* 0x0000000040093162 0x0 *libheap.a:multi_heap.*(.literal .literal.* .text .text.*) - *fill* 0x0000000040092059 0x3 + *fill* 0x0000000040093162 0x2 .text.get_prev_free_block - 0x000000004009205c 0x6f esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040093164 0x6f esp-idf/heap/libheap.a(multi_heap.c.obj) 0x7a (size before relaxing) - *fill* 0x00000000400920cb 0x1 + *fill* 0x00000000400931d3 0x1 .text.split_if_necessary - 0x00000000400920cc 0x137 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x00000000400931d4 0x137 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x143 (size before relaxing) - *fill* 0x0000000040092203 0x1 + *fill* 0x000000004009330b 0x1 .text.assert_valid_block - 0x0000000040092204 0xb0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004009330c 0xb0 esp-idf/heap/libheap.a(multi_heap.c.obj) 0xb4 (size before relaxing) .text.merge_adjacent - 0x00000000400922b4 0x122 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x00000000400933bc 0x122 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x132 (size before relaxing) - *fill* 0x00000000400923d6 0x2 + *fill* 0x00000000400934de 0x2 .text.multi_heap_get_allocated_size_impl - 0x00000000400923d8 0x39 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x00000000400934e0 0x39 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x3d (size before relaxing) - 0x00000000400923d8 multi_heap_get_allocated_size - 0x00000000400923d8 multi_heap_get_allocated_size_impl - *fill* 0x0000000040092411 0x3 + 0x00000000400934e0 multi_heap_get_allocated_size + 0x00000000400934e0 multi_heap_get_allocated_size_impl + *fill* 0x0000000040093519 0x3 .text.multi_heap_malloc_impl - 0x0000000040092414 0x119 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004009351c 0x119 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x129 (size before relaxing) - 0x0000000040092414 multi_heap_malloc_impl - 0x0000000040092414 multi_heap_malloc - *fill* 0x000000004009252d 0x3 + 0x000000004009351c multi_heap_malloc_impl + 0x000000004009351c multi_heap_malloc + *fill* 0x0000000040093635 0x3 .text.multi_heap_free_impl - 0x0000000040092530 0x13c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040093638 0x13c esp-idf/heap/libheap.a(multi_heap.c.obj) 0x154 (size before relaxing) - 0x0000000040092530 multi_heap_free - 0x0000000040092530 multi_heap_free_impl + 0x0000000040093638 multi_heap_free + 0x0000000040093638 multi_heap_free_impl .text.multi_heap_realloc_impl - 0x000000004009266c 0x240 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040093774 0x240 esp-idf/heap/libheap.a(multi_heap.c.obj) 0x254 (size before relaxing) - 0x000000004009266c multi_heap_realloc_impl - 0x000000004009266c multi_heap_realloc + 0x0000000040093774 multi_heap_realloc_impl + 0x0000000040093774 multi_heap_realloc .text.multi_heap_get_info_impl - 0x00000000400928ac 0xe6 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x00000000400939b4 0xe6 esp-idf/heap/libheap.a(multi_heap.c.obj) 0xee (size before relaxing) - 0x00000000400928ac multi_heap_get_info - 0x00000000400928ac multi_heap_get_info_impl - *fill* 0x0000000040092992 0x0 - *fill* 0x0000000040092992 0x0 - *fill* 0x0000000040092992 0x0 - *fill* 0x0000000040092992 0x0 - *fill* 0x0000000040092992 0x2 + 0x00000000400939b4 multi_heap_get_info + 0x00000000400939b4 multi_heap_get_info_impl + *fill* 0x0000000040093a9a 0x0 + *fill* 0x0000000040093a9a 0x0 + *fill* 0x0000000040093a9a 0x0 + *fill* 0x0000000040093a9a 0x0 + *fill* 0x0000000040093a9a 0x2 .text.multi_heap_register_impl - 0x0000000040092994 0x60 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x0000000040092994 multi_heap_register_impl - 0x0000000040092994 multi_heap_register + 0x0000000040093a9c 0x60 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040093a9c multi_heap_register_impl + 0x0000000040093a9c multi_heap_register .text.multi_heap_set_lock - 0x00000000400929f4 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x00000000400929f4 multi_heap_set_lock - *fill* 0x00000000400929fb 0x0 - *fill* 0x00000000400929fb 0x1 + 0x0000000040093afc 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040093afc multi_heap_set_lock + *fill* 0x0000000040093b03 0x0 + *fill* 0x0000000040093b03 0x1 .text.multi_heap_free_size_impl - 0x00000000400929fc 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x00000000400929fc multi_heap_free_size_impl - 0x00000000400929fc multi_heap_free_size - *fill* 0x0000000040092a0a 0x2 + 0x0000000040093b04 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040093b04 multi_heap_free_size_impl + 0x0000000040093b04 multi_heap_free_size + *fill* 0x0000000040093b12 0x2 .text.multi_heap_minimum_free_size_impl - 0x0000000040092a0c 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x0000000040092a0c multi_heap_minimum_free_size - 0x0000000040092a0c multi_heap_minimum_free_size_impl - *fill* 0x0000000040092a1a 0x0 + 0x0000000040093b14 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040093b14 multi_heap_minimum_free_size + 0x0000000040093b14 multi_heap_minimum_free_size_impl + *fill* 0x0000000040093b22 0x0 + *libheap.a:multi_heap_poisoning.*(.literal .literal.* .text .text.*) *libesp_ringbuf.a:(.literal .literal.* .text .text.*) - *fill* 0x0000000040092a1a 0x2 + *fill* 0x0000000040093b22 0x2 .text.prvReturnItemByteBuf - 0x0000000040092a1c 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x0000000040092a5f 0x1 + 0x0000000040093b24 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040093b67 0x1 .text.prvGetItemByteBuf - 0x0000000040092a60 0xd7 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x0000000040092b37 0x1 + 0x0000000040093b68 0xd7 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040093c3f 0x1 .text.prvCheckItemFitsByteBuffer - 0x0000000040092b38 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x0000000040092b96 0x2 + 0x0000000040093c40 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040093c9e 0x2 .text.prvReturnItemDefault - 0x0000000040092b98 0x12e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x0000000040092cc6 0x2 + 0x0000000040093ca0 0x12e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040093dce 0x2 .text.prvGetItemDefault - 0x0000000040092cc8 0x12e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x0000000040092df6 0x2 + 0x0000000040093dd0 0x12e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040093efe 0x2 .text.prvAcquireItemNoSplit - 0x0000000040092df8 0xa0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040093f00 0xa0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .text.prvSendItemDoneNoSplit - 0x0000000040092e98 0x110 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040093fa0 0x110 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .text.prvCheckItemFitsDefault - 0x0000000040092fa8 0xa4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x00000000400940b0 0xa4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .text.prvGetFreeSize - 0x000000004009304c 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040094154 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .text.prvCopyItemByteBuf - 0x0000000040093084 0x7a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x00000000400930fe 0x2 + 0x000000004009418c 0x7a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040094206 0x2 .text.prvCopyItemAllowSplit - 0x0000000040093100 0xec esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040094208 0xec esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .text.prvCopyItemNoSplit - 0x00000000400931ec 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x00000000400942f4 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x26 (size before relaxing) - *fill* 0x000000004009320e 0x2 + *fill* 0x0000000040094316 0x2 .text.prvInitializeNewRingbuffer - 0x0000000040093210 0xbd esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040094318 0xbd esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0xc1 (size before relaxing) - *fill* 0x00000000400932cd 0x3 + *fill* 0x00000000400943d5 0x3 .text.prvReceiveGeneric - 0x00000000400932d0 0x12c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x00000000400943d8 0x12c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x138 (size before relaxing) .text.prvReceiveGenericFromISR - 0x00000000400933fc 0xd4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040094504 0xd4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0xdc (size before relaxing) .text.xRingbufferCreate - 0x00000000400934d0 0xb4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x00000000400945d8 0xb4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0xcc (size before relaxing) - 0x00000000400934d0 xRingbufferCreate + 0x00000000400945d8 xRingbufferCreate .text.xRingbufferSend - 0x0000000040093584 0xf8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000004009468c 0xf8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x108 (size before relaxing) - 0x0000000040093584 xRingbufferSend + 0x000000004009468c xRingbufferSend .text.xRingbufferSendFromISR - 0x000000004009367c 0xb8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040094784 0xb8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0xc0 (size before relaxing) - 0x000000004009367c xRingbufferSendFromISR + 0x0000000040094784 xRingbufferSendFromISR .text.xRingbufferReceive - 0x0000000040093734 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000004009483c 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x42 (size before relaxing) - 0x0000000040093734 xRingbufferReceive - *fill* 0x0000000040093772 0x2 + 0x000000004009483c xRingbufferReceive + *fill* 0x000000004009487a 0x2 .text.xRingbufferReceiveFromISR - 0x0000000040093774 0x3a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000004009487c 0x3a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x3e (size before relaxing) - 0x0000000040093774 xRingbufferReceiveFromISR - *fill* 0x00000000400937ae 0x2 + 0x000000004009487c xRingbufferReceiveFromISR + *fill* 0x00000000400948b6 0x2 .text.vRingbufferReturnItem - 0x00000000400937b0 0x52 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x00000000400948b8 0x52 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x5a (size before relaxing) - 0x00000000400937b0 vRingbufferReturnItem - *fill* 0x0000000040093802 0x2 + 0x00000000400948b8 vRingbufferReturnItem + *fill* 0x000000004009490a 0x2 .text.vRingbufferReturnItemFromISR - 0x0000000040093804 0x4e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000004009490c 0x4e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x56 (size before relaxing) - 0x0000000040093804 vRingbufferReturnItemFromISR - *fill* 0x0000000040093852 0x2 + 0x000000004009490c vRingbufferReturnItemFromISR + *fill* 0x000000004009495a 0x2 .text.vRingbufferDelete - 0x0000000040093854 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000004009495c 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x3b (size before relaxing) - 0x0000000040093854 vRingbufferDelete - *fill* 0x0000000040093883 0x1 + 0x000000004009495c vRingbufferDelete + *fill* 0x000000004009498b 0x1 .text.xRingbufferGetMaxItemSize - 0x0000000040093884 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x0000000040093884 xRingbufferGetMaxItemSize - *fill* 0x00000000400938a0 0x0 + 0x000000004009498c 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000004009498c xRingbufferGetMaxItemSize + *fill* 0x00000000400949a8 0x0 .text.prvCheckItemAvail - 0x00000000400938a0 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x00000000400949a8 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .text.prvGetCurMaxSizeNoSplit - 0x00000000400938d8 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x0000000040093916 0x2 + 0x00000000400949e0 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040094a1e 0x2 .text.prvGetCurMaxSizeAllowSplit - 0x0000000040093918 0x50 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040094a20 0x50 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .text.prvGetCurMaxSizeByteBuf - 0x0000000040093968 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 - *fill* 0x0000000040093988 0x0 + 0x0000000040094a70 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 + *fill* 0x0000000040094a90 0x0 *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) - .text 0x0000000040093988 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) - 0x0000000040093988 __xtensa_libgcc_window_spill - 0x00000000400939a8 __xtensa_nonlocal_goto - 0x00000000400939e8 __xtensa_sync_caches + .text 0x0000000040094a90 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + 0x0000000040094a90 __xtensa_libgcc_window_spill + 0x0000000040094ab0 __xtensa_nonlocal_goto + 0x0000000040094af0 __xtensa_sync_caches *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) *libgcov.a:(.literal .literal.* .text .text.*) *lib_esp_common.a:esp_err.*(.literal .literal.* .text .text.*) *libfreertos.a:(.literal .literal.* .text .text.*) .text.vPortTaskWrapper - 0x00000000400939f0 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094af8 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) 0x32 (size before relaxing) - *fill* 0x0000000040093a16 0x2 + *fill* 0x0000000040094b1e 0x2 .text.pxPortInitialiseStack - 0x0000000040093a18 0x86 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040093a18 pxPortInitialiseStack - *fill* 0x0000000040093a9e 0x2 + 0x0000000040094b20 0x86 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094b20 pxPortInitialiseStack + *fill* 0x0000000040094ba6 0x2 .text.xPortStartScheduler - 0x0000000040093aa0 0x23 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094ba8 0x23 esp-idf/freertos/libfreertos.a(port.c.obj) 0x2f (size before relaxing) - 0x0000000040093aa0 xPortStartScheduler - *fill* 0x0000000040093ac3 0x1 + 0x0000000040094ba8 xPortStartScheduler + *fill* 0x0000000040094bcb 0x1 .text.xPortSysTickHandler - 0x0000000040093ac4 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094bcc 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) 0x16 (size before relaxing) - 0x0000000040093ac4 xPortSysTickHandler - *fill* 0x0000000040093ad4 0x0 + 0x0000000040094bcc xPortSysTickHandler + *fill* 0x0000000040094bdc 0x0 .text.vPortYieldOtherCore - 0x0000000040093ad4 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094bdc 0xa esp-idf/freertos/libfreertos.a(port.c.obj) 0xe (size before relaxing) - 0x0000000040093ad4 vPortYieldOtherCore - *fill* 0x0000000040093ade 0x2 + 0x0000000040094bdc vPortYieldOtherCore + *fill* 0x0000000040094be6 0x2 .text.vPortReleaseTaskMPUSettings - 0x0000000040093ae0 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094be8 0xa esp-idf/freertos/libfreertos.a(port.c.obj) 0xe (size before relaxing) - 0x0000000040093ae0 vPortReleaseTaskMPUSettings - *fill* 0x0000000040093aea 0x2 + 0x0000000040094be8 vPortReleaseTaskMPUSettings + *fill* 0x0000000040094bf2 0x2 .text.xPortInIsrContext - 0x0000000040093aec 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040093aec xPortInIsrContext + 0x0000000040094bf4 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094bf4 xPortInIsrContext .text.vPortSetStackWatchpoint - 0x0000000040093b14 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040093b14 vPortSetStackWatchpoint - *fill* 0x0000000040093b2e 0x2 + 0x0000000040094c1c 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094c1c vPortSetStackWatchpoint + *fill* 0x0000000040094c36 0x2 .text.vPortEnterCritical - 0x0000000040093b30 0xba esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040093b30 vPortEnterCritical - *fill* 0x0000000040093bea 0x2 + 0x0000000040094c38 0xba esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094c38 vPortEnterCritical + *fill* 0x0000000040094cf2 0x2 .text.vPortExitCritical - 0x0000000040093bec 0x8a esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040093bec vPortExitCritical - *fill* 0x0000000040093c76 0x2 + 0x0000000040094cf4 0x8a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094cf4 vPortExitCritical + *fill* 0x0000000040094d7e 0x2 .text.vApplicationStackOverflowHook - 0x0000000040093c78 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094d80 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) 0x40 (size before relaxing) - 0x0000000040093c78 vApplicationStackOverflowHook - .text 0x0000000040093cb4 0x1d0 esp-idf/freertos/libfreertos.a(portasm.S.obj) - 0x0000000040093cb4 _frxt_setup_switch - 0x0000000040093ccc _frxt_int_enter - 0x0000000040093d14 _frxt_int_exit - 0x0000000040093d64 _frxt_timer_int - 0x0000000040093d8c _frxt_tick_timer_init - 0x0000000040093da4 _frxt_dispatch - 0x0000000040093dec vPortYield - 0x0000000040093e38 vPortYieldFromInt - 0x0000000040093e58 _frxt_task_coproc_state - .text 0x0000000040093e84 0x16b esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) - 0x0000000040093e84 _xt_context_save - 0x0000000040093f2c _xt_context_restore - 0x0000000040093f70 _xt_coproc_init - 0x0000000040093f84 _xt_coproc_release - 0x0000000040093fb0 _xt_coproc_savecs - 0x0000000040093fd0 _xt_coproc_restorecs - *fill* 0x0000000040093fef 0x1 + 0x0000000040094d80 vApplicationStackOverflowHook + .text 0x0000000040094dbc 0x1d0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x0000000040094dbc _frxt_setup_switch + 0x0000000040094dd4 _frxt_int_enter + 0x0000000040094e1c _frxt_int_exit + 0x0000000040094e6c _frxt_timer_int + 0x0000000040094e94 _frxt_tick_timer_init + 0x0000000040094eac _frxt_dispatch + 0x0000000040094ef4 vPortYield + 0x0000000040094f40 vPortYieldFromInt + 0x0000000040094f60 _frxt_task_coproc_state + .text 0x0000000040094f8c 0x16b esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x0000000040094f8c _xt_context_save + 0x0000000040095034 _xt_context_restore + 0x0000000040095078 _xt_coproc_init + 0x000000004009508c _xt_coproc_release + 0x00000000400950b8 _xt_coproc_savecs + 0x00000000400950d8 _xt_coproc_restorecs + *fill* 0x00000000400950f7 0x1 .text._xt_tick_divisor_init - 0x0000000040093ff0 0x1c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x00000000400950f8 0x1c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) 0x1f (size before relaxing) - 0x0000000040093ff0 _xt_tick_divisor_init - *fill* 0x000000004009400c 0x0 + 0x00000000400950f8 _xt_tick_divisor_init + *fill* 0x0000000040095114 0x0 .text.xt_unhandled_interrupt - 0x000000004009400c 0x16 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) - 0x000000004009400c xt_unhandled_interrupt - *fill* 0x0000000040094022 0x2 + 0x0000000040095114 0x16 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x0000000040095114 xt_unhandled_interrupt + *fill* 0x000000004009512a 0x2 .text.xt_set_interrupt_handler - 0x0000000040094024 0x4f esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) - 0x0000000040094024 xt_set_interrupt_handler - *fill* 0x0000000040094073 0x1 + 0x000000004009512c 0x4f esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x000000004009512c xt_set_interrupt_handler + *fill* 0x000000004009517b 0x1 .text.prvIsQueueFull - 0x0000000040094074 0x2a esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000004009409e 0x2 + 0x000000004009517c 0x2a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x00000000400951a6 0x2 .text.prvCopyDataToQueue - 0x00000000400940a0 0xa2 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x0000000040094142 0x2 + 0x00000000400951a8 0xa2 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000004009524a 0x2 .text.prvNotifyQueueSetContainer - 0x0000000040094144 0x79 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x000000004009524c 0x79 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x80 (size before relaxing) - *fill* 0x00000000400941bd 0x3 + *fill* 0x00000000400952c5 0x3 .text.prvCopyDataFromQueue - 0x00000000400941c0 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000400952c8 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) .text.xQueueGenericReset - 0x00000000400941e4 0xa2 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000400952ec 0xa2 esp-idf/freertos/libfreertos.a(queue.c.obj) 0xaa (size before relaxing) - 0x00000000400941e4 xQueueGenericReset - *fill* 0x0000000040094286 0x2 + 0x00000000400952ec xQueueGenericReset + *fill* 0x000000004009538e 0x2 .text.prvInitialiseNewQueue - 0x0000000040094288 0x22 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095390 0x22 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x26 (size before relaxing) - *fill* 0x00000000400942aa 0x2 + *fill* 0x00000000400953b2 0x2 .text.xQueueGenericCreate - 0x00000000400942ac 0x43 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000400953b4 0x43 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x47 (size before relaxing) - 0x00000000400942ac xQueueGenericCreate - *fill* 0x00000000400942ef 0x1 + 0x00000000400953b4 xQueueGenericCreate + *fill* 0x00000000400953f7 0x1 .text.xQueueGetMutexHolder - 0x00000000400942f0 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x00000000400942f0 xQueueGetMutexHolder - *fill* 0x0000000040094313 0x1 + 0x00000000400953f8 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000400953f8 xQueueGetMutexHolder + *fill* 0x000000004009541b 0x1 .text.xQueueCreateCountingSemaphore - 0x0000000040094314 0x58 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x0000000040094314 xQueueCreateCountingSemaphore + 0x000000004009541c 0x58 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x000000004009541c xQueueCreateCountingSemaphore .text.xQueueGenericSend - 0x000000004009436c 0x168 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095474 0x168 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x198 (size before relaxing) - 0x000000004009436c xQueueGenericSend + 0x0000000040095474 xQueueGenericSend .text.prvInitialiseMutex - 0x00000000400944d4 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000400955dc 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) 0x3e (size before relaxing) - *fill* 0x000000004009450e 0x2 + *fill* 0x0000000040095616 0x2 .text.xQueueCreateMutex - 0x0000000040094510 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095618 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x1a (size before relaxing) - 0x0000000040094510 xQueueCreateMutex - *fill* 0x0000000040094526 0x2 + 0x0000000040095618 xQueueCreateMutex + *fill* 0x000000004009562e 0x2 .text.xQueueGiveMutexRecursive - 0x0000000040094528 0x44 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095630 0x44 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x48 (size before relaxing) - 0x0000000040094528 xQueueGiveMutexRecursive + 0x0000000040095630 xQueueGiveMutexRecursive .text.xQueueGenericSendFromISR - 0x000000004009456c 0xce esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095674 0xce esp-idf/freertos/libfreertos.a(queue.c.obj) 0xd6 (size before relaxing) - 0x000000004009456c xQueueGenericSendFromISR - *fill* 0x000000004009463a 0x2 + 0x0000000040095674 xQueueGenericSendFromISR + *fill* 0x0000000040095742 0x2 .text.xQueueGiveFromISR - 0x000000004009463c 0xb2 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095744 0xb2 esp-idf/freertos/libfreertos.a(queue.c.obj) 0xb6 (size before relaxing) - 0x000000004009463c xQueueGiveFromISR - *fill* 0x00000000400946ee 0x2 + 0x0000000040095744 xQueueGiveFromISR + *fill* 0x00000000400957f6 0x2 .text.xQueueGenericReceive - 0x00000000400946f0 0x134 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000400957f8 0x134 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x168 (size before relaxing) - 0x00000000400946f0 xQueueGenericReceive + 0x00000000400957f8 xQueueGenericReceive .text.xQueueTakeMutexRecursive - 0x0000000040094824 0x49 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x0000000040094824 xQueueTakeMutexRecursive - *fill* 0x000000004009486d 0x3 + 0x000000004009592c 0x49 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x000000004009592c xQueueTakeMutexRecursive + *fill* 0x0000000040095975 0x3 .text.xQueueReceiveFromISR - 0x0000000040094870 0x92 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095978 0x92 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x9a (size before relaxing) - 0x0000000040094870 xQueueReceiveFromISR - *fill* 0x0000000040094902 0x2 + 0x0000000040095978 xQueueReceiveFromISR + *fill* 0x0000000040095a0a 0x2 .text.uxQueueMessagesWaiting - 0x0000000040094904 0x2f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095a0c 0x2f esp-idf/freertos/libfreertos.a(queue.c.obj) 0x33 (size before relaxing) - 0x0000000040094904 uxQueueMessagesWaiting - *fill* 0x0000000040094933 0x1 + 0x0000000040095a0c uxQueueMessagesWaiting + *fill* 0x0000000040095a3b 0x1 .text.uxQueueSpacesAvailable - 0x0000000040094934 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095a3c 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x38 (size before relaxing) - 0x0000000040094934 uxQueueSpacesAvailable + 0x0000000040095a3c uxQueueSpacesAvailable .text.vQueueDelete - 0x0000000040094968 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095a70 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) 0x22 (size before relaxing) - 0x0000000040094968 vQueueDelete - *fill* 0x0000000040094987 0x1 + 0x0000000040095a70 vQueueDelete + *fill* 0x0000000040095a8f 0x1 .text.vQueueWaitForMessageRestricted - 0x0000000040094988 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040095a90 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x2a (size before relaxing) - 0x0000000040094988 vQueueWaitForMessageRestricted - *fill* 0x00000000400949ab 0x1 + 0x0000000040095a90 vQueueWaitForMessageRestricted + *fill* 0x0000000040095ab3 0x1 .text.prvListTaskWithinSingleList - 0x00000000400949ac 0x8b esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x0000000040094a37 0x1 + 0x0000000040095ab4 0x8b esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x0000000040095b3f 0x1 .text.prvResetNextTaskUnblockTime - 0x0000000040094a38 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095b40 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) .text.prvDeleteTLS - 0x0000000040094a6c 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x0000000040094aab 0x1 + 0x0000000040095b74 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x0000000040095bb3 0x1 .text.prvInitialiseNewTask - 0x0000000040094aac 0xc2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095bb4 0xc2 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0xce (size before relaxing) - *fill* 0x0000000040094b6e 0x2 + *fill* 0x0000000040095c76 0x2 .text.prvInitialiseTaskLists - 0x0000000040094b70 0x5a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095c78 0x5a esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x72 (size before relaxing) - *fill* 0x0000000040094bca 0x2 + *fill* 0x0000000040095cd2 0x2 .text.prvDeleteTCB - 0x0000000040094bcc 0x4b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095cd4 0x4b esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x57 (size before relaxing) - *fill* 0x0000000040094c17 0x1 + *fill* 0x0000000040095d1f 0x1 .text.prvCheckTasksWaitingTermination - 0x0000000040094c18 0xca esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095d20 0xca esp-idf/freertos/libfreertos.a(tasks.c.obj) 0xd2 (size before relaxing) - *fill* 0x0000000040094ce2 0x2 + *fill* 0x0000000040095dea 0x2 .text.prvAddCurrentTaskToDelayedList - 0x0000000040094ce4 0x6a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095dec 0x6a esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x6e (size before relaxing) - *fill* 0x0000000040094d4e 0x2 + *fill* 0x0000000040095e56 0x2 .text.prvIdleTask - 0x0000000040094d50 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095e58 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x12 (size before relaxing) - *fill* 0x0000000040094d5f 0x1 + *fill* 0x0000000040095e67 0x1 .text.prvWriteNameToBuffer - 0x0000000040094d60 0x2f esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x0000000040094d8f 0x1 + 0x0000000040095e68 0x2f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x0000000040095e97 0x1 .text.taskYIELD_OTHER_CORE - 0x0000000040094d90 0x54 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095e98 0x54 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x58 (size before relaxing) - 0x0000000040094d90 taskYIELD_OTHER_CORE + 0x0000000040095e98 taskYIELD_OTHER_CORE .text.prvAddNewTaskToReadyList - 0x0000000040094de4 0x16c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095eec 0x16c esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x17f (size before relaxing) - *fill* 0x0000000040094f50 0x0 + *fill* 0x0000000040096058 0x0 .text.xTaskCreatePinnedToCore - 0x0000000040094f50 0x69 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096058 0x69 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x79 (size before relaxing) - 0x0000000040094f50 xTaskCreatePinnedToCore - *fill* 0x0000000040094fb9 0x3 + 0x0000000040096058 xTaskCreatePinnedToCore + *fill* 0x00000000400960c1 0x3 .text.vTaskStartScheduler - 0x0000000040094fbc 0x7a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400960c4 0x7a esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x7e (size before relaxing) - 0x0000000040094fbc vTaskStartScheduler - *fill* 0x0000000040095036 0x2 + 0x00000000400960c4 vTaskStartScheduler + *fill* 0x000000004009613e 0x2 .text.vTaskSuspendAll - 0x0000000040095038 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095038 vTaskSuspendAll + 0x0000000040096140 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096140 vTaskSuspendAll .text.xTaskGetTickCount - 0x0000000040095060 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095060 xTaskGetTickCount - *fill* 0x000000004009506d 0x3 + 0x0000000040096168 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096168 xTaskGetTickCount + *fill* 0x0000000040096175 0x3 .text.xTaskGetTickCountFromISR - 0x0000000040095070 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095070 xTaskGetTickCountFromISR - *fill* 0x000000004009507d 0x3 + 0x0000000040096178 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096178 xTaskGetTickCountFromISR + *fill* 0x0000000040096185 0x3 .text.uxTaskGetNumberOfTasks - 0x0000000040095080 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095080 uxTaskGetNumberOfTasks - *fill* 0x000000004009508d 0x3 + 0x0000000040096188 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096188 uxTaskGetNumberOfTasks + *fill* 0x0000000040096195 0x3 .text.uxTaskGetSystemState - 0x0000000040095090 0xb4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096198 0xb4 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0xc7 (size before relaxing) - 0x0000000040095090 uxTaskGetSystemState - *fill* 0x0000000040095144 0x0 + 0x0000000040096198 uxTaskGetSystemState + *fill* 0x000000004009624c 0x0 .text.xTaskGetIdleTaskHandleForCPU - 0x0000000040095144 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095144 xTaskGetIdleTaskHandleForCPU - *fill* 0x0000000040095179 0x3 + 0x000000004009624c 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004009624c xTaskGetIdleTaskHandleForCPU + *fill* 0x0000000040096281 0x3 .text.xTaskIncrementTick - 0x000000004009517c 0x1aa esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096284 0x1aa esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x1b6 (size before relaxing) - 0x000000004009517c xTaskIncrementTick - *fill* 0x0000000040095326 0x2 + 0x0000000040096284 xTaskIncrementTick + *fill* 0x000000004009642e 0x2 .text.vTaskSwitchContext - 0x0000000040095328 0x3cc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096430 0x3cc esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x3d4 (size before relaxing) - 0x0000000040095328 vTaskSwitchContext + 0x0000000040096430 vTaskSwitchContext .text.vTaskPlaceOnEventList - 0x00000000400956f4 0x8b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400967fc 0x8b esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x9f (size before relaxing) - 0x00000000400956f4 vTaskPlaceOnEventList - *fill* 0x000000004009577f 0x1 + 0x00000000400967fc vTaskPlaceOnEventList + *fill* 0x0000000040096887 0x1 .text.vTaskPlaceOnUnorderedEventList - 0x0000000040095780 0xcf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096888 0xcf esp-idf/freertos/libfreertos.a(tasks.c.obj) 0xdf (size before relaxing) - 0x0000000040095780 vTaskPlaceOnUnorderedEventList - *fill* 0x000000004009584f 0x1 + 0x0000000040096888 vTaskPlaceOnUnorderedEventList + *fill* 0x0000000040096957 0x1 .text.vTaskPlaceOnEventListRestricted - 0x0000000040095850 0x6b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096958 0x6b esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x7b (size before relaxing) - 0x0000000040095850 vTaskPlaceOnEventListRestricted - *fill* 0x00000000400958bb 0x1 + 0x0000000040096958 vTaskPlaceOnEventListRestricted + *fill* 0x00000000400969c3 0x1 .text.xTaskRemoveFromEventList - 0x00000000400958bc 0x143 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400969c4 0x143 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x14a (size before relaxing) - 0x00000000400958bc xTaskRemoveFromEventList - *fill* 0x00000000400959ff 0x1 + 0x00000000400969c4 xTaskRemoveFromEventList + *fill* 0x0000000040096b07 0x1 .text.xTaskRemoveFromUnorderedEventList - 0x0000000040095a00 0xec esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096b08 0xec esp-idf/freertos/libfreertos.a(tasks.c.obj) 0xfb (size before relaxing) - 0x0000000040095a00 xTaskRemoveFromUnorderedEventList - *fill* 0x0000000040095aec 0x0 + 0x0000000040096b08 xTaskRemoveFromUnorderedEventList + *fill* 0x0000000040096bf4 0x0 .text.vTaskSetTimeOutState - 0x0000000040095aec 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095aec vTaskSetTimeOutState - *fill* 0x0000000040095b1a 0x2 + 0x0000000040096bf4 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096bf4 vTaskSetTimeOutState + *fill* 0x0000000040096c22 0x2 .text.xTaskCheckForTimeOut - 0x0000000040095b1c 0x83 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096c24 0x83 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x8a (size before relaxing) - 0x0000000040095b1c xTaskCheckForTimeOut - *fill* 0x0000000040095b9f 0x1 + 0x0000000040096c24 xTaskCheckForTimeOut + *fill* 0x0000000040096ca7 0x1 .text.xTaskGetCurrentTaskHandle - 0x0000000040095ba0 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095ba0 xTaskGetCurrentTaskHandle - *fill* 0x0000000040095bc2 0x2 + 0x0000000040096ca8 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096ca8 xTaskGetCurrentTaskHandle + *fill* 0x0000000040096cca 0x2 .text.uxTaskPriorityGet - 0x0000000040095bc4 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096ccc 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x23 (size before relaxing) - 0x0000000040095bc4 uxTaskPriorityGet - *fill* 0x0000000040095be0 0x0 + 0x0000000040096ccc uxTaskPriorityGet + *fill* 0x0000000040096ce8 0x0 .text.vTaskPrioritySet - 0x0000000040095be0 0x135 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096ce8 0x135 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x147 (size before relaxing) - 0x0000000040095be0 vTaskPrioritySet - *fill* 0x0000000040095d15 0x3 + 0x0000000040096ce8 vTaskPrioritySet + *fill* 0x0000000040096e1d 0x3 .text.__getreent - 0x0000000040095d18 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096e20 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x19 (size before relaxing) - 0x0000000040095d18 __getreent - *fill* 0x0000000040095d2d 0x3 + 0x0000000040096e20 __getreent + *fill* 0x0000000040096e35 0x3 .text.pcTaskGetTaskName - 0x0000000040095d30 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095d30 pcTaskGetTaskName - *fill* 0x0000000040095d57 0x1 + 0x0000000040096e38 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096e38 pcTaskGetTaskName + *fill* 0x0000000040096e5f 0x1 .text.vTaskSetThreadLocalStoragePointerAndDelCallback - 0x0000000040095d58 0x2a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096e60 0x2a esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x32 (size before relaxing) - 0x0000000040095d58 vTaskSetThreadLocalStoragePointerAndDelCallback - *fill* 0x0000000040095d82 0x2 + 0x0000000040096e60 vTaskSetThreadLocalStoragePointerAndDelCallback + *fill* 0x0000000040096e8a 0x2 .text.pvTaskGetThreadLocalStoragePointer - 0x0000000040095d84 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095d84 pvTaskGetThreadLocalStoragePointer - *fill* 0x0000000040095da5 0x3 + 0x0000000040096e8c 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096e8c pvTaskGetThreadLocalStoragePointer + *fill* 0x0000000040096ead 0x3 .text.xTaskGetAffinity - 0x0000000040095da8 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096eb0 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x13 (size before relaxing) - 0x0000000040095da8 xTaskGetAffinity - *fill* 0x0000000040095db8 0x0 + 0x0000000040096eb0 xTaskGetAffinity + *fill* 0x0000000040096ec0 0x0 .text.xTaskGetCurrentTaskHandleForCPU - 0x0000000040095db8 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095db8 xTaskGetCurrentTaskHandleForCPU - *fill* 0x0000000040095dd2 0x2 + 0x0000000040096ec0 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096ec0 xTaskGetCurrentTaskHandleForCPU + *fill* 0x0000000040096eda 0x2 .text.xTaskGetSchedulerState - 0x0000000040095dd4 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040095dd4 xTaskGetSchedulerState - *fill* 0x0000000040095e0e 0x2 + 0x0000000040096edc 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096edc xTaskGetSchedulerState + *fill* 0x0000000040096f16 0x2 .text.vTaskDelete - 0x0000000040095e10 0x107 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096f18 0x107 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x11f (size before relaxing) - 0x0000000040095e10 vTaskDelete - *fill* 0x0000000040095f17 0x1 + 0x0000000040096f18 vTaskDelete + *fill* 0x000000004009701f 0x1 .text.vTaskDelay - 0x0000000040095f18 0x66 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040097020 0x66 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x76 (size before relaxing) - 0x0000000040095f18 vTaskDelay - *fill* 0x0000000040095f7e 0x2 + 0x0000000040097020 vTaskDelay + *fill* 0x0000000040097086 0x2 .text.vTaskSuspend - 0x0000000040095f80 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040097088 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0xf8 (size before relaxing) - 0x0000000040095f80 vTaskSuspend + 0x0000000040097088 vTaskSuspend .text.xTaskResumeAll - 0x0000000040096058 0x17f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040097160 0x17f esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x192 (size before relaxing) - 0x0000000040096058 xTaskResumeAll - *fill* 0x00000000400961d7 0x1 + 0x0000000040097160 xTaskResumeAll + *fill* 0x00000000400972df 0x1 .text.vTaskPriorityInherit - 0x00000000400961d8 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400972e0 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0xe3 (size before relaxing) - 0x00000000400961d8 vTaskPriorityInherit - *fill* 0x00000000400962b0 0x0 + 0x00000000400972e0 vTaskPriorityInherit + *fill* 0x00000000400973b8 0x0 .text.xTaskPriorityDisinherit - 0x00000000400962b0 0x98 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400973b8 0x98 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0xa7 (size before relaxing) - 0x00000000400962b0 xTaskPriorityDisinherit - *fill* 0x0000000040096348 0x0 + 0x00000000400973b8 xTaskPriorityDisinherit + *fill* 0x0000000040097450 0x0 .text.vTaskList - 0x0000000040096348 0x108 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040097450 0x108 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x114 (size before relaxing) - 0x0000000040096348 vTaskList + 0x0000000040097450 vTaskList .text.uxTaskResetEventItemValue - 0x0000000040096450 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040097558 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x56 (size before relaxing) - 0x0000000040096450 uxTaskResetEventItemValue - *fill* 0x00000000400964a2 0x2 + 0x0000000040097558 uxTaskResetEventItemValue + *fill* 0x00000000400975aa 0x2 .text.pvTaskIncrementMutexHeldCount - 0x00000000400964a4 0x56 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400975ac 0x56 esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x5a (size before relaxing) - 0x00000000400964a4 pvTaskIncrementMutexHeldCount - *fill* 0x00000000400964fa 0x2 + 0x00000000400975ac pvTaskIncrementMutexHeldCount + *fill* 0x0000000040097602 0x2 .text.prvGetNextExpireTime - 0x00000000400964fc 0x20 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040097604 0x20 esp-idf/freertos/libfreertos.a(timers.c.obj) .text.prvInsertTimerInActiveList - 0x000000004009651c 0x52 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040097624 0x52 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x5a (size before relaxing) - *fill* 0x000000004009656e 0x2 + *fill* 0x0000000040097676 0x2 .text.prvCheckForValidListAndQueue - 0x0000000040096570 0x69 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040097678 0x69 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x7c (size before relaxing) - *fill* 0x00000000400965d9 0x3 + *fill* 0x00000000400976e1 0x3 .text.xTimerCreateTimerTask - 0x00000000400965dc 0x42 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x00000000400976e4 0x42 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x46 (size before relaxing) - 0x00000000400965dc xTimerCreateTimerTask - *fill* 0x000000004009661e 0x2 + 0x00000000400976e4 xTimerCreateTimerTask + *fill* 0x0000000040097726 0x2 .text.xTimerGenericCommand - 0x0000000040096620 0x59 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040097728 0x59 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x61 (size before relaxing) - 0x0000000040096620 xTimerGenericCommand - *fill* 0x0000000040096679 0x3 + 0x0000000040097728 xTimerGenericCommand + *fill* 0x0000000040097781 0x3 .text.prvSwitchTimerLists - 0x000000004009667c 0x74 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040097784 0x74 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x7c (size before relaxing) .text.prvSampleTimeNow - 0x00000000400966f0 0x2b esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x00000000400977f8 0x2b esp-idf/freertos/libfreertos.a(timers.c.obj) 0x2f (size before relaxing) - *fill* 0x000000004009671b 0x1 + *fill* 0x0000000040097823 0x1 .text.prvProcessExpiredTimer - 0x000000004009671c 0x52 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040097824 0x52 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x5a (size before relaxing) - *fill* 0x000000004009676e 0x2 + *fill* 0x0000000040097876 0x2 .text.prvProcessTimerOrBlockTask - 0x0000000040096770 0x5c esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x0000000040097878 0x5c esp-idf/freertos/libfreertos.a(timers.c.obj) 0x70 (size before relaxing) .text.prvProcessReceivedCommands - 0x00000000400967cc 0xd6 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x00000000400978d4 0xd6 esp-idf/freertos/libfreertos.a(timers.c.obj) 0xe2 (size before relaxing) - *fill* 0x00000000400968a2 0x2 + *fill* 0x00000000400979aa 0x2 .text.prvTimerTask - 0x00000000400968a4 0x15 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x00000000400979ac 0x15 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x1d (size before relaxing) - *fill* 0x00000000400968b9 0x3 + *fill* 0x00000000400979c1 0x3 .text.xEventGroupCreate - 0x00000000400968bc 0x37 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x00000000400979c4 0x37 esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x3f (size before relaxing) - 0x00000000400968bc xEventGroupCreate - *fill* 0x00000000400968f3 0x1 + 0x00000000400979c4 xEventGroupCreate + *fill* 0x00000000400979fb 0x1 .text.xEventGroupWaitBits - 0x00000000400968f4 0x10b esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x00000000400979fc 0x10b esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x126 (size before relaxing) - 0x00000000400968f4 xEventGroupWaitBits - *fill* 0x00000000400969ff 0x1 + 0x00000000400979fc xEventGroupWaitBits + *fill* 0x0000000040097b07 0x1 .text.xEventGroupClearBits - 0x0000000040096a00 0x50 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x0000000040097b08 0x50 esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x54 (size before relaxing) - 0x0000000040096a00 xEventGroupClearBits + 0x0000000040097b08 xEventGroupClearBits .text.xEventGroupSetBits - 0x0000000040096a50 0x9b esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x0000000040097b58 0x9b esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0xa7 (size before relaxing) - 0x0000000040096a50 xEventGroupSetBits - *fill* 0x0000000040096aeb 0x1 + 0x0000000040097b58 xEventGroupSetBits + *fill* 0x0000000040097bf3 0x1 .text.vEventGroupDelete - 0x0000000040096aec 0x49 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x0000000040097bf4 0x49 esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x59 (size before relaxing) - 0x0000000040096aec vEventGroupDelete - *fill* 0x0000000040096b35 0x0 - *fill* 0x0000000040096b35 0x0 - *fill* 0x0000000040096b35 0x0 - *fill* 0x0000000040096b35 0x0 - *fill* 0x0000000040096b35 0x3 + 0x0000000040097bf4 vEventGroupDelete + *fill* 0x0000000040097c3d 0x0 + *fill* 0x0000000040097c3d 0x0 + *fill* 0x0000000040097c3d 0x0 + *fill* 0x0000000040097c3d 0x0 + *fill* 0x0000000040097c3d 0x3 .text.vPortStoreTaskMPUSettings - 0x0000000040096b38 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040096b38 vPortStoreTaskMPUSettings - *fill* 0x0000000040096b4b 0x0 - *fill* 0x0000000040096b4b 0x0 - *fill* 0x0000000040096b4b 0x0 - *fill* 0x0000000040096b4b 0x0 - *fill* 0x0000000040096b4b 0x0 - *fill* 0x0000000040096b4b 0x0 - *fill* 0x0000000040096b4b 0x1 - .text 0x0000000040096b4c 0x33 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) - 0x0000000040096b4c xt_ints_on - 0x0000000040096b64 xt_ints_off - *fill* 0x0000000040096b7f 0x0 - *fill* 0x0000000040096b7f 0x0 - *fill* 0x0000000040096b7f 0x1 + 0x0000000040097c40 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040097c40 vPortStoreTaskMPUSettings + *fill* 0x0000000040097c53 0x0 + *fill* 0x0000000040097c53 0x0 + *fill* 0x0000000040097c53 0x0 + *fill* 0x0000000040097c53 0x0 + *fill* 0x0000000040097c53 0x0 + *fill* 0x0000000040097c53 0x0 + *fill* 0x0000000040097c53 0x1 + .text 0x0000000040097c54 0x33 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + 0x0000000040097c54 xt_ints_on + 0x0000000040097c6c xt_ints_off + *fill* 0x0000000040097c87 0x0 + *fill* 0x0000000040097c87 0x0 + *fill* 0x0000000040097c87 0x1 .text.prvIsQueueEmpty - 0x0000000040096b80 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 - *fill* 0x0000000040096b94 0x0 + 0x0000000040097c88 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 + *fill* 0x0000000040097c9c 0x0 .text.prvTaskCheckFreeStackSpace - 0x0000000040096b94 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x0 - *fill* 0x0000000040096bad 0x3 + 0x0000000040097c9c 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x0 + *fill* 0x0000000040097cb5 0x3 .text.vListInitialise - 0x0000000040096bb0 0x15 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x0000000040096bb0 vListInitialise - *fill* 0x0000000040096bc5 0x3 + 0x0000000040097cb8 0x15 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040097cb8 vListInitialise + *fill* 0x0000000040097ccd 0x3 .text.vListInitialiseItem - 0x0000000040096bc8 0x9 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x0000000040096bc8 vListInitialiseItem - *fill* 0x0000000040096bd1 0x3 + 0x0000000040097cd0 0x9 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040097cd0 vListInitialiseItem + *fill* 0x0000000040097cd9 0x3 .text.vListInsertEnd - 0x0000000040096bd4 0x19 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x0000000040096bd4 vListInsertEnd - *fill* 0x0000000040096bed 0x3 + 0x0000000040097cdc 0x19 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040097cdc vListInsertEnd + *fill* 0x0000000040097cf5 0x3 .text.vListInsert - 0x0000000040096bf0 0x2f esp-idf/freertos/libfreertos.a(list.c.obj) - 0x0000000040096bf0 vListInsert - *fill* 0x0000000040096c1f 0x1 + 0x0000000040097cf8 0x2f esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040097cf8 vListInsert + *fill* 0x0000000040097d27 0x1 .text.uxListRemove - 0x0000000040096c20 0x24 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x0000000040096c20 uxListRemove + 0x0000000040097d28 0x24 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040097d28 uxListRemove .text.prvTestWaitCondition - 0x0000000040096c44 0x21 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - *fill* 0x0000000040096c65 0x0 - *fill* 0x0000000040096c65 0x0 - *fill* 0x0000000040096c65 0x0 - *fill* 0x0000000040096c65 0x0 - *libnewlib.a:abort.*(.literal .literal.* .text .text.*) - *fill* 0x0000000040096c65 0x3 - .text.abort 0x0000000040096c68 0x8d esp-idf/newlib/libnewlib.a(abort.c.obj) - 0x0000000040096c68 abort - *fill* 0x0000000040096cf5 0x0 + 0x0000000040097d4c 0x21 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x0000000040097d6d 0x0 + *fill* 0x0000000040097d6d 0x0 + *fill* 0x0000000040097d6d 0x0 + *fill* 0x0000000040097d6d 0x0 *libnewlib.a:heap.*(.literal .literal.* .text .text.*) - *fill* 0x0000000040096cf5 0x3 - .text.malloc 0x0000000040096cf8 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + *fill* 0x0000000040097d6d 0x3 + .text.malloc 0x0000000040097d70 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) 0x10 (size before relaxing) - 0x0000000040096cf8 pvalloc - 0x0000000040096cf8 valloc - 0x0000000040096cf8 malloc - .text.realloc 0x0000000040096d04 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x0000000040096d04 realloc - *fill* 0x0000000040096d15 0x3 - .text.free 0x0000000040096d18 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040097d70 pvalloc + 0x0000000040097d70 valloc + 0x0000000040097d70 malloc + .text.realloc 0x0000000040097d7c 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040097d7c realloc + *fill* 0x0000000040097d8d 0x3 + .text.free 0x0000000040097d90 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) 0xe (size before relaxing) - 0x0000000040096d18 free - 0x0000000040096d18 cfree - *fill* 0x0000000040096d22 0x2 + 0x0000000040097d90 free + 0x0000000040097d90 cfree + *fill* 0x0000000040097d9a 0x2 .text._malloc_r - 0x0000000040096d24 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040097d9c 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) 0x10 (size before relaxing) - 0x0000000040096d24 _malloc_r - .text._free_r 0x0000000040096d30 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040097d9c _malloc_r + .text._free_r 0x0000000040097da8 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) 0xe (size before relaxing) - 0x0000000040096d30 _free_r - *fill* 0x0000000040096d3a 0x2 + 0x0000000040097da8 _free_r + *fill* 0x0000000040097db2 0x2 .text._realloc_r - 0x0000000040096d3c 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x0000000040096d3c _realloc_r - *fill* 0x0000000040096d4d 0x3 + 0x0000000040097db4 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040097db4 _realloc_r + *fill* 0x0000000040097dc5 0x3 .text._calloc_r - 0x0000000040096d50 0x2c esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040097dc8 0x2c esp-idf/newlib/libnewlib.a(heap.c.obj) 0x30 (size before relaxing) - 0x0000000040096d50 _calloc_r - .text.calloc 0x0000000040096d7c 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040097dc8 _calloc_r + .text.calloc 0x0000000040097df4 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) 0x18 (size before relaxing) - 0x0000000040096d7c calloc - *fill* 0x0000000040096d90 0x0 - *fill* 0x0000000040096d90 0x0 - *fill* 0x0000000040096d90 0x0 - *fill* 0x0000000040096d90 0x0 - *fill* 0x0000000040096d90 0x0 + 0x0000000040097df4 calloc + *fill* 0x0000000040097e08 0x0 + *fill* 0x0000000040097e08 0x0 + *fill* 0x0000000040097e08 0x0 + *fill* 0x0000000040097e08 0x0 + *fill* 0x0000000040097e08 0x0 .text.newlib_include_heap_impl - 0x0000000040096d90 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x0000000040096d90 newlib_include_heap_impl + 0x0000000040097e08 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040097e08 newlib_include_heap_impl + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040097e0d 0x3 + .text.abort 0x0000000040097e10 0x8d esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x0000000040097e10 abort + *fill* 0x0000000040097e9d 0x0 + *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_SYSVIEW.*(.literal .literal.* .text .text.*) *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.*(.literal .literal.* .text .text.*) *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) *libapp_trace.a:SEGGER_RTT_esp32.*(.literal .literal.* .text .text.*) - *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*(.literal .literal.* .text .text.*) - *libapp_trace.a:SEGGER_SYSVIEW.*(.literal .literal.* .text .text.*) - *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) - 0x0000000040096d95 _iram_text_end = ABSOLUTE (.) + 0x0000000040097e9d _iram_text_end = ABSOLUTE (.) -.dram0.data 0x000000003ffb0000 0x39e0 +.dram0.data 0x000000003ffb0000 0x3a40 0x000000003ffb0000 _data_start = ABSOLUTE (.) 0x000000003ffb0000 _bt_data_start = ABSOLUTE (.) *libbt.a:(.data .data.*) @@ -25193,1793 +26552,1974 @@ LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp .data.rtc_spinlock 0x000000003ffb15a0 0x8 esp-idf/driver/libdriver.a(rtc_module.c.obj) 0x000000003ffb15a0 rtc_spinlock + .data.dmaworkaround_mux + 0x000000003ffb15a8 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_dma_spinlock + 0x000000003ffb15b0 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_periph_claimed + 0x000000003ffb15b8 0x3 esp-idf/driver/libdriver.a(spi_common.c.obj) + *fill* 0x000000003ffb15bb 0x1 .data.uart_selectlock - 0x000000003ffb15a8 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003ffb15bc 0x8 esp-idf/driver/libdriver.a(uart.c.obj) .data.uart_context - 0x000000003ffb15b0 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003ffb15c4 0x30 esp-idf/driver/libdriver.a(uart.c.obj) .data.light_sleep_lock$9163 - 0x000000003ffb15e0 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x000000003ffb15f4 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003ffb15fc 0x4 .data.s_config - 0x000000003ffb15e8 0x30 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x000000003ffb1600 0x30 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) .data.history_max_len - 0x000000003ffb1618 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003ffb1630 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) .data.VolToPart - 0x000000003ffb161c 0x4 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - 0x000000003ffb161c VolToPart + 0x000000003ffb1634 0x4 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x000000003ffb1634 VolToPart .data.ff_wl_handles - 0x000000003ffb1620 0x8 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - 0x000000003ffb1620 ff_wl_handles + 0x000000003ffb1638 0x8 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x000000003ffb1638 ff_wl_handles + .data.last_width$3709 + 0x000000003ffb1640 0x2 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + *fill* 0x000000003ffb1642 0x2 + .data.lv_font_roboto_16 + 0x000000003ffb1644 0x10 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + 0x000000003ffb1644 lv_font_roboto_16 + .data.font_dsc + 0x000000003ffb1654 0x1c esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .data.lv_txt_get_encoded_length + 0x000000003ffb1670 0x4 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x000000003ffb1670 lv_txt_get_encoded_length + .data.lv_txt_encoded_get_char_id + 0x000000003ffb1674 0x4 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x000000003ffb1674 lv_txt_encoded_get_char_id + .data.lv_txt_encoded_get_byte_id + 0x000000003ffb1678 0x4 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x000000003ffb1678 lv_txt_encoded_get_byte_id + .data.lv_txt_encoded_prev + 0x000000003ffb167c 0x4 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x000000003ffb167c lv_txt_encoded_prev + .data.lv_txt_encoded_next + 0x000000003ffb1680 0x4 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x000000003ffb1680 lv_txt_encoded_next + .data.lv_txt_encoded_size + 0x000000003ffb1684 0x4 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x000000003ffb1684 lv_txt_encoded_size .data.one$3752 - 0x000000003ffb1628 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .data.Rp$3945 0x000000003ffb162c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .data.Rp$3949 0x000000003ffb1634 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .data.Rp$3953 0x000000003ffb163c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003ffb1688 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.Rp$3945 0x000000003ffb168c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.Rp$3949 0x000000003ffb1694 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.Rp$3953 0x000000003ffb169c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .data.mbedtls_free_func - 0x000000003ffb1644 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x000000003ffb16a4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) .data.mbedtls_calloc_func - 0x000000003ffb1648 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x000000003ffb16a8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) .data.memset_func - 0x000000003ffb164c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x000000003ffb16ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) .data.aes_spinlock - 0x000000003ffb1650 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000003ffb16b0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) .data.engines_in_use_lock - 0x000000003ffb1658 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x000000003ffb16b8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) .data.memory_block_lock - 0x000000003ffb1660 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x000000003ffb16c0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) .data._g_esp_netif_netstack_default_wifi_ap - 0x000000003ffb1668 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - 0x000000003ffb1668 _g_esp_netif_netstack_default_wifi_ap + 0x000000003ffb16c8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x000000003ffb16c8 _g_esp_netif_netstack_default_wifi_ap .data._g_esp_netif_netstack_default_wifi_sta - 0x000000003ffb166c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - 0x000000003ffb166c _g_esp_netif_netstack_default_wifi_sta + 0x000000003ffb16cc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x000000003ffb16cc _g_esp_netif_netstack_default_wifi_sta .data.g_allowed_groups - 0x000000003ffb1670 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x000000003ffb1670 g_allowed_groups + 0x000000003ffb16d0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x000000003ffb16d0 g_allowed_groups .data.WIFI_MESH_EVENT - 0x000000003ffb1678 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000003ffb1678 WIFI_MESH_EVENT - .dram1.3 0x000000003ffb167c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000003ffb167c g_wifi_mac_time_delta + 0x000000003ffb16d8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb16d8 WIFI_MESH_EVENT + .dram1.3 0x000000003ffb16dc 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb16dc g_wifi_mac_time_delta .data.g_wifi_event_mask - 0x000000003ffb1680 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000003ffb1680 g_wifi_event_mask - .dram1.2 0x000000003ffb1684 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000003ffb1684 g_osi_funcs_p + 0x000000003ffb16e0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb16e0 g_wifi_event_mask + .dram1.2 0x000000003ffb16e4 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb16e4 g_osi_funcs_p .data.s_wifi_init_state - 0x000000003ffb1688 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - .data.ccmp 0x000000003ffb168c 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) - 0x000000003ffb168c ccmp - .data.tkip 0x000000003ffb16a4 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) - 0x000000003ffb16a4 tkip - .data.wep 0x000000003ffb16bc 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) - 0x000000003ffb16bc wep + 0x000000003ffb16e8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.ccmp 0x000000003ffb16ec 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x000000003ffb16ec ccmp + .data.tkip 0x000000003ffb1704 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0x000000003ffb1704 tkip + .data.wep 0x000000003ffb171c 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x000000003ffb171c wep .data.TmpSTAAPCloseAP - 0x000000003ffb16d4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) - 0x000000003ffb16d4 TmpSTAAPCloseAP - *fill* 0x000000003ffb16d5 0x3 - .data.g_op 0x000000003ffb16d8 0x250 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffb1734 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffb1734 TmpSTAAPCloseAP + *fill* 0x000000003ffb1735 0x3 + .data.g_op 0x000000003ffb1738 0x250 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) .data.s_ioctl_table - 0x000000003ffb1928 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - 0x000000003ffb1928 s_ioctl_table - .dram1.2 0x000000003ffb1940 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - 0x000000003ffb1940 g_intr_lock_mux + 0x000000003ffb1988 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffb1988 s_ioctl_table + .dram1.2 0x000000003ffb19a0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffb19a0 g_intr_lock_mux .data.g_mesh_self_organized - 0x000000003ffb1944 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) - 0x000000003ffb1944 g_mesh_self_organized - *fill* 0x000000003ffb1945 0x3 + 0x000000003ffb19a4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffb19a4 g_mesh_self_organized + *fill* 0x000000003ffb19a5 0x3 .data.g_wifi_nvs - 0x000000003ffb1948 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) - 0x000000003ffb1948 g_wifi_nvs + 0x000000003ffb19a8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x000000003ffb19a8 g_wifi_nvs .data.s_raw_seq$9737 - 0x000000003ffb194c 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000003ffb19ac 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) .data.g_hmac_stop - 0x000000003ffb194e 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) - *fill* 0x000000003ffb194f 0x1 - .data.s_map 0x000000003ffb1950 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) - 0x000000003ffb1950 s_map + 0x000000003ffb19ae 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + *fill* 0x000000003ffb19af 0x1 + .data.s_map 0x000000003ffb19b0 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000003ffb19b0 s_map .data.g_scan_chan_list - 0x000000003ffb1968 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffb19c8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) .data.s_sta_igtk_active_idx - 0x000000003ffb1976 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000003ffb19d6 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) .data.g_timer_info - 0x000000003ffb1978 0x98 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - 0x000000003ffb1978 g_timer_info - .data.g_chm 0x000000003ffb1a10 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) - 0x000000003ffb1a10 g_chm + 0x000000003ffb19d8 0x98 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000003ffb19d8 g_timer_info + .data.g_chm 0x000000003ffb1a70 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000003ffb1a70 g_chm .data.join_deny_flag - 0x000000003ffb1a14 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - .dram1.2 0x000000003ffb1a15 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - 0x000000003ffb1a15 g_sta_connected_flag - *fill* 0x000000003ffb1a16 0x2 + 0x000000003ffb1a74 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .dram1.2 0x000000003ffb1a75 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffb1a75 g_sta_connected_flag + *fill* 0x000000003ffb1a76 0x2 .data.sa_query_recv_action - 0x000000003ffb1a18 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x000000003ffb1a78 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) .data.vendor_recv_action - 0x000000003ffb1a20 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x000000003ffb1a80 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) .data.ht_recv_action - 0x000000003ffb1a24 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x000000003ffb1a84 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) .data.ba_recv_action - 0x000000003ffb1a28 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x000000003ffb1a88 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) .data.sa_query_send_action - 0x000000003ffb1a34 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x000000003ffb1a94 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) .data.vendor_send_action - 0x000000003ffb1a3c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x000000003ffb1a9c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) .data.ht_send_action - 0x000000003ffb1a40 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x000000003ffb1aa0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) .data.ba_send_action - 0x000000003ffb1a44 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x000000003ffb1aa4 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) .data.g_eb_list_desc - 0x000000003ffb1a50 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) - .dram1.2 0x000000003ffb1b04 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x000000003ffb1ab0 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .dram1.2 0x000000003ffb1b64 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) .data.g_long_ampdu_retry - 0x000000003ffb1b84 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - 0x000000003ffb1b84 g_long_ampdu_retry + 0x000000003ffb1be4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffb1be4 g_long_ampdu_retry .data.g_short_ampdu_retry - 0x000000003ffb1b85 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - 0x000000003ffb1b85 g_short_ampdu_retry - *fill* 0x000000003ffb1b86 0x2 - .dram1.4 0x000000003ffb1b88 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - .data.pTxRx 0x000000003ffb1c18 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x000000003ffb1c18 pTxRx - .dram1.3 0x000000003ffb1c1c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x000000003ffb1c1c xphyQueue + 0x000000003ffb1be5 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffb1be5 g_short_ampdu_retry + *fill* 0x000000003ffb1be6 0x2 + .dram1.4 0x000000003ffb1be8 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.pTxRx 0x000000003ffb1c78 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffb1c78 pTxRx + .dram1.3 0x000000003ffb1c7c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffb1c7c xphyQueue .data.g_pp_stop_flag - 0x000000003ffb1c20 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - *fill* 0x000000003ffb1c21 0x3 - .dram1.2 0x000000003ffb1c24 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x000000003ffb1c24 pp_sig_cnt - *fill* 0x000000003ffb1c3f 0x1 - .dram1.5 0x000000003ffb1c40 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) - 0x000000003ffb1c40 g_dbg_cnt_lmac_interrupt - .dram1.2 0x000000003ffb1c88 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x000000003ffb1c80 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x000000003ffb1c81 0x3 + .dram1.2 0x000000003ffb1c84 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffb1c84 pp_sig_cnt + *fill* 0x000000003ffb1c9f 0x1 + .dram1.5 0x000000003ffb1ca0 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x000000003ffb1ca0 g_dbg_cnt_lmac_interrupt + .dram1.2 0x000000003ffb1ce8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) .data.g_pp_timer_info - 0x000000003ffb1c8c 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) - 0x000000003ffb1c8c g_pp_timer_info + 0x000000003ffb1cec 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x000000003ffb1cec g_pp_timer_info .data.rc11BSchedTbl - 0x000000003ffb1ccc 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffb1d2c 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .data.rcP2P11GSchedTbl - 0x000000003ffb1d14 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffb1d74 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .data.rc11GSchedTbl - 0x000000003ffb1d74 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffb1dd4 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .data.rcP2P11NSchedTbl - 0x000000003ffb1e10 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffb1e70 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .data.rc11NSchedTbl - 0x000000003ffb1e7c 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffb1edc 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .data.rcLoRaSchedTbl - 0x000000003ffb1f24 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffb1f84 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .data.BasicOFDMSched - 0x000000003ffb1f3c 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - .dram1.19 0x000000003ffb1f48 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - *fill* 0x000000003ffb1f49 0x3 - .dram1.18 0x000000003ffb1f4c 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - .dram1.6 0x000000003ffb1f68 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb1f9c 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .dram1.19 0x000000003ffb1fa8 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *fill* 0x000000003ffb1fa9 0x3 + .dram1.18 0x000000003ffb1fac 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.6 0x000000003ffb1fc8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) .data.BcnInterval - 0x000000003ffb1f6c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - .dram1.4 0x000000003ffb1f70 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - .dram1.3 0x000000003ffb1f74 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb1fcc 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.4 0x000000003ffb1fd0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.3 0x000000003ffb1fd4 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) .data.g_noise_now - 0x000000003ffb1f78 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000003ffb1f78 g_noise_now - *fill* 0x000000003ffb1f79 0x3 + 0x000000003ffb1fd8 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb1fd8 g_noise_now + *fill* 0x000000003ffb1fd9 0x3 .data.g_wdev_rx_mblk_size - 0x000000003ffb1f7c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000003ffb1f7c g_wdev_rx_mblk_size - .dram1.2 0x000000003ffb1f80 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000003ffb1f80 g_sniffer_mode + 0x000000003ffb1fdc 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb1fdc g_wdev_rx_mblk_size + .dram1.2 0x000000003ffb1fe0 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb1fe0 g_sniffer_mode .data.phy_wifi_pll_track_en - 0x000000003ffb1f81 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb1f81 phy_wifi_pll_track_en + 0x000000003ffb1fe1 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb1fe1 phy_wifi_pll_track_en .data.phy_bt_pll_track_en - 0x000000003ffb1f82 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb1f82 phy_bt_pll_track_en + 0x000000003ffb1fe2 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb1fe2 phy_bt_pll_track_en .data.chan14_mic_most_power - 0x000000003ffb1f83 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb1f83 chan14_mic_most_power + 0x000000003ffb1fe3 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1fe3 chan14_mic_most_power .data.phy_in_most_power_bk - 0x000000003ffb1f84 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb1f84 phy_in_most_power_bk + 0x000000003ffb1fe4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1fe4 phy_in_most_power_bk .data.phy_in_most_power - 0x000000003ffb1f85 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb1f85 phy_in_most_power - *fill* 0x000000003ffb1f86 0x2 + 0x000000003ffb1fe5 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1fe5 phy_in_most_power + *fill* 0x000000003ffb1fe6 0x2 .data.tx_rf_ana_gain - 0x000000003ffb1f88 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb1f88 tx_rf_ana_gain + 0x000000003ffb1fe8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1fe8 tx_rf_ana_gain .data.noise_array - 0x000000003ffb1f8c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb1f8c noise_array - *fill* 0x000000003ffb1f92 0x2 + 0x000000003ffb1fec 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1fec noise_array + *fill* 0x000000003ffb1ff2 0x2 .data.bt_rx_gain_swp - 0x000000003ffb1f94 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1ff4 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) .data.bb_gain_swp - 0x000000003ffb1fa4 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb2004 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) .data.rfbb_gain_swp - 0x000000003ffb1fb0 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - *fill* 0x000000003ffb1fb2 0x2 + 0x000000003ffb2010 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x000000003ffb2012 0x2 .data.rf_gain_swp_wifi - 0x000000003ffb1fb4 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - *fill* 0x000000003ffb1fca 0x2 + 0x000000003ffb2014 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x000000003ffb202a 0x2 .data.wifi_rx_gain_swp - 0x000000003ffb1fcc 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb202c 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) .data.rfcal_bb_atten_init - 0x000000003ffb1fe4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - 0x000000003ffb1fe4 rfcal_bb_atten_init - *fill* 0x000000003ffb1fe5 0x3 + 0x000000003ffb2044 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb2044 rfcal_bb_atten_init + *fill* 0x000000003ffb2045 0x3 .data.ssl_preset_suiteb_curves - 0x000000003ffb1fe8 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000003ffb2048 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .data.ssl_preset_suiteb_hashes - 0x000000003ffb1ff4 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000003ffb2054 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .data.ssl_preset_suiteb_ciphersuites - 0x000000003ffb2000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000003ffb2060 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .data.ssl_preset_default_hashes - 0x000000003ffb200c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .dram1.0 0x000000003ffb2024 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) - 0x000000003ffb2024 coex_params + 0x000000003ffb206c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .dram1.0 0x000000003ffb2084 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) + 0x000000003ffb2084 coex_params .data.coex_schm_ble_default_bt_default_wifi_conn - 0x000000003ffb20b4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb20b4 coex_schm_ble_default_bt_default_wifi_conn - *fill* 0x000000003ffb20be 0x2 + 0x000000003ffb2114 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2114 coex_schm_ble_default_bt_default_wifi_conn + *fill* 0x000000003ffb211e 0x2 .data.coex_schm_ble_default_bt_a2dp_wifi_conn - 0x000000003ffb20c0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb20c0 coex_schm_ble_default_bt_a2dp_wifi_conn - *fill* 0x000000003ffb20ca 0x2 + 0x000000003ffb2120 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2120 coex_schm_ble_default_bt_a2dp_wifi_conn + *fill* 0x000000003ffb212a 0x2 .data.coex_schm_ble_default_bt_idle_wifi_conn - 0x000000003ffb20cc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb20cc coex_schm_ble_default_bt_idle_wifi_conn - *fill* 0x000000003ffb20d6 0x2 + 0x000000003ffb212c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb212c coex_schm_ble_default_bt_idle_wifi_conn + *fill* 0x000000003ffb2136 0x2 .data.coex_schm_ble_mesh_standby_bt_default_wifi_conn - 0x000000003ffb20d8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb20d8 coex_schm_ble_mesh_standby_bt_default_wifi_conn - *fill* 0x000000003ffb20e6 0x2 + 0x000000003ffb2138 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2138 coex_schm_ble_mesh_standby_bt_default_wifi_conn + *fill* 0x000000003ffb2146 0x2 .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_conn - 0x000000003ffb20e8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb20e8 coex_schm_ble_mesh_standby_bt_sniff_wifi_conn - *fill* 0x000000003ffb20f2 0x2 + 0x000000003ffb2148 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2148 coex_schm_ble_mesh_standby_bt_sniff_wifi_conn + *fill* 0x000000003ffb2152 0x2 .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn - 0x000000003ffb20f4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb20f4 coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn - *fill* 0x000000003ffb2102 0x2 + 0x000000003ffb2154 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2154 coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn + *fill* 0x000000003ffb2162 0x2 .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn - 0x000000003ffb2104 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2104 coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn - *fill* 0x000000003ffb2112 0x2 + 0x000000003ffb2164 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2164 coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn + *fill* 0x000000003ffb2172 0x2 .data.coex_schm_ble_mesh_standby_bt_conn_wifi_conn - 0x000000003ffb2114 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2114 coex_schm_ble_mesh_standby_bt_conn_wifi_conn - *fill* 0x000000003ffb2122 0x2 + 0x000000003ffb2174 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2174 coex_schm_ble_mesh_standby_bt_conn_wifi_conn + *fill* 0x000000003ffb2182 0x2 .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_conn - 0x000000003ffb2124 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2124 coex_schm_ble_mesh_standby_bt_iscan_wifi_conn - *fill* 0x000000003ffb2132 0x2 + 0x000000003ffb2184 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2184 coex_schm_ble_mesh_standby_bt_iscan_wifi_conn + *fill* 0x000000003ffb2192 0x2 .data.coex_schm_ble_mesh_traffic_bt_default_wifi_conn - 0x000000003ffb2134 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2134 coex_schm_ble_mesh_traffic_bt_default_wifi_conn - *fill* 0x000000003ffb2142 0x2 + 0x000000003ffb2194 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2194 coex_schm_ble_mesh_traffic_bt_default_wifi_conn + *fill* 0x000000003ffb21a2 0x2 .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn - 0x000000003ffb2144 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2144 coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn - *fill* 0x000000003ffb214e 0x2 + 0x000000003ffb21a4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21a4 coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn + *fill* 0x000000003ffb21ae 0x2 .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn - 0x000000003ffb2150 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2150 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn - *fill* 0x000000003ffb215e 0x2 + 0x000000003ffb21b0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21b0 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn + *fill* 0x000000003ffb21be 0x2 .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn - 0x000000003ffb2160 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2160 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn - *fill* 0x000000003ffb216e 0x2 + 0x000000003ffb21c0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21c0 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn + *fill* 0x000000003ffb21ce 0x2 .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_conn - 0x000000003ffb2170 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2170 coex_schm_ble_mesh_traffic_bt_conn_wifi_conn - *fill* 0x000000003ffb217e 0x2 + 0x000000003ffb21d0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21d0 coex_schm_ble_mesh_traffic_bt_conn_wifi_conn + *fill* 0x000000003ffb21de 0x2 .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn - 0x000000003ffb2180 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2180 coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn - *fill* 0x000000003ffb218e 0x2 + 0x000000003ffb21e0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21e0 coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn + *fill* 0x000000003ffb21ee 0x2 .data.coex_schm_ble_mesh_config_bt_default_wifi_conn - 0x000000003ffb2190 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2190 coex_schm_ble_mesh_config_bt_default_wifi_conn - *fill* 0x000000003ffb219e 0x2 + 0x000000003ffb21f0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21f0 coex_schm_ble_mesh_config_bt_default_wifi_conn + *fill* 0x000000003ffb21fe 0x2 .data.coex_schm_ble_mesh_config_bt_sniff_wifi_conn - 0x000000003ffb21a0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb21a0 coex_schm_ble_mesh_config_bt_sniff_wifi_conn - *fill* 0x000000003ffb21aa 0x2 + 0x000000003ffb2200 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2200 coex_schm_ble_mesh_config_bt_sniff_wifi_conn + *fill* 0x000000003ffb220a 0x2 .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_conn - 0x000000003ffb21ac 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb21ac coex_schm_ble_mesh_config_bt_a2dp_wifi_conn - *fill* 0x000000003ffb21ba 0x2 - .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn - 0x000000003ffb21bc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb21bc coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn - *fill* 0x000000003ffb21ca 0x2 - .data.coex_schm_ble_mesh_config_bt_conn_wifi_conn - 0x000000003ffb21cc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb21cc coex_schm_ble_mesh_config_bt_conn_wifi_conn - *fill* 0x000000003ffb21da 0x2 - .data.coex_schm_ble_mesh_config_bt_iscan_wifi_conn - 0x000000003ffb21dc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb21dc coex_schm_ble_mesh_config_bt_iscan_wifi_conn - *fill* 0x000000003ffb21ea 0x2 - .data.coex_schm_ble_mesh_standby_wifi_conn - 0x000000003ffb21ec 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb21ec coex_schm_ble_mesh_standby_wifi_conn - *fill* 0x000000003ffb21f6 0x2 - .data.coex_schm_ble_mesh_traffic_wifi_conn - 0x000000003ffb21f8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb21f8 coex_schm_ble_mesh_traffic_wifi_conn - *fill* 0x000000003ffb2202 0x2 - .data.coex_schm_ble_mesh_config_wifi_conn - 0x000000003ffb2204 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2204 coex_schm_ble_mesh_config_wifi_conn - *fill* 0x000000003ffb220e 0x2 - .data.coex_schm_bt_default_wifi_conn - 0x000000003ffb2210 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2210 coex_schm_bt_default_wifi_conn + 0x000000003ffb220c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb220c coex_schm_ble_mesh_config_bt_a2dp_wifi_conn *fill* 0x000000003ffb221a 0x2 - .data.coex_schm_bt_sniff_wifi_conn - 0x000000003ffb221c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb221c coex_schm_bt_sniff_wifi_conn - *fill* 0x000000003ffb2222 0x2 - .data.coex_schm_bt_a2dp_wifi_conn - 0x000000003ffb2224 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2224 coex_schm_bt_a2dp_wifi_conn - *fill* 0x000000003ffb222e 0x2 - .data.coex_schm_bt_a2dp_paused_wifi_conn - 0x000000003ffb2230 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2230 coex_schm_bt_a2dp_paused_wifi_conn + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn + 0x000000003ffb221c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb221c coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn + *fill* 0x000000003ffb222a 0x2 + .data.coex_schm_ble_mesh_config_bt_conn_wifi_conn + 0x000000003ffb222c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb222c coex_schm_ble_mesh_config_bt_conn_wifi_conn *fill* 0x000000003ffb223a 0x2 + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_conn + 0x000000003ffb223c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb223c coex_schm_ble_mesh_config_bt_iscan_wifi_conn + *fill* 0x000000003ffb224a 0x2 + .data.coex_schm_ble_mesh_standby_wifi_conn + 0x000000003ffb224c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb224c coex_schm_ble_mesh_standby_wifi_conn + *fill* 0x000000003ffb2256 0x2 + .data.coex_schm_ble_mesh_traffic_wifi_conn + 0x000000003ffb2258 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2258 coex_schm_ble_mesh_traffic_wifi_conn + *fill* 0x000000003ffb2262 0x2 + .data.coex_schm_ble_mesh_config_wifi_conn + 0x000000003ffb2264 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2264 coex_schm_ble_mesh_config_wifi_conn + *fill* 0x000000003ffb226e 0x2 + .data.coex_schm_bt_default_wifi_conn + 0x000000003ffb2270 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2270 coex_schm_bt_default_wifi_conn + *fill* 0x000000003ffb227a 0x2 + .data.coex_schm_bt_sniff_wifi_conn + 0x000000003ffb227c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb227c coex_schm_bt_sniff_wifi_conn + *fill* 0x000000003ffb2282 0x2 + .data.coex_schm_bt_a2dp_wifi_conn + 0x000000003ffb2284 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2284 coex_schm_bt_a2dp_wifi_conn + *fill* 0x000000003ffb228e 0x2 + .data.coex_schm_bt_a2dp_paused_wifi_conn + 0x000000003ffb2290 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2290 coex_schm_bt_a2dp_paused_wifi_conn + *fill* 0x000000003ffb229a 0x2 .data.coex_schm_bt_conn_wifi_conn - 0x000000003ffb223c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb223c coex_schm_bt_conn_wifi_conn - *fill* 0x000000003ffb2246 0x2 + 0x000000003ffb229c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb229c coex_schm_bt_conn_wifi_conn + *fill* 0x000000003ffb22a6 0x2 .data.coex_schm_bt_iscan_wifi_conn - 0x000000003ffb2248 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2248 coex_schm_bt_iscan_wifi_conn - *fill* 0x000000003ffb2252 0x2 + 0x000000003ffb22a8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22a8 coex_schm_bt_iscan_wifi_conn + *fill* 0x000000003ffb22b2 0x2 .data.coex_schm_bt_idle_wifi_conn - 0x000000003ffb2254 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2254 coex_schm_bt_idle_wifi_conn - *fill* 0x000000003ffb225a 0x2 - .data.coex_schm_ble_default_bt_default_wifi_connecting - 0x000000003ffb225c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb225c coex_schm_ble_default_bt_default_wifi_connecting - *fill* 0x000000003ffb2266 0x2 - .data.coex_schm_ble_default_bt_a2dp_wifi_connecting - 0x000000003ffb2268 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2268 coex_schm_ble_default_bt_a2dp_wifi_connecting - *fill* 0x000000003ffb2272 0x2 - .data.coex_schm_ble_default_bt_idle_wifi_connecting - 0x000000003ffb2274 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2274 coex_schm_ble_default_bt_idle_wifi_connecting - *fill* 0x000000003ffb227e 0x2 - .data.coex_schm_ble_mesh_standby_bt_default_wifi_connecting - 0x000000003ffb2280 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2280 coex_schm_ble_mesh_standby_bt_default_wifi_connecting - *fill* 0x000000003ffb2296 0x2 - .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting - 0x000000003ffb2298 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2298 coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting - *fill* 0x000000003ffb22a2 0x2 - .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting - 0x000000003ffb22a4 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb22a4 coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting + 0x000000003ffb22b4 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22b4 coex_schm_bt_idle_wifi_conn *fill* 0x000000003ffb22ba 0x2 - .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting - 0x000000003ffb22bc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb22bc coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting - *fill* 0x000000003ffb22ca 0x2 - .data.coex_schm_ble_mesh_standby_bt_conn_wifi_connecting - 0x000000003ffb22cc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb22cc coex_schm_ble_mesh_standby_bt_conn_wifi_connecting - *fill* 0x000000003ffb22da 0x2 - .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting - 0x000000003ffb22dc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb22dc coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting - *fill* 0x000000003ffb22ea 0x2 - .data.coex_schm_ble_mesh_traffic_bt_default_wifi_connecting - 0x000000003ffb22ec 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb22ec coex_schm_ble_mesh_traffic_bt_default_wifi_connecting + .data.coex_schm_ble_default_bt_default_wifi_connecting + 0x000000003ffb22bc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22bc coex_schm_ble_default_bt_default_wifi_connecting + *fill* 0x000000003ffb22c6 0x2 + .data.coex_schm_ble_default_bt_a2dp_wifi_connecting + 0x000000003ffb22c8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22c8 coex_schm_ble_default_bt_a2dp_wifi_connecting + *fill* 0x000000003ffb22d2 0x2 + .data.coex_schm_ble_default_bt_idle_wifi_connecting + 0x000000003ffb22d4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22d4 coex_schm_ble_default_bt_idle_wifi_connecting + *fill* 0x000000003ffb22de 0x2 + .data.coex_schm_ble_mesh_standby_bt_default_wifi_connecting + 0x000000003ffb22e0 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22e0 coex_schm_ble_mesh_standby_bt_default_wifi_connecting + *fill* 0x000000003ffb22f6 0x2 + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting + 0x000000003ffb22f8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22f8 coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting *fill* 0x000000003ffb2302 0x2 + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting + 0x000000003ffb2304 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2304 coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting + *fill* 0x000000003ffb231a 0x2 + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting + 0x000000003ffb231c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb231c coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting + *fill* 0x000000003ffb232a 0x2 + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_connecting + 0x000000003ffb232c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb232c coex_schm_ble_mesh_standby_bt_conn_wifi_connecting + *fill* 0x000000003ffb233a 0x2 + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting + 0x000000003ffb233c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb233c coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting + *fill* 0x000000003ffb234a 0x2 + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_connecting + 0x000000003ffb234c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb234c coex_schm_ble_mesh_traffic_bt_default_wifi_connecting + *fill* 0x000000003ffb2362 0x2 .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting - 0x000000003ffb2304 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2304 coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting - *fill* 0x000000003ffb230e 0x2 + 0x000000003ffb2364 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2364 coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting + *fill* 0x000000003ffb236e 0x2 .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting - 0x000000003ffb2310 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2310 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting - *fill* 0x000000003ffb2326 0x2 + 0x000000003ffb2370 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2370 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting + *fill* 0x000000003ffb2386 0x2 .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting - 0x000000003ffb2328 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2328 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting - *fill* 0x000000003ffb2336 0x2 + 0x000000003ffb2388 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2388 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting + *fill* 0x000000003ffb2396 0x2 .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting - 0x000000003ffb2338 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2338 coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting - *fill* 0x000000003ffb2346 0x2 + 0x000000003ffb2398 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2398 coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting + *fill* 0x000000003ffb23a6 0x2 .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting - 0x000000003ffb2348 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2348 coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting - *fill* 0x000000003ffb2356 0x2 + 0x000000003ffb23a8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23a8 coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting + *fill* 0x000000003ffb23b6 0x2 .data.coex_schm_ble_mesh_config_bt_default_wifi_connecting - 0x000000003ffb2358 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2358 coex_schm_ble_mesh_config_bt_default_wifi_connecting - *fill* 0x000000003ffb2366 0x2 + 0x000000003ffb23b8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23b8 coex_schm_ble_mesh_config_bt_default_wifi_connecting + *fill* 0x000000003ffb23c6 0x2 .data.coex_schm_ble_mesh_config_bt_sniff_wifi_connecting - 0x000000003ffb2368 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2368 coex_schm_ble_mesh_config_bt_sniff_wifi_connecting - *fill* 0x000000003ffb2372 0x2 + 0x000000003ffb23c8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23c8 coex_schm_ble_mesh_config_bt_sniff_wifi_connecting + *fill* 0x000000003ffb23d2 0x2 .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting - 0x000000003ffb2374 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2374 coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting - *fill* 0x000000003ffb2382 0x2 - .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting - 0x000000003ffb2384 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2384 coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting - *fill* 0x000000003ffb2392 0x2 - .data.coex_schm_ble_mesh_config_bt_conn_wifi_connecting - 0x000000003ffb2394 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2394 coex_schm_ble_mesh_config_bt_conn_wifi_connecting - *fill* 0x000000003ffb23a2 0x2 - .data.coex_schm_ble_mesh_config_bt_iscan_wifi_connecting - 0x000000003ffb23a4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb23a4 coex_schm_ble_mesh_config_bt_iscan_wifi_connecting - *fill* 0x000000003ffb23b2 0x2 - .data.coex_schm_ble_mesh_standby_wifi_connecting - 0x000000003ffb23b4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb23b4 coex_schm_ble_mesh_standby_wifi_connecting - *fill* 0x000000003ffb23be 0x2 - .data.coex_schm_ble_mesh_traffic_wifi_connecting - 0x000000003ffb23c0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb23c0 coex_schm_ble_mesh_traffic_wifi_connecting - *fill* 0x000000003ffb23ca 0x2 - .data.coex_schm_ble_mesh_config_wifi_connecting - 0x000000003ffb23cc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb23cc coex_schm_ble_mesh_config_wifi_connecting - *fill* 0x000000003ffb23d6 0x2 - .data.coex_schm_bt_default_wifi_connecting - 0x000000003ffb23d8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb23d8 coex_schm_bt_default_wifi_connecting + 0x000000003ffb23d4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23d4 coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting *fill* 0x000000003ffb23e2 0x2 - .data.coex_schm_bt_sniff_wifi_connecting - 0x000000003ffb23e4 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb23e4 coex_schm_bt_sniff_wifi_connecting - *fill* 0x000000003ffb23ea 0x2 - .data.coex_schm_bt_a2dp_wifi_connecting - 0x000000003ffb23ec 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb23ec coex_schm_bt_a2dp_wifi_connecting - *fill* 0x000000003ffb23f6 0x2 - .data.coex_schm_bt_a2dp_paused_wifi_connecting - 0x000000003ffb23f8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb23f8 coex_schm_bt_a2dp_paused_wifi_connecting + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting + 0x000000003ffb23e4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23e4 coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting + *fill* 0x000000003ffb23f2 0x2 + .data.coex_schm_ble_mesh_config_bt_conn_wifi_connecting + 0x000000003ffb23f4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23f4 coex_schm_ble_mesh_config_bt_conn_wifi_connecting *fill* 0x000000003ffb2402 0x2 + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_connecting + 0x000000003ffb2404 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2404 coex_schm_ble_mesh_config_bt_iscan_wifi_connecting + *fill* 0x000000003ffb2412 0x2 + .data.coex_schm_ble_mesh_standby_wifi_connecting + 0x000000003ffb2414 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2414 coex_schm_ble_mesh_standby_wifi_connecting + *fill* 0x000000003ffb241e 0x2 + .data.coex_schm_ble_mesh_traffic_wifi_connecting + 0x000000003ffb2420 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2420 coex_schm_ble_mesh_traffic_wifi_connecting + *fill* 0x000000003ffb242a 0x2 + .data.coex_schm_ble_mesh_config_wifi_connecting + 0x000000003ffb242c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb242c coex_schm_ble_mesh_config_wifi_connecting + *fill* 0x000000003ffb2436 0x2 + .data.coex_schm_bt_default_wifi_connecting + 0x000000003ffb2438 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2438 coex_schm_bt_default_wifi_connecting + *fill* 0x000000003ffb2442 0x2 + .data.coex_schm_bt_sniff_wifi_connecting + 0x000000003ffb2444 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2444 coex_schm_bt_sniff_wifi_connecting + *fill* 0x000000003ffb244a 0x2 + .data.coex_schm_bt_a2dp_wifi_connecting + 0x000000003ffb244c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb244c coex_schm_bt_a2dp_wifi_connecting + *fill* 0x000000003ffb2456 0x2 + .data.coex_schm_bt_a2dp_paused_wifi_connecting + 0x000000003ffb2458 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2458 coex_schm_bt_a2dp_paused_wifi_connecting + *fill* 0x000000003ffb2462 0x2 .data.coex_schm_bt_conn_wifi_connecting - 0x000000003ffb2404 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2404 coex_schm_bt_conn_wifi_connecting - *fill* 0x000000003ffb240e 0x2 + 0x000000003ffb2464 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2464 coex_schm_bt_conn_wifi_connecting + *fill* 0x000000003ffb246e 0x2 .data.coex_schm_bt_iscan_wifi_connecting - 0x000000003ffb2410 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2410 coex_schm_bt_iscan_wifi_connecting - *fill* 0x000000003ffb241a 0x2 + 0x000000003ffb2470 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2470 coex_schm_bt_iscan_wifi_connecting + *fill* 0x000000003ffb247a 0x2 .data.coex_schm_bt_idle_wifi_connecting - 0x000000003ffb241c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb241c coex_schm_bt_idle_wifi_connecting - *fill* 0x000000003ffb2422 0x2 - .data.coex_schm_ble_default_bt_default_wifi_scan - 0x000000003ffb2424 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2424 coex_schm_ble_default_bt_default_wifi_scan - *fill* 0x000000003ffb242e 0x2 - .data.coex_schm_ble_default_bt_a2dp_wifi_scan - 0x000000003ffb2430 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2430 coex_schm_ble_default_bt_a2dp_wifi_scan - *fill* 0x000000003ffb243a 0x2 - .data.coex_schm_ble_default_bt_idle_wifi_scan - 0x000000003ffb243c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb243c coex_schm_ble_default_bt_idle_wifi_scan - *fill* 0x000000003ffb2446 0x2 - .data.coex_schm_ble_mesh_standby_bt_default_wifi_scan - 0x000000003ffb2448 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2448 coex_schm_ble_mesh_standby_bt_default_wifi_scan - *fill* 0x000000003ffb245e 0x2 - .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_scan - 0x000000003ffb2460 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2460 coex_schm_ble_mesh_standby_bt_sniff_wifi_scan - *fill* 0x000000003ffb246a 0x2 - .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan - 0x000000003ffb246c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb246c coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan + 0x000000003ffb247c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb247c coex_schm_bt_idle_wifi_connecting *fill* 0x000000003ffb2482 0x2 - .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan - 0x000000003ffb2484 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2484 coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan - *fill* 0x000000003ffb2492 0x2 - .data.coex_schm_ble_mesh_standby_bt_conn_wifi_scan - 0x000000003ffb2494 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2494 coex_schm_ble_mesh_standby_bt_conn_wifi_scan - *fill* 0x000000003ffb24a2 0x2 - .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_scan - 0x000000003ffb24a4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb24a4 coex_schm_ble_mesh_standby_bt_iscan_wifi_scan - *fill* 0x000000003ffb24b2 0x2 - .data.coex_schm_ble_mesh_traffic_bt_default_wifi_scan - 0x000000003ffb24b4 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb24b4 coex_schm_ble_mesh_traffic_bt_default_wifi_scan + .data.coex_schm_ble_default_bt_default_wifi_scan + 0x000000003ffb2484 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2484 coex_schm_ble_default_bt_default_wifi_scan + *fill* 0x000000003ffb248e 0x2 + .data.coex_schm_ble_default_bt_a2dp_wifi_scan + 0x000000003ffb2490 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2490 coex_schm_ble_default_bt_a2dp_wifi_scan + *fill* 0x000000003ffb249a 0x2 + .data.coex_schm_ble_default_bt_idle_wifi_scan + 0x000000003ffb249c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb249c coex_schm_ble_default_bt_idle_wifi_scan + *fill* 0x000000003ffb24a6 0x2 + .data.coex_schm_ble_mesh_standby_bt_default_wifi_scan + 0x000000003ffb24a8 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb24a8 coex_schm_ble_mesh_standby_bt_default_wifi_scan + *fill* 0x000000003ffb24be 0x2 + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_scan + 0x000000003ffb24c0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb24c0 coex_schm_ble_mesh_standby_bt_sniff_wifi_scan *fill* 0x000000003ffb24ca 0x2 + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan + 0x000000003ffb24cc 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb24cc coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan + *fill* 0x000000003ffb24e2 0x2 + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan + 0x000000003ffb24e4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb24e4 coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan + *fill* 0x000000003ffb24f2 0x2 + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_scan + 0x000000003ffb24f4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb24f4 coex_schm_ble_mesh_standby_bt_conn_wifi_scan + *fill* 0x000000003ffb2502 0x2 + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_scan + 0x000000003ffb2504 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2504 coex_schm_ble_mesh_standby_bt_iscan_wifi_scan + *fill* 0x000000003ffb2512 0x2 + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_scan + 0x000000003ffb2514 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2514 coex_schm_ble_mesh_traffic_bt_default_wifi_scan + *fill* 0x000000003ffb252a 0x2 .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan - 0x000000003ffb24cc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb24cc coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan - *fill* 0x000000003ffb24d6 0x2 + 0x000000003ffb252c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb252c coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan + *fill* 0x000000003ffb2536 0x2 .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan - 0x000000003ffb24d8 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb24d8 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan - *fill* 0x000000003ffb24ee 0x2 + 0x000000003ffb2538 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2538 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan + *fill* 0x000000003ffb254e 0x2 .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan - 0x000000003ffb24f0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb24f0 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan - *fill* 0x000000003ffb24fe 0x2 + 0x000000003ffb2550 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2550 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan + *fill* 0x000000003ffb255e 0x2 .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_scan - 0x000000003ffb2500 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2500 coex_schm_ble_mesh_traffic_bt_conn_wifi_scan - *fill* 0x000000003ffb250e 0x2 + 0x000000003ffb2560 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2560 coex_schm_ble_mesh_traffic_bt_conn_wifi_scan + *fill* 0x000000003ffb256e 0x2 .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan - 0x000000003ffb2510 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2510 coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan - *fill* 0x000000003ffb251e 0x2 + 0x000000003ffb2570 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2570 coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan + *fill* 0x000000003ffb257e 0x2 .data.coex_schm_ble_mesh_config_bt_default_wifi_scan - 0x000000003ffb2520 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2520 coex_schm_ble_mesh_config_bt_default_wifi_scan - *fill* 0x000000003ffb252e 0x2 + 0x000000003ffb2580 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2580 coex_schm_ble_mesh_config_bt_default_wifi_scan + *fill* 0x000000003ffb258e 0x2 .data.coex_schm_ble_mesh_config_bt_sniff_wifi_scan - 0x000000003ffb2530 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2530 coex_schm_ble_mesh_config_bt_sniff_wifi_scan - *fill* 0x000000003ffb253a 0x2 + 0x000000003ffb2590 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2590 coex_schm_ble_mesh_config_bt_sniff_wifi_scan + *fill* 0x000000003ffb259a 0x2 .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_scan - 0x000000003ffb253c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb253c coex_schm_ble_mesh_config_bt_a2dp_wifi_scan - *fill* 0x000000003ffb254a 0x2 - .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan - 0x000000003ffb254c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb254c coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan - *fill* 0x000000003ffb255a 0x2 - .data.coex_schm_ble_mesh_config_bt_conn_wifi_scan - 0x000000003ffb255c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb255c coex_schm_ble_mesh_config_bt_conn_wifi_scan - *fill* 0x000000003ffb256a 0x2 - .data.coex_schm_ble_mesh_config_bt_iscan_wifi_scan - 0x000000003ffb256c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb256c coex_schm_ble_mesh_config_bt_iscan_wifi_scan - *fill* 0x000000003ffb257a 0x2 - .data.coex_schm_ble_mesh_standby_wifi_scan - 0x000000003ffb257c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb257c coex_schm_ble_mesh_standby_wifi_scan - *fill* 0x000000003ffb2586 0x2 - .data.coex_schm_ble_mesh_traffic_wifi_scan - 0x000000003ffb2588 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2588 coex_schm_ble_mesh_traffic_wifi_scan - *fill* 0x000000003ffb2592 0x2 - .data.coex_schm_ble_mesh_config_wifi_scan - 0x000000003ffb2594 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb2594 coex_schm_ble_mesh_config_wifi_scan - *fill* 0x000000003ffb259e 0x2 - .data.coex_schm_bt_default_wifi_scan - 0x000000003ffb25a0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb25a0 coex_schm_bt_default_wifi_scan + 0x000000003ffb259c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb259c coex_schm_ble_mesh_config_bt_a2dp_wifi_scan *fill* 0x000000003ffb25aa 0x2 - .data.coex_schm_bt_sniff_wifi_scan - 0x000000003ffb25ac 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb25ac coex_schm_bt_sniff_wifi_scan - *fill* 0x000000003ffb25b2 0x2 - .data.coex_schm_bt_a2dp_wifi_scan - 0x000000003ffb25b4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb25b4 coex_schm_bt_a2dp_wifi_scan - *fill* 0x000000003ffb25be 0x2 - .data.coex_schm_bt_a2dp_paused_wifi_scan - 0x000000003ffb25c0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb25c0 coex_schm_bt_a2dp_paused_wifi_scan + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan + 0x000000003ffb25ac 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb25ac coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan + *fill* 0x000000003ffb25ba 0x2 + .data.coex_schm_ble_mesh_config_bt_conn_wifi_scan + 0x000000003ffb25bc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb25bc coex_schm_ble_mesh_config_bt_conn_wifi_scan *fill* 0x000000003ffb25ca 0x2 + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_scan + 0x000000003ffb25cc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb25cc coex_schm_ble_mesh_config_bt_iscan_wifi_scan + *fill* 0x000000003ffb25da 0x2 + .data.coex_schm_ble_mesh_standby_wifi_scan + 0x000000003ffb25dc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb25dc coex_schm_ble_mesh_standby_wifi_scan + *fill* 0x000000003ffb25e6 0x2 + .data.coex_schm_ble_mesh_traffic_wifi_scan + 0x000000003ffb25e8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb25e8 coex_schm_ble_mesh_traffic_wifi_scan + *fill* 0x000000003ffb25f2 0x2 + .data.coex_schm_ble_mesh_config_wifi_scan + 0x000000003ffb25f4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb25f4 coex_schm_ble_mesh_config_wifi_scan + *fill* 0x000000003ffb25fe 0x2 + .data.coex_schm_bt_default_wifi_scan + 0x000000003ffb2600 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2600 coex_schm_bt_default_wifi_scan + *fill* 0x000000003ffb260a 0x2 + .data.coex_schm_bt_sniff_wifi_scan + 0x000000003ffb260c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb260c coex_schm_bt_sniff_wifi_scan + *fill* 0x000000003ffb2612 0x2 + .data.coex_schm_bt_a2dp_wifi_scan + 0x000000003ffb2614 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2614 coex_schm_bt_a2dp_wifi_scan + *fill* 0x000000003ffb261e 0x2 + .data.coex_schm_bt_a2dp_paused_wifi_scan + 0x000000003ffb2620 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2620 coex_schm_bt_a2dp_paused_wifi_scan + *fill* 0x000000003ffb262a 0x2 .data.coex_schm_bt_conn_wifi_scan - 0x000000003ffb25cc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb25cc coex_schm_bt_conn_wifi_scan - *fill* 0x000000003ffb25d6 0x2 + 0x000000003ffb262c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb262c coex_schm_bt_conn_wifi_scan + *fill* 0x000000003ffb2636 0x2 .data.coex_schm_bt_iscan_wifi_scan - 0x000000003ffb25d8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb25d8 coex_schm_bt_iscan_wifi_scan - *fill* 0x000000003ffb25e2 0x2 + 0x000000003ffb2638 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2638 coex_schm_bt_iscan_wifi_scan + *fill* 0x000000003ffb2642 0x2 .data.coex_schm_bt_idle_wifi_scan - 0x000000003ffb25e4 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb25e4 coex_schm_bt_idle_wifi_scan - *fill* 0x000000003ffb25ea 0x2 + 0x000000003ffb2644 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2644 coex_schm_bt_idle_wifi_scan + *fill* 0x000000003ffb264a 0x2 .data.coex_schm_all_default - 0x000000003ffb25ec 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb25ec coex_schm_all_default - *fill* 0x000000003ffb25f6 0x2 - .dram1.0 0x000000003ffb25f8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) - 0x000000003ffb25f8 g_coa_funcs_p + 0x000000003ffb264c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb264c coex_schm_all_default + *fill* 0x000000003ffb2656 0x2 + .dram1.0 0x000000003ffb2658 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + 0x000000003ffb2658 g_coa_funcs_p .data._ZN10__cxxabiv119__terminate_handlerE - 0x000000003ffb25fc 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) - 0x000000003ffb25fc _ZN10__cxxabiv119__terminate_handlerE + 0x000000003ffb265c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + 0x000000003ffb265c _ZN10__cxxabiv119__terminate_handlerE .data._ZN10__cxxabiv120__unexpected_handlerE - 0x000000003ffb2600 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) - 0x000000003ffb2600 _ZN10__cxxabiv120__unexpected_handlerE - .data 0x000000003ffb2604 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - .data 0x000000003ffb2608 0x16c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) - 0x000000003ffb2608 __global_locale + 0x000000003ffb2660 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + 0x000000003ffb2660 _ZN10__cxxabiv120__unexpected_handlerE + .data 0x000000003ffb2664 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .data 0x000000003ffb2668 0x16c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x000000003ffb2668 __global_locale *libxtensa.a:stdatomic.*(.rodata .rodata.*) - *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.*) - .rodata.memspi_host_read_id_hs.str1.4 - 0x000000003ffb2774 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .rodata.TAG 0x000000003ffb2798 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.*) - *fill* 0x000000003ffb279f 0x1 - .rodata.spi_flash_chip_generic_get_write_protect.str1.4 - 0x000000003ffb27a0 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .rodata.spi_flash_chip_generic_config_host_io_mode - 0x000000003ffb2800 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .rodata.spi_flash_chip_generic_read.str1.4 - 0x000000003ffb2818 0x43 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x000000003ffb285b 0x1 - .rodata.__func__$3634 - 0x000000003ffb285c 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x000000003ffb2885 0x3 - .rodata.esp_flash_chip_generic - 0x000000003ffb2888 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000003ffb2888 esp_flash_chip_generic - .rodata.chip_name - 0x000000003ffb28e4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .rodata.TAG 0x000000003ffb28ec 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.*) - *fill* 0x000000003ffb28f9 0x3 .rodata.esp_flash_chip_gd - 0x000000003ffb28fc 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x000000003ffb28fc esp_flash_chip_gd + 0x000000003ffb27d4 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000003ffb27d4 esp_flash_chip_gd .rodata.chip_name - 0x000000003ffb2958 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000003ffb2830 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.*) - *fill* 0x000000003ffb295b 0x1 + *fill* 0x000000003ffb2833 0x1 .rodata.esp_flash_chip_issi - 0x000000003ffb295c 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x000000003ffb295c esp_flash_chip_issi + 0x000000003ffb2834 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000003ffb2834 esp_flash_chip_issi .rodata.chip_name - 0x000000003ffb29b8 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000003ffb2890 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.*) + *fill* 0x000000003ffb2895 0x3 + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x000000003ffb2898 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_config_host_io_mode + 0x000000003ffb28f8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read.str1.4 + 0x000000003ffb2910 0x43 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffb2953 0x1 + .rodata.__func__$3634 + 0x000000003ffb2954 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffb297d 0x3 + .rodata.esp_flash_chip_generic + 0x000000003ffb2980 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003ffb2980 esp_flash_chip_generic + .rodata.chip_name + 0x000000003ffb29dc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x000000003ffb29e4 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.*) + *fill* 0x000000003ffb29f1 0x3 + .rodata.memspi_host_read_id_hs.str1.4 + 0x000000003ffb29f4 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.TAG 0x000000003ffb2a18 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) *libesp_system.a:panic.*(.rodata .rodata.*) - *fill* 0x000000003ffb29bd 0x3 + *fill* 0x000000003ffb2a1f 0x1 .rodata.esp_panic_handler.str1.4 - 0x000000003ffb29c0 0x83 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000003ffb2a20 0x83 esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x87 (size before relaxing) - *libesp_system.a:system_api.*(.rodata.esp_system_abort) *libesp_system.a:panic_handler.*(.rodata .rodata.*) - *fill* 0x000000003ffb2a43 0x1 - .rodata.frame_to_panic_info.str1.4 - 0x000000003ffb2a44 0x47 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - *fill* 0x000000003ffb2a8b 0x1 - .rodata.panic_handler.str1.4 - 0x000000003ffb2a8c 0x17 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) *fill* 0x000000003ffb2aa3 0x1 + .rodata.frame_to_panic_info.str1.4 + 0x000000003ffb2aa4 0x47 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + *fill* 0x000000003ffb2aeb 0x1 + .rodata.panic_handler.str1.4 + 0x000000003ffb2aec 0x17 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + *fill* 0x000000003ffb2b03 0x1 .rodata.print_backtrace_entry.str1.4 - 0x000000003ffb2aa4 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000003ffb2b04 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x8 (size before relaxing) .rodata.print_illegal_instruction_details.str1.4 - 0x000000003ffb2aa8 0x17 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000003ffb2b08 0x17 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x1a (size before relaxing) - *fill* 0x000000003ffb2abf 0x1 + *fill* 0x000000003ffb2b1f 0x1 .rodata.print_registers.str1.4 - 0x000000003ffb2ac0 0x199 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000003ffb2b20 0x199 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x1a5 (size before relaxing) - *fill* 0x000000003ffb2c59 0x3 - .rodata 0x000000003ffb2c5c 0x60 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + *fill* 0x000000003ffb2cb9 0x3 + .rodata 0x000000003ffb2cbc 0x60 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) .rodata.print_backtrace.str1.4 - 0x000000003ffb2cbc 0x2e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - *fill* 0x000000003ffb2cea 0x2 + 0x000000003ffb2d1c 0x2e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + *fill* 0x000000003ffb2d4a 0x2 .rodata.print_debug_exception_details.str1.4 - 0x000000003ffb2cec 0xa3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - *fill* 0x000000003ffb2d8f 0x1 + 0x000000003ffb2d4c 0xa3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + *fill* 0x000000003ffb2def 0x1 .rodata.str1.4 - 0x000000003ffb2d90 0x29d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - *fill* 0x000000003ffb302d 0x3 + 0x000000003ffb2df0 0x29d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + *fill* 0x000000003ffb308d 0x3 .rodata.reason$7031 - 0x000000003ffb3030 0xa0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000003ffb3090 0xa0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) .rodata.pseudo_reason$7030 - 0x000000003ffb30d0 0x20 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000003ffb3130 0x20 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + *libesp_system.a:system_api.*(.rodata.esp_system_abort) *libesp_system.a:reset_reason.*(.rodata .rodata.*) .rodata.get_reset_reason - 0x000000003ffb30f0 0x44 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x000000003ffb3150 0x44 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) .rodata.str1.4 - 0x000000003ffb3134 0x6e esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - *fill* 0x000000003ffb31a2 0x2 + 0x000000003ffb3194 0x6e esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + *fill* 0x000000003ffb3202 0x2 .rodata.__func__$4255 - 0x000000003ffb31a4 0x1a esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - *libsoc.a:rtc_clk.*(.rodata .rodata.*) - *fill* 0x000000003ffb31be 0x2 - .rodata.rtc_clk_cpu_freq_to_config.str1.4 - 0x000000003ffb31c0 0x3c esp-idf/soc/libsoc.a(rtc_clk.c.obj) - .rodata.rtc_clk_cpu_freq_get_config.str1.4 - 0x000000003ffb31fc 0x3b esp-idf/soc/libsoc.a(rtc_clk.c.obj) - *fill* 0x000000003ffb3237 0x1 - .rodata.rtc_clk_cpu_freq_to_pll_mhz.str1.4 - 0x000000003ffb3238 0x29 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000003ffb3204 0x1a esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) *libsoc.a:spi_flash_hal_iram.*(.rodata .rodata.*) - *fill* 0x000000003ffb3261 0x3 + *fill* 0x000000003ffb321e 0x2 .rodata.spi_flash_hal_configure_host_io_mode - 0x000000003ffb3264 0x18 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - *libsoc.a:uart_hal_iram.*(.data .data.* .dram1 .dram1.*) - *libsoc.a:i2c_hal_iram.*(.rodata .rodata.*) + 0x000000003ffb3220 0x18 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) *libsoc.a:spi_flash_hal_gpspi.*(.rodata .rodata.*) - *libsoc.a:cpu_hal.*(.rodata .rodata.*) + *libsoc.a:rtc_clk.*(.rodata .rodata.*) + .rodata.rtc_clk_cpu_freq_to_config.str1.4 + 0x000000003ffb3238 0x3c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x000000003ffb3274 0x3b esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x000000003ffb32af 0x1 + .rodata.rtc_clk_cpu_freq_to_pll_mhz.str1.4 + 0x000000003ffb32b0 0x29 esp-idf/soc/libsoc.a(rtc_clk.c.obj) *libsoc.a:soc_hal.*(.rodata .rodata.*) - .rodata 0x000000003ffb327c 0x18 esp-idf/soc/libsoc.a(soc_hal.c.obj) + *fill* 0x000000003ffb32d9 0x3 + .rodata 0x000000003ffb32dc 0x18 esp-idf/soc/libsoc.a(soc_hal.c.obj) + *libsoc.a:uart_hal_iram.*(.data .data.* .dram1 .dram1.*) + *libsoc.a:cpu_hal.*(.rodata .rodata.*) + *libsoc.a:i2c_hal_iram.*(.rodata .rodata.*) *libesp_event.a:esp_event.*(.rodata.esp_event_isr_post_to) *libesp_event.a:default_event_loop.*(.rodata.esp_event_isr_post) *libphy.a:(.rodata .rodata.*) .rodata.str1.4 - 0x000000003ffb3294 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb32f4 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x48 (size before relaxing) .rodata.bt_i2c_write_set - 0x000000003ffb32d8 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb3338 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) .rodata.bt_get_i2c_data - 0x000000003ffb32fc 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - .rodata 0x000000003ffb3328 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb335c 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata 0x000000003ffb3388 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) .rodata.CSWTCH$130 - 0x000000003ffb3330 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - .rodata 0x000000003ffb3360 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb3390 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata 0x000000003ffb33c0 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) .rodata.ram_set_pbus_mem - 0x000000003ffb33d0 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb3430 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) .rodata.str1.4 - 0x000000003ffb33fc 0x27e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb345c 0x27e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x292 (size before relaxing) - *fill* 0x000000003ffb367a 0x2 + *fill* 0x000000003ffb36da 0x2 .rodata.bt_tx_gain_cal$part$2 - 0x000000003ffb367c 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb36dc 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) .rodata.CSWTCH$208 - 0x000000003ffb369c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - *fill* 0x000000003ffb36a2 0x2 - .rodata 0x000000003ffb36a4 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb36fc 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x000000003ffb3702 0x2 + .rodata 0x000000003ffb3704 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) .rodata.str1.4 - 0x000000003ffb36c8 0x190 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb3728 0x190 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x191 (size before relaxing) .rodata.CSWTCH$273 - 0x000000003ffb3858 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb38b8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) .rodata.CSWTCH$269 - 0x000000003ffb385c 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - *fill* 0x000000003ffb3867 0x1 + 0x000000003ffb38bc 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *fill* 0x000000003ffb38c7 0x1 .rodata.CSWTCH$263 - 0x000000003ffb3868 0x3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - *fill* 0x000000003ffb386b 0x1 + 0x000000003ffb38c8 0x3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *fill* 0x000000003ffb38cb 0x1 .rodata.CSWTCH$237 - 0x000000003ffb386c 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb38cc 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) .rodata.CSWTCH$228 - 0x000000003ffb3874 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb38d4 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) .rodata.dco_gain_coarse$4685 - 0x000000003ffb387c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb38dc 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *liblog.a:log_freertos.*(.rodata.esp_log_timestamp) *liblog.a:log_freertos.*(.rodata.esp_log_early_timestamp) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_lock) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_lock_timeout) *liblog.a:log_freertos.*(.rodata.esp_log_impl_unlock) *liblog.a:log.*(.rodata.esp_log_write) - *liblog.a:log_freertos.*(.rodata.esp_log_impl_lock) - *liblog.a:log_freertos.*(.rodata.esp_log_timestamp) - *liblog.a:log_freertos.*(.rodata.esp_log_impl_lock_timeout) - *libheap.a:multi_heap_poisoning.*(.rodata .rodata.*) *libheap.a:multi_heap.*(.rodata .rodata.*) - *fill* 0x000000003ffb3882 0x2 + *fill* 0x000000003ffb38e2 0x2 .rodata.get_prev_free_block.str1.4 - 0x000000003ffb3884 0x8a esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x000000003ffb390e 0x2 + 0x000000003ffb38e4 0x8a esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb396e 0x2 .rodata.split_if_necessary.str1.4 - 0x000000003ffb3910 0x2f esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x000000003ffb393f 0x1 + 0x000000003ffb3970 0x2f esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb399f 0x1 .rodata.merge_adjacent.str1.4 - 0x000000003ffb3940 0x6 esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x000000003ffb3946 0x2 + 0x000000003ffb39a0 0x6 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb39a6 0x2 .rodata.multi_heap_realloc_impl.str1.4 - 0x000000003ffb3948 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x000000003ffb3955 0x3 + 0x000000003ffb39a8 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb39b5 0x3 .rodata.__func__$4929 - 0x000000003ffb3958 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000003ffb39b8 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) .rodata.__func__$4837 - 0x000000003ffb3970 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x000000003ffb397f 0x1 + 0x000000003ffb39d0 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb39df 0x1 .rodata.__func__$4827 - 0x000000003ffb3980 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000003ffb39e0 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) .rodata.__func__$4848 - 0x000000003ffb3994 0x13 esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x000000003ffb39a7 0x1 + 0x000000003ffb39f4 0x13 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb3a07 0x1 .rodata.__func__$4802 - 0x000000003ffb39a8 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000003ffb3a08 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + *libheap.a:multi_heap_poisoning.*(.rodata .rodata.*) *libgcc.a:_divsf3.*(.rodata .rodata.*) *libgcov.a:(.rodata .rodata.*) *lib_esp_common.a:esp_err.*(.rodata .rodata.*) - *libnewlib.a:abort.*(.rodata .rodata.*) - *fill* 0x000000003ffb39b7 0x1 - .rodata.abort.str1.4 - 0x000000003ffb39b8 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) *libnewlib.a:heap.*(.rodata .rodata.*) + *libnewlib.a:abort.*(.rodata .rodata.*) + *fill* 0x000000003ffb3a17 0x1 + .rodata.abort.str1.4 + 0x000000003ffb3a18 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*(.rodata .rodata.*) + *libapp_trace.a:app_trace_util.*(.rodata .rodata.*) + *libapp_trace.a:SEGGER_SYSVIEW.*(.rodata .rodata.*) *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.*(.rodata .rodata.*) *libapp_trace.a:app_trace.*(.rodata .rodata.*) *libapp_trace.a:SEGGER_RTT_esp32.*(.rodata .rodata.*) - *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*(.rodata .rodata.*) - *libapp_trace.a:SEGGER_SYSVIEW.*(.rodata .rodata.*) - *libapp_trace.a:app_trace_util.*(.rodata .rodata.*) - 0x000000003ffb39de _data_end = ABSOLUTE (.) - 0x000000003ffb39e0 . = ALIGN (0x4) - *fill* 0x000000003ffb39de 0x2 + 0x000000003ffb3a3e _data_end = ABSOLUTE (.) + 0x000000003ffb3a40 . = ALIGN (0x4) + *fill* 0x000000003ffb3a3e 0x2 -.noinit 0x000000003ffb39e0 0x0 - 0x000000003ffb39e0 . = ALIGN (0x4) - 0x000000003ffb39e0 _noinit_start = ABSOLUTE (.) +.noinit 0x000000003ffb3a40 0x0 + 0x000000003ffb3a40 . = ALIGN (0x4) + 0x000000003ffb3a40 _noinit_start = ABSOLUTE (.) *(.noinit .noinit.*) - 0x000000003ffb39e0 . = ALIGN (0x4) - 0x000000003ffb39e0 _noinit_end = ABSOLUTE (.) + 0x000000003ffb3a40 . = ALIGN (0x4) + 0x000000003ffb3a40 _noinit_end = ABSOLUTE (.) -.dram0.bss 0x000000003ffb39e0 0x5c40 - 0x000000003ffb39e0 . = ALIGN (0x8) - 0x000000003ffb39e0 _bss_start = ABSOLUTE (.) +.dram0.bss 0x000000003ffb3a40 0x1ab38 + 0x000000003ffb3a40 . = ALIGN (0x8) + 0x000000003ffb3a40 _bss_start = ABSOLUTE (.) *(.ext_ram.bss*) - 0x000000003ffb39e0 _bt_bss_start = ABSOLUTE (.) + 0x000000003ffb3a40 _bt_bss_start = ABSOLUTE (.) *libbt.a:(.bss .bss.* COMMON) - 0x000000003ffb39e0 . = ALIGN (0x4) - 0x000000003ffb39e0 _bt_bss_end = ABSOLUTE (.) - 0x000000003ffb39e0 _btdm_bss_start = ABSOLUTE (.) + 0x000000003ffb3a40 . = ALIGN (0x4) + 0x000000003ffb3a40 _bt_bss_end = ABSOLUTE (.) + 0x000000003ffb3a40 _btdm_bss_start = ABSOLUTE (.) *libbtdm_app.a:(.bss .bss.* COMMON) - 0x000000003ffb39e0 . = ALIGN (0x4) - 0x000000003ffb39e0 _btdm_bss_end = ABSOLUTE (.) - 0x000000003ffb39e0 _nimble_bss_start = ABSOLUTE (.) + 0x000000003ffb3a40 . = ALIGN (0x4) + 0x000000003ffb3a40 _btdm_bss_end = ABSOLUTE (.) + 0x000000003ffb3a40 _nimble_bss_start = ABSOLUTE (.) *libnimble.a:(.bss .bss.* COMMON) - 0x000000003ffb39e0 . = ALIGN (0x4) - 0x000000003ffb39e0 _nimble_bss_end = ABSOLUTE (.) + 0x000000003ffb3a40 . = ALIGN (0x4) + 0x000000003ffb3a40 _nimble_bss_end = ABSOLUTE (.) *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .bss EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .bss.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) COMMON) .bss.xt_exc_frames - 0x000000003ffb39e0 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000003ffb3a40 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) .bss.s_reset_reason - 0x000000003ffb39e8 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x000000003ffb3a48 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) .bss.s_panic_abort_details - 0x000000003ffb39ec 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000003ffb3a4c 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) .bss.g_panic_abort - 0x000000003ffb39f0 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x000000003ffb39f0 g_panic_abort - *fill* 0x000000003ffb39f1 0x3 + 0x000000003ffb3a50 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000003ffb3a50 g_panic_abort + *fill* 0x000000003ffb3a51 0x3 .bss.s_cur_pll_freq - 0x000000003ffb39f4 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000003ffb3a54 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) .bss.base$5238 - 0x000000003ffb39f8 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x000000003ffb3a58 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) .bss.s_log_mutex - 0x000000003ffb39fc 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x000000003ffb3a5c 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) .bss.s_pthread_cfg_key - 0x000000003ffb3a00 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x000000003ffb3a60 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) .bss.s_threads_mux - 0x000000003ffb3a04 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .bss.s_keys 0x000000003ffb3a08 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x000000003ffb3a08 s_keys + 0x000000003ffb3a64 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_keys 0x000000003ffb3a68 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x000000003ffb3a68 s_keys .bss.app_cpu_started - 0x000000003ffb3a0c 0x1 esp-idf/esp32/libesp32.a(cpu_start.c.obj) - *fill* 0x000000003ffb3a0d 0x3 - .bss.reason 0x000000003ffb3a10 0x8 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x000000003ffb3a6c 0x1 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x000000003ffb3a6d 0x3 + .bss.reason 0x000000003ffb3a70 0x8 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) .bss.oldInterruptLevel - 0x000000003ffb3a18 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x000000003ffb3a78 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) .bss.dport_access_ref - 0x000000003ffb3a20 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x000000003ffb3a80 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) .bss.dport_core_state - 0x000000003ffb3a28 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) - COMMON 0x000000003ffb3a30 0x10 esp-idf/esp32/libesp32.a(dport_access.c.obj) - 0x000000003ffb3a30 dport_access_end - 0x000000003ffb3a38 dport_access_start + 0x000000003ffb3a88 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + COMMON 0x000000003ffb3a90 0x10 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x000000003ffb3a90 dport_access_end + 0x000000003ffb3a98 dport_access_start .bss.int_wdt_app_cpu_ticked - 0x000000003ffb3a40 0x1 esp-idf/esp32/libesp32.a(int_wdt.c.obj) - 0x000000003ffb3a40 int_wdt_app_cpu_ticked - *fill* 0x000000003ffb3a41 0x3 + 0x000000003ffb3aa0 0x1 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x000000003ffb3aa0 int_wdt_app_cpu_ticked + *fill* 0x000000003ffb3aa1 0x3 .bss.non_iram_int_disabled_flag - 0x000000003ffb3a44 0x2 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) - *fill* 0x000000003ffb3a46 0x2 + 0x000000003ffb3aa4 0x2 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003ffb3aa6 0x2 .bss.non_iram_int_disabled - 0x000000003ffb3a48 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x000000003ffb3aa8 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) .bss.non_iram_int_mask - 0x000000003ffb3a50 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x000000003ffb3ab0 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) .bss.vector_desc_head - 0x000000003ffb3a58 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x000000003ffb3ab8 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) .bss.twdt_config - 0x000000003ffb3a5c 0x4 esp-idf/esp32/libesp32.a(task_wdt.c.obj) - .bss.tick_cb 0x000000003ffb3a60 0x40 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) - .bss.idle_cb 0x000000003ffb3aa0 0x40 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x000000003ffb3abc 0x4 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .bss.tick_cb 0x000000003ffb3ac0 0x40 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .bss.idle_cb 0x000000003ffb3b00 0x40 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) .bss.s_ipc_wait - 0x000000003ffb3ae0 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x000000003ffb3b40 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) .bss.s_func_arg - 0x000000003ffb3ae8 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) - .bss.s_func 0x000000003ffb3af0 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x000000003ffb3b48 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_func 0x000000003ffb3b50 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) .bss.s_ipc_ack - 0x000000003ffb3af8 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x000000003ffb3b58 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) .bss.s_ipc_sem - 0x000000003ffb3b00 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x000000003ffb3b60 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) .bss.s_ipc_mutex - 0x000000003ffb3b08 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x000000003ffb3b68 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) .bss.s_ipc_task_handle - 0x000000003ffb3b10 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x000000003ffb3b70 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) .bss.s_timer_semaphore - 0x000000003ffb3b18 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x000000003ffb3b78 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) .bss.s_timer_task - 0x000000003ffb3b1c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .bss.s_timers 0x000000003ffb3b20 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x000000003ffb3b7c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timers 0x000000003ffb3b80 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) .bss.s_alarm_handler - 0x000000003ffb3b24 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x000000003ffb3b84 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) .bss.s_timer_interrupt_handle - 0x000000003ffb3b28 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x000000003ffb3b88 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) .bss.port_uxOldInterruptState - 0x000000003ffb3b2c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000003ffb3b2c port_uxOldInterruptState + 0x000000003ffb3b8c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb3b8c port_uxOldInterruptState .bss.port_uxCriticalNesting - 0x000000003ffb3b34 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000003ffb3b34 port_uxCriticalNesting + 0x000000003ffb3b94 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb3b94 port_uxCriticalNesting .bss.port_interruptNesting - 0x000000003ffb3b3c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000003ffb3b3c port_interruptNesting + 0x000000003ffb3b9c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb3b9c port_interruptNesting .bss.port_xSchedulerRunning - 0x000000003ffb3b44 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000003ffb3b44 port_xSchedulerRunning + 0x000000003ffb3ba4 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb3ba4 port_xSchedulerRunning .bss._xt_tick_divisor - 0x000000003ffb3b4c 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) - 0x000000003ffb3b4c _xt_tick_divisor + 0x000000003ffb3bac 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x000000003ffb3bac _xt_tick_divisor .bss.xSwitchingContext - 0x000000003ffb3b50 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3bb0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.uxSchedulerSuspended - 0x000000003ffb3b58 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3bb8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.uxTaskNumber - 0x000000003ffb3b60 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3bc0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.xNumOfOverflows - 0x000000003ffb3b64 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3bc4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.xYieldPending - 0x000000003ffb3b68 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3bc8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.uxPendedTicks - 0x000000003ffb3b70 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3bd0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.xSchedulerRunning - 0x000000003ffb3b74 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3bd4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.uxTopReadyPriority - 0x000000003ffb3b78 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3bd8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.xTickCount - 0x000000003ffb3b7c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3bdc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.uxCurrentNumberOfTasks - 0x000000003ffb3b80 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xIdleTaskHandle - 0x000000003ffb3b84 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xSuspendedTaskList - 0x000000003ffb3b8c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.uxTasksDeleted - 0x000000003ffb3ba0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xTasksWaitingTermination - 0x000000003ffb3ba4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xPendingReadyList - 0x000000003ffb3bb8 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.pxOverflowDelayedTaskList 0x000000003ffb3be0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x000000003ffb3be4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x000000003ffb3bec 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTasksDeleted + 0x000000003ffb3c00 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x000000003ffb3c04 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x000000003ffb3c18 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x000000003ffb3c40 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.pxDelayedTaskList - 0x000000003ffb3be4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3c44 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.xDelayedTaskList2 - 0x000000003ffb3be8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3c48 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.xDelayedTaskList1 - 0x000000003ffb3bfc 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3c5c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.pxReadyTasksLists - 0x000000003ffb3c10 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3c70 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) .bss.pxCurrentTCB - 0x000000003ffb3e04 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x000000003ffb3e04 pxCurrentTCB + 0x000000003ffb3e64 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3e64 pxCurrentTCB .bss.xLastTime$5002 - 0x000000003ffb3e0c 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000003ffb3e6c 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) .bss.xTimerQueue - 0x000000003ffb3e10 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000003ffb3e70 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) .bss.pxOverflowTimerList - 0x000000003ffb3e14 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000003ffb3e74 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) .bss.pxCurrentTimerList - 0x000000003ffb3e18 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000003ffb3e78 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) .bss.xActiveTimerList2 - 0x000000003ffb3e1c 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000003ffb3e7c 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) .bss.xActiveTimerList1 - 0x000000003ffb3e30 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000003ffb3e90 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) .bss.s_fd_table_lock - 0x000000003ffb3e44 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x000000003ffb3ea4 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) .bss.s_vfs_count - 0x000000003ffb3e48 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) - .bss.s_vfs 0x000000003ffb3e4c 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x000000003ffb3ea8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs 0x000000003ffb3eac 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) .bss.s_registered_select_num - 0x000000003ffb3e6c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x000000003ffb3ecc 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) .bss.s_registered_selects - 0x000000003ffb3e70 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .bss.s_reent 0x000000003ffb3e74 0xf0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) - *fill* 0x000000003ffb3f64 0x4 + 0x000000003ffb3ed0 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_reent 0x000000003ffb3ed4 0xf0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + *fill* 0x000000003ffb3fc4 0x4 .bss.adjtime_total_correction - 0x000000003ffb3f68 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x000000003ffb3fc8 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) .bss.adjtime_start - 0x000000003ffb3f70 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x000000003ffb3fd0 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) .bss.s_adjust_time_lock - 0x000000003ffb3f78 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x000000003ffb3fd8 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) .bss.s_boot_time_lock - 0x000000003ffb3f7c 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) - COMMON 0x000000003ffb3f80 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x000000003ffb3f80 s_microseconds_offset - .bss.wl_handle$11183 - 0x000000003ffb3f88 0x4 esp-idf/main/libmain.a(main.c.obj) - COMMON 0x000000003ffb3f8c 0x5c esp-idf/ca/libca.a(ca.c.obj) - 0x000000003ffb3f8c global_arg - 0x000000003ffb3f94 opt + 0x000000003ffb3fdc 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + COMMON 0x000000003ffb3fe0 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x000000003ffb3fe0 s_microseconds_offset + .bss.wl_handle$15835 + 0x000000003ffb3fe8 0x4 esp-idf/main/libmain.a(main.c.obj) + COMMON 0x000000003ffb3fec 0x5c esp-idf/ca/libca.a(ca.c.obj) + 0x000000003ffb3fec global_arg + 0x000000003ffb3ff4 opt .bss.list_args - 0x000000003ffb3fe8 0x10 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003ffb4048 0x10 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .bss.namespace_args - 0x000000003ffb3ff8 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003ffb4058 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .bss.erase_all_args - 0x000000003ffb4000 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003ffb4060 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .bss.erase_args - 0x000000003ffb4008 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - .bss.get_args 0x000000003ffb4010 0xc esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - .bss.set_args 0x000000003ffb401c 0x10 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003ffb4068 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .bss.get_args 0x000000003ffb4070 0xc esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .bss.set_args 0x000000003ffb407c 0x10 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .bss.light_sleep_args - 0x000000003ffb402c 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003ffb408c 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .bss.deep_sleep_args - 0x000000003ffb403c 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003ffb409c 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .bss.buf2$10224 + 0x000000003ffb40ac 0x6400 esp-idf/display/libdisplay.a(display.c.obj) + .bss.buf1$10223 + 0x000000003ffba4ac 0x6400 esp-idf/display/libdisplay.a(display.c.obj) + .bss.disp_buf$10225 + 0x000000003ffc08ac 0x1c esp-idf/display/libdisplay.a(display.c.obj) + COMMON 0x000000003ffc08c8 0x4 esp-idf/display/libdisplay.a(display.c.obj) + 0x000000003ffc08c8 xGuiSemaphore .bss.initialized$9489 - 0x000000003ffb404c 0x1 esp-idf/wifi/libwifi.a(wifi.c.obj) - *fill* 0x000000003ffb404d 0x3 + 0x000000003ffc08cc 0x1 esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003ffc08cd 0x3 .bss.join_args - 0x000000003ffb4050 0x10 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x000000003ffc08d0 0x10 esp-idf/wifi/libwifi.a(wifi.c.obj) .bss.wifi_event_group - 0x000000003ffb4060 0x4 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x000000003ffc08e0 0x4 esp-idf/wifi/libwifi.a(wifi.c.obj) .bss.server$10170 - 0x000000003ffb4064 0x4 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x000000003ffc08e4 0x4 esp-idf/https_server/libhttps_server.a(https_server.c.obj) .bss.xHandleServer - 0x000000003ffb4068 0x4 esp-idf/https_server/libhttps_server.a(https_server.c.obj) - 0x000000003ffb4068 xHandleServer + 0x000000003ffc08e8 0x4 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x000000003ffc08e8 xHandleServer .bss.s_efuse_lock - 0x000000003ffb406c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x000000003ffc08ec 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) .bss.s_flash_op_complete - 0x000000003ffb4070 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x000000003ffc08f0 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) .bss.s_flash_op_can_start - 0x000000003ffb4071 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - *fill* 0x000000003ffb4072 0x2 + 0x000000003ffc08f1 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003ffc08f2 0x2 .bss.s_flash_op_mutex - 0x000000003ffb4074 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x000000003ffc08f4 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) .bss.s_flash_op_cache_state - 0x000000003ffb4078 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x000000003ffc08f8 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) .bss.s_flash_guard_ops - 0x000000003ffb4080 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x000000003ffc0900 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) .bss.esp_flash_default_chip - 0x000000003ffb4084 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x000000003ffb4084 esp_flash_default_chip + 0x000000003ffc0904 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x000000003ffc0904 esp_flash_default_chip .bss.s_partition_list_lock - 0x000000003ffb4088 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x000000003ffc0908 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) .bss.s_partition_list - 0x000000003ffb408c 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x000000003ffc090c 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) .bss.s_mmap_last_handle - 0x000000003ffb4090 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x000000003ffc0910 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) .bss.s_mmap_page_refcnt - 0x000000003ffb4094 0x100 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x000000003ffc0914 0x100 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) .bss.s_mmap_entries_head - 0x000000003ffb4194 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x000000003ffc0a14 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) .bss.shutdown_handlers - 0x000000003ffb4198 0x8 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x000000003ffc0a18 0x8 esp-idf/esp_system/libesp_system.a(system_api.c.obj) .bss.s_list_lock - 0x000000003ffb41a0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000003ffc0a20 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) .bss.s_esp_netif_counter - 0x000000003ffb41a4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .bss.s_head 0x000000003ffb41a8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - 0x000000003ffb41a8 s_head + 0x000000003ffc0a24 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss.s_head 0x000000003ffc0a28 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000003ffc0a28 s_head .bss.s_last_default_esp_netif - 0x000000003ffb41ac 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000003ffc0a2c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) .bss.tcpip_initialized - 0x000000003ffb41b0 0x1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x000000003ffb41b1 0x3 + 0x000000003ffc0a30 0x1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003ffc0a31 0x3 .bss.api_lock_sem - 0x000000003ffb41b4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000003ffc0a34 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) .bss.api_sync_sem - 0x000000003ffb41b8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000003ffc0a38 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) .bss.s_default_loop - 0x000000003ffb41bc 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x000000003ffc0a3c 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) .bss._ZL13s_nvs_handles - 0x000000003ffb41c0 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003ffc0a40 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) .bss._ZN3nvs4Lock10mSemaphoreE - 0x000000003ffb41cc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x000000003ffb41cc _ZN3nvs4Lock10mSemaphoreE + 0x000000003ffc0a4c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003ffc0a4c _ZN3nvs4Lock10mSemaphoreE .bss._ZN14NVSHandleEntry17s_nvs_next_handleE - 0x000000003ffb41d0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x000000003ffb41d0 _ZN14NVSHandleEntry17s_nvs_next_handleE + 0x000000003ffc0a50 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003ffc0a50 _ZN14NVSHandleEntry17s_nvs_next_handleE .bss._ZN3nvs19NVSPartitionManager8instanceE - 0x000000003ffb41d4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x000000003ffb41d4 _ZN3nvs19NVSPartitionManager8instanceE + 0x000000003ffc0a54 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x000000003ffc0a54 _ZN3nvs19NVSPartitionManager8instanceE .bss.g_wifi_feature_caps - 0x000000003ffb41d8 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - 0x000000003ffb41d8 g_wifi_feature_caps + 0x000000003ffc0a58 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003ffc0a58 g_wifi_feature_caps .bss.s_wifi_mac_time_update_cb - 0x000000003ffb41e0 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - 0x000000003ffb41e0 s_wifi_mac_time_update_cb + 0x000000003ffc0a60 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003ffc0a60 s_wifi_mac_time_update_cb .bss.wifi_default_handlers_set - 0x000000003ffb41e4 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - *fill* 0x000000003ffb41e5 0x3 + 0x000000003ffc0a64 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003ffc0a65 0x3 .bss.s_wifi_netifs - 0x000000003ffb41e8 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x000000003ffc0a68 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) .bss.s_wifi_netifs - 0x000000003ffb41f0 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x000000003ffc0a70 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) .bss.s_wifi_rxcbs - 0x000000003ffb41f8 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x000000003ffc0a78 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) .bss.s_wifi_thread_sem_key$10046 - 0x000000003ffb4200 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x000000003ffc0a80 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) .bss.s_wifi_thread_sem_key_init$10045 - 0x000000003ffb4204 0x1 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x000000003ffb4205 0x3 + 0x000000003ffc0a84 0x1 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000003ffc0a85 0x3 .bss.s_common_clock_disable_time$11151 - 0x000000003ffb4208 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003ffb420c 0x4 + 0x000000003ffc0a88 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003ffc0a8c 0x4 .bss.s_phy_rf_en_ts - 0x000000003ffb4210 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x000000003ffc0a90 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .bss.s_modem_sleep_lock - 0x000000003ffb4218 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x000000003ffc0a98 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .bss.s_is_modem_sleep_en - 0x000000003ffb421c 0x1 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003ffb421d 0x3 + 0x000000003ffc0a9c 0x1 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003ffc0a9d 0x3 .bss.s_modem_sleep_module_register - 0x000000003ffb4220 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x000000003ffc0aa0 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .bss.s_modem_sleep_module_enter - 0x000000003ffb4224 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x000000003ffc0aa4 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .bss.s_common_clock_enable_ref - 0x000000003ffb4228 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x000000003ffc0aa8 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .bss.s_is_phy_rf_en - 0x000000003ffb422c 0x1 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003ffb422d 0x3 + 0x000000003ffc0aac 0x1 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003ffc0aad 0x3 .bss.s_module_phy_rf_init - 0x000000003ffb4230 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x000000003ffc0ab0 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .bss.s_phy_rf_init_lock - 0x000000003ffb4234 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - .bss.dhcps_cb 0x000000003ffb4238 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003ffc0ab4 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .bss.dhcps_cb 0x000000003ffc0ab8 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .bss.dhcps_dns - 0x000000003ffb423c 0x1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - *fill* 0x000000003ffb423d 0x3 + 0x000000003ffc0abc 0x1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000003ffc0abd 0x3 .bss.dhcps_poll - 0x000000003ffb4240 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .bss.renew 0x000000003ffb424c 0x1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - *fill* 0x000000003ffb424d 0x3 - .bss.plist 0x000000003ffb4250 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003ffc0ac0 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss.renew 0x000000003ffc0acc 0x1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000003ffc0acd 0x3 + .bss.plist 0x000000003ffc0ad0 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .bss.client_address_plus - 0x000000003ffb4254 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003ffc0ad4 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .bss.client_address - 0x000000003ffb4258 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003ffc0ad8 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .bss.dns_server - 0x000000003ffb425c 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003ffc0adc 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .bss.server_address - 0x000000003ffb4260 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003ffc0ae0 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .bss.broadcast_dhcps - 0x000000003ffb4264 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003ffc0ae4 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .bss.dhcps_netif - 0x000000003ffb4268 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003ffc0ae8 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .bss.g_lwip_task - 0x000000003ffb426c 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) - 0x000000003ffb426c g_lwip_task + 0x000000003ffc0aec 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x000000003ffc0aec g_lwip_task .bss.tcpip_mbox - 0x000000003ffb4270 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x000000003ffc0af0 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) .bss.tcpip_init_done_arg - 0x000000003ffb4274 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x000000003ffc0af4 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) .bss.tcpip_init_done - 0x000000003ffb4278 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x000000003ffc0af8 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) .bss.dns_servers - 0x000000003ffb427c 0x48 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x000000003ffc0afc 0x48 esp-idf/lwip/liblwip.a(dns.c.obj) .bss.dns_requests - 0x000000003ffb42c4 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x000000003ffc0b44 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) .bss.dns_table - 0x000000003ffb42f4 0x4a0 esp-idf/lwip/liblwip.a(dns.c.obj) - .bss.dns_pcbs 0x000000003ffb4794 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) - COMMON 0x000000003ffb47a4 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) - 0x000000003ffb47a4 ip_data + 0x000000003ffc0b74 0x4a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_pcbs 0x000000003ffc1014 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + COMMON 0x000000003ffc1024 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x000000003ffc1024 ip_data .bss.loop_netif - 0x000000003ffb47e8 0x124 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003ffc1068 0x124 esp-idf/lwip/liblwip.a(netif.c.obj) .bss.netif_num - 0x000000003ffb490c 0x1 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003ffb490d 0x3 - COMMON 0x000000003ffb4910 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x000000003ffb4910 netif_list - 0x000000003ffb4914 netif_default - COMMON 0x000000003ffb4918 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x000000003ffb4918 pbuf_free_ooseq_pending - *fill* 0x000000003ffb4919 0x3 - .bss.raw_pcbs 0x000000003ffb491c 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x000000003ffc118c 0x1 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003ffc118d 0x3 + COMMON 0x000000003ffc1190 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003ffc1190 netif_list + 0x000000003ffc1194 netif_default + COMMON 0x000000003ffc1198 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x000000003ffc1198 pbuf_free_ooseq_pending + *fill* 0x000000003ffc1199 0x3 + .bss.raw_pcbs 0x000000003ffc119c 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) .bss.tcp_timer_ctr - 0x000000003ffb4920 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003ffc11a0 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) .bss.tcp_timer - 0x000000003ffb4921 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003ffb4922 0x2 - COMMON 0x000000003ffb4924 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x000000003ffb4924 tcp_active_pcbs_changed - 0x000000003ffb4928 tcp_active_pcbs - 0x000000003ffb492c tcp_bound_pcbs - 0x000000003ffb4930 tcp_ticks - 0x000000003ffb4934 tcp_tw_pcbs - 0x000000003ffb4938 tcp_listen_pcbs + 0x000000003ffc11a1 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003ffc11a2 0x2 + COMMON 0x000000003ffc11a4 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003ffc11a4 tcp_active_pcbs_changed + 0x000000003ffc11a8 tcp_active_pcbs + 0x000000003ffc11ac tcp_bound_pcbs + 0x000000003ffc11b0 tcp_ticks + 0x000000003ffc11b4 tcp_tw_pcbs + 0x000000003ffc11b8 tcp_listen_pcbs .bss.recv_data - 0x000000003ffb493c 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003ffc11bc 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .bss.recv_flags - 0x000000003ffb4940 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .bss.flags 0x000000003ffb4941 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .bss.tcplen 0x000000003ffb4942 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003ffc11c0 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.flags 0x000000003ffc11c1 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcplen 0x000000003ffc11c2 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .bss.recv_acked - 0x000000003ffb4944 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003ffb4946 0x2 - .bss.ackno 0x000000003ffb4948 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .bss.seqno 0x000000003ffb494c 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003ffc11c4 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003ffc11c6 0x2 + .bss.ackno 0x000000003ffc11c8 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.seqno 0x000000003ffc11cc 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .bss.tcp_optidx - 0x000000003ffb4950 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003ffb4952 0x2 + 0x000000003ffc11d0 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003ffc11d2 0x2 .bss.tcphdr_opt2 - 0x000000003ffb4954 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003ffc11d4 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .bss.tcphdr_opt1len - 0x000000003ffb4958 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003ffc11d8 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .bss.tcphdr_optlen - 0x000000003ffb495a 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .bss.tcphdr 0x000000003ffb495c 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .bss.inseg 0x000000003ffb4960 0x14 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - COMMON 0x000000003ffb4974 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - 0x000000003ffb4974 tcp_input_pcb + 0x000000003ffc11da 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr 0x000000003ffc11dc 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.inseg 0x000000003ffc11e0 0x14 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + COMMON 0x000000003ffc11f4 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003ffc11f4 tcp_input_pcb .bss.tcpip_tcp_timer_active - 0x000000003ffb4978 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x000000003ffc11f8 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) .bss.current_timeout_due_time - 0x000000003ffb497c 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x000000003ffc11fc 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) .bss.next_timeout - 0x000000003ffb4980 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) - COMMON 0x000000003ffb4984 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x000000003ffb4984 udp_pcbs - .bss.xid$7484 0x000000003ffb4988 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003ffc1200 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + COMMON 0x000000003ffc1204 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000003ffc1204 udp_pcbs + .bss.xid$7484 0x000000003ffc1208 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) .bss.dhcp_pcb_refcount - 0x000000003ffb498c 0x1 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003ffb498d 0x3 - .bss.dhcp_pcb 0x000000003ffb4990 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) - COMMON 0x000000003ffb4994 0x38 esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x000000003ffb4994 dhcp_rx_options_given - 0x000000003ffb49a0 dhcp_rx_options_val + 0x000000003ffc120c 0x1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003ffc120d 0x3 + .bss.dhcp_pcb 0x000000003ffc1210 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + COMMON 0x000000003ffc1214 0x38 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003ffc1214 dhcp_rx_options_given + 0x000000003ffc1220 dhcp_rx_options_val .bss.etharp_cached_entry - 0x000000003ffb49cc 0x1 esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x000000003ffb49cd 0x3 + 0x000000003ffc124c 0x1 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003ffc124d 0x3 .bss.arp_table - 0x000000003ffb49d0 0xf0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x000000003ffc1250 0xf0 esp-idf/lwip/liblwip.a(etharp.c.obj) .bss.is_tmr_start - 0x000000003ffb4ac0 0x1 esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x000000003ffb4ac1 0x3 + 0x000000003ffc1340 0x1 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003ffc1341 0x3 .bss.allrouters - 0x000000003ffb4ac4 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000003ffc1344 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) .bss.allsystems - 0x000000003ffb4ac8 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000003ffc1348 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) .bss.ip4_default_multicast_netif - 0x000000003ffb4acc 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) - .bss.ip_id 0x000000003ffb4ad0 0x2 esp-idf/lwip/liblwip.a(ip4.c.obj) - *fill* 0x000000003ffb4ad2 0x2 + 0x000000003ffc134c 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss.ip_id 0x000000003ffc1350 0x2 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003ffc1352 0x2 .bss.identification$6942 - 0x000000003ffb4ad4 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x000000003ffc1354 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) .bss.ip6_reass_pbufcount - 0x000000003ffb4ad8 0x2 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - *fill* 0x000000003ffb4ada 0x2 + 0x000000003ffc1358 0x2 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003ffc135a 0x2 .bss.reassdatagrams - 0x000000003ffb4adc 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x000000003ffc135c 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) .bss.is_tmr_start - 0x000000003ffb4ae0 0x1 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x000000003ffc1360 0x1 esp-idf/lwip/liblwip.a(mld6.c.obj) .bss.last_router$7354 - 0x000000003ffb4ae1 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x000000003ffb4ae2 0x2 + 0x000000003ffc1361 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003ffc1362 0x2 .bss.nd6_ra_buffer - 0x000000003ffb4ae4 0x20 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffc1364 0x20 esp-idf/lwip/liblwip.a(nd6.c.obj) .bss.nd6_tmr_rs_reduction - 0x000000003ffb4b04 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x000000003ffb4b05 0x3 + 0x000000003ffc1384 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003ffc1385 0x3 .bss.multicast_address - 0x000000003ffb4b08 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffc1388 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) .bss.nd6_cached_destination_index - 0x000000003ffb4b1c 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffc139c 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) .bss.nd6_cached_neighbor_index - 0x000000003ffb4b1d 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x000000003ffb4b1e 0x2 - COMMON 0x000000003ffb4b20 0x448 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x000000003ffb4b20 default_router_list - 0x000000003ffb4b44 prefix_list - 0x000000003ffb4bd0 neighbor_cache - 0x000000003ffb4d88 destination_cache + 0x000000003ffc139d 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003ffc139e 0x2 + COMMON 0x000000003ffc13a0 0x448 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffc13a0 default_router_list + 0x000000003ffc13c4 prefix_list + 0x000000003ffc1450 neighbor_cache + 0x000000003ffc1608 destination_cache .bss.sys_thread_sem_key - 0x000000003ffb4f68 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000003ffc17e8 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) .bss.g_lwip_protect_mutex - 0x000000003ffb4f6c 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000003ffc17ec 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) .bss.select_cb_list - 0x000000003ffb4f70 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003ffc17f0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) .bss.select_cb_ctr - 0x000000003ffb4f74 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) - .bss.sockets 0x000000003ffb4f78 0xf0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003ffc17f4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.sockets 0x000000003ffc17f8 0xf0 esp-idf/lwip/liblwip.a(sockets.c.obj) .bss.socket_ipv6_multicast_memberships - 0x000000003ffb5068 0x118 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003ffc18e8 0x118 esp-idf/lwip/liblwip.a(sockets.c.obj) .bss.socket_ipv4_multicast_memberships - 0x000000003ffb5180 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003ffc1a00 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) .bss.s_log_cache_misses - 0x000000003ffb51f8 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x000000003ffc1a78 0x4 esp-idf/log/liblog.a(log.c.obj) .bss.s_log_cache_entry_count - 0x000000003ffb51fc 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x000000003ffc1a7c 0x4 esp-idf/log/liblog.a(log.c.obj) .bss.s_log_cache_max_generation - 0x000000003ffb5200 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x000000003ffc1a80 0x4 esp-idf/log/liblog.a(log.c.obj) .bss.s_log_cache - 0x000000003ffb5204 0xf8 esp-idf/log/liblog.a(log.c.obj) + 0x000000003ffc1a84 0xf8 esp-idf/log/liblog.a(log.c.obj) .bss.s_log_tags - 0x000000003ffb52fc 0x4 esp-idf/log/liblog.a(log.c.obj) - COMMON 0x000000003ffb5300 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x000000003ffb5300 registered_heaps + 0x000000003ffc1b7c 0x4 esp-idf/log/liblog.a(log.c.obj) + COMMON 0x000000003ffc1b80 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x000000003ffc1b80 registered_heaps .bss.s_rtc_isr_handle - 0x000000003ffb5304 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x000000003ffc1b84 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) .bss.s_rtc_isr_handler_list - 0x000000003ffb5308 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x000000003ffc1b88 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .bss.dmaworkaround_waiting_for_chan + 0x000000003ffc1b8c 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb_arg + 0x000000003ffc1b90 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb + 0x000000003ffc1b94 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_channels_busy + 0x000000003ffc1b98 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_dma_chan_enabled + 0x000000003ffc1ba0 0x1 esp-idf/driver/libdriver.a(spi_common.c.obj) + *fill* 0x000000003ffc1ba1 0x3 + .bss.spi_claiming_func + 0x000000003ffc1ba4 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) .bss.pat_flg$7162 - 0x000000003ffb530c 0x1 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003ffb530d 0x3 + 0x000000003ffc1bb0 0x1 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003ffc1bb1 0x3 .bss.p_uart_obj - 0x000000003ffb5310 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003ffc1bb4 0xc esp-idf/driver/libdriver.a(uart.c.obj) .bss.last_ccount$3124 - 0x000000003ffb531c 0x4 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x000000003ffc1bc0 0x4 esp-idf/esp32/libesp32.a(hw_random.c.obj) .bss.lock_rtc_memory_crc - 0x000000003ffb5320 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x000000003ffc1bc4 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) .bss.s_light_sleep_wakeup - 0x000000003ffb5324 0x1 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x000000003ffb5325 0x3 + 0x000000003ffc1bc8 0x1 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003ffc1bc9 0x3 .bss.base_mac_addr - 0x000000003ffb5328 0x6 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - *fill* 0x000000003ffb532e 0x2 + 0x000000003ffc1bcc 0x6 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + *fill* 0x000000003ffc1bd2 0x2 .bss.s_tmp_line_buf - 0x000000003ffb5330 0x4 esp-idf/console/libconsole.a(commands.c.obj) - .bss.s_config 0x000000003ffb5334 0x10 esp-idf/console/libconsole.a(commands.c.obj) + 0x000000003ffc1bd4 0x4 esp-idf/console/libconsole.a(commands.c.obj) + .bss.s_config 0x000000003ffc1bd8 0x10 esp-idf/console/libconsole.a(commands.c.obj) .bss.s_cmd_list - 0x000000003ffb5344 0x4 esp-idf/console/libconsole.a(commands.c.obj) - .bss.history 0x000000003ffb5348 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003ffc1be8 0x4 esp-idf/console/libconsole.a(commands.c.obj) + .bss.history 0x000000003ffc1bec 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) .bss.history_len - 0x000000003ffb534c 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .bss.dumbmode 0x000000003ffb5350 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - .bss.mlmode 0x000000003ffb5354 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003ffc1bf0 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .bss.dumbmode 0x000000003ffc1bf4 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .bss.mlmode 0x000000003ffc1bf8 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) .bss.freeHintsCallback - 0x000000003ffb5358 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003ffc1bfc 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) .bss.hintsCallback - 0x000000003ffb535c 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003ffc1c00 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) .bss.completionCallback - 0x000000003ffb5360 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x000000003ffb5364 0x4 + 0x000000003ffc1c04 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) .bss.lru_counter$7522 - 0x000000003ffb5368 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .bss.s_impls 0x000000003ffb5370 0x8 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - .bss.Fsid 0x000000003ffb5378 0x2 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x000000003ffb537a 0x2 - .bss.FatFs 0x000000003ffb537c 0x8 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x000000003ffc1c08 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .bss.s_impls 0x000000003ffc1c10 0x8 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .bss.Fsid 0x000000003ffc1c18 0x2 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000003ffc1c1a 0x2 + .bss.FatFs 0x000000003ffc1c1c 0x8 esp-idf/fatfs/libfatfs.a(ff.c.obj) .bss.s_fat_ctxs - 0x000000003ffb5384 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x000000003ffc1c24 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .bss._ZL16s_instances_lock - 0x000000003ffb538c 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x000000003ffc1c2c 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) .bss._ZL11s_instances - 0x000000003ffb5390 0x40 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - .bss._efs 0x000000003ffb53d0 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003ffc1c30 0x40 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .bss._efs 0x000000003ffc1c70 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .bss.refr_task + 0x000000003ffc1c7c 0x4 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .bss.info_label + 0x000000003ffc1c80 0x4 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .bss.mem_ser 0x000000003ffc1c84 0x4 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .bss.cpu_ser 0x000000003ffc1c88 0x4 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .bss.chart 0x000000003ffc1c8c 0x4 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .bss.win 0x000000003ffc1c90 0x4 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .bss.chained_post_cb + 0x000000003ffc1c94 0x4 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .bss.spi_color_sent + 0x000000003ffc1c98 0x1 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .bss.spi_trans_in_progress + 0x000000003ffc1c99 0x1 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + *fill* 0x000000003ffc1c9a 0x2 + .bss.spi 0x000000003ffc1c9c 0x4 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .bss.event_act_data + 0x000000003ffc1ca0 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .bss.event_temp_data_head + 0x000000003ffc1ca4 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .bss.lv_initialized + 0x000000003ffc1ca8 0x1 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + *fill* 0x000000003ffc1ca9 0x3 + .bss.disp_refr + 0x000000003ffc1cac 0x4 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .bss.px_num 0x000000003ffc1cb0 0x4 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + COMMON 0x000000003ffc1cb4 0x30c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + 0x000000003ffc1cb4 lv_style_btn_ina + 0x000000003ffc1cf0 lv_style_transp + 0x000000003ffc1d2c lv_style_transp_tight + 0x000000003ffc1d68 lv_style_plain_color + 0x000000003ffc1da4 lv_style_pretty + 0x000000003ffc1de0 lv_style_pretty_color + 0x000000003ffc1e1c lv_style_scr + 0x000000003ffc1e58 lv_style_btn_tgl_rel + 0x000000003ffc1e94 lv_style_btn_tgl_pr + 0x000000003ffc1ed0 lv_style_transp_fit + 0x000000003ffc1f0c lv_style_btn_rel + 0x000000003ffc1f48 lv_style_plain + 0x000000003ffc1f84 lv_style_btn_pr + .bss.draw_buf_size + 0x000000003ffc1fc0 0x4 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .bss.color_array_tmp$3708 + 0x000000003ffc1fc4 0x280 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .bss.entry_cnt + 0x000000003ffc2244 0x2 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + *fill* 0x000000003ffc2246 0x2 + .bss.disp_def 0x000000003ffc2248 0x4 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .bss.tick_irq_flag + 0x000000003ffc224c 0x1 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + *fill* 0x000000003ffc224d 0x3 + .bss.sys_time 0x000000003ffc2250 0x4 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .bss.anim_list_changed + 0x000000003ffc2254 0x1 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + *fill* 0x000000003ffc2255 0x3 + .bss.last_task_run + 0x000000003ffc2258 0x4 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + COMMON 0x000000003ffc225c 0x6c esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + 0x000000003ffc225c _lv_draw_buf + 0x000000003ffc2260 _lv_file_ll + 0x000000003ffc226c _lv_task_act + 0x000000003ffc2270 _lv_img_cache_array + 0x000000003ffc2274 _lv_img_defoder_ll + 0x000000003ffc2280 _lv_indev_ll + 0x000000003ffc228c _lv_group_ll + 0x000000003ffc2298 _lv_task_ll + 0x000000003ffc22a4 _lv_anim_ll + 0x000000003ffc22b0 _lv_drv_ll + 0x000000003ffc22bc _lv_disp_ll + .bss.work_mem_int$2034 + 0x000000003ffc22c8 0x8000 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .bss.zero_mem 0x000000003ffca2c8 0x4 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .bss.work_mem 0x000000003ffca2cc 0x4 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .bss.idle_period_start$3486 + 0x000000003ffca2d0 0x4 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .bss.busy_time$3488 + 0x000000003ffca2d4 0x4 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .bss.handler_start$3487 + 0x000000003ffca2d8 0x4 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .bss.already_running$3485 + 0x000000003ffca2dc 0x1 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .bss.task_created + 0x000000003ffca2dd 0x1 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .bss.task_deleted + 0x000000003ffca2de 0x1 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .bss.idle_last + 0x000000003ffca2df 0x1 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .bss.lv_task_run + 0x000000003ffca2e0 0x1 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + *fill* 0x000000003ffca2e1 0x3 + .bss.ancestor_signal + 0x000000003ffca2e4 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .bss.ancestor_design_f + 0x000000003ffca2e8 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .bss.ancestor_signal + 0x000000003ffca2ec 0x4 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .bss.ancestor_signal + 0x000000003ffca2f0 0x4 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .bss.current_theme + 0x000000003ffca2f4 0x4 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .bss.indev_obj_act + 0x000000003ffca2f8 0x4 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .bss.indev_act + 0x000000003ffca2fc 0x4 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .bss.buf$3791 0x000000003ffca300 0x4 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .bss.rle_state + 0x000000003ffca304 0x4 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .bss.rle_cnt 0x000000003ffca308 0x1 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .bss.rle_prev_v + 0x000000003ffca309 0x1 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .bss.rle_bpp 0x000000003ffca30a 0x1 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + *fill* 0x000000003ffca30b 0x1 + .bss.rle_in 0x000000003ffca30c 0x4 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .bss.rle_rdp 0x000000003ffca310 0x4 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .bss.ancestor_design + 0x000000003ffca314 0x4 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .bss.ancestor_signal + 0x000000003ffca318 0x4 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .bss.ancestor_signal + 0x000000003ffca31c 0x4 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .bss.ancestor_signal + 0x000000003ffca320 0x4 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .bss.ancestor_signal + 0x000000003ffca324 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .bss.ancestor_design + 0x000000003ffca328 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) .bss.init_done$3949 - 0x000000003ffb53dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000003ffca32c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) .bss.ecp_supported_grp_id - 0x000000003ffb53e0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000003ffca330 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) .bss.mul_count - 0x000000003ffb5410 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000003ffca360 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) .bss.dbl_count - 0x000000003ffb5414 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000003ffca364 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) .bss.add_count - 0x000000003ffb5418 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .bss.mpi_lock 0x000000003ffb541c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x000000003ffca368 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.mpi_lock 0x000000003ffca36c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) .bss.engines_in_use - 0x000000003ffb5420 0x1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - *fill* 0x000000003ffb5421 0x3 + 0x000000003ffca370 0x1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003ffca371 0x3 .bss.engine_states - 0x000000003ffb5424 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x000000003ffca374 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) .bss.curr_partition$5952 - 0x000000003ffb5430 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x000000003ffca380 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) .bss.s_tcpip_adapter_compat - 0x000000003ffb5434 0x1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - *fill* 0x000000003ffb5435 0x3 + 0x000000003ffca384 0x1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + *fill* 0x000000003ffca385 0x3 .bss.s_esp_netifs - 0x000000003ffb5438 0x10 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x000000003ffca388 0x10 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) .bss.g_sae_token - 0x000000003ffb5448 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x000000003ffca398 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) .bss.g_sae_data - 0x000000003ffb544c 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - COMMON 0x000000003ffb5498 0x28c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x000000003ffb5498 gWpaSm - 0x000000003ffb56f4 assoc_ie_buf + 0x000000003ffca39c 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + COMMON 0x000000003ffca3e8 0x28c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000003ffca3e8 gWpaSm + 0x000000003ffca644 assoc_ie_buf .bss.s_sm_valid_bitmap - 0x000000003ffb5724 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000003ffca674 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .bss.s_sm_table - 0x000000003ffb5728 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000003ffca678 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .bss.mesh_rxcb - 0x000000003ffb5768 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000003ffb5768 mesh_rxcb + 0x000000003ffca6b8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffca6b8 mesh_rxcb .bss.s_wifi_api_lock - 0x000000003ffb576c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000003ffb576c s_wifi_api_lock + 0x000000003ffca6bc 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffca6bc s_wifi_api_lock .bss.g_event_handler - 0x000000003ffb5770 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffca6c0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) .bss.s_wifi_stop_in_progress - 0x000000003ffb5774 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - *fill* 0x000000003ffb5775 0x3 + 0x000000003ffca6c4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003ffca6c5 0x3 .bss.wifi_sta_rx_probe_req - 0x000000003ffb5778 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000003ffb5778 wifi_sta_rx_probe_req - *fill* 0x000000003ffb577c 0x4 - COMMON 0x000000003ffb5780 0xc30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000003ffb5780 __packed__ - 0x000000003ffb5798 g_cnxMgr - COMMON 0x000000003ffb63b0 0x22c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) - 0x000000003ffb63b0 g_ic - COMMON 0x000000003ffb65dc 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) - 0x000000003ffb65dc wpa_crypto_funcs - COMMON 0x000000003ffb663c 0x240 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) - 0x000000003ffb663c g_dbg_cnt_hmac + 0x000000003ffca6c8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffca6c8 wifi_sta_rx_probe_req + *fill* 0x000000003ffca6cc 0x4 + COMMON 0x000000003ffca6d0 0xc30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffca6d0 __packed__ + 0x000000003ffca6e8 g_cnxMgr + COMMON 0x000000003ffcb300 0x22c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000003ffcb300 g_ic + COMMON 0x000000003ffcb52c 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x000000003ffcb52c wpa_crypto_funcs + COMMON 0x000000003ffcb58c 0x240 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0x000000003ffcb58c g_dbg_cnt_hmac .bss.g_beacon_eb_allocated - 0x000000003ffb687c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) - *fill* 0x000000003ffb687d 0x3 - .bss.ap_rxcb 0x000000003ffb6880 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) - 0x000000003ffb6880 ap_rxcb + 0x000000003ffcb7cc 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003ffcb7cd 0x3 + .bss.ap_rxcb 0x000000003ffcb7d0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffcb7d0 ap_rxcb .bss.tim_offset - 0x000000003ffb6884 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) - *fill* 0x000000003ffb6885 0x3 - .bss.BcnIntvl 0x000000003ffb6888 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffcb7d4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003ffcb7d5 0x3 + .bss.BcnIntvl 0x000000003ffcb7d8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) .bss.g_beacon_idx - 0x000000003ffb688c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) - 0x000000003ffb688c g_beacon_idx - *fill* 0x000000003ffb688d 0x3 + 0x000000003ffcb7dc 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffcb7dc g_beacon_idx + *fill* 0x000000003ffcb7dd 0x3 .bss.g_beacon_eb - 0x000000003ffb6890 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) - 0x000000003ffb6890 g_beacon_eb + 0x000000003ffcb7e0 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffcb7e0 g_beacon_eb .bss.g_beacon_dtim_send_mc - 0x000000003ffb6898 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffcb7e8 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) .bss.beacon_send_start_flag - 0x000000003ffb6899 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) - *fill* 0x000000003ffb689a 0x2 + 0x000000003ffcb7e9 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003ffcb7ea 0x2 .bss.beacon_timer - 0x000000003ffb689c 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffcb7ec 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) .bss.tokens$9133 - 0x000000003ffb68b0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x000000003ffcb800 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) .bss.s_age_timer_init - 0x000000003ffb68b4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x000000003ffcb804 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) .bss.s_age_timer_start - 0x000000003ffb68b5 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) - *fill* 0x000000003ffb68b6 0x2 + 0x000000003ffcb805 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + *fill* 0x000000003ffcb806 0x2 .bss.s_age_timer - 0x000000003ffb68b8 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x000000003ffcb808 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) .bss.ap_id$10383 - 0x000000003ffb68cc 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x000000003ffb68cd 0x3 + 0x000000003ffcb81c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003ffcb81d 0x3 .bss.mesh_deauth_reason - 0x000000003ffb68d0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffcb820 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) .bss.SleepDeferSoftAPConfig - 0x000000003ffb68d4 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffcb824 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) .bss.SleepDeferStationConfig - 0x000000003ffb6940 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffcb890 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) .bss.s_wifi_task_hdl - 0x000000003ffb69c0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - 0x000000003ffb69c0 s_wifi_task_hdl + 0x000000003ffcb910 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffcb910 s_wifi_task_hdl .bss.g_wifi_global_lock - 0x000000003ffb69c4 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - 0x000000003ffb69c4 g_wifi_global_lock + 0x000000003ffcb914 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffcb914 g_wifi_global_lock .bss.s_wps_start - 0x000000003ffb69c8 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffcb918 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) .bss.s_wpa2_start - 0x000000003ffb69c9 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x000000003ffb69ca 0x2 + 0x000000003ffcb919 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003ffcb91a 0x2 .bss.s_wifi_rf_phy_enabled - 0x000000003ffb69cc 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffcb91c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) .bss.s_wifi_rf_phy_init - 0x000000003ffb69d0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffcb920 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) .bss.g_wifi_hw_start - 0x000000003ffb69d4 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - COMMON 0x000000003ffb69d8 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - 0x000000003ffb69d8 g_wifi_menuconfig + 0x000000003ffcb924 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + COMMON 0x000000003ffcb928 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffcb928 g_wifi_menuconfig .bss.esp_mesh_quick_funcs - 0x000000003ffb6a20 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) - 0x000000003ffb6a20 esp_mesh_quick_funcs + 0x000000003ffcb970 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffcb970 esp_mesh_quick_funcs .bss.g_mesh_topology - 0x000000003ffb6a80 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) - 0x000000003ffb6a80 g_mesh_topology + 0x000000003ffcb9d0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffcb9d0 g_mesh_topology .bss.g_mesh_is_root - 0x000000003ffb6a84 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) - 0x000000003ffb6a84 g_mesh_is_root + 0x000000003ffcb9d4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffcb9d4 g_mesh_is_root .bss.g_mesh_is_started - 0x000000003ffb6a85 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) - 0x000000003ffb6a85 g_mesh_is_started - *fill* 0x000000003ffb6a86 0x2 + 0x000000003ffcb9d5 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffcb9d5 g_mesh_is_started + *fill* 0x000000003ffcb9d6 0x2 .bss.g_wifi_nvs_cfg - 0x000000003ffb6a88 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x000000003ffcb9d8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) .bss.s_wifi_nvs - 0x000000003ffb6a8c 0x40c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) - .bss.g_txq 0x000000003ffb6e98 0xa28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000003ffcb9dc 0x40c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .bss.g_txq 0x000000003ffcbde8 0xa28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) .bss.g_wifi_improve_contention_ability - 0x000000003ffb78c0 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) - 0x000000003ffb78c0 g_wifi_improve_contention_ability - *fill* 0x000000003ffb78c1 0x3 + 0x000000003ffcc810 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x000000003ffcc810 g_wifi_improve_contention_ability + *fill* 0x000000003ffcc811 0x3 .bss.s_ch$9487 - 0x000000003ffb78c4 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffcc814 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) .bss.TestStaFreqCalValInput - 0x000000003ffb78c6 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) - 0x000000003ffb78c6 TestStaFreqCalValInput + 0x000000003ffcc816 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffcc816 TestStaFreqCalValInput .bss.FreqCalCntForScan - 0x000000003ffb78c8 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) - 0x000000003ffb78c8 FreqCalCntForScan + 0x000000003ffcc818 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffcc818 FreqCalCntForScan .bss.connect_scan_flag - 0x000000003ffb78c9 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) - 0x000000003ffb78c9 connect_scan_flag - .bss.scannum 0x000000003ffb78ca 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) - 0x000000003ffb78ca scannum - COMMON 0x000000003ffb78cc 0x114 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) - 0x000000003ffb78cc gScanStruct + 0x000000003ffcc819 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffcc819 connect_scan_flag + .bss.scannum 0x000000003ffcc81a 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffcc81a scannum + COMMON 0x000000003ffcc81c 0x114 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffcc81c gScanStruct .bss.sta_csa_timer - 0x000000003ffb79e0 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) - 0x000000003ffb79e0 sta_csa_timer + 0x000000003ffcc930 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffcc930 sta_csa_timer .bss.s_sa_query_success - 0x000000003ffb79f4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) - *fill* 0x000000003ffb79f5 0x3 + 0x000000003ffcc944 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x000000003ffcc945 0x3 .bss.s_sa_query_retries - 0x000000003ffb79f8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffcc948 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) .bss.s_trans_id - 0x000000003ffb79fc 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) - *fill* 0x000000003ffb79fe 0x2 - .bss.sta_rxcb 0x000000003ffb7a00 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) - 0x000000003ffb7a00 sta_rxcb + 0x000000003ffcc94c 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x000000003ffcc94e 0x2 + .bss.sta_rxcb 0x000000003ffcc950 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffcc950 sta_rxcb .bss.rssi_index - 0x000000003ffb7a04 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) - *fill* 0x000000003ffb7a05 0x3 + 0x000000003ffcc954 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x000000003ffcc955 0x3 .bss.rssi_saved - 0x000000003ffb7a08 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffcc958 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) .bss.in_rssi_adjust - 0x000000003ffb7a10 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) - *fill* 0x000000003ffb7a11 0x3 + 0x000000003ffcc960 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x000000003ffcc961 0x3 .bss.s_sta_igtk - 0x000000003ffb7a14 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) - .bss.gChmCxt 0x000000003ffb7a44 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000003ffcc964 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss.gChmCxt 0x000000003ffcc994 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) .bss.is_connected_sync - 0x000000003ffb7b40 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - .bss.ap_no_lr 0x000000003ffb7b41 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffcca90 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.ap_no_lr 0x000000003ffcca91 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) .bss.reconnect_flag - 0x000000003ffb7b42 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - 0x000000003ffb7b42 reconnect_flag + 0x000000003ffcca92 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffcca92 reconnect_flag .bss.in_blacklist_flag - 0x000000003ffb7b43 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - 0x000000003ffb7b43 in_blacklist_flag + 0x000000003ffcca93 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffcca93 in_blacklist_flag .bss.wrong_password_flag - 0x000000003ffb7b44 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - 0x000000003ffb7b44 wrong_password_flag - *fill* 0x000000003ffb7b45 0x1 + 0x000000003ffcca94 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffcca94 wrong_password_flag + *fill* 0x000000003ffcca95 0x1 .bss.s_sta_last_start_txseq - 0x000000003ffb7b46 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffcca96 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) .bss.g_cnx_probe_rc_list_cb - 0x000000003ffb7b48 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - 0x000000003ffb7b48 g_cnx_probe_rc_list_cb + 0x000000003ffcca98 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffcca98 g_cnx_probe_rc_list_cb .bss.cnx_csa_timer - 0x000000003ffb7b4c 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffcca9c 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) .bss.s_csa_timer_bss - 0x000000003ffb7b60 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - COMMON 0x000000003ffb7b64 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - 0x000000003ffb7b64 sta_con_timer + 0x000000003ffccab0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + COMMON 0x000000003ffccab4 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffccab4 sta_con_timer .bss.avs_rx_content - 0x000000003ffb7b78 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x000000003ffccac8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) .bss.get_key_cb - 0x000000003ffb7b7c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) - .bss.avs_cb 0x000000003ffb7b80 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) - .bss.eb_space 0x000000003ffb7b84 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) - .bss.s_is_6m 0x000000003ffb7c44 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) - 0x000000003ffb7c44 s_is_6m - *fill* 0x000000003ffb7c45 0x3 - COMMON 0x000000003ffb7c48 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) - 0x000000003ffb7c48 interface_mask - 0x000000003ffb7c4c if_ctrl + 0x000000003ffccacc 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_cb 0x000000003ffccad0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.eb_space 0x000000003ffccad4 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .bss.s_is_6m 0x000000003ffccb94 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000003ffccb94 s_is_6m + *fill* 0x000000003ffccb95 0x3 + COMMON 0x000000003ffccb98 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000003ffccb98 interface_mask + 0x000000003ffccb9c if_ctrl .bss.g_pp_tx_pkt_num - 0x000000003ffb7c74 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffccbc4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) .bss.g_mpdu_retry_before_rts - 0x000000003ffb7c75 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - 0x000000003ffb7c75 g_mpdu_retry_before_rts + 0x000000003ffccbc5 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffccbc5 g_mpdu_retry_before_rts .bss.our_wait_clear_type - 0x000000003ffb7c76 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003ffb7c77 0x1 + 0x000000003ffccbc6 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003ffccbc7 0x1 .bss.our_wait_eb - 0x000000003ffb7c78 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffccbc8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) .bss.our_tx_eb - 0x000000003ffb7c7c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffccbcc 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) .bss.our_instances - 0x000000003ffb7c80 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - COMMON 0x000000003ffb7d34 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - 0x000000003ffb7d34 lmacConfMib + 0x000000003ffccbd0 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + COMMON 0x000000003ffccc84 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffccc84 lmacConfMib .bss.g_pm_tx_null_func - 0x000000003ffb7d60 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) - *fill* 0x000000003ffb7d64 0x4 - .bss.g_pm 0x000000003ffb7d68 0x128 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000003ffcccb0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + *fill* 0x000000003ffcccb4 0x4 + .bss.g_pm 0x000000003ffcccb8 0x128 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) .bss.current_ifidx$9273 - 0x000000003ffb7e90 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - *fill* 0x000000003ffb7e91 0x3 + 0x000000003ffccde0 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x000000003ffccde1 0x3 .bss.s_fragment - 0x000000003ffb7e94 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffccde4 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) .bss.TotalUsedSigNum - 0x000000003ffb7e9c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x000000003ffb7e9c TotalUsedSigNum - .bss.TxRxCxt 0x000000003ffb7ea0 0x360 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - .bss.g_pp_if 0x000000003ffb8200 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffccdec 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffccdec TotalUsedSigNum + .bss.TxRxCxt 0x000000003ffccdf0 0x360 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_pp_if 0x000000003ffcd150 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) .bss.s_wifi_queue - 0x000000003ffb8208 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x000000003ffb8208 s_wifi_queue + 0x000000003ffcd158 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffcd158 s_wifi_queue .bss.s_michael_mic_failure_cb - 0x000000003ffb820c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffcd15c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) .bss.s_pp_task_del_sem - 0x000000003ffb8210 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffcd160 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) .bss.s_pp_task_create_sem - 0x000000003ffb8214 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffcd164 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) .bss.pp_task_hdl - 0x000000003ffb8218 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffcd168 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) .bss.g_timer_func - 0x000000003ffb821c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffcd16c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) .bss.g_net80211_tx_func - 0x000000003ffb8220 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffcd170 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) .bss.g_config_func - 0x000000003ffb8224 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - COMMON 0x000000003ffb8228 0x6d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) - 0x000000003ffb8228 g_dbg_cnt_lmac + 0x000000003ffcd174 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + COMMON 0x000000003ffcd178 0x6d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x000000003ffcd178 g_dbg_cnt_lmac .bss.s_timer_post - 0x000000003ffb8900 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x000000003ffcd850 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) .bss.updateCounter - 0x000000003ffb8904 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffcd854 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .bss.s_fix_rate - 0x000000003ffb8908 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffcd858 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .bss.s_fix_rate_mask - 0x000000003ffb8910 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffcd860 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .bss.interface_trc_mask - 0x000000003ffb8914 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - .bss.trc_mask 0x000000003ffb8924 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffcd864 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.trc_mask 0x000000003ffcd874 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .bss.g_per_conn_trc - 0x000000003ffb8928 0x750 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003ffcd878 0x750 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .bss.BcnSendTick - 0x000000003ffb9078 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffcdfc8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) .bss.g_wdev_opmode - 0x000000003ffb907c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - *fill* 0x000000003ffb907d 0x3 + 0x000000003ffcdfcc 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *fill* 0x000000003ffcdfcd 0x3 .bss.g_wdev_csi_rx_ctx - 0x000000003ffb9080 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000003ffb9080 g_wdev_csi_rx_ctx + 0x000000003ffcdfd0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffcdfd0 g_wdev_csi_rx_ctx .bss.g_wdev_csi_rx - 0x000000003ffb9084 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000003ffb9084 g_wdev_csi_rx + 0x000000003ffcdfd4 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffcdfd4 g_wdev_csi_rx .bss.g_wdev_last_desc_reset - 0x000000003ffb9088 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000003ffb9088 g_wdev_last_desc_reset - *fill* 0x000000003ffb9089 0x3 - COMMON 0x000000003ffb908c 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000003ffb908c wDevCtrl + 0x000000003ffcdfd8 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffcdfd8 g_wdev_last_desc_reset + *fill* 0x000000003ffcdfd9 0x3 + COMMON 0x000000003ffcdfdc 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffcdfdc wDevCtrl .bss.bt_pwr_track_num - 0x000000003ffb90bc 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90bc bt_pwr_track_num + 0x000000003ffce00c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce00c bt_pwr_track_num .bss.bt_pwr_freq_old - 0x000000003ffb90bd 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90bd bt_pwr_freq_old + 0x000000003ffce00d 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce00d bt_pwr_freq_old .bss.bt_pwr_cap_sum_old - 0x000000003ffb90be 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90be bt_pwr_cap_sum_old - *fill* 0x000000003ffb90bf 0x1 + 0x000000003ffce00e 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce00e bt_pwr_cap_sum_old + *fill* 0x000000003ffce00f 0x1 .bss.bt_pwr_cap_sum - 0x000000003ffb90c0 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90c0 bt_pwr_cap_sum + 0x000000003ffce010 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce010 bt_pwr_cap_sum .bss.btpwr_atten_offset - 0x000000003ffb90c2 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90c2 btpwr_atten_offset + 0x000000003ffce012 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce012 btpwr_atten_offset .bss.btpwr_tsen_flag - 0x000000003ffb90c3 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90c3 btpwr_tsen_flag + 0x000000003ffce013 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce013 btpwr_tsen_flag .bss.btpwr_tsen_old - 0x000000003ffb90c4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90c4 btpwr_tsen_old + 0x000000003ffce014 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce014 btpwr_tsen_old .bss.btpwr_tsen_init - 0x000000003ffb90c5 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90c5 btpwr_tsen_init + 0x000000003ffce015 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce015 btpwr_tsen_init .bss.rfpll_offset_delta - 0x000000003ffb90c6 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90c6 rfpll_offset_delta + 0x000000003ffce016 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce016 rfpll_offset_delta .bss.phy_bt_power_track_en - 0x000000003ffb90c8 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90c8 phy_bt_power_track_en + 0x000000003ffce018 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce018 phy_bt_power_track_en .bss.phy_sw_set_chan_en - 0x000000003ffb90c9 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90c9 phy_sw_set_chan_en + 0x000000003ffce019 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce019 phy_sw_set_chan_en .bss.phy_force_wifi_chan_en - 0x000000003ffb90ca 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90ca phy_force_wifi_chan_en + 0x000000003ffce01a 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce01a phy_force_wifi_chan_en .bss.phy_freq_wifi_only - 0x000000003ffb90cb 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90cb phy_freq_wifi_only + 0x000000003ffce01b 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce01b phy_freq_wifi_only .bss.phy_freq_offset - 0x000000003ffb90cc 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90cc phy_freq_offset - *fill* 0x000000003ffb90ce 0x2 - COMMON 0x000000003ffb90d0 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000003ffb90d0 bt_wifi_chan_data - 0x000000003ffb90e4 freq_i2c_addr - *fill* 0x000000003ffb90ef 0x1 + 0x000000003ffce01c 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce01c phy_freq_offset + *fill* 0x000000003ffce01e 0x2 + COMMON 0x000000003ffce020 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffce020 bt_wifi_chan_data + 0x000000003ffce034 freq_i2c_addr + *fill* 0x000000003ffce03f 0x1 .bss.g_phyFuns - 0x000000003ffb90f0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90f0 g_phyFuns + 0x000000003ffce040 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce040 g_phyFuns .bss.lr_enable - 0x000000003ffb90f4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90f4 lr_enable + 0x000000003ffce044 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce044 lr_enable .bss.chan14_mic_en - 0x000000003ffb90f5 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90f5 chan14_mic_en - .bss.re_entry 0x000000003ffb90f6 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90f6 re_entry + 0x000000003ffce045 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce045 chan14_mic_en + .bss.re_entry 0x000000003ffce046 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce046 re_entry .bss.phy_init_flag - 0x000000003ffb90f7 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90f7 phy_init_flag + 0x000000003ffce047 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce047 phy_init_flag .bss.phy_set_most_tpw_index - 0x000000003ffb90f8 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90f8 phy_set_most_tpw_index + 0x000000003ffce048 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce048 phy_set_most_tpw_index .bss.target_power_backoff_qdb - 0x000000003ffb90f9 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90f9 target_power_backoff_qdb + 0x000000003ffce049 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce049 target_power_backoff_qdb .bss.phy_set_most_tpw_flag - 0x000000003ffb90fa 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90fa phy_set_most_tpw_flag + 0x000000003ffce04a 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce04a phy_set_most_tpw_flag .bss.phy_set_most_tpw_disbg - 0x000000003ffb90fb 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90fb phy_set_most_tpw_disbg + 0x000000003ffce04b 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce04b phy_set_most_tpw_disbg .bss.phy_meas_noise_floor - 0x000000003ffb90fc 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90fc phy_meas_noise_floor + 0x000000003ffce04c 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce04c phy_meas_noise_floor .bss.sw_scan_mode - 0x000000003ffb90fe 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90fe sw_scan_mode + 0x000000003ffce04e 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce04e sw_scan_mode .bss.bt_mode_wifibb - 0x000000003ffb90ff 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb90ff bt_mode_wifibb + 0x000000003ffce04f 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce04f bt_mode_wifibb .bss.noise_timeout_flag - 0x000000003ffb9100 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb9100 noise_timeout_flag - *fill* 0x000000003ffb9101 0x3 - COMMON 0x000000003ffb9104 0x32c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000003ffb9104 pwrdet_offset - 0x000000003ffb9108 phy_rxbb_dc - 0x000000003ffb9120 phy_rxrf_dc - 0x000000003ffb91a4 chip7_sleep_params - 0x000000003ffb9268 set_most_tpw - 0x000000003ffb926c chip7_phy_init_ctrl - 0x000000003ffb92dc phy_rx_gain_gen - 0x000000003ffb941c chip7_phy_api_ctrl - 0x000000003ffb942c adc_ana_conf_org + 0x000000003ffce050 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce050 noise_timeout_flag + *fill* 0x000000003ffce051 0x3 + COMMON 0x000000003ffce054 0x32c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffce054 pwrdet_offset + 0x000000003ffce058 phy_rxbb_dc + 0x000000003ffce070 phy_rxrf_dc + 0x000000003ffce0f4 chip7_sleep_params + 0x000000003ffce1b8 set_most_tpw + 0x000000003ffce1bc chip7_phy_init_ctrl + 0x000000003ffce22c phy_rx_gain_gen + 0x000000003ffce36c chip7_phy_api_ctrl + 0x000000003ffce37c adc_ana_conf_org .bss.phy_pwdet_onetime_flag - 0x000000003ffb9430 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - 0x000000003ffb9430 phy_pwdet_onetime_flag + 0x000000003ffce380 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffce380 phy_pwdet_onetime_flag .bss.phy_dis_pwdet_one - 0x000000003ffb9431 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - 0x000000003ffb9431 phy_dis_pwdet_one + 0x000000003ffce381 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffce381 phy_dis_pwdet_one .bss.phy_tx_pwr_error - 0x000000003ffb9432 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - 0x000000003ffb9432 phy_tx_pwr_error + 0x000000003ffce382 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffce382 phy_tx_pwr_error .bss.phy_in_vdd33_offset - 0x000000003ffb9434 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - 0x000000003ffb9434 phy_in_vdd33_offset + 0x000000003ffce384 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffce384 phy_in_vdd33_offset .bss.tx_pwctrl_track_num - 0x000000003ffb9435 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - 0x000000003ffb9435 tx_pwctrl_track_num + 0x000000003ffce385 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffce385 tx_pwctrl_track_num .bss.phy_tx_power_out - 0x000000003ffb9436 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - 0x000000003ffb9436 phy_tx_power_out - COMMON 0x000000003ffb9438 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - 0x000000003ffb9438 phy_chan_gain_table - 0x000000003ffb9440 phy_chan_pwr_index - 0x000000003ffb9454 phy_chan_target_power - *fill* 0x000000003ffb9465 0x3 + 0x000000003ffce386 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffce386 phy_tx_power_out + COMMON 0x000000003ffce388 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffce388 phy_chan_gain_table + 0x000000003ffce390 phy_chan_pwr_index + 0x000000003ffce3a4 phy_chan_target_power + *fill* 0x000000003ffce3b5 0x3 + .bss.spihost 0x000000003ffce3b8 0xc esp-idf/driver/libdriver.a(spi_master.c.obj) .bss.global_cacert - 0x000000003ffb9468 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000003ffce3c4 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) .bss.supported_init - 0x000000003ffb946c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000003ffce3c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) .bss.supported_ciphersuites - 0x000000003ffb9470 0x13c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000003ffce3cc 0x13c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) .bss.coex_schm_env - 0x000000003ffb95ac 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - 0x000000003ffb95ac coex_schm_env + 0x000000003ffce508 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffce508 coex_schm_env .bss.g_misc_nvs_init - 0x000000003ffb95c8 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) - *fill* 0x000000003ffb95c9 0x3 - COMMON 0x000000003ffb95cc 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) - 0x000000003ffb95cc g_misc_nvs - 0x000000003ffb95d0 g_log_level - 0x000000003ffb95d4 g_log_mod + 0x000000003ffce524 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + *fill* 0x000000003ffce525 0x3 + COMMON 0x000000003ffce528 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x000000003ffce528 g_misc_nvs + 0x000000003ffce52c g_log_level + 0x000000003ffce530 g_log_mod .bss._ZN12_GLOBAL__N_113__new_handlerE - 0x000000003ffb95e8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) - .bss._ZL4init 0x000000003ffb95ec 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x000000003ffce544 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .bss._ZL4init 0x000000003ffce548 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) .bss._ZL10eh_globals - 0x000000003ffb95f4 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - .bss 0x000000003ffb95fc 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - .bss 0x000000003ffb9608 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) - 0x000000003ffb9608 optopt - 0x000000003ffb960c opterr - 0x000000003ffb9610 optind - 0x000000003ffb9614 optarg + 0x000000003ffce550 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .bss 0x000000003ffce558 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .bss 0x000000003ffce564 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + 0x000000003ffce564 optopt + 0x000000003ffce568 opterr + 0x000000003ffce56c optind + 0x000000003ffce570 optarg *libsoc.a:uart_hal_iram.*(.bss .bss.* COMMON) *(.dynsbss) *(.sbss) @@ -26992,18 +28532,17 @@ LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp *(.dynbss) *(.share.mem) *(.gnu.linkonce.b.*) - 0x000000003ffb9620 . = ALIGN (0x8) - *fill* 0x000000003ffb961c 0x4 - 0x000000003ffb9620 _bss_end = ABSOLUTE (.) + 0x000000003ffce578 . = ALIGN (0x8) + 0x000000003ffce578 _bss_end = ABSOLUTE (.) 0x0000000000000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) -.flash.rodata 0x000000003f400020 0x27028 +.flash.rodata 0x000000003f400020 0x2cb10 0x000000003f400020 _rodata_start = ABSOLUTE (.) *(.rodata_desc .rodata_desc.*) .rodata_desc 0x000000003f400020 0x100 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) 0x000000003f400020 esp_app_desc *(.rodata_custom_desc .rodata_custom_desc.*) - *(EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:abort.* *libnewlib.a:heap.* *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:_divsf3.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *libphy.a *libsoc.a:rtc_clk.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:uart_hal_iram.* *libsoc.a:i2c_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:cpu_hal.* *libsoc.a:soc_hal.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libxtensa.a:stdatomic.*) .rodata EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:abort.* *libnewlib.a:heap.* *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:_divsf3.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *liblog.a:log_freertos.* *liblog.a:log.* *libphy.a *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libsoc.a:rtc_clk.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:uart_hal_iram.* *libsoc.a:i2c_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:cpu_hal.* *libsoc.a:soc_hal.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libesp_system.a:system_api.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libxtensa.a:stdatomic.*) .rodata.*) + *(EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libnewlib.a:heap.* *libnewlib.a:abort.* *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:_divsf3.* *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *libphy.a *libsoc.a:spi_flash_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:rtc_clk.* *libsoc.a:soc_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:cpu_hal.* *libsoc.a:i2c_hal_iram.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:memspi_host_driver.* *libxtensa.a:stdatomic.*) .rodata EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libnewlib.a:heap.* *libnewlib.a:abort.* *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:_divsf3.* *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *liblog.a:log_freertos.* *liblog.a:log.* *libphy.a *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:rtc_clk.* *libsoc.a:soc_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:cpu_hal.* *libsoc.a:i2c_hal_iram.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libesp_system.a:system_api.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:memspi_host_driver.* *libxtensa.a:stdatomic.*) .rodata.*) .rodata.rtc_clk_cal_internal.str1.4 0x000000003f400120 0xad esp-idf/soc/libsoc.a(rtc_time.c.obj) *fill* 0x000000003f4001cd 0x3 @@ -27412,3856 +28951,4185 @@ LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp 0x000000003f403200 0xc2 esp-idf/main/libmain.a(main.c.obj) *fill* 0x000000003f4032c2 0x2 .rodata.app_main.str1.4 - 0x000000003f4032c4 0x250 esp-idf/main/libmain.a(main.c.obj) - .rodata.__func__$11198 - 0x000000003f403514 0x13 esp-idf/main/libmain.a(main.c.obj) - *fill* 0x000000003f403527 0x1 - .rodata.__func__$11191 - 0x000000003f403528 0xf esp-idf/main/libmain.a(main.c.obj) - *fill* 0x000000003f403537 0x1 - .rodata.__func__$11206 - 0x000000003f403538 0x9 esp-idf/main/libmain.a(main.c.obj) - *fill* 0x000000003f403541 0x3 + 0x000000003f4032c4 0x254 esp-idf/main/libmain.a(main.c.obj) + .rodata.__func__$15850 + 0x000000003f403518 0x13 esp-idf/main/libmain.a(main.c.obj) + *fill* 0x000000003f40352b 0x1 + .rodata.__func__$15843 + 0x000000003f40352c 0xf esp-idf/main/libmain.a(main.c.obj) + *fill* 0x000000003f40353b 0x1 + .rodata.__func__$15858 + 0x000000003f40353c 0x9 esp-idf/main/libmain.a(main.c.obj) + *fill* 0x000000003f403545 0x3 .rodata.init_memory.str1.4 - 0x000000003f403544 0x163 esp-idf/files/libfiles.a(file.c.obj) - *fill* 0x000000003f4036a7 0x1 + 0x000000003f403548 0x163 esp-idf/files/libfiles.a(file.c.obj) + *fill* 0x000000003f4036ab 0x1 .rodata.create_file.str1.4 - 0x000000003f4036a8 0x80 esp-idf/files/libfiles.a(file.c.obj) + 0x000000003f4036ac 0x80 esp-idf/files/libfiles.a(file.c.obj) 0x84 (size before relaxing) .rodata.read_file.str1.4 - 0x000000003f403728 0x87 esp-idf/files/libfiles.a(file.c.obj) + 0x000000003f40372c 0x87 esp-idf/files/libfiles.a(file.c.obj) 0x8b (size before relaxing) - *fill* 0x000000003f4037af 0x1 + *fill* 0x000000003f4037b3 0x1 .rodata.str1.4 - 0x000000003f4037b0 0x17 esp-idf/files/libfiles.a(file.c.obj) - *fill* 0x000000003f4037c7 0x1 + 0x000000003f4037b4 0x17 esp-idf/files/libfiles.a(file.c.obj) + *fill* 0x000000003f4037cb 0x1 .rodata.task_create_ca.str1.4 - 0x000000003f4037c8 0xb esp-idf/ca/libca.a(ca.c.obj) + 0x000000003f4037cc 0xb esp-idf/ca/libca.a(ca.c.obj) .rodata.write_certificate.str1.4 - 0x000000003f4037d3 0x2 esp-idf/ca/libca.a(ca.c.obj) - *fill* 0x000000003f4037d3 0x1 + 0x000000003f4037d7 0x2 esp-idf/ca/libca.a(ca.c.obj) + *fill* 0x000000003f4037d7 0x1 .rodata.connect.str1.4 - 0x000000003f4037d4 0x144a esp-idf/ca/libca.a(ca.c.obj) + 0x000000003f4037d8 0x144a esp-idf/ca/libca.a(ca.c.obj) 0x1482 (size before relaxing) - *fill* 0x000000003f404c1e 0x2 + *fill* 0x000000003f404c22 0x2 .rodata.register_ca.str1.4 - 0x000000003f404c20 0x63 esp-idf/ca/libca.a(ca.c.obj) - *fill* 0x000000003f404c83 0x1 - .rodata 0x000000003f404c84 0x14 esp-idf/ca/libca.a(ca.c.obj) + 0x000000003f404c24 0x63 esp-idf/ca/libca.a(ca.c.obj) + *fill* 0x000000003f404c87 0x1 + .rodata 0x000000003f404c88 0x14 esp-idf/ca/libca.a(ca.c.obj) .rodata.__func__$7389 - 0x000000003f404c98 0xc esp-idf/ca/libca.a(ca.c.obj) + 0x000000003f404c9c 0xc esp-idf/ca/libca.a(ca.c.obj) .rodata.dev_random_entropy_poll.str1.4 - 0x000000003f404ca4 0x10 esp-idf/ca/libca.a(gen_key.c.obj) + 0x000000003f404ca8 0x10 esp-idf/ca/libca.a(gen_key.c.obj) .rodata.write_private_key.str1.4 - 0x000000003f404cb4 0x3 esp-idf/ca/libca.a(gen_key.c.obj) - *fill* 0x000000003f404cb7 0x1 + 0x000000003f404cb8 0x3 esp-idf/ca/libca.a(gen_key.c.obj) + *fill* 0x000000003f404cbb 0x1 .rodata.task_create.str1.4 - 0x000000003f404cb8 0x8 esp-idf/ca/libca.a(gen_key.c.obj) + 0x000000003f404cbc 0x8 esp-idf/ca/libca.a(gen_key.c.obj) .rodata.connect.str1.4 - 0x000000003f404cc0 0x447 esp-idf/ca/libca.a(gen_key.c.obj) + 0x000000003f404cc4 0x447 esp-idf/ca/libca.a(gen_key.c.obj) 0x477 (size before relaxing) - *fill* 0x000000003f405107 0x1 + *fill* 0x000000003f40510b 0x1 .rodata.register_gen_key.str1.4 - 0x000000003f405108 0x55 esp-idf/ca/libca.a(gen_key.c.obj) - *fill* 0x000000003f40515d 0x3 - .rodata 0x000000003f405160 0x14 esp-idf/ca/libca.a(gen_key.c.obj) + 0x000000003f40510c 0x55 esp-idf/ca/libca.a(gen_key.c.obj) + *fill* 0x000000003f405161 0x3 + .rodata 0x000000003f405164 0x14 esp-idf/ca/libca.a(gen_key.c.obj) .rodata.__func__$7228 - 0x000000003f405174 0x11 esp-idf/ca/libca.a(gen_key.c.obj) - *fill* 0x000000003f405185 0x3 + 0x000000003f405178 0x11 esp-idf/ca/libca.a(gen_key.c.obj) + *fill* 0x000000003f405189 0x3 .rodata.type_to_str.str1.4 - 0x000000003f405188 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003f40518c 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .rodata.list.str1.4 - 0x000000003f405190 0x5e esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003f405194 0x5e esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .rodata.list_entries.str1.4 - 0x000000003f4051ee 0x1 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - *fill* 0x000000003f4051ee 0x2 + 0x000000003f4051f2 0x1 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f4051f2 0x2 .rodata.set_namespace.str1.4 - 0x000000003f4051f0 0x2d esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - *fill* 0x000000003f40521d 0x3 + 0x000000003f4051f4 0x2d esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f405221 0x3 .rodata.erase_all.str1.4 - 0x000000003f405220 0x38 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003f405224 0x38 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .rodata.erase_namespace.str1.4 - 0x000000003f405258 0x1a esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003f40525c 0x1a esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .rodata.erase.str1.4 - 0x000000003f405258 0x32 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003f40525c 0x32 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .rodata.print_blob.str1.4 - 0x000000003f40528a 0x32 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003f40528e 0x32 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x5 (size before relaxing) - *fill* 0x000000003f40528a 0x2 + *fill* 0x000000003f40528e 0x2 .rodata.get_value_from_nvs.str1.4 - 0x000000003f40528c 0x42 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003f405290 0x42 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x46 (size before relaxing) - *fill* 0x000000003f4052ce 0x2 + *fill* 0x000000003f4052d2 0x2 .rodata.store_blob.str1.4 - 0x000000003f4052d0 0x83 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - *fill* 0x000000003f405353 0x1 + 0x000000003f4052d4 0x83 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f405357 0x1 .rodata.set_value_in_nvs.str1.4 - 0x000000003f405354 0x33 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - *fill* 0x000000003f405387 0x1 + 0x000000003f405358 0x33 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f40538b 0x1 .rodata.register_nvs.str1.4 - 0x000000003f405388 0x4fd esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003f40538c 0x4fd esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x521 (size before relaxing) - *fill* 0x000000003f405885 0x3 - .rodata 0x000000003f405888 0x78 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f405889 0x3 + .rodata 0x000000003f40588c 0x78 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .rodata.__func__$6032 - 0x000000003f405900 0xd esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - *fill* 0x000000003f40590d 0x3 + 0x000000003f405904 0xd esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f405911 0x3 .rodata.str1.4 - 0x000000003f405910 0x30 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003f405914 0x30 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .rodata.type_str_pair - 0x000000003f405940 0x58 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x000000003f405944 0x58 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .rodata.register_free.str1.4 - 0x000000003f405998 0x7a esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f405a12 0x2 + 0x000000003f40599c 0x7a esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405a16 0x2 .rodata.register_heap.str1.4 - 0x000000003f405a14 0x80 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f405a18 0x80 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .rodata.register_version.str1.4 - 0x000000003f405a94 0x1c esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f405a98 0x1c esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x24 (size before relaxing) .rodata.register_restart.str1.4 - 0x000000003f405ab0 0x23 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f405ad3 0x1 + 0x000000003f405ab4 0x23 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405ad7 0x1 .rodata.register_tasks.str1.4 - 0x000000003f405ad4 0x2c esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f405ad8 0x2c esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .rodata.free_mem.str1.4 - 0x000000003f405b00 0x4 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f405b04 0x4 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .rodata.heap_size.str1.4 - 0x000000003f405b00 0x35 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f405b35 0x3 + 0x000000003f405b04 0x35 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405b39 0x3 .rodata.get_version.str1.4 - 0x000000003f405b38 0xba esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f405b3c 0xba esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0xbe (size before relaxing) - *fill* 0x000000003f405bf2 0x2 + *fill* 0x000000003f405bf6 0x2 .rodata.restart.str1.4 - 0x000000003f405bf4 0x22 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f405c16 0x2 + 0x000000003f405bf8 0x22 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405c1a 0x2 .rodata.register_deep_sleep.str1.4 - 0x000000003f405c18 0x116 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f405c1c 0x116 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x122 (size before relaxing) - *fill* 0x000000003f405d2e 0x2 - .rodata 0x000000003f405d30 0x28 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405d32 0x2 + .rodata 0x000000003f405d34 0x28 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .rodata.deep_sleep.str1.4 - 0x000000003f405d58 0x14c esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f405d5c 0x14c esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x150 (size before relaxing) .rodata.register_light_sleep.str1.4 - 0x000000003f405ea4 0xc7 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f405f6b 0x1 + 0x000000003f405ea8 0xc7 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405f6f 0x1 .rodata.light_sleep.str1.4 - 0x000000003f405f6c 0x1c0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f405f70 0x1c0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x1d0 (size before relaxing) .rodata.tasks_info.str1.4 - 0x000000003f40612c 0x68 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f406130 0x68 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .rodata.__func__$8283 - 0x000000003f406194 0xf esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f4061a3 0x1 + 0x000000003f406198 0xf esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f4061a7 0x1 .rodata.__func__$8320 - 0x000000003f4061a4 0xc esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f4061a8 0xc esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .rodata.__func__$8344 - 0x000000003f4061b0 0x15 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f4061c5 0x3 + 0x000000003f4061b4 0x15 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f4061c9 0x3 .rodata.__func__$8297 - 0x000000003f4061c8 0xb esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f4061d3 0x1 + 0x000000003f4061cc 0xb esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f4061d7 0x1 .rodata.__func__$8306 - 0x000000003f4061d4 0x14 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x000000003f4061d8 0x14 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .rodata.__func__$8250 - 0x000000003f4061e8 0x11 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f4061f9 0x3 + 0x000000003f4061ec 0x11 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f4061fd 0x3 .rodata.__func__$8240 - 0x000000003f4061fc 0x11 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f40620d 0x3 + 0x000000003f406200 0x11 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f406211 0x3 .rodata.__func__$8271 - 0x000000003f406210 0xe esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f40621e 0x2 + 0x000000003f406214 0xe esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f406222 0x2 .rodata.__func__$8260 - 0x000000003f406220 0xe esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - *fill* 0x000000003f40622e 0x2 + 0x000000003f406224 0xe esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f406232 0x2 + .rodata.guiTask.str1.4 + 0x000000003f406234 0x9a esp-idf/display/libdisplay.a(display.c.obj) + *fill* 0x000000003f4062ce 0x2 + .rodata.__func__$10230 + 0x000000003f4062d0 0x8 esp-idf/display/libdisplay.a(display.c.obj) .rodata.initialise_wifi.str1.4 - 0x000000003f406230 0x159 esp-idf/wifi/libwifi.a(wifi.c.obj) - *fill* 0x000000003f406389 0x3 + 0x000000003f4062d8 0x159 esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f406431 0x3 .rodata.wifi_join.str1.4 - 0x000000003f40638c 0x6b esp-idf/wifi/libwifi.a(wifi.c.obj) - *fill* 0x000000003f4063f7 0x1 + 0x000000003f406434 0x6b esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f40649f 0x1 .rodata.connect.str1.4 - 0x000000003f4063f8 0x79 esp-idf/wifi/libwifi.a(wifi.c.obj) - *fill* 0x000000003f406471 0x3 + 0x000000003f4064a0 0x79 esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f406519 0x3 .rodata.register_wifi.str1.4 - 0x000000003f406474 0x5a esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x000000003f40651c 0x5a esp-idf/wifi/libwifi.a(wifi.c.obj) 0x92 (size before relaxing) - *fill* 0x000000003f4064ce 0x2 - .rodata 0x000000003f4064d0 0x14 esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f406576 0x2 + .rodata 0x000000003f406578 0x14 esp-idf/wifi/libwifi.a(wifi.c.obj) .rodata.__func__$9491 - 0x000000003f4064e4 0x10 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x000000003f40658c 0x10 esp-idf/wifi/libwifi.a(wifi.c.obj) .rodata.__func__$9507 - 0x000000003f4064f4 0xa esp-idf/wifi/libwifi.a(wifi.c.obj) - *fill* 0x000000003f4064fe 0x2 + 0x000000003f40659c 0xa esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f4065a6 0x2 .rodata.__func__$9522 - 0x000000003f406500 0x8 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x000000003f4065a8 0x8 esp-idf/wifi/libwifi.a(wifi.c.obj) .rodata.__func__$9529 - 0x000000003f406508 0xe esp-idf/wifi/libwifi.a(wifi.c.obj) - *fill* 0x000000003f406516 0x2 + 0x000000003f4065b0 0xe esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f4065be 0x2 .rodata.connect.str1.4 - 0x000000003f406518 0xe6 esp-idf/https_server/libhttps_server.a(https_server.c.obj) - *fill* 0x000000003f4065fe 0x2 + 0x000000003f4065c0 0xe6 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + *fill* 0x000000003f4066a6 0x2 .rodata.start_webserver.str1.4 - 0x000000003f406600 0x88 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x000000003f4066a8 0x88 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x90 (size before relaxing) - .rodata 0x000000003f406688 0x98 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .rodata 0x000000003f406730 0x98 esp-idf/https_server/libhttps_server.a(https_server.c.obj) .rodata.echo_post_handler.str1.4 - 0x000000003f406720 0x1ad esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x000000003f4067c8 0x1ad esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x1e1 (size before relaxing) - *fill* 0x000000003f4068cd 0x3 + *fill* 0x000000003f406975 0x3 .rodata.root_get_handler.str1.4 - 0x000000003f4068d0 0xc5 esp-idf/https_server/libhttps_server.a(https_server.c.obj) - *fill* 0x000000003f406995 0x3 + 0x000000003f406978 0xc5 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + *fill* 0x000000003f406a3d 0x3 .rodata.register_server.str1.4 - 0x000000003f406998 0x7b esp-idf/https_server/libhttps_server.a(https_server.c.obj) - *fill* 0x000000003f406a13 0x1 + 0x000000003f406a40 0x7b esp-idf/https_server/libhttps_server.a(https_server.c.obj) + *fill* 0x000000003f406abb 0x1 .rodata.__func__$10172 - 0x000000003f406a14 0x8 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x000000003f406abc 0x8 esp-idf/https_server/libhttps_server.a(https_server.c.obj) .rodata.__func__$10182 - 0x000000003f406a1c 0x10 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x000000003f406ac4 0x10 esp-idf/https_server/libhttps_server.a(https_server.c.obj) .rodata.str1.4 - 0x000000003f406a2c 0x6 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x000000003f406ad4 0x6 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0xa (size before relaxing) - *fill* 0x000000003f406a32 0x2 - .rodata.root 0x000000003f406a34 0x10 esp-idf/https_server/libhttps_server.a(https_server.c.obj) - .rodata.echo 0x000000003f406a44 0x10 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + *fill* 0x000000003f406ada 0x2 + .rodata.root 0x000000003f406adc 0x10 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .rodata.echo 0x000000003f406aec 0x10 esp-idf/https_server/libhttps_server.a(https_server.c.obj) .rodata.decode.str1.4 - 0x000000003f406a54 0x4 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + 0x000000003f406afc 0x4 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) .rodata.embedded - 0x000000003f406a58 0x48c esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) - 0x000000003f406a58 _binary_cacert_pem_start - 0x000000003f406a58 cacert_pem - 0x000000003f406ee0 _binary_cacert_pem_end - 0x000000003f406ee0 cacert_pem_length + 0x000000003f406b00 0x48c esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) + 0x000000003f406b00 _binary_cacert_pem_start + 0x000000003f406b00 cacert_pem + 0x000000003f406f88 _binary_cacert_pem_end + 0x000000003f406f88 cacert_pem_length .rodata.embedded - 0x000000003f406ee4 0x6ad esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) - 0x000000003f406ee4 prvtkey_pem - 0x000000003f406ee4 _binary_prvtkey_pem_start - 0x000000003f40758d prvtkey_pem_length - 0x000000003f40758d _binary_prvtkey_pem_end - *fill* 0x000000003f407591 0x3 + 0x000000003f406f8c 0x6ad esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) + 0x000000003f406f8c prvtkey_pem + 0x000000003f406f8c _binary_prvtkey_pem_start + 0x000000003f407635 prvtkey_pem_length + 0x000000003f407635 _binary_prvtkey_pem_end + *fill* 0x000000003f407639 0x3 .rodata.range_read_addr_blocks - 0x000000003f407594 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x000000003f407594 range_read_addr_blocks + 0x000000003f40763c 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x000000003f40763c range_read_addr_blocks .rodata.set_cnt_in_reg.str1.4 - 0x000000003f4075b4 0x77 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000003f40762b 0x1 + 0x000000003f40765c 0x77 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f4076d3 0x1 .rodata.write_reg.str1.4 - 0x000000003f40762c 0xc0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x000000003f4076d4 0xc0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) .rodata.esp_efuse_utility_process.str1.4 - 0x000000003f4076ec 0x69 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000003f407755 0x3 + 0x000000003f407794 0x69 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f4077fd 0x3 .rodata.esp_efuse_utility_read_reg.str1.4 - 0x000000003f407758 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x000000003f407800 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) .rodata.__func__$3769 - 0x000000003f407828 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000003f407843 0x1 + 0x000000003f4078d0 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f4078eb 0x1 .rodata.__func__$3673 - 0x000000003f407844 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000003f40785e 0x2 + 0x000000003f4078ec 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f407906 0x2 .rodata.CHIP_VER_REV2 - 0x000000003f407860 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003f407908 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) .rodata.CHIP_VER_REV1 - 0x000000003f407864 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003f40790c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) .rodata.MAC_FACTORY_CRC - 0x000000003f407868 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003f407910 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) .rodata.MAC_FACTORY - 0x000000003f40786c 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .rodata 0x000000003f407884 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x000000003f407914 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata 0x000000003f40792c 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) .rodata.spi_flash_init_lock.str1.4 - 0x000000003f407898 0x59 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - *fill* 0x000000003f4078f1 0x3 + 0x000000003f407940 0x59 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f407999 0x3 .rodata.str1.4 - 0x000000003f4078f4 0xdf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - *fill* 0x000000003f4079d3 0x1 + 0x000000003f40799c 0xdf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f407a7b 0x1 .rodata.__func__$5496 - 0x000000003f4079d4 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - *fill* 0x000000003f407a05 0x3 + 0x000000003f407a7c 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f407aad 0x3 .rodata.__func__$5483 - 0x000000003f407a08 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - *fill* 0x000000003f407a3a 0x2 + 0x000000003f407ab0 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f407ae2 0x2 .rodata.__func__$5466 - 0x000000003f407a3c 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x000000003f407ae4 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) .rodata.str1.4 - 0x000000003f407a50 0xc0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000003f407af8 0xc0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) .rodata.io_mode_str - 0x000000003f407b10 0x2a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x000000003f407b3a 0x2 - .rodata.TAG 0x000000003f407b3c 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x000000003f407b46 0x2 + 0x000000003f407bb8 0x2a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003f407be2 0x2 + .rodata.TAG 0x000000003f407be4 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003f407bee 0x2 .rodata.esp_flash_init_default_chip.str1.4 - 0x000000003f407b48 0xfb esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - *fill* 0x000000003f407c43 0x1 - .rodata.TAG 0x000000003f407c44 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - *fill* 0x000000003f407c4e 0x2 - .rodata.ensure_partitions_loaded.str1.4 - 0x000000003f407c50 0x41 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003f407c91 0x3 - .rodata.esp_partition_next.str1.4 - 0x000000003f407c94 0x3b esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - 0x3f (size before relaxing) - *fill* 0x000000003f407ccf 0x1 - .rodata.esp_partition_get.str1.4 - 0x000000003f407cd0 0x11 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003f407ce1 0x3 - .rodata.esp_partition_verify.str1.4 - 0x000000003f407ce4 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x000000003f407bf0 0xfb esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003f407ceb 0x1 + .rodata.TAG 0x000000003f407cec 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) *fill* 0x000000003f407cf6 0x2 + .rodata.ensure_partitions_loaded.str1.4 + 0x000000003f407cf8 0x41 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f407d39 0x3 + .rodata.esp_partition_next.str1.4 + 0x000000003f407d3c 0x3b esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x3f (size before relaxing) + *fill* 0x000000003f407d77 0x1 + .rodata.esp_partition_get.str1.4 + 0x000000003f407d78 0x11 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f407d89 0x3 + .rodata.esp_partition_verify.str1.4 + 0x000000003f407d8c 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f407d9e 0x2 .rodata.__func__$4293 - 0x000000003f407cf8 0x1a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003f407d12 0x2 + 0x000000003f407da0 0x1a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f407dba 0x2 .rodata.__func__$4287 - 0x000000003f407d14 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x000000003f407dbc 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) .rodata.__func__$4280 - 0x000000003f407d28 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003f407d3b 0x1 + 0x000000003f407dd0 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f407de3 0x1 .rodata.__func__$4235 - 0x000000003f407d3c 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003f407d4e 0x2 + 0x000000003f407de4 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f407df6 0x2 .rodata.__func__$4197 - 0x000000003f407d50 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003f407d63 0x1 + 0x000000003f407df8 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f407e0b 0x1 .rodata.str1.4 - 0x000000003f407d64 0x102 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - *fill* 0x000000003f407e66 0x2 + 0x000000003f407e0c 0x102 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003f407f0e 0x2 .rodata.__func__$5548 - 0x000000003f407e68 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - *fill* 0x000000003f407e79 0x3 + 0x000000003f407f10 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003f407f21 0x3 .rodata.__func__$5539 - 0x000000003f407e7c 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - *fill* 0x000000003f407e91 0x3 + 0x000000003f407f24 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003f407f39 0x3 .rodata.spi_flash_clk_cfg_reg - 0x000000003f407e94 0x30 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x000000003f407f3c 0x30 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) .rodata.esp_netif_list_unlock.str1.4 - 0x000000003f407ec4 0x4f esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - *fill* 0x000000003f407f13 0x1 + 0x000000003f407f6c 0x4f esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f407fbb 0x1 .rodata.esp_netif_remove_from_list.str1.4 - 0x000000003f407f14 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000003f407fbc 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) .rodata.esp_netif_next.str1.4 - 0x000000003f407f2c 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - *fill* 0x000000003f407f7d 0x3 + 0x000000003f407fd4 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f408025 0x3 .rodata.__func__$8308 - 0x000000003f407f80 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - *fill* 0x000000003f407f9b 0x1 + 0x000000003f408028 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f408043 0x1 .rodata.__func__$8296 - 0x000000003f407f9c 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - *fill* 0x000000003f407fb2 0x2 + 0x000000003f408044 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f40805a 0x2 .rodata.str1.4 - 0x000000003f407fb4 0x9 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - *fill* 0x000000003f407fbd 0x3 + 0x000000003f40805c 0x9 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f408065 0x3 .rodata.esp_netif_config_sanity_check.str1.4 - 0x000000003f407fc0 0x122 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x000000003f4080e2 0x2 + 0x000000003f408068 0x122 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f40818a 0x2 .rodata.esp_netif_dhcps_cb.str1.4 - 0x000000003f4080e4 0x9f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x000000003f408183 0x1 + 0x000000003f40818c 0x9f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f40822b 0x1 .rodata.esp_netif_lwip_add.str1.4 - 0x000000003f408184 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x000000003f4081b6 0x2 + 0x000000003f40822c 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f40825e 0x2 .rodata.esp_netif_ip_lost_timer.str1.4 - 0x000000003f4081b8 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000003f408260 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) .rodata.esp_netif_dhcpc_start_api.str1.4 - 0x000000003f408200 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000003f4082a8 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) .rodata.esp_netif_start_api.str1.4 - 0x000000003f408230 0x92 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x000000003f4082c2 0x2 + 0x000000003f4082d8 0x92 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f40836a 0x2 .rodata.esp_netif_init.str1.4 - 0x000000003f4082c4 0x70 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000003f40836c 0x70 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) .rodata.esp_netif_new.str1.4 - 0x000000003f408334 0x101 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x000000003f408435 0x3 + 0x000000003f4083dc 0x101 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f4084dd 0x3 .rodata.esp_netif_attach.str1.4 - 0x000000003f408438 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x000000003f408481 0x3 + 0x000000003f4084e0 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f408529 0x3 .rodata.esp_netif_dhcpc_cb.str1.4 - 0x000000003f408484 0x42 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x000000003f4084c6 0x2 + 0x000000003f40852c 0x42 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f40856e 0x2 .rodata.__func__$9729 - 0x000000003f4084c8 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000003f408570 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) .rodata.__func__$9681 - 0x000000003f4084dc 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x000000003f4084ea 0x2 + 0x000000003f408584 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f408592 0x2 .rodata.esp_netif_ppp_set_auth.str1.4 - 0x000000003f4084ec 0x6f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - *fill* 0x000000003f40855b 0x1 + 0x000000003f408594 0x6f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + *fill* 0x000000003f408603 0x1 .rodata.__func__$9031 - 0x000000003f40855c 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - *fill* 0x000000003f408572 0x2 + 0x000000003f408604 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + *fill* 0x000000003f40861a 0x2 .rodata.__func__$9027 - 0x000000003f408574 0x13 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - *fill* 0x000000003f408587 0x1 + 0x000000003f40861c 0x13 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + *fill* 0x000000003f40862f 0x1 .rodata.__func__$9016 - 0x000000003f408588 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x000000003f408630 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) .rodata.__func__$9012 - 0x000000003f40859c 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - *fill* 0x000000003f4085ae 0x2 + 0x000000003f408644 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + *fill* 0x000000003f408656 0x2 .rodata.__func__$9007 - 0x000000003f4085b0 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - .rodata 0x000000003f4085d0 0x14 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x000000003f408658 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .rodata 0x000000003f408678 0x14 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) .rodata.esp_event_legacy_wifi_event_id.str1.4 - 0x000000003f4085e4 0x3c esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x000000003f40868c 0x3c esp-idf/esp_event/libesp_event.a(event_send.c.obj) .rodata.esp_event_legacy_wifi_event_id - 0x000000003f408620 0x44 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x000000003f4086c8 0x44 esp-idf/esp_event/libesp_event.a(event_send.c.obj) .rodata.esp_event_legacy_ip_event_id.str1.4 - 0x000000003f408664 0x2e esp-idf/esp_event/libesp_event.a(event_send.c.obj) - *fill* 0x000000003f408692 0x2 + 0x000000003f40870c 0x2e esp-idf/esp_event/libesp_event.a(event_send.c.obj) + *fill* 0x000000003f40873a 0x2 .rodata.esp_event_legacy_ip_event_id - 0x000000003f408694 0x14 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x000000003f40873c 0x14 esp-idf/esp_event/libesp_event.a(event_send.c.obj) .rodata.esp_event_legacy_event_id.str1.4 - 0x000000003f4086a8 0x2d esp-idf/esp_event/libesp_event.a(event_send.c.obj) - *fill* 0x000000003f4086d5 0x3 + 0x000000003f408750 0x2d esp-idf/esp_event/libesp_event.a(event_send.c.obj) + *fill* 0x000000003f40877d 0x3 .rodata.g_wifi_default_wpa_crypto_funcs - 0x000000003f4086d8 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - 0x000000003f4086d8 g_wifi_default_wpa_crypto_funcs - .rodata.rcons 0x000000003f408738 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - 0x000000003f408738 rcons - *fill* 0x000000003f408742 0x2 - .rodata.Td4s 0x000000003f408744 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - 0x000000003f408744 Td4s - .rodata.Td0 0x000000003f408844 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - 0x000000003f408844 Td0 - .rodata.Te0 0x000000003f408c44 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - 0x000000003f408c44 Te0 + 0x000000003f408780 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x000000003f408780 g_wifi_default_wpa_crypto_funcs + .rodata.rcons 0x000000003f4087e0 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x000000003f4087e0 rcons + *fill* 0x000000003f4087ea 0x2 + .rodata.Td4s 0x000000003f4087ec 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x000000003f4087ec Td4s + .rodata.Td0 0x000000003f4088ec 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x000000003f4088ec Td0 + .rodata.Te0 0x000000003f408cec 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x000000003f408cec Te0 .rodata.nvs_flash_init.str1.4 - 0x000000003f409044 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003f4090ec 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4 (size before relaxing) .rodata.nvs_entry_next.str1.4 - 0x000000003f409044 0x3f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003f4090ec 0x3f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x43 (size before relaxing) - *fill* 0x000000003f409083 0x1 + *fill* 0x000000003f40912b 0x1 .rodata._ZZ14nvs_entry_nextE19__PRETTY_FUNCTION__ - 0x000000003f409084 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - *fill* 0x000000003f4090ba 0x2 + 0x000000003f40912c 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x000000003f409162 0x2 .rodata._ZN3nvs7Storage4initEjj.str1.4 - 0x000000003f4090bc 0xcd esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - *fill* 0x000000003f409189 0x3 + 0x000000003f409164 0xcd esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f409231 0x3 .rodata._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE.str1.4 - 0x000000003f40918c 0x63 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - *fill* 0x000000003f4091ef 0x1 + 0x000000003f409234 0x63 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f409297 0x1 .rodata._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj.str1.4 - 0x000000003f4091f0 0x53 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - *fill* 0x000000003f409243 0x1 + 0x000000003f409298 0x53 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f4092eb 0x1 .rodata._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE.str1.4 - 0x000000003f409244 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x000000003f4092ec 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) .rodata._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj.str1.4 - 0x000000003f40926c 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - *fill* 0x000000003f409281 0x3 + 0x000000003f409314 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f409329 0x3 .rodata._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj.str1.4 - 0x000000003f409284 0x81 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - *fill* 0x000000003f409305 0x3 + 0x000000003f40932c 0x81 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f4093ad 0x3 .rodata._ZZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetEE19__PRETTY_FUNCTION__ - 0x000000003f409308 0x51 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - *fill* 0x000000003f409359 0x3 + 0x000000003f4093b0 0x51 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f409401 0x3 .rodata._ZZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvjE19__PRETTY_FUNCTION__ - 0x000000003f40935c 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x000000003f409404 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) .rodata._ZZN3nvs7Storage17readMultiPageBlobEhPKcPvjE19__PRETTY_FUNCTION__ - 0x000000003f4093b0 0x4f esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - *fill* 0x000000003f4093ff 0x1 + 0x000000003f409458 0x4f esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f4094a7 0x1 .rodata._ZZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvjE19__PRETTY_FUNCTION__ - 0x000000003f409400 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x000000003f4094a8 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) .rodata._ZZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetEE19__PRETTY_FUNCTION__ - 0x000000003f40945c 0x66 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - *fill* 0x000000003f4094c2 0x2 + 0x000000003f409504 0x66 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f40956a 0x2 .rodata._ZZN3nvs4Item8getValueIhEEvRT_E19__PRETTY_FUNCTION__ - 0x000000003f4094c4 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - *fill* 0x000000003f4094fa 0x2 + 0x000000003f40956c 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f4095a2 0x2 .rodata._ZTVN3nvs19NVSPartitionManagerE - 0x000000003f4094fc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x000000003f4094fc _ZTVN3nvs19NVSPartitionManagerE + 0x000000003f4095a4 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x000000003f4095a4 _ZTVN3nvs19NVSPartitionManagerE .rodata._ZN3nvs8HashList5eraseEjb.str1.4 - 0x000000003f40950c 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - *fill* 0x000000003f40958a 0x2 + 0x000000003f4095b4 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + *fill* 0x000000003f409632 0x2 .rodata._ZZN3nvs8HashList5eraseEjbE19__PRETTY_FUNCTION__ - 0x000000003f40958c 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x000000003f409634 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) .rodata._ZN3nvs4Page20updateFirstUsedEntryEjj.str1.4 - 0x000000003f4095b4 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000003f40965c 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0xc9 (size before relaxing) .rodata._ZN3nvs4Page10initializeEv.str1.4 - 0x000000003f409610 0x23 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f409633 0x1 + 0x000000003f4096b8 0x23 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4096db 0x1 .rodata._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE.str1.4 - 0x000000003f409634 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000003f4096dc 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) .rodata._ZN3nvs4Page10writeEntryERKNS_4ItemE.str1.4 - 0x000000003f409648 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000003f4096f0 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) .rodata._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE.str1.4 - 0x000000003f40969c 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000003f409744 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) .rodata._ZN3nvs4Page14writeEntryDataEPKhj.str1.4 - 0x000000003f4096bc 0x59 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f409715 0x3 + 0x000000003f409764 0x59 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4097bd 0x3 .rodata._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh.str1.4 - 0x000000003f409718 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f409752 0x2 + 0x000000003f4097c0 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4097fa 0x2 .rodata._ZN3nvs4Page17eraseEntryAndSpanEj.str1.4 - 0x000000003f409754 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f40978f 0x1 + 0x000000003f4097fc 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409837 0x1 .rodata._ZN3nvs4Page9copyItemsERS0_.str1.4 - 0x000000003f409790 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f4097b2 0x2 + 0x000000003f409838 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f40985a 0x2 .rodata._ZN3nvs4Page15mLoadEntryTableEv.str1.4 - 0x000000003f4097b4 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f4097c2 0x2 + 0x000000003f40985c 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f40986a 0x2 .rodata._ZZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateEE19__PRETTY_FUNCTION__ - 0x000000003f4097c4 0x51 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f409815 0x3 + 0x000000003f40986c 0x51 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4098bd 0x3 .rodata._ZZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_E19__PRETTY_FUNCTION__ - 0x000000003f409818 0xb2 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f4098ca 0x2 + 0x000000003f4098c0 0xb2 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409972 0x2 .rodata._ZZN3nvs4Page15alterEntryStateEjNS0_10EntryStateEE19__PRETTY_FUNCTION__ - 0x000000003f4098cc 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000003f409974 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) .rodata._ZZN3nvs4Page10initializeEvE19__PRETTY_FUNCTION__ - 0x000000003f409910 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f409932 0x2 + 0x000000003f4099b8 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4099da 0x2 .rodata._ZZN3nvs4Page15mLoadEntryTableEvE19__PRETTY_FUNCTION__ - 0x000000003f409934 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f40995b 0x1 + 0x000000003f4099dc 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409a03 0x1 .rodata._ZZN3nvs4Page9copyItemsERS0_E19__PRETTY_FUNCTION__ - 0x000000003f40995c 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f409987 0x1 + 0x000000003f409a04 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409a2f 0x1 .rodata._ZZN3nvs4Page20updateFirstUsedEntryEjjE19__PRETTY_FUNCTION__ - 0x000000003f409988 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f4099bd 0x3 + 0x000000003f409a30 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409a65 0x3 .rodata._ZZNK19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3getEjE19__PRETTY_FUNCTION__ - 0x000000003f4099c0 0xb2 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f409a72 0x2 + 0x000000003f409a68 0xb2 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409b1a 0x2 .rodata._ZZN3nvs4Page17eraseEntryAndSpanEjE19__PRETTY_FUNCTION__ - 0x000000003f409a74 0x2f esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f409aa3 0x1 + 0x000000003f409b1c 0x2f esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409b4b 0x1 .rodata._ZZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjhE19__PRETTY_FUNCTION__ - 0x000000003f409aa4 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f409b06 0x2 + 0x000000003f409b4c 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409bae 0x2 .rodata._ZZN3nvs4Page14writeEntryDataEPKhjE19__PRETTY_FUNCTION__ - 0x000000003f409b08 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000003f409bb0 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) .rodata._ZZNK3nvs4Page15getEntryAddressEjE19__PRETTY_FUNCTION__ - 0x000000003f409b44 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x000000003f409b76 0x2 + 0x000000003f409bec 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409c1e 0x2 .rodata._ZN3nvs11PageManager14requestNewPageEv.str1.4 - 0x000000003f409b78 0x73 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - *fill* 0x000000003f409beb 0x1 + 0x000000003f409c20 0x73 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000003f409c93 0x1 .rodata._ZN3nvs11PageManager4loadEjj.str1.4 - 0x000000003f409bec 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - *fill* 0x000000003f409c15 0x3 + 0x000000003f409c94 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000003f409cbd 0x3 .rodata._ZZN3nvs11PageManager14requestNewPageEvE19__PRETTY_FUNCTION__ - 0x000000003f409c18 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - *fill* 0x000000003f409c45 0x3 + 0x000000003f409cc0 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000003f409ced 0x3 .rodata._ZZN3nvs11PageManager4loadEjjE19__PRETTY_FUNCTION__ - 0x000000003f409c48 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - *fill* 0x000000003f409c7d 0x3 + 0x000000003f409cf0 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000003f409d25 0x3 .rodata._ZTVN3nvs15NVSHandleSimpleE - 0x000000003f409c80 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x000000003f409c80 _ZTVN3nvs15NVSHandleSimpleE + 0x000000003f409d28 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x000000003f409d28 _ZTVN3nvs15NVSHandleSimpleE .rodata.s_set_default_wifi_log_level.str1.4 - 0x000000003f409cbc 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003f409d64 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) 0xd (size before relaxing) - *fill* 0x000000003f409cc1 0x3 + *fill* 0x000000003f409d69 0x3 .rodata.esp_wifi_deinit.str1.4 - 0x000000003f409cc4 0x48 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003f409d6c 0x48 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) .rodata.esp_wifi_init.str1.4 - 0x000000003f409d0c 0xb9 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - *fill* 0x000000003f409dc5 0x3 + 0x000000003f409db4 0xb9 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003f409e6d 0x3 .rodata.str1.4 - 0x000000003f409dc8 0xb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - *fill* 0x000000003f409dd3 0x1 + 0x000000003f409e70 0xb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003f409e7b 0x1 .rodata.wifi_default_action_sta_got_ip.str1.4 - 0x000000003f409dd4 0x57 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - *fill* 0x000000003f409e2b 0x1 + 0x000000003f409e7c 0x57 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f409ed3 0x1 .rodata.wifi_start.str1.4 - 0x000000003f409e2c 0x82 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - *fill* 0x000000003f409eae 0x2 - .rodata.create_and_attach.str1.4 - 0x000000003f409eb0 0x3e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - *fill* 0x000000003f409eee 0x2 - .rodata.esp_netif_create_default_wifi_ap.str1.4 - 0x000000003f409ef0 0x41 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x49 (size before relaxing) - *fill* 0x000000003f409f31 0x3 - .rodata.__func__$9338 - 0x000000003f409f34 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x000000003f409ed4 0x82 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) *fill* 0x000000003f409f56 0x2 + .rodata.create_and_attach.str1.4 + 0x000000003f409f58 0x3e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f409f96 0x2 + .rodata.esp_netif_create_default_wifi_ap.str1.4 + 0x000000003f409f98 0x41 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x49 (size before relaxing) + *fill* 0x000000003f409fd9 0x3 + .rodata.__func__$9338 + 0x000000003f409fdc 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f409ffe 0x2 .rodata.__func__$9332 - 0x000000003f409f58 0x21 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - *fill* 0x000000003f409f79 0x3 + 0x000000003f40a000 0x21 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f40a021 0x3 .rodata.esp_wifi_create_if_driver.str1.4 - 0x000000003f409f7c 0x4f esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - *fill* 0x000000003f409fcb 0x1 + 0x000000003f40a024 0x4f esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *fill* 0x000000003f40a073 0x1 .rodata.esp_wifi_register_if_rxcb.str1.4 - 0x000000003f409fcc 0xe3 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - *fill* 0x000000003f40a0af 0x1 + 0x000000003f40a074 0xe3 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *fill* 0x000000003f40a157 0x1 .rodata.load_cal_data_from_nvs_handle.str1.4 - 0x000000003f40a0b0 0xf0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x000000003f40a158 0xf0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .rodata.store_cal_data_to_nvs_handle.str1.4 - 0x000000003f40a1a0 0x10a esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a2aa 0x2 + 0x000000003f40a248 0x10a esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a352 0x2 .rodata.esp_phy_rf_deinit.str1.4 - 0x000000003f40a2ac 0xd3 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a37f 0x1 + 0x000000003f40a354 0xd3 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a427 0x1 .rodata.esp_modem_sleep_enter.str1.4 - 0x000000003f40a380 0x3f esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a3bf 0x1 + 0x000000003f40a428 0x3f esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a467 0x1 .rodata.esp_modem_sleep_register.str1.4 - 0x000000003f40a3c0 0x40 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x000000003f40a468 0x40 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .rodata.esp_phy_load_cal_data_from_nvs.str1.4 - 0x000000003f40a400 0x6a esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a46a 0x2 + 0x000000003f40a4a8 0x6a esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a512 0x2 .rodata.esp_phy_rf_init.str1.4 - 0x000000003f40a46c 0x59 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a4c5 0x3 + 0x000000003f40a514 0x59 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a56d 0x3 .rodata.esp_modem_sleep_deregister.str1.4 - 0x000000003f40a4c8 0x3f esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a507 0x1 + 0x000000003f40a570 0x3f esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a5af 0x1 .rodata.esp_phy_load_cal_and_init.str1.4 - 0x000000003f40a508 0x12b esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a633 0x1 + 0x000000003f40a5b0 0x12b esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a6db 0x1 .rodata.__func__$11252 - 0x000000003f40a634 0x1d esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a651 0x3 + 0x000000003f40a6dc 0x1d esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a6f9 0x3 .rodata.__func__$11242 - 0x000000003f40a654 0x1e esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a672 0x2 + 0x000000003f40a6fc 0x1e esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a71a 0x2 .rodata.__func__$11223 - 0x000000003f40a674 0x1f esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a693 0x1 + 0x000000003f40a71c 0x1f esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a73b 0x1 .rodata.__func__$11201 - 0x000000003f40a694 0x1b esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a6af 0x1 + 0x000000003f40a73c 0x1b esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a757 0x1 .rodata.__func__$11197 - 0x000000003f40a6b0 0x19 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a6c9 0x3 + 0x000000003f40a758 0x19 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a771 0x3 .rodata.__func__$11192 - 0x000000003f40a6cc 0x15 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a6e1 0x3 + 0x000000003f40a774 0x15 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a789 0x3 .rodata.__func__$11187 - 0x000000003f40a6e4 0x16 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a6fa 0x2 + 0x000000003f40a78c 0x16 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a7a2 0x2 .rodata.__func__$11178 - 0x000000003f40a6fc 0x12 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000003f40a70e 0x2 + 0x000000003f40a7a4 0x12 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a7b6 0x2 .rodata.__func__$11171 - 0x000000003f40a710 0x10 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x000000003f40a7b8 0x10 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .rodata.phy_init_data - 0x000000003f40a720 0x80 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x000000003f40a7c8 0x80 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .rodata.dhcps_start.str1.4 - 0x000000003f40a7a0 0x24 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003f40a848 0x24 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .rodata.dhcps_stop.str1.4 - 0x000000003f40a7c4 0x1c esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003f40a86c 0x1c esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .rodata.magic_cookie - 0x000000003f40a7e0 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x000000003f40a888 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .rodata.tcpip_thread_handle_msg.str1.4 - 0x000000003f40a7e4 0x5f esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x000000003f40a843 0x1 + 0x000000003f40a88c 0x5f esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a8eb 0x1 .rodata.tcpip_thread_handle_msg - 0x000000003f40a844 0x14 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x000000003f40a8ec 0x14 esp-idf/lwip/liblwip.a(tcpip.c.obj) .rodata.tcpip_inpkt.str1.4 - 0x000000003f40a858 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x000000003f40a865 0x3 + 0x000000003f40a900 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a90d 0x3 .rodata.tcpip_send_msg_wait_sem.str1.4 - 0x000000003f40a868 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x000000003f40a882 0x2 + 0x000000003f40a910 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a92a 0x2 .rodata.tcpip_init.str1.4 - 0x000000003f40a884 0x28 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x000000003f40a92c 0x28 esp-idf/lwip/liblwip.a(tcpip.c.obj) .rodata.__func__$7085 - 0x000000003f40a8ac 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x000000003f40a954 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) .rodata.__func__$7066 - 0x000000003f40a8c4 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x000000003f40a8d1 0x3 + 0x000000003f40a96c 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a979 0x3 .rodata.__func__$7142 - 0x000000003f40a8d4 0xb esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x000000003f40a8df 0x1 + 0x000000003f40a97c 0xb esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a987 0x1 .rodata.__func__$7115 - 0x000000003f40a8e0 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x000000003f40a988 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) .rodata.__func__$7108 - 0x000000003f40a8f8 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x000000003f40a90b 0x1 + 0x000000003f40a9a0 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a9b3 0x1 .rodata.__func__$7102 - 0x000000003f40a90c 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) - *fill* 0x000000003f40a91b 0x1 + 0x000000003f40a9b4 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a9c3 0x1 .rodata.__func__$7092 - 0x000000003f40a91c 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x000000003f40a9c4 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) .rodata.dns_call_found.str1.4 - 0x000000003f40a928 0x52 esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x000000003f40a97a 0x2 + 0x000000003f40a9d0 0x52 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x000000003f40aa22 0x2 .rodata.dns_send.str1.4 - 0x000000003f40a97c 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x000000003f40aa24 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) .rodata.dns_check_entry.str1.4 - 0x000000003f40a994 0x3b esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x000000003f40a9cf 0x1 + 0x000000003f40aa3c 0x3b esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x000000003f40aa77 0x1 .rodata.__func__$6959 - 0x000000003f40a9d0 0x9 esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x000000003f40a9d9 0x3 + 0x000000003f40aa78 0x9 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x000000003f40aa81 0x3 .rodata.__func__$6993 - 0x000000003f40a9dc 0xf esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x000000003f40a9eb 0x1 + 0x000000003f40aa84 0xf esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x000000003f40aa93 0x1 .rodata.__func__$7019 - 0x000000003f40a9ec 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x000000003f40aa94 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) .rodata.dns_mquery_v6group - 0x000000003f40a9fc 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x000000003f40a9fc dns_mquery_v6group + 0x000000003f40aaa4 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x000000003f40aaa4 dns_mquery_v6group .rodata.dns_mquery_v4group - 0x000000003f40aa14 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x000000003f40aa14 dns_mquery_v4group + 0x000000003f40aabc 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x000000003f40aabc dns_mquery_v4group .rodata.ip_addr_any_type - 0x000000003f40aa2c 0x18 esp-idf/lwip/liblwip.a(ip.c.obj) - 0x000000003f40aa2c ip_addr_any_type + 0x000000003f40aad4 0x18 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x000000003f40aad4 ip_addr_any_type .rodata.mem_malloc.str1.4 - 0x000000003f40aa44 0x62 esp-idf/lwip/liblwip.a(mem.c.obj) - *fill* 0x000000003f40aaa6 0x2 + 0x000000003f40aaec 0x62 esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003f40ab4e 0x2 .rodata.mem_free.str1.4 - 0x000000003f40aaa8 0x28 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x000000003f40ab50 0x28 esp-idf/lwip/liblwip.a(mem.c.obj) .rodata.__func__$6250 - 0x000000003f40aad0 0x9 esp-idf/lwip/liblwip.a(mem.c.obj) - *fill* 0x000000003f40aad9 0x3 + 0x000000003f40ab78 0x9 esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003f40ab81 0x3 .rodata.__func__$6246 - 0x000000003f40aadc 0xb esp-idf/lwip/liblwip.a(mem.c.obj) - *fill* 0x000000003f40aae7 0x1 + 0x000000003f40ab84 0xb esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003f40ab8f 0x1 .rodata.do_memp_malloc_pool.str1.4 - 0x000000003f40aae8 0x63 esp-idf/lwip/liblwip.a(memp.c.obj) - *fill* 0x000000003f40ab4b 0x1 + 0x000000003f40ab90 0x63 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003f40abf3 0x1 .rodata.do_memp_free_pool.str1.4 - 0x000000003f40ab4c 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40abf4 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) .rodata.memp_malloc.str1.4 - 0x000000003f40ab6c 0x1d esp-idf/lwip/liblwip.a(memp.c.obj) - *fill* 0x000000003f40ab89 0x3 + 0x000000003f40ac14 0x1d esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003f40ac31 0x3 .rodata.memp_free.str1.4 - 0x000000003f40ab8c 0x1b esp-idf/lwip/liblwip.a(memp.c.obj) - *fill* 0x000000003f40aba7 0x1 + 0x000000003f40ac34 0x1b esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003f40ac4f 0x1 .rodata.__func__$8354 - 0x000000003f40aba8 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) - *fill* 0x000000003f40abba 0x2 + 0x000000003f40ac50 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003f40ac62 0x2 .rodata.__func__$8337 - 0x000000003f40abbc 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ac64 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) .rodata.memp_pools - 0x000000003f40abd0 0x4c esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40abd0 memp_pools + 0x000000003f40ac78 0x4c esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ac78 memp_pools .rodata.str1.4 - 0x000000003f40ac1c 0xdc esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40acc4 0xdc esp-idf/lwip/liblwip.a(memp.c.obj) .rodata.memp_PBUF_POOL - 0x000000003f40acf8 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40acf8 memp_PBUF_POOL + 0x000000003f40ada0 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ada0 memp_PBUF_POOL .rodata.memp_PBUF - 0x000000003f40ad00 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad00 memp_PBUF + 0x000000003f40ada8 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ada8 memp_PBUF .rodata.memp_MLD6_GROUP - 0x000000003f40ad08 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad08 memp_MLD6_GROUP + 0x000000003f40adb0 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40adb0 memp_MLD6_GROUP .rodata.memp_IP6_REASSDATA - 0x000000003f40ad10 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad10 memp_IP6_REASSDATA + 0x000000003f40adb8 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40adb8 memp_IP6_REASSDATA .rodata.memp_ND6_QUEUE - 0x000000003f40ad18 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad18 memp_ND6_QUEUE + 0x000000003f40adc0 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40adc0 memp_ND6_QUEUE .rodata.memp_NETDB - 0x000000003f40ad20 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad20 memp_NETDB + 0x000000003f40adc8 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40adc8 memp_NETDB .rodata.memp_SYS_TIMEOUT - 0x000000003f40ad28 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad28 memp_SYS_TIMEOUT + 0x000000003f40add0 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40add0 memp_SYS_TIMEOUT .rodata.memp_IGMP_GROUP - 0x000000003f40ad30 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad30 memp_IGMP_GROUP + 0x000000003f40add8 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40add8 memp_IGMP_GROUP .rodata.memp_ARP_QUEUE - 0x000000003f40ad38 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad38 memp_ARP_QUEUE + 0x000000003f40ade0 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ade0 memp_ARP_QUEUE .rodata.memp_TCPIP_MSG_INPKT - 0x000000003f40ad40 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad40 memp_TCPIP_MSG_INPKT + 0x000000003f40ade8 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ade8 memp_TCPIP_MSG_INPKT .rodata.memp_TCPIP_MSG_API - 0x000000003f40ad48 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad48 memp_TCPIP_MSG_API + 0x000000003f40adf0 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40adf0 memp_TCPIP_MSG_API .rodata.memp_NETCONN - 0x000000003f40ad50 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad50 memp_NETCONN + 0x000000003f40adf8 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40adf8 memp_NETCONN .rodata.memp_NETBUF - 0x000000003f40ad58 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad58 memp_NETBUF + 0x000000003f40ae00 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ae00 memp_NETBUF .rodata.memp_FRAG_PBUF - 0x000000003f40ad60 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad60 memp_FRAG_PBUF + 0x000000003f40ae08 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ae08 memp_FRAG_PBUF .rodata.memp_TCP_SEG - 0x000000003f40ad68 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad68 memp_TCP_SEG + 0x000000003f40ae10 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ae10 memp_TCP_SEG .rodata.memp_TCP_PCB_LISTEN - 0x000000003f40ad70 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad70 memp_TCP_PCB_LISTEN + 0x000000003f40ae18 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ae18 memp_TCP_PCB_LISTEN .rodata.memp_TCP_PCB - 0x000000003f40ad78 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad78 memp_TCP_PCB + 0x000000003f40ae20 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ae20 memp_TCP_PCB .rodata.memp_UDP_PCB - 0x000000003f40ad80 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad80 memp_UDP_PCB + 0x000000003f40ae28 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ae28 memp_UDP_PCB .rodata.memp_RAW_PCB - 0x000000003f40ad88 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x000000003f40ad88 memp_RAW_PCB + 0x000000003f40ae30 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40ae30 memp_RAW_PCB .rodata.netif_loopif_init.str1.4 - 0x000000003f40ad90 0x64 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003f40ae38 0x64 esp-idf/lwip/liblwip.a(netif.c.obj) .rodata.netif_issue_reports.str1.4 - 0x000000003f40adf4 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003f40ae9c 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) .rodata.netif_do_set_ipaddr.str1.4 - 0x000000003f40ae17 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003f40aebf 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) 0x10 (size before relaxing) - *fill* 0x000000003f40ae17 0x1 + *fill* 0x000000003f40aebf 0x1 .rodata.netif_poll.str1.4 - 0x000000003f40ae18 0x98 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003f40aec0 0x98 esp-idf/lwip/liblwip.a(netif.c.obj) .rodata.netif_add.str1.4 - 0x000000003f40aeb0 0x82 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40af32 0x2 + 0x000000003f40af58 0x82 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40afda 0x2 .rodata.netif_set_up.str1.4 - 0x000000003f40af34 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003f40afdc 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) .rodata.netif_set_down.str1.4 - 0x000000003f40af50 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40af6e 0x2 + 0x000000003f40aff8 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b016 0x2 .rodata.netif_set_link_up.str1.4 - 0x000000003f40af70 0x21 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40af91 0x3 + 0x000000003f40b018 0x21 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b039 0x3 .rodata.netif_loop_output.str1.4 - 0x000000003f40af94 0x70 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003f40b03c 0x70 esp-idf/lwip/liblwip.a(netif.c.obj) .rodata.netif_ip6_addr_set_parts.str1.4 - 0x000000003f40b004 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b022 0x2 + 0x000000003f40b0ac 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b0ca 0x2 .rodata.netif_ip6_addr_set.str1.4 - 0x000000003f40b024 0x46 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b06a 0x2 + 0x000000003f40b0cc 0x46 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b112 0x2 .rodata.netif_get_ip6_addr_match.str1.4 - 0x000000003f40b06c 0x52 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b0be 0x2 + 0x000000003f40b114 0x52 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b166 0x2 .rodata.__func__$7870 - 0x000000003f40b0c0 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b0d9 0x3 + 0x000000003f40b168 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b181 0x3 .rodata.__func__$7860 - 0x000000003f40b0dc 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b0f5 0x3 + 0x000000003f40b184 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b19d 0x3 .rodata.__func__$7851 - 0x000000003f40b0f8 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b111 0x3 + 0x000000003f40b1a0 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b1b9 0x3 .rodata.__func__$7840 - 0x000000003f40b114 0x13 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b127 0x1 - .rodata.__func__$7825 - 0x000000003f40b128 0xb esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b133 0x1 - .rodata.__func__$7807 - 0x000000003f40b134 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b146 0x2 - .rodata.__func__$7787 - 0x000000003f40b148 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.__func__$7721 - 0x000000003f40b15c 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) - .rodata.__func__$7698 - 0x000000003f40b170 0xa esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b17a 0x2 - .rodata.__func__$7665 - 0x000000003f40b17c 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x000000003f40b18e 0x2 - .rodata.pbuf_add_header_impl.str1.4 - 0x000000003f40b190 0x3f esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x4b (size before relaxing) + 0x000000003f40b1bc 0x13 esp-idf/lwip/liblwip.a(netif.c.obj) *fill* 0x000000003f40b1cf 0x1 + .rodata.__func__$7825 + 0x000000003f40b1d0 0xb esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b1db 0x1 + .rodata.__func__$7807 + 0x000000003f40b1dc 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b1ee 0x2 + .rodata.__func__$7787 + 0x000000003f40b1f0 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$7721 + 0x000000003f40b204 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$7698 + 0x000000003f40b218 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b222 0x2 + .rodata.__func__$7665 + 0x000000003f40b224 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40b236 0x2 + .rodata.pbuf_add_header_impl.str1.4 + 0x000000003f40b238 0x3f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4b (size before relaxing) + *fill* 0x000000003f40b277 0x1 .rodata.pbuf_alloc_reference.str1.4 - 0x000000003f40b1d0 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b1e2 0x2 + 0x000000003f40b278 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b28a 0x2 .rodata.pbuf_remove_header.str1.4 - 0x000000003f40b1e4 0x1e esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b202 0x2 + 0x000000003f40b28c 0x1e esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b2aa 0x2 .rodata.pbuf_free.str1.4 - 0x000000003f40b204 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b252 0x2 + 0x000000003f40b2ac 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b2fa 0x2 .rodata.pbuf_alloc.str1.4 - 0x000000003f40b254 0xab esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b2ff 0x1 + 0x000000003f40b2fc 0xab esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b3a7 0x1 .rodata.pbuf_realloc.str1.4 - 0x000000003f40b300 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x000000003f40b3a8 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) .rodata.pbuf_ref.str1.4 - 0x000000003f40b34c 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b35e 0x2 + 0x000000003f40b3f4 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b406 0x2 .rodata.pbuf_cat.str1.4 - 0x000000003f40b360 0x65 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b3c5 0x3 + 0x000000003f40b408 0x65 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b46d 0x3 .rodata.pbuf_copy.str1.4 - 0x000000003f40b3c8 0x9e esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b466 0x2 + 0x000000003f40b470 0x9e esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b50e 0x2 .rodata.pbuf_copy_partial.str1.4 - 0x000000003f40b468 0x43 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b4ab 0x1 + 0x000000003f40b510 0x43 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b553 0x1 .rodata.pbuf_take.str1.4 - 0x000000003f40b4ac 0x82 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b52e 0x2 + 0x000000003f40b554 0x82 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b5d6 0x2 .rodata.pbuf_take_at.str1.4 - 0x000000003f40b530 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b547 0x1 + 0x000000003f40b5d8 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b5ef 0x1 .rodata.pbuf_clone.str1.4 - 0x000000003f40b548 0x11 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b559 0x3 + 0x000000003f40b5f0 0x11 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b601 0x3 .rodata.__func__$7524 - 0x000000003f40b55c 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b567 0x1 + 0x000000003f40b604 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b60f 0x1 .rodata.__func__$7511 - 0x000000003f40b568 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b575 0x3 + 0x000000003f40b610 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b61d 0x3 .rodata.__func__$7496 - 0x000000003f40b578 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b582 0x2 + 0x000000003f40b620 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b62a 0x2 .rodata.__func__$7445 - 0x000000003f40b584 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b58e 0x2 + 0x000000003f40b62c 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b636 0x2 .rodata.__func__$7423 - 0x000000003f40b590 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b599 0x3 + 0x000000003f40b638 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b641 0x3 .rodata.__func__$7414 - 0x000000003f40b59c 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b5a5 0x3 + 0x000000003f40b644 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b64d 0x3 .rodata.__func__$7392 - 0x000000003f40b5a8 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b5b2 0x2 + 0x000000003f40b650 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b65a 0x2 .rodata.__func__$7361 - 0x000000003f40b5b4 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b5c7 0x1 + 0x000000003f40b65c 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b66f 0x1 .rodata.__func__$7344 - 0x000000003f40b5c8 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b5dd 0x3 + 0x000000003f40b670 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b685 0x3 .rodata.__func__$7332 - 0x000000003f40b5e0 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b5ed 0x3 + 0x000000003f40b688 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b695 0x3 .rodata.__func__$7311 - 0x000000003f40b5f0 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b605 0x3 + 0x000000003f40b698 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b6ad 0x3 .rodata.__func__$7297 - 0x000000003f40b608 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x000000003f40b613 0x1 + 0x000000003f40b6b0 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b6bb 0x1 .rodata.raw_input.str1.4 - 0x000000003f40b614 0x8a esp-idf/lwip/liblwip.a(raw.c.obj) - *fill* 0x000000003f40b69e 0x2 + 0x000000003f40b6bc 0x8a esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f40b746 0x2 .rodata.raw_sendto_if_src.str1.4 - 0x000000003f40b6a0 0x4a esp-idf/lwip/liblwip.a(raw.c.obj) - *fill* 0x000000003f40b6ea 0x2 + 0x000000003f40b748 0x4a esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f40b792 0x2 .rodata.__func__$6894 - 0x000000003f40b6ec 0x12 esp-idf/lwip/liblwip.a(raw.c.obj) - *fill* 0x000000003f40b6fe 0x2 + 0x000000003f40b794 0x12 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f40b7a6 0x2 .rodata.__func__$6844 - 0x000000003f40b700 0xa esp-idf/lwip/liblwip.a(raw.c.obj) - *fill* 0x000000003f40b70a 0x2 + 0x000000003f40b7a8 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f40b7b2 0x2 .rodata.tcp_remove_listener.str1.4 - 0x000000003f40b70c 0x66 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b772 0x2 + 0x000000003f40b7b4 0x66 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b81a 0x2 .rodata.tcp_listen_closed.str1.4 - 0x000000003f40b774 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b795 0x3 + 0x000000003f40b81c 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b83d 0x3 .rodata.tcp_free_listen.str1.4 - 0x000000003f40b798 0x19 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b7b1 0x3 + 0x000000003f40b840 0x19 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b859 0x3 .rodata.tcp_free.str1.4 - 0x000000003f40b7b4 0x11 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b7c5 0x3 + 0x000000003f40b85c 0x11 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b86d 0x3 .rodata.tcp_backlog_delayed.str1.4 - 0x000000003f40b7c8 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b7dd 0x3 + 0x000000003f40b870 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b885 0x3 .rodata.tcp_bind.str1.4 - 0x000000003f40b7e0 0x40 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40b888 0x40 esp-idf/lwip/liblwip.a(tcp.c.obj) .rodata.tcp_listen_with_backlog_and_err.str1.4 - 0x000000003f40b820 0x95 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b8b5 0x3 + 0x000000003f40b8c8 0x95 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b95d 0x3 .rodata.tcp_update_rcv_ann_wnd.str1.4 - 0x000000003f40b8b8 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b8f6 0x2 + 0x000000003f40b960 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b99e 0x2 .rodata.tcp_recved.str1.4 - 0x000000003f40b8f8 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b936 0x2 + 0x000000003f40b9a0 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b9de 0x2 .rodata.tcp_seg_copy.str1.4 - 0x000000003f40b938 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b952 0x2 + 0x000000003f40b9e0 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b9fa 0x2 .rodata.tcp_recv.str1.4 - 0x000000003f40b954 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b97b 0x1 + 0x000000003f40b9fc 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40ba23 0x1 .rodata.tcp_sent.str1.4 - 0x000000003f40b97c 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b9a3 0x1 + 0x000000003f40ba24 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40ba4b 0x1 .rodata.tcp_err.str1.4 - 0x000000003f40b9a4 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40b9ca 0x2 + 0x000000003f40ba4c 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40ba72 0x2 .rodata.tcp_poll.str1.4 - 0x000000003f40b9cc 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40ba02 0x2 + 0x000000003f40ba74 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40baaa 0x2 .rodata.tcp_next_iss.str1.4 - 0x000000003f40ba04 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40ba1e 0x2 + 0x000000003f40baac 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bac6 0x2 .rodata.tcp_eff_send_mss_netif.str1.4 - 0x000000003f40ba20 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40ba47 0x1 + 0x000000003f40bac8 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40baef 0x1 .rodata.tcp_pcb_purge.str1.4 - 0x000000003f40ba48 0x1b esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40ba63 0x1 + 0x000000003f40baf0 0x1b esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bb0b 0x1 .rodata.tcp_pcb_remove.str1.4 - 0x000000003f40ba64 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40baeb 0x1 + 0x000000003f40bb0c 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bb93 0x1 .rodata.tcp_abandon.str1.4 - 0x000000003f40baec 0x4d esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bb39 0x3 + 0x000000003f40bb94 0x4d esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bbe1 0x3 .rodata.tcp_accept_null.str1.4 - 0x000000003f40bb3c 0x1d esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bb59 0x3 + 0x000000003f40bbe4 0x1d esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bc01 0x3 .rodata.tcp_netif_ip_addr_changed_pcblist.str1.4 - 0x000000003f40bb5c 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40bc04 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) .rodata.tcp_kill_state.str1.4 - 0x000000003f40bb90 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bb9e 0x2 + 0x000000003f40bc38 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bc46 0x2 .rodata.tcp_close_shutdown.str1.4 - 0x000000003f40bba0 0x39 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bbd9 0x3 + 0x000000003f40bc48 0x39 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bc81 0x3 .rodata.tcp_close.str1.4 - 0x000000003f40bbdc 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bbf3 0x1 + 0x000000003f40bc84 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bc9b 0x1 .rodata.tcp_recv_null.str1.4 - 0x000000003f40bbf4 0x1b esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bc0f 0x1 + 0x000000003f40bc9c 0x1b esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bcb7 0x1 .rodata.tcp_process_refused_data.str1.4 - 0x000000003f40bc10 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bc36 0x2 + 0x000000003f40bcb8 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bcde 0x2 .rodata.tcp_shutdown.str1.4 - 0x000000003f40bc38 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bc52 0x2 + 0x000000003f40bce0 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bcfa 0x2 .rodata.tcp_slowtmr.str1.4 - 0x000000003f40bc54 0x1ca esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40be1e 0x2 + 0x000000003f40bcfc 0x1ca esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bec6 0x2 .rodata.__func__$7622 - 0x000000003f40be20 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40be42 0x2 + 0x000000003f40bec8 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40beea 0x2 .rodata.__func__$7615 - 0x000000003f40be44 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40be5b 0x1 + 0x000000003f40beec 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bf03 0x1 .rodata.__func__$7607 - 0x000000003f40be5c 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40be69 0x3 + 0x000000003f40bf04 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bf11 0x3 .rodata.__func__$7598 - 0x000000003f40be6c 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40be7b 0x1 + 0x000000003f40bf14 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bf23 0x1 .rodata.__func__$7585 - 0x000000003f40be7c 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40be85 0x3 + 0x000000003f40bf24 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bf2d 0x3 .rodata.__func__$7574 - 0x000000003f40be88 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40bf30 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) .rodata.__func__$7569 - 0x000000003f40be90 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40be99 0x3 + 0x000000003f40bf38 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bf41 0x3 .rodata.__func__$7564 - 0x000000003f40be9c 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bea5 0x3 + 0x000000003f40bf44 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bf4d 0x3 .rodata.__func__$7486 - 0x000000003f40bea8 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40beb7 0x1 + 0x000000003f40bf50 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bf5f 0x1 .rodata.__func__$7462 - 0x000000003f40beb8 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bec5 0x3 + 0x000000003f40bf60 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bf6d 0x3 .rodata.__func__$7389 - 0x000000003f40bec8 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40bf70 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) .rodata.__func__$7337 - 0x000000003f40bed4 0xb esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bedf 0x1 + 0x000000003f40bf7c 0xb esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bf87 0x1 .rodata.__func__$7329 - 0x000000003f40bee0 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bef7 0x1 + 0x000000003f40bf88 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bf9f 0x1 .rodata.__func__$7304 - 0x000000003f40bef8 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40bfa0 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) .rodata.__func__$7324 - 0x000000003f40bf08 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40bfb0 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) .rodata.__func__$7266 - 0x000000003f40bf28 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40bfd0 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) .rodata.__func__$7239 - 0x000000003f40bf34 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bf4b 0x1 + 0x000000003f40bfdc 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bff3 0x1 .rodata.__func__$7188 - 0x000000003f40bf4c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40bff4 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) .rodata.__func__$7197 - 0x000000003f40bf5c 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40c004 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) .rodata.__func__$7205 - 0x000000003f40bf70 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bf82 0x2 + 0x000000003f40c018 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40c02a 0x2 .rodata.__func__$7221 - 0x000000003f40bf84 0x13 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bf97 0x1 + 0x000000003f40c02c 0x13 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40c03f 0x1 .rodata.__func__$7216 - 0x000000003f40bf98 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bfad 0x3 - .rodata.__func__$7212 - 0x000000003f40bfb0 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) - .rodata.__func__$7184 - 0x000000003f40bfc4 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bfcd 0x3 - .rodata.tcp_pcb_lists - 0x000000003f40bfd0 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x000000003f40bfd0 tcp_pcb_lists - .rodata.tcp_persist_backoff - 0x000000003f40bfe0 0x7 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bfe7 0x1 - .rodata.tcp_backoff - 0x000000003f40bfe8 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x000000003f40bff5 0x3 - .rodata.tcp_parseopt.str1.4 - 0x000000003f40bff8 0x5d esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003f40c040 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) *fill* 0x000000003f40c055 0x3 + .rodata.__func__$7212 + 0x000000003f40c058 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$7184 + 0x000000003f40c06c 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40c075 0x3 + .rodata.tcp_pcb_lists + 0x000000003f40c078 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40c078 tcp_pcb_lists + .rodata.tcp_persist_backoff + 0x000000003f40c088 0x7 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40c08f 0x1 + .rodata.tcp_backoff + 0x000000003f40c090 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40c09d 0x3 + .rodata.tcp_parseopt.str1.4 + 0x000000003f40c0a0 0x5d esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c0fd 0x3 .rodata.tcp_input_delayed_close.str1.4 - 0x000000003f40c058 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c07d 0x3 + 0x000000003f40c100 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c125 0x3 .rodata.tcp_timewait_input.str1.4 - 0x000000003f40c080 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003f40c128 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .rodata.tcp_listen_input.str1.4 - 0x000000003f40c0a0 0x1e esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c0be 0x2 + 0x000000003f40c148 0x1e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c166 0x2 .rodata.tcp_free_acked_segments.str1.4 - 0x000000003f40c0c0 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003f40c168 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .rodata.tcp_oos_insert_segment.str1.4 - 0x000000003f40c108 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c12d 0x3 + 0x000000003f40c1b0 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c1d5 0x3 .rodata.tcp_receive.str1.4 - 0x000000003f40c130 0x131 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c261 0x3 + 0x000000003f40c1d8 0x131 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c309 0x3 .rodata.tcp_process.str1.4 - 0x000000003f40c264 0x86 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c2ea 0x2 + 0x000000003f40c30c 0x86 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c392 0x2 .rodata.tcp_process - 0x000000003f40c2ec 0x28 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003f40c394 0x28 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .rodata.tcp_input.str1.4 - 0x000000003f40c314 0x172 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c486 0x2 + 0x000000003f40c3bc 0x172 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c52e 0x2 .rodata.__func__$7272 - 0x000000003f40c488 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003f40c530 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .rodata.__func__$7335 - 0x000000003f40c4a0 0x17 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c4b7 0x1 + 0x000000003f40c548 0x17 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c55f 0x1 .rodata.__func__$7349 - 0x000000003f40c4b8 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003f40c560 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .rodata.__func__$7360 - 0x000000003f40c4d0 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003f40c578 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) .rodata.__func__$7295 - 0x000000003f40c4dc 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003f40c584 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) .rodata.__func__$7416 - 0x000000003f40c4e8 0xd esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c4f5 0x3 + 0x000000003f40c590 0xd esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c59d 0x3 .rodata.__func__$7279 - 0x000000003f40c4f8 0x11 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c509 0x3 + 0x000000003f40c5a0 0x11 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c5b1 0x3 .rodata.__func__$7288 - 0x000000003f40c50c 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c51f 0x1 + 0x000000003f40c5b4 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c5c7 0x1 .rodata.__func__$7242 - 0x000000003f40c520 0xa esp-idf/lwip/liblwip.a(tcp_in.c.obj) - *fill* 0x000000003f40c52a 0x2 + 0x000000003f40c5c8 0xa esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40c5d2 0x2 .rodata.tcp_write_checks.str1.4 - 0x000000003f40c52c 0xd2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40c5fe 0x2 + 0x000000003f40c5d4 0xd2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c6a6 0x2 .rodata.tcp_output_segment_busy.str1.4 - 0x000000003f40c600 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40c625 0x3 + 0x000000003f40c6a8 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c6cd 0x3 .rodata.tcp_output_fill_options.str1.4 - 0x000000003f40c628 0x3b esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40c663 0x1 + 0x000000003f40c6d0 0x3b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c70b 0x1 .rodata.tcp_pbuf_prealloc.str1.4 - 0x000000003f40c664 0x58 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000003f40c70c 0x58 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .rodata.tcp_create_segment.str1.4 - 0x000000003f40c6bc 0x59 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40c715 0x3 + 0x000000003f40c764 0x59 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c7bd 0x3 .rodata.tcp_output_alloc_header_common.str1.4 - 0x000000003f40c718 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40c746 0x2 + 0x000000003f40c7c0 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c7ee 0x2 .rodata.tcp_output_alloc_header.str1.4 - 0x000000003f40c748 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40c76d 0x3 + 0x000000003f40c7f0 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c815 0x3 .rodata.tcp_output_segment.str1.4 - 0x000000003f40c770 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40c7d2 0x2 + 0x000000003f40c818 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c87a 0x2 .rodata.tcp_output_control_segment.str1.4 - 0x000000003f40c7d4 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40c7fd 0x3 + 0x000000003f40c87c 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c8a5 0x3 .rodata.tcp_write.str1.4 - 0x000000003f40c800 0x1a2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40c9a2 0x2 + 0x000000003f40c8a8 0x1a2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40ca4a 0x2 .rodata.tcp_split_unsent_seg.str1.4 - 0x000000003f40c9a4 0x66 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ca0a 0x2 + 0x000000003f40ca4c 0x66 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cab2 0x2 .rodata.tcp_enqueue_flags.str1.4 - 0x000000003f40ca0c 0x120 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000003f40cab4 0x120 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .rodata.tcp_send_fin.str1.4 - 0x000000003f40cb2c 0x1a esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cb46 0x2 + 0x000000003f40cbd4 0x1a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cbee 0x2 .rodata.tcp_rexmit_rto_prepare.str1.4 - 0x000000003f40cb48 0x24 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000003f40cbf0 0x24 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .rodata.tcp_rexmit.str1.4 - 0x000000003f40cb6c 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000003f40cc14 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .rodata.tcp_rexmit_fast.str1.4 - 0x000000003f40cb84 0x1d esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cba1 0x3 + 0x000000003f40cc2c 0x1d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cc49 0x3 .rodata.tcp_rst.str1.4 - 0x000000003f40cba4 0x37 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cbdb 0x1 + 0x000000003f40cc4c 0x37 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cc83 0x1 .rodata.tcp_send_empty_ack.str1.4 - 0x000000003f40cbdc 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000003f40cc84 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .rodata.tcp_output.str1.4 - 0x000000003f40cbfc 0x57 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cc53 0x1 + 0x000000003f40cca4 0x57 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40ccfb 0x1 .rodata.tcp_rexmit_rto_commit.str1.4 - 0x000000003f40cc54 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cc77 0x1 + 0x000000003f40ccfc 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cd1f 0x1 .rodata.tcp_rexmit_rto.str1.4 - 0x000000003f40cc78 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000003f40cd20 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) .rodata.tcp_keepalive.str1.4 - 0x000000003f40cc94 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ccaf 0x1 + 0x000000003f40cd3c 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cd57 0x1 .rodata.tcp_zero_window_probe.str1.4 - 0x000000003f40ccb0 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ccd3 0x1 - .rodata.__func__$7480 - 0x000000003f40ccd4 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ccea 0x2 - .rodata.__func__$7461 - 0x000000003f40ccec 0xe esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ccfa 0x2 - .rodata.__func__$7406 - 0x000000003f40ccfc 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.__func__$7452 - 0x000000003f40cd14 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cd27 0x1 - .rodata.__func__$7425 - 0x000000003f40cd28 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cd43 0x1 - .rodata.__func__$7416 - 0x000000003f40cd44 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .rodata.__func__$7398 - 0x000000003f40cd5c 0x1f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000003f40cd58 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) *fill* 0x000000003f40cd7b 0x1 + .rodata.__func__$7480 + 0x000000003f40cd7c 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cd92 0x2 + .rodata.__func__$7461 + 0x000000003f40cd94 0xe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cda2 0x2 + .rodata.__func__$7406 + 0x000000003f40cda4 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$7452 + 0x000000003f40cdbc 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cdcf 0x1 + .rodata.__func__$7425 + 0x000000003f40cdd0 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cdeb 0x1 + .rodata.__func__$7416 + 0x000000003f40cdec 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$7398 + 0x000000003f40ce04 0x1f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40ce23 0x1 .rodata.__func__$7441 - 0x000000003f40cd7c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000003f40ce24 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .rodata.__func__$7383 - 0x000000003f40cd84 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000003f40ce2c 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .rodata.__func__$7375 - 0x000000003f40cd94 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cd9f 0x1 + 0x000000003f40ce3c 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40ce47 0x1 .rodata.__func__$7369 - 0x000000003f40cda0 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cdaf 0x1 + 0x000000003f40ce48 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40ce57 0x1 .rodata.__func__$7365 - 0x000000003f40cdb0 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cdc6 0x2 + 0x000000003f40ce58 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40ce6e 0x2 .rodata.__func__$7356 - 0x000000003f40cdc8 0x17 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40cddf 0x1 + 0x000000003f40ce70 0x17 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40ce87 0x1 .rodata.__func__$7338 - 0x000000003f40cde0 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x000000003f40ce88 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .rodata.__func__$7347 - 0x000000003f40cdf8 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ce0b 0x1 + 0x000000003f40cea0 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40ceb3 0x1 .rodata.__func__$7319 - 0x000000003f40ce0c 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ce17 0x1 + 0x000000003f40ceb4 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cebf 0x1 .rodata.__func__$7303 - 0x000000003f40ce18 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ce2a 0x2 + 0x000000003f40cec0 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40ced2 0x2 .rodata.__func__$7289 - 0x000000003f40ce2c 0xd esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ce39 0x3 + 0x000000003f40ced4 0xd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cee1 0x3 .rodata.__func__$7280 - 0x000000003f40ce3c 0x15 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ce51 0x3 + 0x000000003f40cee4 0x15 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cef9 0x3 .rodata.__func__$7191 - 0x000000003f40ce54 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ce67 0x1 + 0x000000003f40cefc 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cf0f 0x1 .rodata.__func__$7205 - 0x000000003f40ce68 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ce7a 0x2 + 0x000000003f40cf10 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cf22 0x2 .rodata.__func__$7210 - 0x000000003f40ce7c 0x11 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ce8d 0x3 + 0x000000003f40cf24 0x11 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cf35 0x3 .rodata.__func__$7242 - 0x000000003f40ce90 0xa esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x000000003f40ce9a 0x2 + 0x000000003f40cf38 0xa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40cf42 0x2 .rodata.sys_timeout_abs.str1.4 - 0x000000003f40ce9c 0x83 esp-idf/lwip/liblwip.a(timeouts.c.obj) - *fill* 0x000000003f40cf1f 0x1 + 0x000000003f40cf44 0x83 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f40cfc7 0x1 .rodata.sys_timeout.str1.4 - 0x000000003f40cf20 0x36 esp-idf/lwip/liblwip.a(timeouts.c.obj) - *fill* 0x000000003f40cf56 0x2 + 0x000000003f40cfc8 0x36 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f40cffe 0x2 .rodata.sys_timeouts_sleeptime.str1.4 - 0x000000003f40cf58 0x12 esp-idf/lwip/liblwip.a(timeouts.c.obj) - *fill* 0x000000003f40cf6a 0x2 + 0x000000003f40d000 0x12 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f40d012 0x2 .rodata.__func__$7500 - 0x000000003f40cf6c 0x17 esp-idf/lwip/liblwip.a(timeouts.c.obj) - *fill* 0x000000003f40cf83 0x1 + 0x000000003f40d014 0x17 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f40d02b 0x1 .rodata.__func__$7468 - 0x000000003f40cf84 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x000000003f40d02c 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) .rodata.__func__$7445 - 0x000000003f40cf90 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x000000003f40d038 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) .rodata.lwip_cyclic_timers - 0x000000003f40cfa0 0x48 esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x000000003f40cfa0 lwip_cyclic_timers + 0x000000003f40d048 0x48 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x000000003f40d048 lwip_cyclic_timers .rodata.udp_input_local_match.str1.4 - 0x000000003f40cfe8 0x89 esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d071 0x3 + 0x000000003f40d090 0x89 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d119 0x3 .rodata.udp_input.str1.4 - 0x000000003f40d074 0x4f esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d0c3 0x1 + 0x000000003f40d11c 0x4f esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d16b 0x1 .rodata.udp_bind.str1.4 - 0x000000003f40d0c4 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d0da 0x2 + 0x000000003f40d16c 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d182 0x2 .rodata.udp_sendto_if_src.str1.4 - 0x000000003f40d0dc 0xda esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d1b6 0x2 + 0x000000003f40d184 0xda esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d25e 0x2 .rodata.udp_sendto_if.str1.4 - 0x000000003f40d1b8 0x75 esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d22d 0x3 + 0x000000003f40d260 0x75 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d2d5 0x3 .rodata.udp_sendto.str1.4 - 0x000000003f40d230 0x4f esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d27f 0x1 + 0x000000003f40d2d8 0x4f esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d327 0x1 .rodata.udp_send.str1.4 - 0x000000003f40d280 0x2f esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d2af 0x1 + 0x000000003f40d328 0x2f esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d357 0x1 .rodata.udp_connect.str1.4 - 0x000000003f40d2b0 0x38 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000003f40d358 0x38 esp-idf/lwip/liblwip.a(udp.c.obj) .rodata.udp_disconnect.str1.4 - 0x000000003f40d2e8 0x1c esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000003f40d390 0x1c esp-idf/lwip/liblwip.a(udp.c.obj) .rodata.udp_recv.str1.4 - 0x000000003f40d304 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d31a 0x2 + 0x000000003f40d3ac 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d3c2 0x2 .rodata.udp_remove.str1.4 - 0x000000003f40d31c 0x18 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000003f40d3c4 0x18 esp-idf/lwip/liblwip.a(udp.c.obj) .rodata.__func__$7096 - 0x000000003f40d334 0x12 esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d346 0x2 + 0x000000003f40d3dc 0x12 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d3ee 0x2 .rodata.__func__$7012 - 0x000000003f40d348 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d35e 0x2 + 0x000000003f40d3f0 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d406 0x2 .rodata.__func__$7025 - 0x000000003f40d360 0xa esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x000000003f40d36a 0x2 + 0x000000003f40d408 0xa esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40d412 0x2 .rodata.dhcp_option_short.str1.4 - 0x000000003f40d36c 0x80 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d414 0x80 esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.dhcp_option.str1.4 - 0x000000003f40d3ec 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d42e 0x2 + 0x000000003f40d494 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d4d6 0x2 .rodata.dhcp_option_byte.str1.4 - 0x000000003f40d430 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d465 0x3 + 0x000000003f40d4d8 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d50d 0x3 .rodata.dhcp_option_long.str1.4 - 0x000000003f40d468 0x3a esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d4a2 0x2 + 0x000000003f40d510 0x3a esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d54a 0x2 .rodata.dhcp_create_msg.str1.4 - 0x000000003f40d4a4 0x80 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d54c 0x80 esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.dhcp_option_hostname.str1.4 - 0x000000003f40d524 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d5cc 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.dhcp_select.str1.4 - 0x000000003f40d540 0x36 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d576 0x2 + 0x000000003f40d5e8 0x36 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d61e 0x2 .rodata.dhcp_bind.str1.4 - 0x000000003f40d578 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d620 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.dhcp_dec_pcb_refcount.str1.4 - 0x000000003f40d5ac 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d654 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.dhcp_inc_pcb_refcount.str1.4 - 0x000000003f40d5d0 0x25 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d5f5 0x3 + 0x000000003f40d678 0x25 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d69d 0x3 .rodata.dhcp_parse_reply.str1.4 - 0x000000003f40d5f8 0xa7 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d69f 0x1 + 0x000000003f40d6a0 0xa7 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d747 0x1 .rodata.dhcp_parse_reply - 0x000000003f40d6a0 0xf0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d748 0xf0 esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.dhcp_recv.str1.4 - 0x000000003f40d790 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d838 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.dhcp_set_struct.str1.4 - 0x000000003f40d7ac 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d854 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x44 (size before relaxing) .rodata.dhcp_network_changed.str1.4 - 0x000000003f40d7e0 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d888 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.dhcp_start.str1.4 - 0x000000003f40d7f4 0x21 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d815 0x3 + 0x000000003f40d89c 0x21 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d8bd 0x3 .rodata.__func__$7227 - 0x000000003f40d818 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d82d 0x3 + 0x000000003f40d8c0 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d8d5 0x3 .rodata.__func__$7433 - 0x000000003f40d830 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d841 0x3 + 0x000000003f40d8d8 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d8e9 0x3 .rodata.__func__$7457 - 0x000000003f40d844 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d84e 0x2 + 0x000000003f40d8ec 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d8f6 0x2 .rodata.__func__$7081 - 0x000000003f40d850 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d866 0x2 + 0x000000003f40d8f8 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d90e 0x2 .rodata.__func__$7085 - 0x000000003f40d868 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d87e 0x2 + 0x000000003f40d910 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d926 0x2 .rodata.__func__$7194 - 0x000000003f40d880 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d928 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.__func__$7187 - 0x000000003f40d88c 0xd esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d899 0x3 + 0x000000003f40d934 0xd esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d941 0x3 .rodata.__func__$7381 - 0x000000003f40d89c 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d8ad 0x3 + 0x000000003f40d944 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d955 0x3 .rodata.__func__$7391 - 0x000000003f40d8b0 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d8c5 0x3 + 0x000000003f40d958 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d96d 0x3 .rodata.__func__$7369 - 0x000000003f40d8c8 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d8d9 0x3 + 0x000000003f40d970 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d981 0x3 .rodata.__func__$7363 - 0x000000003f40d8dc 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d984 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.__func__$7375 - 0x000000003f40d8e8 0x12 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x000000003f40d8fa 0x2 + 0x000000003f40d990 0x12 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d9a2 0x2 .rodata.__func__$7486 - 0x000000003f40d8fc 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d9a4 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.dhcp_discover_request_options - 0x000000003f40d90c 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003f40d9b4 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) .rodata.free_etharp_q.str1.4 - 0x000000003f40d910 0x61 esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x000000003f40d971 0x3 + 0x000000003f40d9b8 0x61 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40da19 0x3 .rodata.etharp_find_entry.str1.4 - 0x000000003f40d974 0x55 esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x000000003f40d9c9 0x3 + 0x000000003f40da1c 0x55 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40da71 0x3 .rodata.etharp_update_arp_entry.str1.4 - 0x000000003f40d9cc 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x000000003f40da74 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) .rodata.etharp_raw.str1.4 - 0x000000003f40d9f0 0x75 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x000000003f40da98 0x75 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x85 (size before relaxing) - *fill* 0x000000003f40da65 0x3 + *fill* 0x000000003f40db0d 0x3 .rodata.etharp_get_entry.str1.4 - 0x000000003f40da68 0x20 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x000000003f40db10 0x20 esp-idf/lwip/liblwip.a(etharp.c.obj) .rodata.etharp_output_to_arp_index.str1.4 - 0x000000003f40da88 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x000000003f40db30 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) .rodata.etharp_query.str1.4 - 0x000000003f40dab8 0x52 esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x000000003f40db0a 0x2 + 0x000000003f40db60 0x52 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40dbb2 0x2 .rodata.__func__$7127 - 0x000000003f40db0c 0xd esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x000000003f40db19 0x3 + 0x000000003f40dbb4 0xd esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40dbc1 0x3 .rodata.__func__$7100 - 0x000000003f40db1c 0x1b esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x000000003f40db37 0x1 + 0x000000003f40dbc4 0x1b esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40dbdf 0x1 .rodata.__func__$7109 - 0x000000003f40db38 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x000000003f40db46 0x2 + 0x000000003f40dbe0 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40dbee 0x2 .rodata.__func__$7156 - 0x000000003f40db48 0xb esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x000000003f40db53 0x1 + 0x000000003f40dbf0 0xb esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40dbfb 0x1 .rodata.__func__$7045 - 0x000000003f40db54 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x000000003f40dbfc 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) .rodata.__func__$7027 - 0x000000003f40db6c 0x12 esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x000000003f40db7e 0x2 + 0x000000003f40dc14 0x12 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40dc26 0x2 .rodata.__func__$6994 - 0x000000003f40db80 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) - *fill* 0x000000003f40db8e 0x2 + 0x000000003f40dc28 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40dc36 0x2 .rodata.icmp_send_response.str1.4 - 0x000000003f40db90 0x70 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x000000003f40dc38 0x70 esp-idf/lwip/liblwip.a(icmp.c.obj) .rodata.icmp_input.str1.4 - 0x000000003f40dc00 0x6a esp-idf/lwip/liblwip.a(icmp.c.obj) - *fill* 0x000000003f40dc6a 0x2 + 0x000000003f40dca8 0x6a esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003f40dd12 0x2 .rodata.__func__$6910 - 0x000000003f40dc6c 0x13 esp-idf/lwip/liblwip.a(icmp.c.obj) - *fill* 0x000000003f40dc7f 0x1 + 0x000000003f40dd14 0x13 esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003f40dd27 0x1 .rodata.__func__$6887 - 0x000000003f40dc80 0xb esp-idf/lwip/liblwip.a(icmp.c.obj) - *fill* 0x000000003f40dc8b 0x1 + 0x000000003f40dd28 0xb esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003f40dd33 0x1 .rodata.igmp_send.str1.4 - 0x000000003f40dc8c 0x80 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000003f40dd34 0x80 esp-idf/lwip/liblwip.a(igmp.c.obj) .rodata.igmp_lookup_group.str1.4 - 0x000000003f40dd0c 0x75 esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x000000003f40dd81 0x3 + 0x000000003f40ddb4 0x75 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40de29 0x3 .rodata.igmp_joingroup_netif.str1.4 - 0x000000003f40dd84 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000003f40de2c 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) .rodata.igmp_joingroup.str1.4 - 0x000000003f40de34 0x6b esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x000000003f40de9f 0x1 + 0x000000003f40dedc 0x6b esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40df47 0x1 .rodata.igmp_leavegroup_netif.str1.4 - 0x000000003f40dea0 0xb6 esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x000000003f40df56 0x2 + 0x000000003f40df48 0xb6 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40dffe 0x2 .rodata.igmp_leavegroup.str1.4 - 0x000000003f40df58 0x6d esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x000000003f40dfc5 0x3 + 0x000000003f40e000 0x6d esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40e06d 0x3 .rodata.__func__$7097 - 0x000000003f40dfc8 0xa esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x000000003f40dfd2 0x2 + 0x000000003f40e070 0xa esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40e07a 0x2 .rodata.__func__$6961 - 0x000000003f40dfd4 0x12 esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x000000003f40dfe6 0x2 + 0x000000003f40e07c 0x12 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40e08e 0x2 .rodata.ip4_output_if_opt_src.str1.4 - 0x000000003f40dfe8 0x7d esp-idf/lwip/liblwip.a(ip4.c.obj) - *fill* 0x000000003f40e065 0x3 + 0x000000003f40e090 0x7d esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003f40e10d 0x3 .rodata.__func__$7493 - 0x000000003f40e068 0x16 esp-idf/lwip/liblwip.a(ip4.c.obj) - *fill* 0x000000003f40e07e 0x2 + 0x000000003f40e110 0x16 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003f40e126 0x2 .rodata.ip4addr_aton.str1.4 - 0x000000003f40e080 0x54 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000003f40e128 0x54 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) .rodata.ip4addr_aton - 0x000000003f40e0d4 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000003f40e17c 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) .rodata.__func__$6378 - 0x000000003f40e0e8 0xd esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - *fill* 0x000000003f40e0f5 0x3 + 0x000000003f40e190 0xd esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + *fill* 0x000000003f40e19d 0x3 .rodata.ip_addr_broadcast - 0x000000003f40e0f8 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - 0x000000003f40e0f8 ip_addr_broadcast + 0x000000003f40e1a0 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000003f40e1a0 ip_addr_broadcast .rodata.ip_addr_any - 0x000000003f40e110 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - 0x000000003f40e110 ip_addr_any + 0x000000003f40e1b8 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000003f40e1b8 ip_addr_any .rodata.ip4_frag.str1.4 - 0x000000003f40e128 0x84 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x000000003f40e1d0 0x84 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) .rodata.__func__$6877 - 0x000000003f40e1ac 0x9 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - *fill* 0x000000003f40e1b5 0x3 + 0x000000003f40e254 0x9 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + *fill* 0x000000003f40e25d 0x3 .rodata.icmp6_send_response_with_addrs_and_netif.str1.4 - 0x000000003f40e1b8 0x75 esp-idf/lwip/liblwip.a(icmp6.c.obj) - *fill* 0x000000003f40e22d 0x3 + 0x000000003f40e260 0x75 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x000000003f40e2d5 0x3 .rodata.icmp6_send_response.str1.4 - 0x000000003f40e230 0x24 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x000000003f40e2d8 0x24 esp-idf/lwip/liblwip.a(icmp6.c.obj) .rodata.icmp6_send_response_with_addrs.str1.4 - 0x000000003f40e254 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) - *fill* 0x000000003f40e27d 0x3 + 0x000000003f40e2fc 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x000000003f40e325 0x3 .rodata.__func__$6978 - 0x000000003f40e280 0x1f esp-idf/lwip/liblwip.a(icmp6.c.obj) - *fill* 0x000000003f40e29f 0x1 + 0x000000003f40e328 0x1f esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x000000003f40e347 0x1 .rodata.__func__$6991 - 0x000000003f40e2a0 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) - *fill* 0x000000003f40e2c9 0x3 + 0x000000003f40e348 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x000000003f40e371 0x3 .rodata.__func__$6966 - 0x000000003f40e2cc 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x000000003f40e374 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) .rodata.ip6_output_if_src.str1.4 - 0x000000003f40e2e0 0x72 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x000000003f40e388 0x72 esp-idf/lwip/liblwip.a(ip6.c.obj) 0x7e (size before relaxing) - *fill* 0x000000003f40e352 0x2 + *fill* 0x000000003f40e3fa 0x2 .rodata.__func__$7313 - 0x000000003f40e354 0x12 esp-idf/lwip/liblwip.a(ip6.c.obj) - *fill* 0x000000003f40e366 0x2 + 0x000000003f40e3fc 0x12 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x000000003f40e40e 0x2 .rodata.ip6_addr_any - 0x000000003f40e368 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - 0x000000003f40e368 ip6_addr_any + 0x000000003f40e410 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x000000003f40e410 ip6_addr_any .rodata.ip6_reass_free_complete_datagram.str1.4 - 0x000000003f40e380 0xbb esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - *fill* 0x000000003f40e43b 0x1 + 0x000000003f40e428 0xbb esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f40e4e3 0x1 .rodata.ip6_reass.str1.4 - 0x000000003f40e43c 0x11f esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - *fill* 0x000000003f40e55b 0x1 + 0x000000003f40e4e4 0x11f esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f40e603 0x1 .rodata.ip6_frag.str1.4 - 0x000000003f40e55c 0x17 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x000000003f40e604 0x17 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0x38 (size before relaxing) - *fill* 0x000000003f40e573 0x1 + *fill* 0x000000003f40e61b 0x1 .rodata.__func__$6950 - 0x000000003f40e574 0x9 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - *fill* 0x000000003f40e57d 0x3 + 0x000000003f40e61c 0x9 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f40e625 0x3 .rodata.__func__$6908 - 0x000000003f40e580 0xa esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - *fill* 0x000000003f40e58a 0x2 + 0x000000003f40e628 0xa esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f40e632 0x2 .rodata.__func__$6869 - 0x000000003f40e58c 0x21 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - *fill* 0x000000003f40e5ad 0x3 + 0x000000003f40e634 0x21 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f40e655 0x3 .rodata.mld6_joingroup_netif.str1.4 - 0x000000003f40e5b0 0x36 esp-idf/lwip/liblwip.a(mld6.c.obj) - *fill* 0x000000003f40e5e6 0x2 + 0x000000003f40e658 0x36 esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x000000003f40e68e 0x2 .rodata.nd6_process_autoconfig_prefix.str1.4 - 0x000000003f40e5e8 0x57 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x000000003f40e63f 0x1 + 0x000000003f40e690 0x57 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e6e7 0x1 .rodata.nd6_free_q.str1.4 - 0x000000003f40e640 0xd esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003f40e6e8 0xd esp-idf/lwip/liblwip.a(nd6.c.obj) 0x29 (size before relaxing) - *fill* 0x000000003f40e64d 0x3 + *fill* 0x000000003f40e6f5 0x3 .rodata.nd6_send_na.str1.4 - 0x000000003f40e650 0x1b esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003f40e6f8 0x1b esp-idf/lwip/liblwip.a(nd6.c.obj) .rodata.nd6_get_next_hop_entry.str1.4 - 0x000000003f40e66b 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x000000003f40e66b 0x1 + 0x000000003f40e713 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e713 0x1 .rodata.nd6_tmr - 0x000000003f40e66c 0x18 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003f40e714 0x18 esp-idf/lwip/liblwip.a(nd6.c.obj) .rodata.nd6_find_route.str1.4 - 0x000000003f40e684 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x000000003f40e6af 0x1 + 0x000000003f40e72c 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e757 0x1 .rodata.__func__$7410 - 0x000000003f40e6b0 0x17 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x000000003f40e6c7 0x1 + 0x000000003f40e758 0x17 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e76f 0x1 .rodata.__func__$7369 - 0x000000003f40e6c8 0xf esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x000000003f40e6d7 0x1 + 0x000000003f40e770 0xf esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e77f 0x1 .rodata.__func__$7436 - 0x000000003f40e6d8 0xb esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x000000003f40e6e3 0x1 + 0x000000003f40e780 0xb esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e78b 0x1 .rodata.__func__$7120 - 0x000000003f40e6e4 0x1e esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x000000003f40e702 0x2 - .rodata.__func__$7249 - 0x000000003f40e704 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) - .rodata.__func__$7262 - 0x000000003f40e710 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) - .rodata.ethernet_output.str1.4 - 0x000000003f40e71c 0x78 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .rodata.__func__$6832 - 0x000000003f40e794 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .rodata.ethzero - 0x000000003f40e7a4 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) - 0x000000003f40e7a4 ethzero + 0x000000003f40e78c 0x1e esp-idf/lwip/liblwip.a(nd6.c.obj) *fill* 0x000000003f40e7aa 0x2 + .rodata.__func__$7249 + 0x000000003f40e7ac 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$7262 + 0x000000003f40e7b8 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.ethernet_output.str1.4 + 0x000000003f40e7c4 0x78 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.__func__$6832 + 0x000000003f40e83c 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.ethzero + 0x000000003f40e84c 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x000000003f40e84c ethzero + *fill* 0x000000003f40e852 0x2 .rodata.ethbroadcast - 0x000000003f40e7ac 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) - 0x000000003f40e7ac ethbroadcast - *fill* 0x000000003f40e7b2 0x2 + 0x000000003f40e854 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x000000003f40e854 ethbroadcast + *fill* 0x000000003f40e85a 0x2 .rodata.sys_mutex_lock.str1.4 - 0x000000003f40e7b4 0x65 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e819 0x3 + 0x000000003f40e85c 0x65 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e8c1 0x3 .rodata.sys_mutex_unlock.str1.4 - 0x000000003f40e81c 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e835 0x3 + 0x000000003f40e8c4 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e8dd 0x3 .rodata.sys_sem_new.str1.4 - 0x000000003f40e838 0x49 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e881 0x3 + 0x000000003f40e8e0 0x49 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e929 0x3 .rodata.sys_sem_signal.str1.4 - 0x000000003f40e884 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e8a6 0x2 + 0x000000003f40e92c 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e94e 0x2 .rodata.sys_arch_sem_wait.str1.4 - 0x000000003f40e8a8 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000003f40e950 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) .rodata.sys_mbox_post.str1.4 - 0x000000003f40e8c0 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e8d1 0x3 + 0x000000003f40e968 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e979 0x3 .rodata.sys_arch_mbox_fetch.str1.4 - 0x000000003f40e8d4 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e8e6 0x2 + 0x000000003f40e97c 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e98e 0x2 .rodata.sys_mbox_free.str1.4 - 0x000000003f40e8e8 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e8fe 0x2 + 0x000000003f40e990 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e9a6 0x2 .rodata.sys_init.str1.4 - 0x000000003f40e900 0x50 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000003f40e9a8 0x50 esp-idf/lwip/liblwip.a(sys_arch.c.obj) .rodata.sys_thread_sem_init.str1.4 - 0x000000003f40e950 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e986 0x2 + 0x000000003f40e9f8 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40ea2e 0x2 .rodata.__func__$6361 - 0x000000003f40e988 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e996 0x2 + 0x000000003f40ea30 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40ea3e 0x2 .rodata.__func__$6351 - 0x000000003f40e998 0x17 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e9af 0x1 + 0x000000003f40ea40 0x17 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40ea57 0x1 .rodata.__func__$6343 - 0x000000003f40e9b0 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000003f40ea58 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) .rodata.__func__$6322 - 0x000000003f40e9c4 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e9d2 0x2 + 0x000000003f40ea6c 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40ea7a 0x2 .rodata.__func__$6305 - 0x000000003f40e9d4 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e9e6 0x2 + 0x000000003f40ea7c 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40ea8e 0x2 .rodata.__func__$6295 - 0x000000003f40e9e8 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40e9f7 0x1 + 0x000000003f40ea90 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40ea9f 0x1 .rodata.__func__$6288 - 0x000000003f40e9f8 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000003f40eaa0 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) .rodata.__func__$6279 - 0x000000003f40ea04 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40ea15 0x3 + 0x000000003f40eaac 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40eabd 0x3 .rodata.__func__$6274 - 0x000000003f40ea18 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) - *fill* 0x000000003f40ea27 0x1 + 0x000000003f40eac0 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40eacf 0x1 .rodata.esp_vfs_lwip_sockets_register.str1.4 - 0x000000003f40ea28 0x84 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x000000003f40ead0 0x84 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) .rodata.__func__$7454 - 0x000000003f40eaac 0x1e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - *fill* 0x000000003f40eaca 0x2 + 0x000000003f40eb54 0x1e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x000000003f40eb72 0x2 .rodata.free_socket_locked.str1.4 - 0x000000003f40eacc 0x55 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40eb21 0x3 + 0x000000003f40eb74 0x55 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ebc9 0x3 .rodata.lwip_sockopt_to_ipopt.str1.4 - 0x000000003f40eb24 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40eb3a 0x2 + 0x000000003f40ebcc 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ebe2 0x2 .rodata.lwip_unlink_select_cb.str1.4 - 0x000000003f40eb3c 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003f40ebe4 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) .rodata.lwip_sock_make_addr.str1.4 - 0x000000003f40eb6c 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003f40ec14 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) .rodata.sock_inc_used.str1.4 - 0x000000003f40eba0 0x23 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ebc3 0x1 + 0x000000003f40ec48 0x23 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ec6b 0x1 .rodata.alloc_socket.str1.4 - 0x000000003f40ebc4 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ebe3 0x1 + 0x000000003f40ec6c 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ec8b 0x1 .rodata.lwip_selscan.str1.4 - 0x000000003f40ebe4 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003f40ec8c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) .rodata.lwip_select_dec_sockets_used.str1.4 - 0x000000003f40ebf0 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ec11 0x3 + 0x000000003f40ec98 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ecb9 0x3 .rodata.lwip_pollscan.str1.4 - 0x000000003f40ec14 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ec2d 0x3 + 0x000000003f40ecbc 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ecd5 0x3 .rodata.lwip_recv_tcp.str1.4 - 0x000000003f40ec30 0x6c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003f40ecd8 0x6c esp-idf/lwip/liblwip.a(sockets.c.obj) 0x78 (size before relaxing) .rodata.lwip_recvfrom_udp_raw.str1.4 - 0x000000003f40ec9c 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.event_callback.str1.4 - 0x000000003f40ecd4 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ece2 0x2 - .rodata.event_callback - 0x000000003f40ece4 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_getsockopt_callback.str1.4 - 0x000000003f40ecf8 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_setsockopt_impl.str1.4 - 0x000000003f40ed04 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) - .rodata.lwip_setsockopt_impl 0x000000003f40ed44 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.event_callback.str1.4 + 0x000000003f40ed7c 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ed8a 0x2 + .rodata.event_callback + 0x000000003f40ed8c 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_getsockopt_callback.str1.4 + 0x000000003f40eda0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_setsockopt_impl.str1.4 + 0x000000003f40edac 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_setsockopt_impl + 0x000000003f40edec 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) .rodata.lwip_accept.str1.4 - 0x000000003f40ed7c 0x25 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40eda1 0x3 + 0x000000003f40ee24 0x25 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ee49 0x3 .rodata.lwip_bind.str1.4 - 0x000000003f40eda4 0x1b esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40edbf 0x1 + 0x000000003f40ee4c 0x1b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ee67 0x1 .rodata.lwip_close.str1.4 - 0x000000003f40edc0 0x17 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40edd7 0x1 + 0x000000003f40ee68 0x17 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ee7f 0x1 .rodata.lwip_recvfrom.str1.4 - 0x000000003f40edd8 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ede6 0x2 + 0x000000003f40ee80 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ee8e 0x2 .rodata.lwip_sendto.str1.4 - 0x000000003f40ede8 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ee05 0x3 + 0x000000003f40ee90 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40eead 0x3 .rodata.__func__$8877 - 0x000000003f40ee08 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ee1d 0x3 + 0x000000003f40eeb0 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40eec5 0x3 .rodata.__func__$8848 - 0x000000003f40ee20 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ee39 0x3 + 0x000000003f40eec8 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40eee1 0x3 .rodata.__func__$8747 - 0x000000003f40ee3c 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ee52 0x2 + 0x000000003f40eee4 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40eefa 0x2 .rodata.__func__$8538 - 0x000000003f40ee54 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ee71 0x3 + 0x000000003f40eefc 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ef19 0x3 .rodata.__func__$8508 - 0x000000003f40ee74 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ee81 0x3 + 0x000000003f40ef1c 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ef29 0x3 .rodata.__func__$8465 - 0x000000003f40ee84 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ee9a 0x2 + 0x000000003f40ef2c 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ef42 0x2 .rodata.__func__$8076 - 0x000000003f40ee9c 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40eeb1 0x3 + 0x000000003f40ef44 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ef59 0x3 .rodata.__func__$8570 - 0x000000003f40eeb4 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003f40ef5c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) .rodata.__func__$8661 - 0x000000003f40eec0 0xf esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40eecf 0x1 + 0x000000003f40ef68 0xf esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ef77 0x1 .rodata.__func__$8296 - 0x000000003f40eed0 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40eee6 0x2 + 0x000000003f40ef78 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ef8e 0x2 .rodata.__func__$8265 - 0x000000003f40eee8 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003f40ef90 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) .rodata.__func__$8241 - 0x000000003f40eefc 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ef0a 0x2 + 0x000000003f40efa4 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40efb2 0x2 .rodata.__func__$8199 - 0x000000003f40ef0c 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ef17 0x1 + 0x000000003f40efb4 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40efbf 0x1 .rodata.__func__$8084 - 0x000000003f40ef18 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003f40efc0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) .rodata.__func__$8127 - 0x000000003f40ef24 0x13 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ef37 0x1 + 0x000000003f40efcc 0x13 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40efdf 0x1 .rodata.__func__$8117 - 0x000000003f40ef38 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ef45 0x3 + 0x000000003f40efe0 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40efed 0x3 .rodata.__func__$8072 - 0x000000003f40ef48 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x000000003f40ef56 0x2 + 0x000000003f40eff0 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40effe 0x2 .rodata.__func__$8159 - 0x000000003f40ef58 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000003f40f000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) .rodata.netconn_tcp_recvd_msg.str1.4 - 0x000000003f40ef64 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x000000003f40f00c 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) .rodata.netconn_close_shutdown.str1.4 - 0x000000003f40ef88 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x000000003f40f030 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) .rodata.netconn_new_with_proto_and_callback.str1.4 - 0x000000003f40efa4 0xa1 esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f045 0x3 + 0x000000003f40f04c 0xa1 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f0ed 0x3 .rodata.netconn_getaddr.str1.4 - 0x000000003f40f048 0x5e esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f0a6 0x2 + 0x000000003f40f0f0 0x5e esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f14e 0x2 .rodata.netconn_bind.str1.4 - 0x000000003f40f0a8 0x1b esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f0c3 0x1 + 0x000000003f40f150 0x1b esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f16b 0x1 .rodata.netconn_listen_with_backlog.str1.4 - 0x000000003f40f0c4 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f0e1 0x3 + 0x000000003f40f16c 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f189 0x3 .rodata.netconn_send.str1.4 - 0x000000003f40f0e4 0x1b esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f0ff 0x1 + 0x000000003f40f18c 0x1b esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f1a7 0x1 .rodata.netconn_write_vectors_partly.str1.4 - 0x000000003f40f100 0x63 esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f163 0x1 + 0x000000003f40f1a8 0x63 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f20b 0x1 .rodata.netconn_accept.str1.4 - 0x000000003f40f164 0x3d esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f1a1 0x3 + 0x000000003f40f20c 0x3d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f249 0x3 .rodata.netconn_recv_data.str1.4 - 0x000000003f40f1a4 0x3b esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x000000003f40f24c 0x3b esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x48 (size before relaxing) - *fill* 0x000000003f40f1df 0x1 + *fill* 0x000000003f40f287 0x1 .rodata.netconn_recv_udp_raw_netbuf.str1.4 - 0x000000003f40f1e0 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f20a 0x2 + 0x000000003f40f288 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f2b2 0x2 .rodata.netconn_join_leave_group.str1.4 - 0x000000003f40f20c 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f233 0x1 + 0x000000003f40f2b4 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f2db 0x1 .rodata.__func__$7905 - 0x000000003f40f234 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f251 0x3 + 0x000000003f40f2dc 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f2f9 0x3 .rodata.__func__$7819 - 0x000000003f40f254 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) - *fill* 0x000000003f40f266 0x2 + 0x000000003f40f2fc 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40f30e 0x2 .rodata.__func__$7752 - 0x000000003f40f268 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x000000003f40f310 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) .rodata.lwip_netconn_err_to_msg.str1.4 - 0x000000003f40f28c 0x51 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f2dd 0x3 + 0x000000003f40f334 0x51 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f385 0x3 .rodata.recv_udp.str1.4 - 0x000000003f40f2e0 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f342 0x2 + 0x000000003f40f388 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f3ea 0x2 .rodata.pcb_new.str1.4 - 0x000000003f40f344 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f363 0x1 + 0x000000003f40f3ec 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f40b 0x1 .rodata.err_tcp.str1.4 - 0x000000003f40f364 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f3c6 0x2 + 0x000000003f40f40c 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f46e 0x2 .rodata.lwip_netconn_do_writemore.str1.4 - 0x000000003f40f3c8 0xcb esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f493 0x1 + 0x000000003f40f470 0xcb esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f53b 0x1 .rodata.lwip_netconn_do_close_internal.str1.4 - 0x000000003f40f494 0x7b esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f53c 0x7b esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x8b (size before relaxing) - *fill* 0x000000003f40f50f 0x1 + *fill* 0x000000003f40f5b7 0x1 .rodata.recv_tcp.str1.4 - 0x000000003f40f510 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f58a 0x2 + 0x000000003f40f5b8 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f632 0x2 .rodata.lwip_netconn_is_err_msg.str1.4 - 0x000000003f40f58c 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f634 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.netconn_alloc.str1.4 - 0x000000003f40f598 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f5be 0x2 + 0x000000003f40f640 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f666 0x2 .rodata.netconn_free.str1.4 - 0x000000003f40f5c0 0xa8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f668 0xa8 esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.netconn_drain.str1.4 - 0x000000003f40f668 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f67e 0x2 + 0x000000003f40f710 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f726 0x2 .rodata.accept_function.str1.4 - 0x000000003f40f680 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f6a7 0x1 + 0x000000003f40f728 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f74f 0x1 .rodata.lwip_netconn_do_delconn.str1.4 - 0x000000003f40f6a8 0x4f esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f750 0x4f esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.lwip_netconn_do_listen.str1.4 - 0x000000003f40f6f7 0x2d esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f6f7 0x1 + 0x000000003f40f79f 0x2d esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f79f 0x1 .rodata.lwip_netconn_do_write.str1.4 - 0x000000003f40f6f8 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f7a0 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.lwip_netconn_do_getaddr.str1.4 - 0x000000003f40f70c 0x15 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f721 0x3 + 0x000000003f40f7b4 0x15 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f7c9 0x3 .rodata.lwip_netconn_do_close.str1.4 - 0x000000003f40f724 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f7cc 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.__func__$7971 - 0x000000003f40f748 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f75e 0x2 + 0x000000003f40f7f0 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f806 0x2 .rodata.__func__$7964 - 0x000000003f40f760 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f808 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.__func__$7954 - 0x000000003f40f778 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f78e 0x2 + 0x000000003f40f820 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f836 0x2 .rodata.__func__$7771 - 0x000000003f40f790 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f838 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.__func__$7907 - 0x000000003f40f7a0 0x17 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f7b7 0x1 + 0x000000003f40f848 0x17 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f85f 0x1 .rodata.__func__$7848 - 0x000000003f40f7b8 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .rodata.__func__$7810 - 0x000000003f40f7d0 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f7de 0x2 - .rodata.__func__$7805 - 0x000000003f40f7e0 0xd esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f7ed 0x3 - .rodata.__func__$7800 - 0x000000003f40f7f0 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f7fe 0x2 - .rodata.__func__$7734 - 0x000000003f40f800 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f809 0x3 - .rodata.__func__$7747 - 0x000000003f40f80c 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f815 0x3 - .rodata.__func__$7840 - 0x000000003f40f818 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f837 0x1 - .rodata.__func__$7942 - 0x000000003f40f838 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f852 0x2 - .rodata.__func__$7740 - 0x000000003f40f854 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f85d 0x3 - .rodata.__func__$7697 0x000000003f40f860 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7810 + 0x000000003f40f878 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f886 0x2 + .rodata.__func__$7805 + 0x000000003f40f888 0xd esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f895 0x3 + .rodata.__func__$7800 + 0x000000003f40f898 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f8a6 0x2 + .rodata.__func__$7734 + 0x000000003f40f8a8 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f8b1 0x3 + .rodata.__func__$7747 + 0x000000003f40f8b4 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f8bd 0x3 + .rodata.__func__$7840 + 0x000000003f40f8c0 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f8df 0x1 + .rodata.__func__$7942 + 0x000000003f40f8e0 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f8fa 0x2 + .rodata.__func__$7740 + 0x000000003f40f8fc 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f905 0x3 + .rodata.__func__$7697 + 0x000000003f40f908 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.__func__$7756 - 0x000000003f40f878 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f920 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.__func__$7723 - 0x000000003f40f880 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) - *fill* 0x000000003f40f889 0x3 + 0x000000003f40f928 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f931 0x3 .rodata.__func__$7778 - 0x000000003f40f88c 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f934 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.__func__$7702 - 0x000000003f40f894 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f93c 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) .rodata.netconn_closed - 0x000000003f40f8ac 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x000000003f40f8ac netconn_closed + 0x000000003f40f954 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f954 netconn_closed .rodata.netconn_reset - 0x000000003f40f8ad 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x000000003f40f8ad netconn_reset + 0x000000003f40f955 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f955 netconn_reset .rodata.netconn_aborted - 0x000000003f40f8ae 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x000000003f40f8ae netconn_aborted + 0x000000003f40f956 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f956 netconn_aborted .rodata.netconn_deleted - 0x000000003f40f8af 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x000000003f40f8af netconn_deleted + 0x000000003f40f957 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f957 netconn_deleted .rodata.err_to_errno_table - 0x000000003f40f8b0 0x44 esp-idf/lwip/liblwip.a(err.c.obj) + 0x000000003f40f958 0x44 esp-idf/lwip/liblwip.a(err.c.obj) .rodata.netbuf_alloc.str1.4 - 0x000000003f40f8f4 0x80 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x000000003f40f99c 0x80 esp-idf/lwip/liblwip.a(netbuf.c.obj) .rodata.netbuf_free.str1.4 - 0x000000003f40f974 0x19 esp-idf/lwip/liblwip.a(netbuf.c.obj) - *fill* 0x000000003f40f98d 0x3 + 0x000000003f40fa1c 0x19 esp-idf/lwip/liblwip.a(netbuf.c.obj) + *fill* 0x000000003f40fa35 0x3 .rodata.__func__$6415 - 0x000000003f40f990 0xd esp-idf/lwip/liblwip.a(netbuf.c.obj) - *fill* 0x000000003f40f99d 0x3 + 0x000000003f40fa38 0xd esp-idf/lwip/liblwip.a(netbuf.c.obj) + *fill* 0x000000003f40fa45 0x3 .rodata.str1.4 - 0x000000003f40f9a0 0x131 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x000000003f40fad1 0x3 + 0x000000003f40fa48 0x131 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f40fb79 0x3 .rodata.__func__$4859 - 0x000000003f40fad4 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x000000003f40fae6 0x2 + 0x000000003f40fb7c 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f40fb8e 0x2 .rodata.__func__$4849 - 0x000000003f40fae8 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x000000003f40faf7 0x1 + 0x000000003f40fb90 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f40fb9f 0x1 .rodata.__func__$4771 - 0x000000003f40faf8 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x000000003f40fba0 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) .rodata.register_heap.str1.4 - 0x000000003f40fb10 0x57 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - *fill* 0x000000003f40fb67 0x1 + 0x000000003f40fbb8 0x57 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f40fc0f 0x1 .rodata.heap_caps_init.str1.4 - 0x000000003f40fb68 0xf4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x000000003f40fc10 0xf4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) 0x13c (size before relaxing) .rodata.__func__$4126 - 0x000000003f40fc5c 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x000000003f40fd04 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) .rodata.__func__$4813 - 0x000000003f40fc70 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) - *fill* 0x000000003f40fc7f 0x1 + 0x000000003f40fd18 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f40fd27 0x1 .rodata.__func__$4782 - 0x000000003f40fc80 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) - *fill* 0x000000003f40fc8e 0x2 + 0x000000003f40fd28 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f40fd36 0x2 .rodata.gpio_od_enable.str1.4 - 0x000000003f40fc90 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) - *fill* 0x000000003f40fcce 0x2 + 0x000000003f40fd38 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f40fd76 0x2 + .rodata.gpio_input_enable.str1.4 + 0x000000003f40fd78 0x101 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f40fe79 0x3 + .rodata.gpio_input_disable.str1.4 + 0x000000003f40fe7c 0xbc esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_output_disable.str1.4 + 0x000000003f40ff38 0xc0 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_output_enable.str1.4 + 0x000000003f40fff8 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f410013 0x1 + .rodata.gpio_set_direction.str1.4 + 0x000000003f410014 0x33 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f410047 0x1 .rodata.gpio_wakeup_enable.str1.4 - 0x000000003f40fcd0 0x5c esp-idf/driver/libdriver.a(gpio.c.obj) + 0x000000003f410048 0x5c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_iomux_in.str1.4 + 0x000000003f4100a4 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_iomux_out.str1.4 + 0x000000003f410154 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6169 + 0x000000003f410204 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f410216 0x2 + .rodata.__func__$6159 + 0x000000003f410218 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f410229 0x3 .rodata.__FUNCTION__$6363 - 0x000000003f40fd2c 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - *fill* 0x000000003f40fd3f 0x1 + 0x000000003f41022c 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f41023f 0x1 + .rodata.__FUNCTION__$6260 + 0x000000003f410240 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6264 + 0x000000003f410250 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f41025f 0x1 + .rodata.__func__$6075 + 0x000000003f410260 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f410277 0x1 + .rodata.__FUNCTION__$6252 + 0x000000003f410278 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6256 + 0x000000003f41028c 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f41029f 0x1 + .rodata.__func__$6059 + 0x000000003f4102a0 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f4102b6 0x2 + .rodata.__FUNCTION__$6244 + 0x000000003f4102b8 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f4102cb 0x1 + .rodata.__func__$6067 + 0x000000003f4102cc 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f4102e1 0x3 + .rodata.__FUNCTION__$6248 + 0x000000003f4102e4 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f4102f6 0x2 + .rodata.__FUNCTION__$6289 + 0x000000003f4102f8 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f41030b 0x1 + .rodata.__FUNCTION__$6269 + 0x000000003f41030c 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f41031b 0x1 .rodata.periph_module_enable - 0x000000003f40fd40 0x1e8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x000000003f41031c 0x1e8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) .rodata.periph_module_disable - 0x000000003f40ff28 0x1e8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x000000003f410504 0x1e8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) .rodata.periph_module_reset - 0x000000003f410110 0x15c esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x000000003f4106ec 0x15c esp-idf/driver/libdriver.a(periph_ctrl.c.obj) .rodata.rtc_gpio_init.str1.4 - 0x000000003f41026c 0x17f esp-idf/driver/libdriver.a(rtc_io.c.obj) - *fill* 0x000000003f4103eb 0x1 + 0x000000003f410848 0x17f esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x000000003f4109c7 0x1 .rodata.__FUNCTION__$6854 - 0x000000003f4103ec 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) - *fill* 0x000000003f410403 0x1 + 0x000000003f4109c8 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x000000003f4109df 0x1 .rodata.__FUNCTION__$6843 - 0x000000003f410404 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) - *fill* 0x000000003f410415 0x3 + 0x000000003f4109e0 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x000000003f4109f1 0x3 + .rodata.spicommon_periph_claim.str1.4 + 0x000000003f4109f4 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_claim.str1.4 + 0x000000003f410a2c 0x6d esp-idf/driver/libdriver.a(spi_common.c.obj) + *fill* 0x000000003f410a99 0x3 + .rodata.spicommon_dma_chan_free.str1.4 + 0x000000003f410a9c 0x55 esp-idf/driver/libdriver.a(spi_common.c.obj) + *fill* 0x000000003f410af1 0x3 + .rodata.spicommon_bus_initialize_io.str1.4 + 0x000000003f410af4 0x5b2 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x5d6 (size before relaxing) + *fill* 0x000000003f4110a6 0x2 + .rodata.spicommon_cs_initialize.str1.4 + 0x000000003f4110a8 0xba esp-idf/driver/libdriver.a(spi_common.c.obj) + *fill* 0x000000003f411162 0x2 + .rodata.__func__$6736 + 0x000000003f411164 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6705 + 0x000000003f41117c 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$6702 + 0x000000003f411198 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6684 + 0x000000003f4111b4 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6676 + 0x000000003f4111cc 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + *fill* 0x000000003f4111e5 0x3 .rodata.uart_pattern_enqueue.str1.4 - 0x000000003f410418 0x58 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f4111e8 0x58 esp-idf/driver/libdriver.a(uart.c.obj) .rodata.uart_set_word_length.str1.4 - 0x000000003f410470 0x1f esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f411240 0x1f esp-idf/driver/libdriver.a(uart.c.obj) 0x43 (size before relaxing) - *fill* 0x000000003f41048f 0x1 + *fill* 0x000000003f41125f 0x1 .rodata.uart_set_stop_bits.str1.4 - 0x000000003f410490 0xf esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f41049f 0x1 + 0x000000003f411260 0xf esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f41126f 0x1 .rodata.uart_set_hw_flow_ctrl.str1.4 - 0x000000003f4104a0 0x2f esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4104cf 0x1 + 0x000000003f411270 0x2f esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f41129f 0x1 .rodata.uart_pattern_pop_pos.str1.4 - 0x000000003f4104d0 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4104e2 0x2 + 0x000000003f4112a0 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4112b2 0x2 .rodata.uart_enable_tx_intr.str1.4 - 0x000000003f4104e4 0x1b esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4104ff 0x1 + 0x000000003f4112b4 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4112cf 0x1 .rodata.uart_param_config.str1.4 - 0x000000003f410500 0xb esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f41050b 0x1 + 0x000000003f4112d0 0xb esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4112db 0x1 .rodata.uart_tx_chars.str1.4 - 0x000000003f41050c 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f4112dc 0xc esp-idf/driver/libdriver.a(uart.c.obj) .rodata.uart_write_bytes_with_break.str1.4 - 0x000000003f410518 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f4112e8 0x30 esp-idf/driver/libdriver.a(uart.c.obj) .rodata.uart_flush_input.str1.4 - 0x000000003f410548 0x2d esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f410575 0x3 + 0x000000003f411318 0x2d esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f411345 0x3 .rodata.uart_driver_delete.str1.4 - 0x000000003f410578 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f411348 0x24 esp-idf/driver/libdriver.a(uart.c.obj) .rodata.uart_driver_install.str1.4 - 0x000000003f41059c 0x155 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4106f1 0x3 - .rodata 0x000000003f4106f4 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f41136c 0x155 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4114c1 0x3 + .rodata 0x000000003f4114c4 0x8 esp-idf/driver/libdriver.a(uart.c.obj) .rodata.uart_set_wakeup_threshold.str1.4 - 0x000000003f4106fc 0x1f esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f41071b 0x1 + 0x000000003f4114cc 0x1f esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4114eb 0x1 .rodata.__FUNCTION__$7322 - 0x000000003f41071c 0x1a esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f410736 0x2 + 0x000000003f4114ec 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f411506 0x2 .rodata.__FUNCTION__$7313 - 0x000000003f410738 0x1a esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f410752 0x2 + 0x000000003f411508 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f411522 0x2 .rodata.__FUNCTION__$7273 - 0x000000003f410754 0x13 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f410767 0x1 + 0x000000003f411524 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f411537 0x1 .rodata.__FUNCTION__$7267 - 0x000000003f410768 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f411538 0x14 esp-idf/driver/libdriver.a(uart.c.obj) .rodata.__FUNCTION__$7251 - 0x000000003f41077c 0x11 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f41078d 0x3 + 0x000000003f41154c 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f41155d 0x3 .rodata.__FUNCTION__$7245 - 0x000000003f410790 0x1b esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4107ab 0x1 + 0x000000003f411560 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f41157b 0x1 .rodata.__FUNCTION__$7233 - 0x000000003f4107ac 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f41157c 0x10 esp-idf/driver/libdriver.a(uart.c.obj) .rodata.__FUNCTION__$7215 - 0x000000003f4107bc 0x11 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4107cd 0x3 + 0x000000003f41158c 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f41159d 0x3 .rodata.__FUNCTION__$7180 - 0x000000003f4107d0 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4107e2 0x2 + 0x000000003f4115a0 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4115b2 0x2 .rodata.__FUNCTION__$7141 - 0x000000003f4107e4 0x11 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4107f5 0x3 + 0x000000003f4115b4 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4115c5 0x3 .rodata.__FUNCTION__$7136 - 0x000000003f4107f8 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f41080a 0x2 + 0x000000003f4115c8 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4115da 0x2 .rodata.__FUNCTION__$7090 - 0x000000003f41080c 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f41081e 0x2 + 0x000000003f4115dc 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4115ee 0x2 .rodata.__FUNCTION__$7080 - 0x000000003f410820 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f4115f0 0x14 esp-idf/driver/libdriver.a(uart.c.obj) .rodata.__FUNCTION__$7037 - 0x000000003f410834 0x19 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f41084d 0x3 + 0x000000003f411604 0x19 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f41161d 0x3 .rodata.__FUNCTION__$6994 - 0x000000003f410850 0x17 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f410867 0x1 + 0x000000003f411620 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f411637 0x1 .rodata.__FUNCTION__$6989 - 0x000000003f410868 0x16 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f41087e 0x2 + 0x000000003f411638 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f41164e 0x2 .rodata.__FUNCTION__$6955 - 0x000000003f410880 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f410892 0x2 + 0x000000003f411650 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f411662 0x2 .rodata.__FUNCTION__$6949 - 0x000000003f410894 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4108a6 0x2 + 0x000000003f411664 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f411676 0x2 .rodata.__FUNCTION__$6944 - 0x000000003f4108a8 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f411678 0x10 esp-idf/driver/libdriver.a(uart.c.obj) .rodata.__FUNCTION__$6939 - 0x000000003f4108b8 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000003f411688 0x10 esp-idf/driver/libdriver.a(uart.c.obj) .rodata.__FUNCTION__$6934 - 0x000000003f4108c8 0x13 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4108db 0x1 + 0x000000003f411698 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4116ab 0x1 .rodata.__FUNCTION__$6929 - 0x000000003f4108dc 0x13 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f4108ef 0x1 + 0x000000003f4116ac 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4116bf 0x1 .rodata.__FUNCTION__$6924 - 0x000000003f4108f0 0x15 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f410905 0x3 + 0x000000003f4116c0 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4116d5 0x3 .rodata.__FUNCTION__$6919 - 0x000000003f410908 0x15 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003f41091d 0x3 + 0x000000003f4116d8 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f4116ed 0x3 .rodata.esp_fill_random.str1.4 - 0x000000003f410920 0x37 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x000000003f4116f0 0x37 esp-idf/esp32/libesp32.a(hw_random.c.obj) 0x43 (size before relaxing) - *fill* 0x000000003f410957 0x1 + *fill* 0x000000003f411727 0x1 .rodata.__func__$3138 - 0x000000003f410958 0x10 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x000000003f411728 0x10 esp-idf/esp32/libesp32.a(hw_random.c.obj) .rodata.str1.4 - 0x000000003f410968 0x332 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x000000003f411738 0x332 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x492 (size before relaxing) - *fill* 0x000000003f410c9a 0x2 + *fill* 0x000000003f411a6a 0x2 .rodata.ext0_wakeup_prepare.str1.4 - 0x000000003f410c9c 0x8a esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x000000003f410d26 0x2 + 0x000000003f411a6c 0x8a esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f411af6 0x2 .rodata.esp_sleep_disable_wakeup_source.str1.4 - 0x000000003f410d28 0x48 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x000000003f411af8 0x48 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) .rodata.esp_sleep_enable_ext0_wakeup.str1.4 - 0x000000003f410d70 0x41 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x000000003f410db1 0x3 + 0x000000003f411b40 0x41 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f411b81 0x3 .rodata.esp_sleep_enable_ext1_wakeup.str1.4 - 0x000000003f410db4 0x2d esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x000000003f410de1 0x3 + 0x000000003f411b84 0x2d esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f411bb1 0x3 .rodata.__func__$9128 - 0x000000003f410de4 0xd esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x000000003f410df1 0x3 + 0x000000003f411bb4 0xd esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f411bc1 0x3 .rodata.__func__$9239 - 0x000000003f410df4 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x000000003f411bc4 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) .rodata.__func__$9208 - 0x000000003f410e08 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x000000003f411bd8 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) .rodata.__func__$9114 - 0x000000003f410e1c 0xe esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x000000003f410e2a 0x2 + 0x000000003f411bec 0xe esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f411bfa 0x2 .rodata.__func__$6642 - 0x000000003f410e2c 0x12 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x000000003f410e3e 0x2 + 0x000000003f411bfc 0x12 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f411c0e 0x2 .rodata.esp_base_mac_addr_set.str1.4 - 0x000000003f410e40 0x72 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - *fill* 0x000000003f410eb2 0x2 + 0x000000003f411c10 0x72 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + *fill* 0x000000003f411c82 0x2 .rodata.esp_base_mac_addr_get.str1.4 - 0x000000003f410eb4 0x33 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - *fill* 0x000000003f410ee7 0x1 + 0x000000003f411c84 0x33 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + *fill* 0x000000003f411cb7 0x1 .rodata.esp_efuse_mac_get_default.str1.4 - 0x000000003f410ee8 0x6c esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x000000003f411cb8 0x6c esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) .rodata.esp_derive_local_mac.str1.4 - 0x000000003f410f54 0x31 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - *fill* 0x000000003f410f85 0x3 + 0x000000003f411d24 0x31 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + *fill* 0x000000003f411d55 0x3 .rodata.esp_read_mac.str1.4 - 0x000000003f410f88 0x9c esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x000000003f411d58 0x9c esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) .rodata.ets_timer_setfn.str1.4 - 0x000000003f411024 0x9e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - *fill* 0x000000003f4110c2 0x2 + 0x000000003f411df4 0x9e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f411e92 0x2 .rodata.str1.4 - 0x000000003f4110c4 0x85 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - *fill* 0x000000003f411149 0x3 + 0x000000003f411e94 0x85 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f411f19 0x3 .rodata.__func__$5189 - 0x000000003f41114c 0xe esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - *fill* 0x000000003f41115a 0x2 + 0x000000003f411f1c 0xe esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f411f2a 0x2 .rodata.__func__$5180 - 0x000000003f41115c 0x11 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - *fill* 0x000000003f41116d 0x3 + 0x000000003f411f2c 0x11 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f411f3d 0x3 .rodata.__func__$5174 - 0x000000003f411170 0x10 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x000000003f411f40 0x10 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) .rodata.xEventGroupCreate.str1.4 - 0x000000003f411180 0x48 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x000000003f411f50 0x48 esp-idf/freertos/libfreertos.a(event_groups.c.obj) .rodata.xEventGroupWaitBits.str1.4 - 0x000000003f411180 0x3d esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x000000003f411f50 0x3d esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x5c (size before relaxing) - *fill* 0x000000003f4111bd 0x3 + *fill* 0x000000003f411f8d 0x3 .rodata.__FUNCTION__$4873 - 0x000000003f4111c0 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - *fill* 0x000000003f4111d2 0x2 + 0x000000003f411f90 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f411fa2 0x2 .rodata.__FUNCTION__$4864 - 0x000000003f4111d4 0x13 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - *fill* 0x000000003f4111e7 0x1 + 0x000000003f411fa4 0x13 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f411fb7 0x1 .rodata.__FUNCTION__$4839 - 0x000000003f4111e8 0x15 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - *fill* 0x000000003f4111fd 0x3 + 0x000000003f411fb8 0x15 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f411fcd 0x3 .rodata.__FUNCTION__$4831 - 0x000000003f411200 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x000000003f411fd0 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) .rodata.__func__$4077 - 0x000000003f411214 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x000000003f411fe4 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) .rodata.help_command.str1.4 - 0x000000003f411228 0x18 esp-idf/console/libconsole.a(commands.c.obj) + 0x000000003f411ff8 0x18 esp-idf/console/libconsole.a(commands.c.obj) 0x1c (size before relaxing) .rodata.esp_console_cmd_register.str1.4 - 0x000000003f411240 0x18 esp-idf/console/libconsole.a(commands.c.obj) + 0x000000003f412010 0x18 esp-idf/console/libconsole.a(commands.c.obj) 0x4 (size before relaxing) .rodata.esp_console_register_help_command.str1.4 - 0x000000003f411240 0x2e esp-idf/console/libconsole.a(commands.c.obj) - *fill* 0x000000003f41126e 0x2 + 0x000000003f412010 0x2e esp-idf/console/libconsole.a(commands.c.obj) + *fill* 0x000000003f41203e 0x2 .rodata.esp_console_split_argv - 0x000000003f411270 0x2c esp-idf/console/libconsole.a(split_argv.c.obj) + 0x000000003f412040 0x2c esp-idf/console/libconsole.a(split_argv.c.obj) .rodata.arg_end_errorfn.str1.4 - 0x000000003f41129c 0xa1 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x000000003f41206c 0xa1 esp-idf/console/libconsole.a(argtable3.c.obj) 0xa5 (size before relaxing) - *fill* 0x000000003f41133d 0x3 + *fill* 0x000000003f41210d 0x3 .rodata.arg_end_errorfn - 0x000000003f411340 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x000000003f412110 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) .rodata.arg_int_scanfn.str1.4 - 0x000000003f411358 0xb esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x000000003f411363 0x1 + 0x000000003f412128 0xb esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f412133 0x1 .rodata.arg_cat_optionv.str1.4 - 0x000000003f411364 0xa esp-idf/console/libconsole.a(argtable3.c.obj) + 0x000000003f412134 0xa esp-idf/console/libconsole.a(argtable3.c.obj) 0x16 (size before relaxing) - *fill* 0x000000003f41136e 0x2 + *fill* 0x000000003f41213e 0x2 .rodata.arg_print_gnuswitch.str1.4 - 0x000000003f411370 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x000000003f411385 0x3 + 0x000000003f412140 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f412155 0x3 .rodata.arg_intn.str1.4 - 0x000000003f411388 0x6 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x000000003f41138e 0x2 + 0x000000003f412158 0x6 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f41215e 0x2 .rodata.arg_strn.str1.4 - 0x000000003f411390 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x000000003f411399 0x3 + 0x000000003f412160 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f412169 0x3 .rodata.arg_print_option.str1.4 - 0x000000003f41139c 0x2 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x000000003f41139e 0x2 + 0x000000003f41216c 0x2 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f41216e 0x2 .rodata.arg_date_errorfn.str1.4 - 0x000000003f4113a0 0x78 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x000000003f412170 0x78 esp-idf/console/libconsole.a(argtable3.c.obj) 0x7c (size before relaxing) .rodata.arg_dbl_errorfn.str1.4 - 0x000000003f411418 0x21 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x000000003f411439 0x3 + 0x000000003f4121e8 0x21 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f412209 0x3 .rodata.arg_int_errorfn.str1.4 - 0x000000003f41143c 0x2f esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x000000003f41146b 0x1 + 0x000000003f41220c 0x2f esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f41223b 0x1 .rodata.arg_print_syntax.str1.4 - 0x000000003f41146c 0x1d esp-idf/console/libconsole.a(argtable3.c.obj) + 0x000000003f41223c 0x1d esp-idf/console/libconsole.a(argtable3.c.obj) 0x21 (size before relaxing) - *fill* 0x000000003f411489 0x3 + *fill* 0x000000003f412259 0x3 .rodata.arg_print_glossary.str1.4 - 0x000000003f41148c 0xf esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x000000003f41149b 0x1 + 0x000000003f41225c 0xf esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f41226b 0x1 .rodata.getCursorPosition.str1.4 - 0x000000003f41149c 0xe esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x000000003f4114aa 0x2 + 0x000000003f41226c 0xe esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f41227a 0x2 .rodata.getColumns.str1.4 - 0x000000003f4114ac 0xe esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x000000003f4114ba 0x2 + 0x000000003f41227c 0xe esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f41228a 0x2 .rodata.linenoiseDumb.str1.4 - 0x000000003f4114bc 0x3 esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x000000003f4114bf 0x1 + 0x000000003f41228c 0x3 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f41228f 0x1 .rodata.linenoiseClearScreen.str1.4 - 0x000000003f4114c0 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003f412290 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) .rodata.refreshShowHints.str1.4 - 0x000000003f4114c8 0x11 esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x000000003f4114d9 0x3 + 0x000000003f412298 0x11 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f4122a9 0x3 .rodata.refreshMultiLine.str1.4 - 0x000000003f4114dc 0x2b esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003f4122ac 0x2b esp-idf/console/libconsole.a(linenoise.c.obj) 0x2f (size before relaxing) - *fill* 0x000000003f411507 0x1 + *fill* 0x000000003f4122d7 0x1 .rodata.refreshSingleLine.str1.4 - 0x000000003f411508 0x5 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003f4122d8 0x5 esp-idf/console/libconsole.a(linenoise.c.obj) .rodata.completeLine.str1.4 - 0x000000003f41150d 0x3 esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x000000003f41150d 0x3 + 0x000000003f4122dd 0x3 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f4122dd 0x3 .rodata.linenoiseProbe.str1.4 - 0x000000003f411510 0x5 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003f4122e0 0x5 esp-idf/console/libconsole.a(linenoise.c.obj) .rodata.linenoiseEdit.str1.4 - 0x000000003f411515 0x1 esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x000000003f411515 0x3 + 0x000000003f4122e5 0x1 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f4122e5 0x3 .rodata.linenoiseEdit - 0x000000003f411518 0x220 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003f4122e8 0x220 esp-idf/console/libconsole.a(linenoise.c.obj) .rodata.linenoiseHistorySave.str1.4 - 0x000000003f411738 0x5 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003f412508 0x5 esp-idf/console/libconsole.a(linenoise.c.obj) 0x8 (size before relaxing) .rodata.linenoiseHistoryLoad.str1.4 - 0x000000003f411738 0x2 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000003f412508 0x2 esp-idf/console/libconsole.a(linenoise.c.obj) .rodata.httpd_sock_err.str1.4 - 0x000000003f411738 0x38 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000003f412508 0x38 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) .rodata.httpd_resp_send.str1.4 - 0x000000003f411770 0x37 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000003f412540 0x37 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x3b (size before relaxing) - *fill* 0x000000003f4117a7 0x1 + *fill* 0x000000003f412577 0x1 .rodata.httpd_resp_send_chunk.str1.4 - 0x000000003f4117a8 0x41 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - *fill* 0x000000003f4117e9 0x3 + 0x000000003f412578 0x41 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x000000003f4125b9 0x3 .rodata.httpd_resp_send_err.str1.4 - 0x000000003f4117ec 0x339 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000003f4125bc 0x339 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x345 (size before relaxing) - *fill* 0x000000003f411b25 0x3 + *fill* 0x000000003f4128f5 0x3 .rodata.httpd_resp_send_err - 0x000000003f411b28 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000003f4128f8 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) .rodata.httpd_default_send.str1.4 - 0x000000003f411b50 0x5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - *fill* 0x000000003f411b55 0x3 + 0x000000003f412920 0x5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x000000003f412925 0x3 .rodata.httpd_default_recv.str1.4 - 0x000000003f411b58 0x5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - *fill* 0x000000003f411b5d 0x3 + 0x000000003f412928 0x5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x000000003f41292d 0x3 .rodata.__func__$7617 - 0x000000003f411b60 0xf esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - *fill* 0x000000003f411b6f 0x1 + 0x000000003f412930 0xf esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x000000003f41293f 0x1 .rodata.__func__$7584 - 0x000000003f411b70 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000003f412940 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) .rodata.httpd_register_uri_handler.str1.4 - 0x000000003f411b84 0x95 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - *fill* 0x000000003f411c19 0x3 + 0x000000003f412954 0x95 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x000000003f4129e9 0x3 .rodata.httpd_uri.str1.4 - 0x000000003f411c1c 0xa8 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x000000003f4129ec 0xa8 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) .rodata.__func__$7535 - 0x000000003f411cc4 0xa esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - *fill* 0x000000003f411cce 0x2 + 0x000000003f412a94 0xa esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x000000003f412a9e 0x2 .rodata.__func__$7485 - 0x000000003f411cd0 0x1b esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - *fill* 0x000000003f411ceb 0x1 + 0x000000003f412aa0 0x1b esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x000000003f412abb 0x1 .rodata.httpd_sess_new.str1.4 - 0x000000003f411cec 0x4b esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - *fill* 0x000000003f411d37 0x1 + 0x000000003f412abc 0x4b esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x000000003f412b07 0x1 .rodata.httpd_sess_delete_invalid.str1.4 - 0x000000003f411d38 0x35 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - *fill* 0x000000003f411d6d 0x3 + 0x000000003f412b08 0x35 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x000000003f412b3d 0x3 .rodata.__func__$7527 - 0x000000003f411d70 0x1a esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - *fill* 0x000000003f411d8a 0x2 + 0x000000003f412b40 0x1a esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x000000003f412b5a 0x2 .rodata.__func__$7471 - 0x000000003f411d8c 0xf esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - *fill* 0x000000003f411d9b 0x1 + 0x000000003f412b5c 0xf esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x000000003f412b6b 0x1 .rodata.httpd_process_ctrl_msg.str1.4 - 0x000000003f411d9c 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f411dfe 0x2 + 0x000000003f412b6c 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f412bce 0x2 .rodata.httpd_accept_conn.str1.4 - 0x000000003f411e00 0x63 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f411e63 0x1 + 0x000000003f412bd0 0x63 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f412c33 0x1 .rodata.httpd_server.str1.4 - 0x000000003f411e64 0x6a esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f411ece 0x2 + 0x000000003f412c34 0x6a esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f412c9e 0x2 .rodata.httpd_create.str1.4 - 0x000000003f411ed0 0x185 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f412055 0x3 + 0x000000003f412ca0 0x185 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f412e25 0x3 .rodata.httpd_server_init.str1.4 - 0x000000003f412058 0x149 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f4121a1 0x3 + 0x000000003f412e28 0x149 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f412f71 0x3 .rodata.httpd_queue_work.str1.4 - 0x000000003f4121a4 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x000000003f412f74 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) .rodata.httpd_start.str1.4 - 0x000000003f4121d4 0xa1 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f412275 0x3 + 0x000000003f412fa4 0xa1 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f413045 0x3 .rodata.__func__$7543 - 0x000000003f412278 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f41228a 0x2 + 0x000000003f413048 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f41305a 0x2 .rodata.__func__$7554 - 0x000000003f41228c 0xd esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f412299 0x3 + 0x000000003f41305c 0xd esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f413069 0x3 .rodata.__func__$7472 - 0x000000003f41229c 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f4122ae 0x2 + 0x000000003f41306c 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f41307e 0x2 .rodata.__func__$7509 - 0x000000003f4122b0 0x17 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f4122c7 0x1 + 0x000000003f413080 0x17 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f413097 0x1 .rodata.__func__$7525 - 0x000000003f4122c8 0xd esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f4122d5 0x3 + 0x000000003f413098 0xd esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f4130a5 0x3 .rodata.__func__$7489 - 0x000000003f4122d8 0x11 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x000000003f4122e9 0x3 + 0x000000003f4130a8 0x11 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f4130b9 0x3 .rodata.cb_header_value.str1.4 - 0x000000003f4122ec 0x43 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x000000003f41232f 0x1 + 0x000000003f4130bc 0x43 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f4130ff 0x1 .rodata.cb_url.str1.4 - 0x000000003f412330 0x47 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x000000003f412377 0x1 + 0x000000003f413100 0x47 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f413147 0x1 .rodata.verify_url.str1.4 - 0x000000003f412378 0x84 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x000000003f413148 0x84 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) .rodata.cb_headers_complete.str1.4 - 0x000000003f4123fc 0x89 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x000000003f412485 0x3 + 0x000000003f4131cc 0x89 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f413255 0x3 .rodata.pause_parsing.str1.4 - 0x000000003f412488 0x77 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x000000003f4124ff 0x1 + 0x000000003f413258 0x77 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f4132cf 0x1 .rodata.parse_block.str1.4 - 0x000000003f412500 0xd5 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x000000003f4125d5 0x3 + 0x000000003f4132d0 0xd5 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f4133a5 0x3 .rodata.httpd_req_new.str1.4 - 0x000000003f4125d8 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x000000003f4133a8 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x12 (size before relaxing) - *fill* 0x000000003f4125df 0x1 + *fill* 0x000000003f4133af 0x1 .rodata.__func__$7572 - 0x000000003f4125e0 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x000000003f4133b0 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) .rodata.__func__$7489 - 0x000000003f4125ec 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x000000003f4125f3 0x1 + 0x000000003f4133bc 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f4133c3 0x1 .rodata.__func__$7513 - 0x000000003f4125f4 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x000000003f4133c4 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) .rodata.__func__$7528 - 0x000000003f412604 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x000000003f4133d4 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) .rodata.__func__$7535 - 0x000000003f412614 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x000000003f4133e4 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) .rodata.__func__$7548 - 0x000000003f412628 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x000000003f412633 0x1 + 0x000000003f4133f8 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f413403 0x1 .rodata.__func__$7498 - 0x000000003f412634 0xe esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x000000003f412642 0x2 + 0x000000003f413404 0xe esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f413412 0x2 .rodata.__func__$7482 - 0x000000003f412644 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x000000003f41264f 0x1 + 0x000000003f413414 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f41341f 0x1 .rodata.__func__$7553 - 0x000000003f412650 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x000000003f41265b 0x1 + 0x000000003f413420 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f41342b 0x1 .rodata.cs_create_ctrl_sock.str1.4 - 0x000000003f41265c 0xa esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - *fill* 0x000000003f412666 0x2 + 0x000000003f41342c 0xa esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + *fill* 0x000000003f413436 0x2 .rodata.httpd_ssl_close.str1.4 - 0x000000003f412668 0x55 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - *fill* 0x000000003f4126bd 0x3 + 0x000000003f413438 0x55 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f41348d 0x3 .rodata.httpd_ssl_open.str1.4 - 0x000000003f4126c0 0xa8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x000000003f413490 0xa8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) .rodata.httpd_ssl_recv.str1.4 - 0x000000003f412768 0xc esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x000000003f413538 0xc esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) .rodata.free_secure_context.str1.4 - 0x000000003f412768 0x40 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x000000003f413538 0x40 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) .rodata.create_secure_context.str1.4 - 0x000000003f4127a8 0x31 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - *fill* 0x000000003f4127d9 0x3 + 0x000000003f413578 0x31 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f4135a9 0x3 .rodata.httpd_ssl_start.str1.4 - 0x000000003f4127dc 0x53 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x000000003f4135ac 0x53 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x7b (size before relaxing) - *fill* 0x000000003f41282f 0x1 + *fill* 0x000000003f4135ff 0x1 .rodata.__func__$10788 - 0x000000003f412830 0x14 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x000000003f413600 0x14 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) .rodata.__func__$10751 - 0x000000003f412844 0x10 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x000000003f413614 0x10 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) .rodata.__func__$10775 - 0x000000003f412854 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - *fill* 0x000000003f412863 0x1 + 0x000000003f413624 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f413633 0x1 .rodata.__func__$10766 - 0x000000003f412864 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - *fill* 0x000000003f412873 0x1 + 0x000000003f413634 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f413643 0x1 .rodata.__func__$10757 - 0x000000003f412874 0x12 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - *fill* 0x000000003f412886 0x2 + 0x000000003f413644 0x12 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f413656 0x2 .rodata.__func__$10780 - 0x000000003f412888 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - *fill* 0x000000003f412897 0x1 + 0x000000003f413658 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f413667 0x1 .rodata.__func__$10798 - 0x000000003f412898 0x10 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x000000003f413668 0x10 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) .rodata.esp_vfs_fat_spiflash_mount.str1.4 - 0x000000003f4128a8 0x248 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + 0x000000003f413678 0x248 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) .rodata.ff_diskio_register.str1.4 - 0x000000003f412af0 0x5d esp-idf/fatfs/libfatfs.a(diskio.c.obj) - *fill* 0x000000003f412b4d 0x3 + 0x000000003f4138c0 0x5d esp-idf/fatfs/libfatfs.a(diskio.c.obj) + *fill* 0x000000003f41391d 0x3 .rodata.__func__$5424 - 0x000000003f412b50 0x13 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - *fill* 0x000000003f412b63 0x1 + 0x000000003f413920 0x13 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + *fill* 0x000000003f413933 0x1 .rodata.ff_wl_read.str1.4 - 0x000000003f412b64 0x8f esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - *fill* 0x000000003f412bf3 0x1 + 0x000000003f413934 0x8f esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + *fill* 0x000000003f4139c3 0x1 .rodata.ff_wl_write.str1.4 - 0x000000003f412bf4 0x60 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x000000003f4139c4 0x60 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) .rodata.wl_impl$5558 - 0x000000003f412c54 0x14 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x000000003f413a24 0x14 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) .rodata.__func__$5549 - 0x000000003f412c68 0xc esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x000000003f413a38 0xc esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) .rodata.__func__$5541 - 0x000000003f412c74 0xc esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x000000003f413a44 0xc esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) .rodata.__func__$5532 - 0x000000003f412c80 0xb esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - *fill* 0x000000003f412c8b 0x1 + 0x000000003f413a50 0xb esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + *fill* 0x000000003f413a5b 0x1 .rodata.create_name.str1.4 - 0x000000003f412c8c 0xf esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x000000003f412c9b 0x1 + 0x000000003f413a5c 0xf esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000003f413a6b 0x1 .rodata.check_fs.str1.4 - 0x000000003f412c9c 0xa esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x000000003f412ca6 0x2 + 0x000000003f413a6c 0xa esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000003f413a76 0x2 .rodata.f_mkfs.str1.4 - 0x000000003f412ca8 0x34 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x000000003f413a78 0x34 esp-idf/fatfs/libfatfs.a(ff.c.obj) .rodata.cst$5290 - 0x000000003f412cdc 0xe esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x000000003f412cea 0x2 + 0x000000003f413aac 0xe esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000003f413aba 0x2 .rodata.cst32$5291 - 0x000000003f412cec 0xe esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x000000003f412cfa 0x2 - .rodata.ExCvt 0x000000003f412cfc 0x80 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x000000003f413abc 0xe esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000003f413aca 0x2 + .rodata.ExCvt 0x000000003f413acc 0x80 esp-idf/fatfs/libfatfs.a(ff.c.obj) .rodata.prepend_drive_to_path.str1.4 - 0x000000003f412d7c 0x5 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x000000003f412d81 0x3 + 0x000000003f413b4c 0x5 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f413b51 0x3 .rodata.fresult_to_errno.str1.4 - 0x000000003f412d84 0x55 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x000000003f412dd9 0x3 + 0x000000003f413b54 0x55 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f413ba9 0x3 .rodata.fresult_to_errno - 0x000000003f412ddc 0x50 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x000000003f413bac 0x50 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .rodata.vfs_fat_telldir.str1.4 - 0x000000003f412e2c 0x5 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x000000003f412e31 0x3 + 0x000000003f413bfc 0x5 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f413c01 0x3 .rodata.vfs_fat_truncate.str1.4 - 0x000000003f412e34 0x47 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x000000003f412e7b 0x1 + 0x000000003f413c04 0x47 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f413c4b 0x1 .rodata.vfs_fat_open.str1.4 - 0x000000003f412e7c 0x36 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x000000003f413c4c 0x36 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .rodata.vfs_fat_stat.str1.4 - 0x000000003f412eb2 0x2 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x000000003f412eb2 0x2 + 0x000000003f413c82 0x2 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f413c82 0x2 .rodata.__func__$6814 - 0x000000003f412eb4 0x12 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x000000003f412ec6 0x2 + 0x000000003f413c84 0x12 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f413c96 0x2 .rodata.__func__$6821 - 0x000000003f412ec8 0x10 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x000000003f413c98 0x10 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .rodata.__func__$6828 - 0x000000003f412ed8 0x10 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x000000003f413ca8 0x10 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .rodata.__func__$6798 - 0x000000003f412ee8 0x11 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x000000003f412ef9 0x3 + 0x000000003f413cb8 0x11 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f413cc9 0x3 .rodata.__func__$6624 - 0x000000003f412efc 0x11 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x000000003f412f0d 0x3 + 0x000000003f413ccc 0x11 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f413cdd 0x3 .rodata._ZL12check_handleiPKc.str1.4 - 0x000000003f412f10 0xb4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x000000003f413ce0 0xb4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) .rodata.wl_mount.str1.4 - 0x000000003f412fc4 0x12d esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - *fill* 0x000000003f4130f1 0x3 + 0x000000003f413d94 0x12d esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000003f413ec1 0x3 .rodata._ZZ14wl_sector_sizeE8__func__ - 0x000000003f4130f4 0xf esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - *fill* 0x000000003f413103 0x1 + 0x000000003f413ec4 0xf esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000003f413ed3 0x1 .rodata._ZZ7wl_sizeE8__func__ - 0x000000003f413104 0x8 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x000000003f413ed4 0x8 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) .rodata._ZZ7wl_readE8__func__ - 0x000000003f41310c 0x8 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x000000003f413edc 0x8 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) .rodata._ZZ8wl_writeE8__func__ - 0x000000003f413114 0x9 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - *fill* 0x000000003f41311d 0x3 + 0x000000003f413ee4 0x9 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000003f413eed 0x3 .rodata._ZZ14wl_erase_rangeE8__func__ - 0x000000003f413120 0xf esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - *fill* 0x000000003f41312f 0x1 + 0x000000003f413ef0 0xf esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000003f413eff 0x1 .rodata._ZZ8wl_mountE8__func__ - 0x000000003f413130 0x9 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - *fill* 0x000000003f413139 0x3 + 0x000000003f413f00 0x9 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000003f413f09 0x3 .rodata._ZN9Partition11erase_rangeEjj.str1.4 - 0x000000003f41313c 0x66 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - *fill* 0x000000003f4131a2 0x2 + 0x000000003f413f0c 0x66 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + *fill* 0x000000003f413f72 0x2 .rodata._ZTV9Partition - 0x000000003f4131a4 0x2c esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - 0x000000003f4131a4 _ZTV9Partition + 0x000000003f413f74 0x2c esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x000000003f413f74 _ZTV9Partition .rodata._ZN8WL_Flash11erase_rangeEjj.str1.4 - 0x000000003f4131d0 0x3b esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f41320b 0x1 + 0x000000003f413fa0 0x3b esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f413fdb 0x1 .rodata._ZN8WL_Flash11updateV1_V2Ev.str1.4 - 0x000000003f41320c 0x8a esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f413296 0x2 + 0x000000003f413fdc 0x8a esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f414066 0x2 .rodata._ZN8WL_Flash4initEv.str1.4 - 0x000000003f413298 0x73 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f41330b 0x1 + 0x000000003f414068 0x73 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f4140db 0x1 .rodata._ZN8WL_Flash8updateWLEv.str1.4 - 0x000000003f41330c 0x1ab esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f4134b7 0x1 + 0x000000003f4140dc 0x1ab esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f414287 0x1 .rodata._ZZN8WL_Flash4readEjPvjE12__FUNCTION__ - 0x000000003f4134b8 0x5 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f4134bd 0x3 + 0x000000003f414288 0x5 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f41428d 0x3 .rodata._ZZN8WL_Flash5writeEjPKvjE12__FUNCTION__ - 0x000000003f4134c0 0x6 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f4134c6 0x2 + 0x000000003f414290 0x6 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f414296 0x2 .rodata._ZZN8WL_Flash11erase_rangeEjjE12__FUNCTION__ - 0x000000003f4134c8 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x000000003f414298 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) .rodata._ZZN8WL_Flash12erase_sectorEjE12__FUNCTION__ - 0x000000003f4134d4 0xd esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f4134e1 0x3 + 0x000000003f4142a4 0xd esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f4142b1 0x3 .rodata._ZZN8WL_Flash8updateWLEvE12__FUNCTION__ - 0x000000003f4134e4 0x9 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f4134ed 0x3 + 0x000000003f4142b4 0x9 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f4142bd 0x3 .rodata._ZZN8WL_Flash8updateWLEvE8__func__ - 0x000000003f4134f0 0x9 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f4134f9 0x3 + 0x000000003f4142c0 0x9 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f4142c9 0x3 .rodata._ZZN8WL_Flash11updateV1_V2EvE8__func__ - 0x000000003f4134fc 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x000000003f4142cc 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) .rodata._ZZN8WL_Flash11updateV1_V2EvE12__FUNCTION__ - 0x000000003f413508 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x000000003f4142d8 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) .rodata._ZZN8WL_Flash12initSectionsEvE12__FUNCTION__ - 0x000000003f413514 0xd esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f413521 0x3 + 0x000000003f4142e4 0xd esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f4142f1 0x3 .rodata._ZZN8WL_Flash10recoverPosEvE12__FUNCTION__ - 0x000000003f413524 0xb esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f41352f 0x1 + 0x000000003f4142f4 0xb esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f4142ff 0x1 .rodata._ZZN8WL_Flash4initEvE8__func__ - 0x000000003f413530 0x5 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f413535 0x3 + 0x000000003f414300 0x5 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f414305 0x3 .rodata._ZZN8WL_Flash4initEvE12__FUNCTION__ - 0x000000003f413538 0x5 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f41353d 0x3 + 0x000000003f414308 0x5 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f41430d 0x3 .rodata._ZZN8WL_Flash6configEP11WL_Config_sP12Flash_AccessE12__FUNCTION__ - 0x000000003f413540 0x7 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - *fill* 0x000000003f413547 0x1 + 0x000000003f414310 0x7 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f414317 0x1 .rodata._ZTV8WL_Flash - 0x000000003f413548 0x34 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x000000003f413548 _ZTV8WL_Flash + 0x000000003f414318 0x34 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x000000003f414318 _ZTV8WL_Flash .rodata.vfs_spiffs_telldir.str1.4 - 0x000000003f41357c 0x39 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f41434c 0x39 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x41 (size before relaxing) - *fill* 0x000000003f4135b5 0x3 + *fill* 0x000000003f414385 0x3 .rodata.esp_spiffs_init.str1.4 - 0x000000003f4135b8 0x2f0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f414388 0x2f0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x2f8 (size before relaxing) .rodata.vfs_spiffs_update_mtime_value.str1.4 - 0x000000003f4138a8 0x33 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f414678 0x33 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .rodata.vfs_spiffs_utime.str1.4 - 0x000000003f4138db 0x33 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f4146ab 0x33 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x5 (size before relaxing) .rodata.vfs_spiffs_readdir_r.str1.4 - 0x000000003f4138db 0x3 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f4146ab 0x3 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .rodata.vfs_spiffs_opendir.str1.4 - 0x000000003f4138db 0x33 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f4146ab 0x33 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x5 (size before relaxing) - *fill* 0x000000003f4138db 0x1 + *fill* 0x000000003f4146ab 0x1 .rodata.vfs_spiffs_rename.str1.4 - 0x000000003f4138dc 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f4146ac 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .rodata.vfs_spiffs_stat.str1.4 - 0x000000003f4138e4 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f4146b4 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x3 (size before relaxing) .rodata.esp_vfs_spiffs_register.str1.4 - 0x000000003f4138e4 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f4146b4 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .rodata.__func__$7764 - 0x000000003f4138f4 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f4146c4 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .rodata.__func__$7803 - 0x000000003f413904 0x11 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x000000003f413915 0x3 + 0x000000003f4146d4 0x11 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x000000003f4146e5 0x3 .rodata.__func__$7812 - 0x000000003f413918 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f4146e8 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .rodata.__func__$7828 - 0x000000003f413928 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x000000003f41393a 0x2 + 0x000000003f4146f8 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x000000003f41470a 0x2 .rodata.__func__$7821 - 0x000000003f41393c 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x000000003f41394e 0x2 + 0x000000003f41470c 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x000000003f41471e 0x2 .rodata.__func__$7835 - 0x000000003f413950 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x000000003f413963 0x1 + 0x000000003f414720 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x000000003f414733 0x1 .rodata.__func__$7850 - 0x000000003f413964 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x000000003f413977 0x1 + 0x000000003f414734 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x000000003f414747 0x1 .rodata.__func__$7860 - 0x000000003f413978 0x15 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x000000003f41398d 0x3 + 0x000000003f414748 0x15 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x000000003f41475d 0x3 .rodata.__func__$7872 - 0x000000003f413990 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x000000003f4139a3 0x1 + 0x000000003f414760 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x000000003f414773 0x1 .rodata.__func__$7879 - 0x000000003f4139a4 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x000000003f4139b7 0x1 + 0x000000003f414774 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x000000003f414787 0x1 .rodata.__func__$7842 - 0x000000003f4139b8 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f414788 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .rodata.__func__$7924 - 0x000000003f4139cc 0x11 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x000000003f4139dd 0x3 + 0x000000003f41479c 0x11 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x000000003f4147ad 0x3 .rodata.__func__$7726 - 0x000000003f4139e0 0x18 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000003f4147b0 0x18 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .rodata.spiffs_api_read.str1.4 - 0x000000003f4139f8 0x43 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x000000003f4147c8 0x43 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x4b (size before relaxing) - *fill* 0x000000003f413a3b 0x1 + *fill* 0x000000003f41480b 0x1 .rodata.spiffs_api_write.str1.4 - 0x000000003f413a3c 0x44 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x000000003f41480c 0x44 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) .rodata.spiffs_api_erase.str1.4 - 0x000000003f413a80 0x44 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x000000003f414850 0x44 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) .rodata.spiffs_api_check.str1.4 - 0x000000003f413ac4 0x38 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x000000003f414894 0x38 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) .rodata.str1.4 - 0x000000003f413afc 0x65 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x000000003f4148cc 0x65 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x75 (size before relaxing) - *fill* 0x000000003f413b61 0x3 + *fill* 0x000000003f414931 0x3 .rodata.spiffs_check_report_str$7070 - 0x000000003f413b64 0x1c esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x000000003f414934 0x1c esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) .rodata.spiffs_check_type_str$7069 - 0x000000003f413b80 0xc esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x000000003f414950 0xc esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .rodata.sysmon_task.str1.4 + 0x000000003f41495c 0x75 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + *fill* 0x000000003f4149d1 0x3 + .rodata.sysmon_create.str1.4 + 0x000000003f4149d4 0x4 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .rodata.disp_spi_add_device_config.str1.4 + 0x000000003f4149d8 0x5a esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + *fill* 0x000000003f414a32 0x2 + .rodata.__func__$11169 + 0x000000003f414a34 0xe esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + *fill* 0x000000003f414a42 0x2 + .rodata.__func__$11159 + 0x000000003f414a44 0x1b esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + *fill* 0x000000003f414a5f 0x1 + .rodata.ili9341_enable_backlight.str1.4 + 0x000000003f414a60 0x45 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + *fill* 0x000000003f414aa5 0x3 + .rodata.ili9341_init.str1.4 + 0x000000003f414aa8 0x2f esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + *fill* 0x000000003f414ad7 0x1 + .rodata.lv_disp_get_scr_act.str1.4 + 0x000000003f414ad8 0x7f esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + *fill* 0x000000003f414b57 0x1 + .rodata.lv_disp_get_layer_top.str1.4 + 0x000000003f414b58 0x39 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + *fill* 0x000000003f414b91 0x3 + .rodata.lv_disp_get_layer_sys.str1.4 + 0x000000003f414b94 0x39 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + *fill* 0x000000003f414bcd 0x3 + .rodata.lv_init.str1.4 + 0x000000003f414bd0 0x5e esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + *fill* 0x000000003f414c2e 0x2 + .rodata.lv_obj_get_disp.str1.4 + 0x000000003f414c30 0x22 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + *fill* 0x000000003f414c52 0x2 + .rodata.lv_obj_align + 0x000000003f414c54 0x54 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .rodata.lv_obj_align_origo + 0x000000003f414ca8 0x54 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .rodata.lv_obj_set_parent.str1.4 + 0x000000003f414cfc 0x4a esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + *fill* 0x000000003f414d46 0x2 + .rodata.lv_obj_create.str1.4 + 0x000000003f414d48 0x50 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .rodata.lv_obj_signal.str1.4 + 0x000000003f414d98 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + *fill* 0x000000003f414d9f 0x1 + .rodata.lv_refr_area.str1.4 + 0x000000003f414da0 0x97 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + *fill* 0x000000003f414e37 0x1 + .rodata 0x000000003f414e38 0xa esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + *fill* 0x000000003f414e42 0x2 + .rodata.seg1$4572 + 0x000000003f414e44 0x1 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + *fill* 0x000000003f414e45 0x3 + .rodata.seg2$4573 + 0x000000003f414e48 0x2 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + *fill* 0x000000003f414e4a 0x2 + .rodata.seg3$4574 + 0x000000003f414e4c 0x3 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + *fill* 0x000000003f414e4f 0x1 + .rodata.seg4$4575 + 0x000000003f414e50 0x4 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .rodata.seg5$4576 + 0x000000003f414e54 0x5 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + *fill* 0x000000003f414e59 0x3 + .rodata.seg6$4577 + 0x000000003f414e5c 0x6 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + *fill* 0x000000003f414e62 0x2 + .rodata.seg7$4578 + 0x000000003f414e64 0x7 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + *fill* 0x000000003f414e6b 0x1 + .rodata.seg8$4579 + 0x000000003f414e6c 0x8 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .rodata.seg_map$4580 + 0x000000003f414e74 0x20 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .rodata.lv_draw_letter.str1.4 + 0x000000003f414e94 0x71 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + *fill* 0x000000003f414f05 0x3 + .rodata 0x000000003f414f08 0x14 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .rodata.opa_map8$4044 + 0x000000003f414f1c 0x8 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .rodata.opa_map4$4043 + 0x000000003f414f24 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .rodata.opa_map3$4042 + 0x000000003f414f28 0x3 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + *fill* 0x000000003f414f2b 0x1 + .rodata.opa_map2$4041 + 0x000000003f414f2c 0x2 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + *fill* 0x000000003f414f2e 0x2 + .rodata.lv_img_cache_open.str1.4 + 0x000000003f414f30 0x9e esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + *fill* 0x000000003f414fce 0x2 + .rodata.lv_img_decoder_built_in_info.str1.4 + 0x000000003f414fd0 0x76 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + *fill* 0x000000003f415046 0x2 + .rodata.lv_img_decoder_built_in_open.str1.4 + 0x000000003f415048 0x85 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + *fill* 0x000000003f4150cd 0x3 + .rodata.lv_img_decoder_built_in_line_true_color.str1.4 + 0x000000003f4150d0 0x47 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + *fill* 0x000000003f415117 0x1 + .rodata 0x000000003f415118 0x14 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .rodata.lv_img_decoder_built_in_read_line.str1.4 + 0x000000003f41512c 0x3a esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + *fill* 0x000000003f415166 0x2 + .rodata.lv_img_decoder_init.str1.4 + 0x000000003f415168 0x23 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + *fill* 0x000000003f41518b 0x1 + .rodata.kern_classes + 0x000000003f41518c 0x10 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .rodata.kern_class_values + 0x000000003f41519c 0x578 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .rodata.kern_right_class_mapping + 0x000000003f415714 0x99 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + *fill* 0x000000003f4157ad 0x3 + .rodata.kern_left_class_mapping + 0x000000003f4157b0 0x99 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + *fill* 0x000000003f415849 0x3 + .rodata.cmaps 0x000000003f41584c 0x28 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .rodata.unicode_list_1 + 0x000000003f415874 0x72 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + *fill* 0x000000003f4158e6 0x2 + .rodata.glyph_dsc + 0x000000003f4158e8 0x4c8 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .rodata.gylph_bitmap + 0x000000003f415db0 0x27c7 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .rodata.lv_fs_get_ext.str1.4 + 0x000000003f418577 0x1 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + *fill* 0x000000003f418577 0x1 + .rodata.lv_log_add.str1.4 + 0x000000003f418578 0x12 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + *fill* 0x000000003f41858a 0x2 + .rodata.str1.4 + 0x000000003f41858c 0x15 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + 0x1e (size before relaxing) + *fill* 0x000000003f4185a1 0x3 + .rodata.lvl_prefix$2609 + 0x000000003f4185a4 0x10 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .rodata.lv_mem_alloc.str1.4 + 0x000000003f4185b4 0x62 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + *fill* 0x000000003f418616 0x2 + .rodata.lv_chart_signal.str1.4 + 0x000000003f418618 0x9 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + *fill* 0x000000003f418621 0x3 + .rodata.lv_label_set_dot_tmp.str1.4 + 0x000000003f418624 0x74 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .rodata.lv_label_signal.str1.4 + 0x000000003f418698 0x9 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + *fill* 0x000000003f4186a1 0x3 + .rodata.lv_label_create.str1.4 + 0x000000003f4186a4 0x5 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + *fill* 0x000000003f4186a9 0x3 + .rodata.lv_win_get_style + 0x000000003f4186ac 0x18 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .rodata.lv_win_signal.str1.4 + 0x000000003f4186c4 0x7 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + *fill* 0x000000003f4186cb 0x1 + .rodata.lv_win_set_style + 0x000000003f4186cc 0x18 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .rodata.lv_win_create.str1.4 + 0x000000003f4186e4 0x9 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + *fill* 0x000000003f4186ed 0x3 + .rodata.lv_img_buf_get_px_alpha.str1.4 + 0x000000003f4186f0 0x10b esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + *fill* 0x000000003f4187fb 0x1 + .rodata.lv_img_color_format_get_px_size + 0x000000003f4187fc 0x2c esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .rodata.lv_img_draw_core.str1.4 + 0x000000003f418828 0x33 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + *fill* 0x000000003f41885b 0x1 + .rodata.lv_draw_img.str1.4 + 0x000000003f41885c 0x20 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .rodata.hex_char_to_num + 0x000000003f41887c 0x18 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .rodata.bits_write + 0x000000003f418894 0x20 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .rodata.lv_txt_get_next_word.str1.4 + 0x000000003f4188b4 0x8 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .rodata.lv_txt_get_size.str1.4 + 0x000000003f4188bc 0x86 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + *fill* 0x000000003f418942 0x2 + .rodata.lv_btn_set_style + 0x000000003f418944 0x14 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .rodata.lv_btn_signal.str1.4 + 0x000000003f418958 0x7 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + *fill* 0x000000003f41895f 0x1 + .rodata.lv_cont_signal.str1.4 + 0x000000003f418960 0x8 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .rodata.lv_img_design.str1.4 + 0x000000003f418968 0x72 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + *fill* 0x000000003f4189da 0x2 + .rodata.lv_img_set_src.str1.4 + 0x000000003f4189dc 0x43 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + *fill* 0x000000003f418a1f 0x1 + .rodata.lv_img_signal.str1.4 + 0x000000003f418a20 0x7 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + *fill* 0x000000003f418a27 0x1 + .rodata.lv_page_signal.str1.4 + 0x000000003f418a28 0x8 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .rodata.lv_page_scrollable_signal.str1.4 + 0x000000003f418a30 0x1 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) .rodata.s_prepare_reserved_regions.str1.4 - 0x000000003f413b8c 0x10c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x000000003f418a30 0x10c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) .rodata.__func__$2685 - 0x000000003f413c98 0x1b esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - *fill* 0x000000003f413cb3 0x1 + 0x000000003f418b3c 0x1b esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + *fill* 0x000000003f418b57 0x1 .rodata.rtcio_hal_set_direction.str1.4 - 0x000000003f413cb4 0xbc esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + 0x000000003f418b58 0xbc esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) 0x1c0 (size before relaxing) .rodata.__func__$3470 - 0x000000003f413d70 0x1a esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - *fill* 0x000000003f413d8a 0x2 + 0x000000003f418c14 0x1a esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + *fill* 0x000000003f418c2e 0x2 .rodata.__func__$3456 - 0x000000003f413d8c 0x18 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + 0x000000003f418c30 0x18 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) .rodata.__func__$3421 - 0x000000003f413da4 0x17 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - *fill* 0x000000003f413dbb 0x1 + 0x000000003f418c48 0x17 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + *fill* 0x000000003f418c5f 0x1 .rodata.soc_memory_region_count - 0x000000003f413dbc 0x4 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) - 0x000000003f413dbc soc_memory_region_count + 0x000000003f418c60 0x4 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f418c60 soc_memory_region_count .rodata.soc_memory_regions - 0x000000003f413dc0 0x2b0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) - 0x000000003f413dc0 soc_memory_regions + 0x000000003f418c64 0x2b0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f418c64 soc_memory_regions .rodata.str1.4 - 0x000000003f414070 0x95 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f418f14 0x95 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) 0xa5 (size before relaxing) - *fill* 0x000000003f414105 0x3 + *fill* 0x000000003f418fa9 0x3 .rodata.soc_memory_types - 0x000000003f414108 0x12c esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) - 0x000000003f414108 soc_memory_types + 0x000000003f418fac 0x12c esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f418fac soc_memory_types .rodata.mbedtls_mpi_write_string.str1.4 - 0x000000003f414234 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000003f4190d8 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) .rodata.mbedtls_mpi_write_file.str1.4 - 0x000000003f414245 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - *fill* 0x000000003f414245 0x3 + 0x000000003f4190e9 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x000000003f4190e9 0x3 .rodata.small_prime - 0x000000003f414248 0x2a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000003f4190ec 0x2a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) .rodata.str1.4 - 0x000000003f4144e8 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - *fill* 0x000000003f414576 0x2 + 0x000000003f41938c 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x000000003f41941a 0x2 .rodata.ecp_supported_curves - 0x000000003f414578 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000003f41941c 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) .rodata.ecp_use_curve25519.str1.4 - 0x000000003f414608 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - *fill* 0x000000003f414631 0x3 + 0x000000003f4194ac 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000003f4194d5 0x3 .rodata.mbedtls_ecp_group_load - 0x000000003f414634 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4194d8 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP512r1_n - 0x000000003f414668 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41950c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP512r1_gy - 0x000000003f4146a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41954c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP512r1_gx - 0x000000003f4146e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41958c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP512r1_b - 0x000000003f414728 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4195cc 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP512r1_a - 0x000000003f414768 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41960c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP512r1_p - 0x000000003f4147a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41964c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP384r1_n - 0x000000003f4147e8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41968c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP384r1_gy - 0x000000003f414818 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4196bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP384r1_gx - 0x000000003f414848 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4196ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP384r1_b - 0x000000003f414878 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41971c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP384r1_a - 0x000000003f4148a8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41974c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP384r1_p - 0x000000003f4148d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41977c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP256r1_n - 0x000000003f414908 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4197ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP256r1_gy - 0x000000003f414928 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4197cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP256r1_gx - 0x000000003f414948 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4197ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP256r1_b - 0x000000003f414968 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41980c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP256r1_a - 0x000000003f414988 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41982c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.brainpoolP256r1_p - 0x000000003f4149a8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41984c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256k1_n - 0x000000003f4149c8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41986c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256k1_gy - 0x000000003f4149e8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41988c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256k1_gx - 0x000000003f414a08 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4198ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256k1_b - 0x000000003f414a28 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4198cc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256k1_a - 0x000000003f414a2c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4198d0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256k1_p - 0x000000003f414a30 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4198d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224k1_n - 0x000000003f414a50 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4198f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224k1_gy - 0x000000003f414a70 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419914 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224k1_gx - 0x000000003f414a8c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419930 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224k1_b - 0x000000003f414aa8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f41994c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224k1_a - 0x000000003f414aac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419950 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224k1_p - 0x000000003f414ab0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419954 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192k1_n - 0x000000003f414acc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419970 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192k1_gy - 0x000000003f414ae4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419988 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192k1_gx - 0x000000003f414afc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4199a0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192k1_b - 0x000000003f414b14 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4199b8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192k1_a - 0x000000003f414b18 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4199bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192k1_p - 0x000000003f414b1c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4199c0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp521r1_n - 0x000000003f414b34 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f4199d8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp521r1_gy - 0x000000003f414b78 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419a1c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp521r1_gx - 0x000000003f414bbc 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419a60 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp521r1_b - 0x000000003f414c00 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419aa4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp521r1_p - 0x000000003f414c44 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419ae8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp384r1_n - 0x000000003f414c88 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419b2c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp384r1_gy - 0x000000003f414cb8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419b5c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp384r1_gx - 0x000000003f414ce8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419b8c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp384r1_b - 0x000000003f414d18 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419bbc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp384r1_p - 0x000000003f414d48 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419bec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256r1_n - 0x000000003f414d78 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419c1c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256r1_gy - 0x000000003f414d98 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419c3c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256r1_gx - 0x000000003f414db8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419c5c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256r1_b - 0x000000003f414dd8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419c7c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp256r1_p - 0x000000003f414df8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419c9c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224r1_n - 0x000000003f414e18 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419cbc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224r1_gy - 0x000000003f414e34 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419cd8 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224r1_gx - 0x000000003f414e50 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419cf4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224r1_b - 0x000000003f414e6c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419d10 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp224r1_p - 0x000000003f414e88 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419d2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192r1_n - 0x000000003f414ea8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419d4c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192r1_gy - 0x000000003f414ec0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419d64 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192r1_gx - 0x000000003f414ed8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419d7c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192r1_b - 0x000000003f414ef0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419d94 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.secp192r1_p - 0x000000003f414f08 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000003f419dac 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .rodata.mbedtls_strerror.str1.4 - 0x000000003f414f20 0x29aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) - *fill* 0x000000003f4178ca 0x2 + 0x000000003f419dc4 0x29aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + *fill* 0x000000003f41c76e 0x2 .rodata.mbedtls_md_info_from_type - 0x000000003f4178cc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003f41c770 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) .rodata.str1.4 - 0x000000003f4178e4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f41c788 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) .rodata.mbedtls_sha512_info - 0x000000003f4178e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x000000003f4178e4 mbedtls_sha512_info + 0x000000003f41c788 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f41c788 mbedtls_sha512_info .rodata.mbedtls_sha384_info - 0x000000003f417914 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x000000003f417914 mbedtls_sha384_info + 0x000000003f41c7b8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f41c7b8 mbedtls_sha384_info .rodata.mbedtls_sha256_info - 0x000000003f417944 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x000000003f417944 mbedtls_sha256_info + 0x000000003f41c7e8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f41c7e8 mbedtls_sha256_info .rodata.mbedtls_sha224_info - 0x000000003f417974 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x000000003f417974 mbedtls_sha224_info + 0x000000003f41c818 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f41c818 mbedtls_sha224_info .rodata.mbedtls_sha1_info - 0x000000003f4179a4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x000000003f4179a4 mbedtls_sha1_info + 0x000000003f41c848 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f41c848 mbedtls_sha1_info .rodata.mbedtls_md5_info - 0x000000003f4179d4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x000000003f4179d4 mbedtls_md5_info + 0x000000003f41c878 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f41c878 mbedtls_md5_info .rodata.rsa_debug.str1.4 - 0x000000003f417a04 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x000000003f417a12 0x2 + 0x000000003f41c8a8 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000003f41c8b6 0x2 .rodata.eckey_debug.str1.4 - 0x000000003f417a14 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f41c8b8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) .rodata.str1.4 - 0x000000003f417a1c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f41c8c0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) .rodata.mbedtls_ecdsa_info - 0x000000003f417a3c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x000000003f417a3c mbedtls_ecdsa_info + 0x000000003f41c8e0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f41c8e0 mbedtls_ecdsa_info .rodata.mbedtls_eckeydh_info - 0x000000003f417a6c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x000000003f417a6c mbedtls_eckeydh_info + 0x000000003f41c910 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f41c910 mbedtls_eckeydh_info .rodata.mbedtls_eckey_info - 0x000000003f417a9c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x000000003f417a9c mbedtls_eckey_info + 0x000000003f41c940 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f41c940 mbedtls_eckey_info .rodata.mbedtls_rsa_info - 0x000000003f417acc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x000000003f417acc mbedtls_rsa_info + 0x000000003f41c970 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f41c970 mbedtls_rsa_info .rodata.mbedtls_pkcs5_pbes2.str1.4 - 0x000000003f417afc 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - *fill* 0x000000003f417b06 0x2 + 0x000000003f41c9a0 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + *fill* 0x000000003f41c9aa 0x2 .rodata.pk_group_from_specified.str1.4 - 0x000000003f417b08 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x000000003f41c9ac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) .rodata.pk_parse_key_pkcs8_encrypted_der.str1.4 - 0x000000003f417b10 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - *fill* 0x000000003f417b26 0x2 + 0x000000003f41c9b4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + *fill* 0x000000003f41c9ca 0x2 .rodata.mbedtls_pk_load_file.str1.4 - 0x000000003f417b28 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x000000003f41c9cc 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x10 (size before relaxing) .rodata.mbedtls_pk_parse_key.str1.4 - 0x000000003f417b34 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - *fill* 0x000000003f417c36 0x2 + 0x000000003f41c9d8 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + *fill* 0x000000003f41cada 0x2 .rodata.mbedtls_pk_write_key_pem.str1.4 - 0x000000003f417c38 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .rodata 0x000000003f417cbc 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - *fill* 0x000000003f417cf2 0x2 + 0x000000003f41cadc 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata 0x000000003f41cb60 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + *fill* 0x000000003f41cb96 0x2 .rodata.esp_mpi_read_result_hw_op.str1.4 - 0x000000003f417cf4 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - *fill* 0x000000003f417d49 0x3 + 0x000000003f41cb98 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x000000003f41cbed 0x3 .rodata.__func__$3996 - 0x000000003f417d4c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - *fill* 0x000000003f417d5d 0x3 + 0x000000003f41cbf0 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x000000003f41cc01 0x3 .rodata.sha1_padding - 0x000000003f417d60 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000003f41cc04 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) .rodata.sha256_padding - 0x000000003f417da0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .rodata.K 0x000000003f417de0 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x000000003f41cc44 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.K 0x000000003f41cc84 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) .rodata.sha512_padding - 0x000000003f417ee0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - .rodata.K 0x000000003f417f60 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000003f41cd84 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x000000003f41ce04 0x4 + .rodata.K 0x000000003f41ce08 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) .rodata.mbedtls_cipher_set_padding_mode - 0x000000003f4181e0 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000003f41d088 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) .rodata.mbedtls_cipher_definitions - 0x000000003f4181f4 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x000000003f4181f4 mbedtls_cipher_definitions + 0x000000003f41d09c 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d09c mbedtls_cipher_definitions .rodata.str1.4 - 0x000000003f4182b4 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d15c 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_256_ccm_info - 0x000000003f4183d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d27c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_192_ccm_info - 0x000000003f4183f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d29c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_128_ccm_info - 0x000000003f418414 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d2bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.ccm_aes_info - 0x000000003f418434 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d2dc 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_256_gcm_info - 0x000000003f418460 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d308 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_192_gcm_info - 0x000000003f418480 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d328 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_128_gcm_info - 0x000000003f4184a0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d348 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.gcm_aes_info - 0x000000003f4184c0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d368 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_256_xts_info - 0x000000003f4184ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d394 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_128_xts_info - 0x000000003f41850c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d3b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.xts_aes_info - 0x000000003f41852c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d3d4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_256_ctr_info - 0x000000003f418558 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d400 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_192_ctr_info - 0x000000003f418578 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d420 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_128_ctr_info - 0x000000003f418598 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d440 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_256_ofb_info - 0x000000003f4185b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d460 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_192_ofb_info - 0x000000003f4185d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d480 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_128_ofb_info - 0x000000003f4185f8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d4a0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_256_cfb128_info - 0x000000003f418618 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d4c0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_192_cfb128_info - 0x000000003f418638 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d4e0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_128_cfb128_info - 0x000000003f418658 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d500 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_256_cbc_info - 0x000000003f418678 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d520 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_192_cbc_info - 0x000000003f418698 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d540 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_128_cbc_info - 0x000000003f4186b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d560 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_256_ecb_info - 0x000000003f4186d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d580 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_192_ecb_info - 0x000000003f4186f8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d5a0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_128_ecb_info - 0x000000003f418718 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d5c0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.aes_info - 0x000000003f418738 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f41d5e0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .rodata.ecdsa_sign_det_restartable.str1.4 - 0x000000003f418764 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - *fill* 0x000000003f418775 0x3 - .rodata.last4 0x000000003f418778 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000003f41d60c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + *fill* 0x000000003f41d61d 0x3 + .rodata.last4 0x000000003f41d620 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) .rodata.str1.4 - 0x000000003f4187f8 0xb1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000003f41d6a0 0xb1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) 0xbc9 (size before relaxing) - *fill* 0x000000003f419315 0x3 + *fill* 0x000000003f41e1bd 0x3 .rodata.oid_pkcs12_pbe_alg - 0x000000003f419318 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000003f41e1c0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) .rodata.oid_md_hmac - 0x000000003f419360 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000003f41e208 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) .rodata.oid_md_alg - 0x000000003f4193d8 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000003f41e280 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) .rodata.oid_cipher_alg - 0x000000003f419464 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .rodata 0x000000003f4194a0 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - *fill* 0x000000003f4194ce 0x2 + 0x000000003f41e30c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata 0x000000003f41e348 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x000000003f41e376 0x2 .rodata.oid_ecp_grp - 0x000000003f4194d0 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000003f41e378 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) .rodata.oid_pk_alg - 0x000000003f4195c0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000003f41e468 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) .rodata.oid_sig_alg - 0x000000003f419610 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000003f41e4b8 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) .rodata.oid_x509_ext - 0x000000003f419760 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000003f41e608 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) .rodata.oid_x520_attr_type - 0x000000003f4197d8 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000003f41e680 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) .rodata.mbedtls_pem_read_buffer.str1.4 - 0x000000003f419968 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - *fill* 0x000000003f4199d7 0x1 + 0x000000003f41e810 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + *fill* 0x000000003f41e87f 0x1 .rodata.sha_get_engine_state.str1.4 - 0x000000003f4199d8 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - *fill* 0x000000003f419a2a 0x2 + 0x000000003f41e880 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f41e8d2 0x2 .rodata.esp_sha_lock_engine_common.str1.4 - 0x000000003f419a2c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x000000003f41e8d4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) .rodata.esp_sha_read_digest_state.str1.4 - 0x000000003f419a40 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x000000003f41e8e8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) .rodata.__func__$5030 - 0x000000003f419a88 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - *fill* 0x000000003f419a96 0x2 + 0x000000003f41e930 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f41e93e 0x2 .rodata.__func__$5007 - 0x000000003f419a98 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - *fill* 0x000000003f419ab2 0x2 + 0x000000003f41e940 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f41e95a 0x2 .rodata.__func__$4973 - 0x000000003f419ab4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - *fill* 0x000000003f419ac9 0x3 + 0x000000003f41e95c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f41e971 0x3 .rodata.__func__$4989 - 0x000000003f419acc 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - *fill* 0x000000003f419ae7 0x1 + 0x000000003f41e974 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f41e98f 0x1 .rodata.base64_dec_map - 0x000000003f419ae8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x000000003f41e990 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) .rodata.base64_enc_map - 0x000000003f419b68 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x000000003f41ea10 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) .rodata.x509_date_is_valid - 0x000000003f419ba8 0x34 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000003f41ea50 0x34 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) .rodata.mbedtls_x509_get_rsassa_pss_params.str1.4 - 0x000000003f419bdc 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - *fill* 0x000000003f419be6 0x2 + 0x000000003f41ea84 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + *fill* 0x000000003f41ea8e 0x2 .rodata.mbedtls_x509_dn_gets.str1.4 - 0x000000003f419be8 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000003f41ea90 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) 0x13 (size before relaxing) .rodata.x509_crt_verify_name.str1.4 - 0x000000003f419bf4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .rodata 0x000000003f419bf4 0x5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - *fill* 0x000000003f419bf9 0x3 + 0x000000003f41ea9c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata 0x000000003f41ea9c 0x5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000003f41eaa1 0x3 .rodata.mbedtls_x509_crt_parse.str1.4 - 0x000000003f419bfc 0x36 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - *fill* 0x000000003f419c32 0x2 + 0x000000003f41eaa4 0x36 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000003f41eada 0x2 .rodata.mbedtls_x509_crt_profile_suiteb - 0x000000003f419c34 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x000000003f419c34 mbedtls_x509_crt_profile_suiteb + 0x000000003f41eadc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x000000003f41eadc mbedtls_x509_crt_profile_suiteb .rodata.mbedtls_x509_crt_profile_default - 0x000000003f419c44 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x000000003f419c44 mbedtls_x509_crt_profile_default + 0x000000003f41eaec 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x000000003f41eaec mbedtls_x509_crt_profile_default .rodata.mbedtls_x509_csr_parse.str1.4 - 0x000000003f419c54 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x000000003f41eafc 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) 0x98 (size before relaxing) .rodata.mbedtls_x509write_crt_set_basic_constraints.str1.4 - 0x000000003f419ca4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000003f41eb4c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) .rodata.mbedtls_x509write_crt_set_subject_key_identifier.str1.4 - 0x000000003f419ca4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000003f41eb4c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) .rodata.mbedtls_x509write_crt_set_authority_key_identifier.str1.4 - 0x000000003f419ca8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000003f41eb50 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) .rodata.mbedtls_x509write_crt_set_key_usage.str1.4 - 0x000000003f419cac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000003f41eb54 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) .rodata.mbedtls_x509write_crt_set_ns_cert_type.str1.4 - 0x000000003f419cac 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000003f41eb54 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) .rodata.mbedtls_x509write_crt_pem.str1.4 - 0x000000003f419cac 0x39 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - *fill* 0x000000003f419ce5 0x3 + 0x000000003f41eb54 0x39 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + *fill* 0x000000003f41eb8d 0x3 .rodata.str1.4 - 0x000000003f419ce8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x000000003f41eb90 0x88 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) 0x183 (size before relaxing) .rodata.x509_attrs - 0x000000003f419d70 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x000000003f41ec18 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) .rodata.get_ota_partition_count.str1.4 - 0x000000003f419f40 0x86 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - *fill* 0x000000003f419fc6 0x2 + 0x000000003f41ede8 0x86 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f41ee6e 0x2 .rodata.esp_ota_get_running_partition.str1.4 - 0x000000003f419fc8 0x33 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - *fill* 0x000000003f419ffb 0x1 + 0x000000003f41ee70 0x33 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f41eea3 0x1 .rodata.__func__$5954 - 0x000000003f419ffc 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - *fill* 0x000000003f41a01a 0x2 + 0x000000003f41eea4 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f41eec2 0x2 .rodata.GPIO_PIN_MUX_REG - 0x000000003f41a01c 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) - 0x000000003f41a01c GPIO_PIN_MUX_REG + 0x000000003f41eec4 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + 0x000000003f41eec4 GPIO_PIN_MUX_REG .rodata.rtc_io_desc - 0x000000003f41a0bc 0x3f0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) - 0x000000003f41a0bc rtc_io_desc + 0x000000003f41ef64 0x3f0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + 0x000000003f41ef64 rtc_io_desc .rodata.rtc_io_num_map - 0x000000003f41a4ac 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) - 0x000000003f41a4ac rtc_io_num_map + 0x000000003f41f354 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + 0x000000003f41f354 rtc_io_num_map + .rodata.spi_periph_signal + 0x000000003f41f3f4 0x6c esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + 0x000000003f41f3f4 spi_periph_signal .rodata.uart_periph_signal - 0x000000003f41a54c 0x24 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) - 0x000000003f41a54c uart_periph_signal + 0x000000003f41f460 0x24 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + 0x000000003f41f460 uart_periph_signal .rodata.esp_netif_action_connected.str1.4 - 0x000000003f41a570 0xa1 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - *fill* 0x000000003f41a611 0x3 + 0x000000003f41f484 0xa1 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003f41f525 0x3 .rodata.esp_netif_action_got_ip.str1.4 - 0x000000003f41a614 0x4e esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - *fill* 0x000000003f41a662 0x2 + 0x000000003f41f528 0x4e esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003f41f576 0x2 .rodata.__FUNCTION__$8478 - 0x000000003f41a664 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - *fill* 0x000000003f41a67f 0x1 + 0x000000003f41f578 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003f41f593 0x1 .rodata._g_esp_netif_soft_ap_ip - 0x000000003f41a680 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - 0x000000003f41a680 _g_esp_netif_soft_ap_ip + 0x000000003f41f594 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x000000003f41f594 _g_esp_netif_soft_ap_ip .rodata.str1.4 - 0x000000003f41a68c 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x000000003f41f5a0 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) .rodata._g_esp_netif_inherent_ap_config - 0x000000003f41a6c8 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - 0x000000003f41a6c8 _g_esp_netif_inherent_ap_config + 0x000000003f41f5dc 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x000000003f41f5dc _g_esp_netif_inherent_ap_config .rodata._g_esp_netif_inherent_sta_config - 0x000000003f41a6ec 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - 0x000000003f41a6ec _g_esp_netif_inherent_sta_config + 0x000000003f41f600 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x000000003f41f600 _g_esp_netif_inherent_sta_config .rodata.s_wifi_netif_config_sta - 0x000000003f41a710 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x000000003f41f624 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) .rodata.s_wifi_netif_config_ap - 0x000000003f41a718 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x000000003f41f62c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) .rodata.wpa_config_profile.str1.4 - 0x000000003f41a720 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000003f41f634 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0x5a (size before relaxing) - *fill* 0x000000003f41a776 0x2 + *fill* 0x000000003f41f68a 0x2 .rodata.wpa_sta_connect.str1.4 - 0x000000003f41a778 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - *fill* 0x000000003f41a781 0x3 + 0x000000003f41f68c 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + *fill* 0x000000003f41f695 0x3 .rodata.__func__$11618 - 0x000000003f41a784 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000003f41f698 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) .rodata.__func__$11580 - 0x000000003f41a794 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - *fill* 0x000000003f41a7a7 0x1 + 0x000000003f41f6a8 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + *fill* 0x000000003f41f6bb 0x1 .rodata.cipher_type_map_public_to_supp - 0x000000003f41a7a8 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000003f41f6bc 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) .rodata.wpa_derive_ptk.str1.4 - 0x000000003f41a7c4 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - *fill* 0x000000003f41a7db 0x1 + 0x000000003f41f6d8 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x000000003f41f6ef 0x1 .rodata.wpa_gen_wpa_ie_rsn.str1.4 - 0x000000003f41a7dc 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - *fill* 0x000000003f41a84e 0x2 + 0x000000003f41f6f0 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003f41f762 0x2 .rodata.wpa_gen_wpa_ie_wpa.str1.4 - 0x000000003f41a850 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - *fill* 0x000000003f41a876 0x2 + 0x000000003f41f764 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003f41f78a 0x2 .rodata.__func__$5103 - 0x000000003f41a878 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - *fill* 0x000000003f41a88b 0x1 + 0x000000003f41f78c 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003f41f79f 0x1 .rodata.__func__$5117 - 0x000000003f41a88c 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - *fill* 0x000000003f41a89f 0x1 + 0x000000003f41f7a0 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003f41f7b3 0x1 .rodata.printf_decode - 0x000000003f41a8a0 0x15c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000003f41f7b4 0x15c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) .rodata.wpa_group_init_gmk_and_counter.str1.4 - 0x000000003f41a9fc 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x000000003f41aa09 0x3 + 0x000000003f41f910 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003f41f91d 0x3 .rodata.wpa_gtk_update.str1.4 - 0x000000003f41aa0c 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x000000003f41aa33 0x1 + 0x000000003f41f920 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003f41f947 0x1 .rodata.wpa_group_config_group_keys.str1.4 - 0x000000003f41aa34 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000003f41f948 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .rodata.wpa_derive_ptk.str1.4 - 0x000000003f41aa3b 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x000000003f41aa3b 0x1 + 0x000000003f41f94f 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003f41f94f 0x1 .rodata.sm_WPA_PTK_Step - 0x000000003f41aa3c 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000003f41f950 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .rodata.wpa_receive - 0x000000003f41aa68 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000003f41f97c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .rodata.sae_test_pwd_seed_ecc.str1.4 - 0x000000003f41aa84 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000003f41f998 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) .rodata.sae_derive_keys.str1.4 - 0x000000003f41aa9c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .rodata 0x000000003f41aaac 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000003f41f9b0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata 0x000000003f41f9c0 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) .rodata.rsn_pmkid.str1.4 - 0x000000003f41aab8 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - *fill* 0x000000003f41aac1 0x3 + 0x000000003f41f9cc 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000003f41f9d5 0x3 .rodata.dh_groups - 0x000000003f41aac4 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x000000003f41f9d8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) .rodata.dh_group5_order - 0x000000003f41aae4 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x000000003f41f9f8 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) .rodata.dh_group5_prime - 0x000000003f41aba4 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x000000003f41fab8 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) .rodata.dh_group5_generator - 0x000000003f41ac64 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - *fill* 0x000000003f41ac65 0x3 + 0x000000003f41fb78 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + *fill* 0x000000003f41fb79 0x3 .rodata.pmksa_cache_init.str1.4 - 0x000000003f41ac68 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000003f41fb7c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) .rodata.str1.4 - 0x000000003f41ac7c 0x420 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003f41fb90 0x420 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) .rodata.str1.4 - 0x000000003f41b09c 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000003f41ffb0 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) .rodata.ieee80211_ethbroadcast - 0x000000003f41b170 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) - 0x000000003f41b170 ieee80211_ethbroadcast - *fill* 0x000000003f41b176 0x2 + 0x000000003f420084 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000003f420084 ieee80211_ethbroadcast + *fill* 0x000000003f42008a 0x2 .rodata.str1.4 - 0x000000003f41b178 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) - *fill* 0x000000003f41b20e 0x2 + 0x000000003f42008c 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + *fill* 0x000000003f420122 0x2 .rodata.str1.4 - 0x000000003f41b210 0x1a5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) - *fill* 0x000000003f41b3b5 0x3 + 0x000000003f420124 0x1a5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + *fill* 0x000000003f4202c9 0x3 .rodata.str1.4 - 0x000000003f41b3b8 0x1725 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0x000000003f4202cc 0x1725 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) 0x1779 (size before relaxing) - *fill* 0x000000003f41cadd 0x3 + *fill* 0x000000003f4219f1 0x3 .rodata.str1.4 - 0x000000003f41cae0 0x249 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003f4219f4 0x249 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x251 (size before relaxing) - *fill* 0x000000003f41cd29 0x3 + *fill* 0x000000003f421c3d 0x3 .rodata.str1.4 - 0x000000003f41cd2c 0x356 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x000000003f421c40 0x356 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x35e (size before relaxing) - *fill* 0x000000003f41d082 0x2 - .rodata 0x000000003f41d084 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + *fill* 0x000000003f421f96 0x2 + .rodata 0x000000003f421f98 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) .rodata.str1.4 - 0x000000003f41d094 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x000000003f421fa8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) .rodata.str1.4 - 0x000000003f41d094 0x332 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x000000003f421fa8 0x332 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0x342 (size before relaxing) - *fill* 0x000000003f41d3c6 0x2 - .rodata 0x000000003f41d3c8 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + *fill* 0x000000003f4222da 0x2 + .rodata 0x000000003f4222dc 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) .rodata.str1.4 - 0x000000003f41d3dc 0x9d3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003f4222f0 0x9d3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x9f7 (size before relaxing) - *fill* 0x000000003f41ddaf 0x1 - .rodata 0x000000003f41ddb0 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x000000003f41ddb6 0x2 + *fill* 0x000000003f422cc3 0x1 + .rodata 0x000000003f422cc4 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f422cca 0x2 .rodata.CSWTCH$253 - 0x000000003f41ddb8 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003f422ccc 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) .rodata.__FUNCTION__$10545 - 0x000000003f41dddc 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - *fill* 0x000000003f41ddf2 0x2 + 0x000000003f422cf0 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f422d06 0x2 .rodata.str1.4 - 0x000000003f41ddf4 0x35d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x000000003f422d08 0x35d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x371 (size before relaxing) - *fill* 0x000000003f41e151 0x3 + *fill* 0x000000003f423065 0x3 .rodata.wifi_nvs_set - 0x000000003f41e154 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x000000003f423068 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) .rodata.wifi_nvs_load - 0x000000003f41e194 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x000000003f4230a8 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) .rodata.str1.4 - 0x000000003f41e1b4 0x342 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000003f4230c8 0x342 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x34a (size before relaxing) - *fill* 0x000000003f41e4f6 0x2 - .rodata 0x000000003f41e4f8 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) - *fill* 0x000000003f41e4fe 0x2 + *fill* 0x000000003f42340a 0x2 + .rodata 0x000000003f42340c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + *fill* 0x000000003f423412 0x2 .rodata.s_ac_param$9542 - 0x000000003f41e500 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000003f423414 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) .rodata.param$9543 - 0x000000003f41e51c 0x9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) - *fill* 0x000000003f41e525 0x3 + 0x000000003f423430 0x9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + *fill* 0x000000003f423439 0x3 .rodata.info$9537 - 0x000000003f41e528 0x9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) - *fill* 0x000000003f41e531 0x3 + 0x000000003f42343c 0x9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + *fill* 0x000000003f423445 0x3 .rodata.str1.4 - 0x000000003f41e534 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x000000003f423448 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) 0x57 (size before relaxing) .rodata.ieee80211_11g_table - 0x000000003f41e580 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x000000003f423494 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) .rodata.ieee80211_11b_table - 0x000000003f41e654 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x000000003f423568 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) .rodata.str1.4 - 0x000000003f41e728 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) - *fill* 0x000000003f41e74b 0x1 + 0x000000003f42363c 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + *fill* 0x000000003f42365f 0x1 .rodata.str1.4 - 0x000000003f41e74c 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x000000003f423660 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) .rodata.str1.4 - 0x000000003f41e784 0x784 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003f423698 0x784 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x7cc (size before relaxing) .rodata.str1.4 - 0x000000003f41ef08 0x824 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003f423e1c 0x824 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x882 (size before relaxing) .rodata.ieee80211_sta_new_state - 0x000000003f41f72c 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) - .rodata 0x000000003f41f744 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003f424640 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata 0x000000003f424658 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) .rodata.state_desc$9703 - 0x000000003f41f748 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003f42465c 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) .rodata.str1.4 - 0x000000003f41f76c 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000003f424680 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x58 (size before relaxing) .rodata.wifi_set_rx_policy - 0x000000003f41f7bc 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000003f4246d0 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) .rodata.str1.4 - 0x000000003f41f7e8 0x10d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41f8f5 0x3 + 0x000000003f4246fc 0x10d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f424809 0x3 .rodata.__FUNCTION__$8632 - 0x000000003f41f8f8 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000003f42480c 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) .rodata.__FUNCTION__$8636 - 0x000000003f41f910 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41f92a 0x2 + 0x000000003f424824 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f42483e 0x2 .rodata.__FUNCTION__$8640 - 0x000000003f41f92c 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41f949 0x3 + 0x000000003f424840 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f42485d 0x3 .rodata.__FUNCTION__$8644 - 0x000000003f41f94c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41f95a 0x2 + 0x000000003f424860 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f42486e 0x2 .rodata.__FUNCTION__$8648 - 0x000000003f41f95c 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41f971 0x3 + 0x000000003f424870 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f424885 0x3 .rodata.__FUNCTION__$8652 - 0x000000003f41f974 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41f985 0x3 + 0x000000003f424888 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f424899 0x3 .rodata.__FUNCTION__$8656 - 0x000000003f41f988 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000003f42489c 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) .rodata.__FUNCTION__$8660 - 0x000000003f41f99c 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000003f4248b0 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) .rodata.__FUNCTION__$8664 - 0x000000003f41f9b0 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41f9c6 0x2 + 0x000000003f4248c4 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f4248da 0x2 .rodata.__FUNCTION__$8671 - 0x000000003f41f9c8 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41f9d7 0x1 + 0x000000003f4248dc 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f4248eb 0x1 .rodata.__FUNCTION__$8679 - 0x000000003f41f9d8 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000003f4248ec 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) .rodata.__FUNCTION__$8675 - 0x000000003f41f9f0 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000003f424904 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) .rodata.__FUNCTION__$8683 - 0x000000003f41fa00 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41fa1b 0x1 + 0x000000003f424914 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f42492f 0x1 .rodata.__FUNCTION__$8687 - 0x000000003f41fa1c 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41fa3b 0x1 + 0x000000003f424930 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f42494f 0x1 .rodata.__FUNCTION__$8691 - 0x000000003f41fa3c 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41fa56 0x2 + 0x000000003f424950 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f42496a 0x2 .rodata.__FUNCTION__$8695 - 0x000000003f41fa58 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) - *fill* 0x000000003f41fa6a 0x2 + 0x000000003f42496c 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f42497e 0x2 .rodata.str1.4 - 0x000000003f41fa6c 0xd9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000003f424980 0xd9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0xe1 (size before relaxing) - *fill* 0x000000003f41fb45 0x3 + *fill* 0x000000003f424a59 0x3 .rodata.str1.4 - 0x000000003f41fb48 0xd29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003f424a5c 0xd29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0xd7d (size before relaxing) - *fill* 0x000000003f420871 0x3 + *fill* 0x000000003f425785 0x3 .rodata.str1.4 - 0x000000003f420874 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x000000003f425788 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) 0x1b (size before relaxing) - *fill* 0x000000003f420887 0x1 + *fill* 0x000000003f42579b 0x1 .rodata.str1.4 - 0x000000003f420888 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) - *fill* 0x000000003f4208f2 0x2 + 0x000000003f42579c 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + *fill* 0x000000003f425806 0x2 .rodata.str1.4 - 0x000000003f4208f4 0x17d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) - *fill* 0x000000003f420a71 0x3 + 0x000000003f425808 0x17d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + *fill* 0x000000003f425985 0x3 .rodata.str1.4 - 0x000000003f420a74 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000003f425988 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x58 (size before relaxing) - .rodata 0x000000003f420ab0 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) - *fill* 0x000000003f420ab6 0x2 + .rodata 0x000000003f4259c4 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + *fill* 0x000000003f4259ca 0x2 .rodata.str1.4 - 0x000000003f420ab8 0xf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420bab 0x1 + 0x000000003f4259cc 0xf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425abf 0x1 .rodata.lmacProcessTxComplete - 0x000000003f420bac 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003f425ac0 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) .rodata.__FUNCTION__$8007 - 0x000000003f420bc4 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003f425ad8 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) .rodata.__FUNCTION__$7963 - 0x000000003f420bd0 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420be3 0x1 + 0x000000003f425ae4 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425af7 0x1 .rodata.__FUNCTION__$7946 - 0x000000003f420be4 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420bfa 0x2 + 0x000000003f425af8 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425b0e 0x2 .rodata.__FUNCTION__$7934 - 0x000000003f420bfc 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420c12 0x2 + 0x000000003f425b10 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425b26 0x2 .rodata.__FUNCTION__$7926 - 0x000000003f420c14 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420c2a 0x2 + 0x000000003f425b28 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425b3e 0x2 .rodata.__FUNCTION__$7875 - 0x000000003f420c2c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420c42 0x2 + 0x000000003f425b40 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425b56 0x2 .rodata.__FUNCTION__$7912 - 0x000000003f420c44 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420c5d 0x3 + 0x000000003f425b58 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425b71 0x3 .rodata.__FUNCTION__$7755 - 0x000000003f420c60 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420c81 0x3 + 0x000000003f425b74 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425b95 0x3 .rodata.__FUNCTION__$7891 - 0x000000003f420c84 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420c9e 0x2 + 0x000000003f425b98 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425bb2 0x2 .rodata.__FUNCTION__$7829 - 0x000000003f420ca0 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420cb5 0x3 + 0x000000003f425bb4 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425bc9 0x3 .rodata.__FUNCTION__$7803 - 0x000000003f420cb8 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420cd5 0x3 + 0x000000003f425bcc 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425be9 0x3 .rodata.__FUNCTION__$7728 - 0x000000003f420cd8 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420ced 0x3 + 0x000000003f425bec 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425c01 0x3 .rodata.__FUNCTION__$8022 - 0x000000003f420cf0 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420cfb 0x1 + 0x000000003f425c04 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425c0f 0x1 .rodata.__FUNCTION__$7784 - 0x000000003f420cfc 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420d1d 0x3 + 0x000000003f425c10 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425c31 0x3 .rodata.__FUNCTION__$7639 - 0x000000003f420d20 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420d2f 0x1 + 0x000000003f425c34 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425c43 0x1 .rodata.__FUNCTION__$7613 - 0x000000003f420d30 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) - *fill* 0x000000003f420d43 0x1 + 0x000000003f425c44 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f425c57 0x1 .rodata.str1.4 - 0x000000003f420d44 0x252 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) - *fill* 0x000000003f420f96 0x2 + 0x000000003f425c58 0x252 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + *fill* 0x000000003f425eaa 0x2 .rodata.str1.4 - 0x000000003f420f98 0x1a9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003f425eac 0x1a9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x1bc (size before relaxing) - *fill* 0x000000003f421141 0x3 - .rodata 0x000000003f421144 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x000000003f426055 0x3 + .rodata 0x000000003f426058 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) .rodata.CSWTCH$269 - 0x000000003f4211b0 0x3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003f4260c4 0x3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) .rodata.str1.4 - 0x000000003f4211b3 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) - *fill* 0x000000003f4211b3 0x1 + 0x000000003f4260c7 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x000000003f4260c7 0x1 .rodata.our_controls - 0x000000003f4211b4 0x158 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x000000003f4260c8 0x158 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) .rodata.rc11NRate2SchedIdx - 0x000000003f42130c 0xac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003f426220 0xac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .rodata.rssi_margin - 0x000000003f4213b8 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003f4262cc 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .rodata.rcUpdateAMPDUParam - 0x000000003f421438 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003f42634c 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .rodata.str1.4 - 0x000000003f421478 0x160 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003f42638c 0x160 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x16c (size before relaxing) .rodata.rcUpdatePhyMode - 0x000000003f4215d8 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - .rodata 0x000000003f421610 0x104 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003f4264ec 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata 0x000000003f426524 0x104 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .rodata.CSWTCH$98 - 0x000000003f421714 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - *fill* 0x000000003f421732 0x2 + 0x000000003f426628 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f426646 0x2 .rodata.CSWTCH$68 - 0x000000003f421734 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - *fill* 0x000000003f42175f 0x1 + 0x000000003f426648 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f426673 0x1 .rodata.CSWTCH$66 - 0x000000003f421760 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - *fill* 0x000000003f42178b 0x1 + 0x000000003f426674 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f42669f 0x1 .rodata.__FUNCTION__$7621 - 0x000000003f42178c 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - *fill* 0x000000003f42179e 0x2 + 0x000000003f4266a0 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f4266b2 0x2 .rodata.__FUNCTION__$7534 - 0x000000003f4217a0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - *fill* 0x000000003f4217aa 0x2 + 0x000000003f4266b4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f4266be 0x2 .rodata.__FUNCTION__$7524 - 0x000000003f4217ac 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000003f4266c0 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .rodata.__FUNCTION__$7518 - 0x000000003f4217bc 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - *fill* 0x000000003f4217c7 0x1 + 0x000000003f4266d0 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f4266db 0x1 .rodata.str1.4 - 0x000000003f4217c8 0x1a6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003f4266dc 0x1a6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x1b2 (size before relaxing) - *fill* 0x000000003f42196e 0x2 + *fill* 0x000000003f426882 0x2 .rodata.__FUNCTION__$8832 - 0x000000003f421970 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003f426884 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) .rodata.__FUNCTION__$8695 - 0x000000003f421984 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003f426898 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) .rodata.__FUNCTION__$8327 - 0x000000003f421998 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - *fill* 0x000000003f4219ae 0x2 + 0x000000003f4268ac 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *fill* 0x000000003f4268c2 0x2 .rodata.__FUNCTION__$8338 - 0x000000003f4219b0 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003f4268c4 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) .rodata.lib_printf.str1.4 - 0x000000003f4219c8 0x1a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x000000003f4268dc 0x1a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) .rodata.phy_printf.str1.4 - 0x000000003f4219e2 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x000000003f4268f6 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) .rodata.net80211_printf.str1.4 - 0x000000003f4219e2 0x1a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x000000003f4268f6 0x1a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) 0x9 (size before relaxing) - *fill* 0x000000003f4219e2 0x2 + *fill* 0x000000003f4268f6 0x2 .rodata.prvReturnItemByteBuf.str1.4 - 0x000000003f4219e4 0x3b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000003f4268f8 0x3b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) 0x58 (size before relaxing) .rodata.prvInitializeNewRingbuffer.str1.4 - 0x000000003f421a1f 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421a1f 0x1 + 0x000000003f426933 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426933 0x1 .rodata.__FUNCTION__$5539 - 0x000000003f421a20 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421a3a 0x2 + 0x000000003f426934 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f42694e 0x2 .rodata.__FUNCTION__$5534 - 0x000000003f421a3c 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421a4e 0x2 + 0x000000003f426950 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426962 0x2 .rodata.__FUNCTION__$5529 - 0x000000003f421a50 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421a6d 0x3 + 0x000000003f426964 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426981 0x3 .rodata.__FUNCTION__$5522 - 0x000000003f421a70 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421a86 0x2 + 0x000000003f426984 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f42699a 0x2 .rodata.__FUNCTION__$5395 - 0x000000003f421a88 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421aa1 0x3 + 0x000000003f42699c 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f4269b5 0x3 .rodata.__FUNCTION__$5468 - 0x000000003f421aa4 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421abe 0x2 + 0x000000003f4269b8 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f4269d2 0x2 .rodata.__FUNCTION__$5381 - 0x000000003f421ac0 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421ad2 0x2 + 0x000000003f4269d4 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f4269e6 0x2 .rodata.__FUNCTION__$5460 - 0x000000003f421ad4 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421ae7 0x1 + 0x000000003f4269e8 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f4269fb 0x1 .rodata.__FUNCTION__$5451 - 0x000000003f421ae8 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421aff 0x1 + 0x000000003f4269fc 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426a13 0x1 .rodata.__FUNCTION__$5436 - 0x000000003f421b00 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000003f426a14 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .rodata.__FUNCTION__$5262 - 0x000000003f421b10 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421b1f 0x1 + 0x000000003f426a24 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426a33 0x1 .rodata.__func__$4306 - 0x000000003f421b20 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000003f426a34 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .rodata.__FUNCTION__$5267 - 0x000000003f421b34 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000003f426a48 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .rodata.__FUNCTION__$5288 - 0x000000003f421b4c 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421b63 0x1 + 0x000000003f426a60 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426a77 0x1 .rodata.__FUNCTION__$5280 - 0x000000003f421b64 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421b7a 0x2 + 0x000000003f426a78 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426a8e 0x2 .rodata.__FUNCTION__$5327 - 0x000000003f421b7c 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421b8e 0x2 + 0x000000003f426a90 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426aa2 0x2 .rodata.__FUNCTION__$5341 - 0x000000003f421b90 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421ba5 0x3 + 0x000000003f426aa4 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426ab9 0x3 .rodata.__FUNCTION__$5307 - 0x000000003f421ba8 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421bbe 0x2 + 0x000000003f426abc 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426ad2 0x2 .rodata.__FUNCTION__$5273 - 0x000000003f421bc0 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421bdb 0x1 + 0x000000003f426ad4 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426aef 0x1 .rodata.__FUNCTION__$5315 - 0x000000003f421bdc 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421bef 0x1 + 0x000000003f426af0 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426b03 0x1 .rodata.__FUNCTION__$5335 - 0x000000003f421bf0 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421c02 0x2 + 0x000000003f426b04 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426b16 0x2 .rodata.__FUNCTION__$5351 - 0x000000003f421c04 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421c19 0x3 + 0x000000003f426b18 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426b2d 0x3 .rodata.__FUNCTION__$5400 - 0x000000003f421c1c 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003f421c2e 0x2 + 0x000000003f426b30 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f426b42 0x2 + .rodata.str1.4 + 0x000000003f426b44 0x5a7 esp-idf/driver/libdriver.a(spi_master.c.obj) + *fill* 0x000000003f4270eb 0x1 + .rodata.spi_bus_initialize.str1.4 + 0x000000003f4270ec 0x14a esp-idf/driver/libdriver.a(spi_master.c.obj) + *fill* 0x000000003f427236 0x2 + .rodata.spi_bus_add_device.str1.4 + 0x000000003f427238 0x19a esp-idf/driver/libdriver.a(spi_master.c.obj) + *fill* 0x000000003f4273d2 0x2 + .rodata.spi_device_queue_trans.str1.4 + 0x000000003f4273d4 0x72 esp-idf/driver/libdriver.a(spi_master.c.obj) + *fill* 0x000000003f427446 0x2 + .rodata.__FUNCTION__$8307 + 0x000000003f427448 0x12 esp-idf/driver/libdriver.a(spi_master.c.obj) + *fill* 0x000000003f42745a 0x2 + .rodata.__FUNCTION__$8330 + 0x000000003f42745c 0x17 esp-idf/driver/libdriver.a(spi_master.c.obj) + *fill* 0x000000003f427473 0x1 + .rodata.__FUNCTION__$8136 + 0x000000003f427474 0x13 esp-idf/driver/libdriver.a(spi_master.c.obj) + *fill* 0x000000003f427487 0x1 + .rodata.__func__$8279 + 0x000000003f427488 0x9 esp-idf/driver/libdriver.a(spi_master.c.obj) + *fill* 0x000000003f427491 0x3 + .rodata.__FUNCTION__$8099 + 0x000000003f427494 0x13 esp-idf/driver/libdriver.a(spi_master.c.obj) + *fill* 0x000000003f4274a7 0x1 .rodata.parse_url_char - 0x000000003f421c30 0x30 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f4274a8 0x30 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.http_parse_host_char - 0x000000003f421c60 0x34 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f4274d8 0x34 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.http_parse_host.str1.4 - 0x000000003f421c94 0x5f esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - *fill* 0x000000003f421cf3 0x1 + 0x000000003f42750c 0x5f esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x000000003f42756b 0x1 .rodata.http_parse_host - 0x000000003f421cf4 0x58 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f42756c 0x58 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.http_parser_execute.str1.4 - 0x000000003f421d4c 0x1e2 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f4275c4 0x1e2 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x1ee (size before relaxing) - *fill* 0x000000003f421f2e 0x2 + *fill* 0x000000003f4277a6 0x2 .rodata.http_parser_execute - 0x000000003f421f30 0x204 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f4277a8 0x204 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.http_parser_parse_url.str1.4 - 0x000000003f422134 0x14 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f4279ac 0x14 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.http_parser_parse_url - 0x000000003f422148 0x8c esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f4279c0 0x8c esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.http_parser_pause.str1.4 - 0x000000003f4221d4 0x31 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - *fill* 0x000000003f422205 0x3 + 0x000000003f427a4c 0x31 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x000000003f427a7d 0x3 .rodata.__func__$3257 - 0x000000003f422208 0x12 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - *fill* 0x000000003f42221a 0x2 + 0x000000003f427a80 0x12 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x000000003f427a92 0x2 .rodata.__func__$3196 - 0x000000003f42221c 0x10 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f427a94 0x10 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.__func__$3248 - 0x000000003f42222c 0x16 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - *fill* 0x000000003f422242 0x2 + 0x000000003f427aa4 0x16 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x000000003f427aba 0x2 .rodata.__func__$2911 - 0x000000003f422244 0x14 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f427abc 0x14 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.str1.4 - 0x000000003f422258 0x793 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f427ad0 0x793 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x7a3 (size before relaxing) - *fill* 0x000000003f4229eb 0x1 + *fill* 0x000000003f428263 0x1 .rodata.normal_url_char - 0x000000003f4229ec 0x20 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - .rodata.unhex 0x000000003f422a0c 0x100 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f428264 0x20 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.unhex 0x000000003f428284 0x100 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.tokens - 0x000000003f422b0c 0x100 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f428384 0x100 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.method_strings - 0x000000003f422c0c 0x84 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000003f428484 0x84 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .rodata.esp_mbedtls_read.str1.4 - 0x000000003f422c90 0x37 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - *fill* 0x000000003f422cc7 0x1 + 0x000000003f428508 0x37 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f42853f 0x1 .rodata.esp_mbedtls_write.str1.4 - 0x000000003f422cc8 0x28 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000003f428540 0x28 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) .rodata.set_ca_cert.str1.4 - 0x000000003f422cf0 0x7d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000003f428568 0x7d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x81 (size before relaxing) - *fill* 0x000000003f422d6d 0x3 + *fill* 0x000000003f4285e5 0x3 .rodata.set_global_ca_store.str1.4 - 0x000000003f422d70 0x2d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - *fill* 0x000000003f422d9d 0x3 + 0x000000003f4285e8 0x2d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f428615 0x3 .rodata.set_pki_context.str1.4 - 0x000000003f422da0 0x84 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000003f428618 0x84 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) .rodata.esp_mbedtls_get_bytes_avail.str1.4 - 0x000000003f422e24 0x45 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - *fill* 0x000000003f422e69 0x3 + 0x000000003f42869c 0x45 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f4286e1 0x3 .rodata.set_server_config.str1.4 - 0x000000003f422e6c 0xc1 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000003f4286e4 0xc1 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0xcd (size before relaxing) - *fill* 0x000000003f422f2d 0x3 + *fill* 0x000000003f4287a5 0x3 .rodata.set_client_config.str1.4 - 0x000000003f422f30 0x1eb esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - *fill* 0x000000003f42311b 0x1 + 0x000000003f4287a8 0x1eb esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f428993 0x1 .rodata.esp_create_mbedtls_handle.str1.4 - 0x000000003f42311c 0xec esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000003f428994 0xec esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) .rodata.esp_mbedtls_server_session_create.str1.4 - 0x000000003f423208 0x69 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - *fill* 0x000000003f423271 0x3 + 0x000000003f428a80 0x69 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f428ae9 0x3 .rodata.__func__$10688 - 0x000000003f423274 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000003f428aec 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) .rodata.__func__$10703 - 0x000000003f423288 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - *fill* 0x000000003f42329a 0x2 + 0x000000003f428b00 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f428b12 0x2 .rodata.__func__$10683 - 0x000000003f42329c 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000003f428b14 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) .rodata.__func__$10677 - 0x000000003f4232ac 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000003f428b24 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) .rodata.__func__$10693 - 0x000000003f4232b8 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - *fill* 0x000000003f4232ca 0x2 + 0x000000003f428b30 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f428b42 0x2 .rodata.__func__$10632 - 0x000000003f4232cc 0x1a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - *fill* 0x000000003f4232e6 0x2 + 0x000000003f428b44 0x1a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f428b5e 0x2 .rodata.wlanif_init.str1.4 - 0x000000003f4232e8 0x4e esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x000000003f428b60 0x4e esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x5e (size before relaxing) - *fill* 0x000000003f423336 0x2 + *fill* 0x000000003f428bae 0x2 .rodata.__func__$9705 - 0x000000003f423338 0xc esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x000000003f428bb0 0xc esp-idf/lwip/liblwip.a(wlanif.c.obj) + .rodata.spi_hal_get_clock_conf.str1.4 + 0x000000003f428bbc 0x1dc esp-idf/soc/libsoc.a(spi_hal.c.obj) + .rodata.__FUNCTION__$4620 + 0x000000003f428d98 0x17 esp-idf/soc/libsoc.a(spi_hal.c.obj) + *fill* 0x000000003f428daf 0x1 + .rodata.SPI_HAL_TAG + 0x000000003f428db0 0x8 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .rodata.spi_hal_setup_trans.str1.4 + 0x000000003f428db8 0x60 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .rodata.__func__$4606 + 0x000000003f428e18 0x14 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) .rodata.ssl_calc_finished_tls_sha256.str1.4 - 0x000000003f423344 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .rodata 0x000000003f423364 0x104 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000003f428e2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata 0x000000003f428e4c 0x104 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .rodata.mbedtls_ssl_derive_keys.str1.4 - 0x000000003f423468 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x000000003f42349e 0x2 + 0x000000003f428f50 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000003f428f86 0x2 .rodata.mbedtls_ssl_md_alg_from_hash - 0x000000003f4234a0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000003f428f88 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .rodata.mbedtls_ssl_hash_from_md_alg - 0x000000003f4234bc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000003f428fa4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .rodata.mbedtls_ssl_check_cert_usage.str1.4 - 0x000000003f4234d4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000003f428fbc 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .rodata.mbedtls_ssl_check_cert_usage - 0x000000003f4234d4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000003f428fbc 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .rodata.mbedtls_ssl_get_ciphersuite_sig_pk_alg - 0x000000003f423500 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000003f428fe8 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) .rodata.str1.4 - 0x000000003f42352c 0xab5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000003f429014 0xab5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) 0xab9 (size before relaxing) - *fill* 0x000000003f423fe1 0x3 + *fill* 0x000000003f429ac9 0x3 .rodata.ciphersuite_definitions - 0x000000003f423fe4 0xc58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000003f429acc 0xc58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) .rodata.ciphersuite_preference - 0x000000003f424c3c 0x340 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000003f42a724 0x340 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) .rodata.mbedtls_ssl_handshake_client_step - 0x000000003f424f7c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000003f42aa64 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) .rodata.ssl_write_server_key_exchange - 0x000000003f424fc4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000003f42aaac 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) .rodata.mbedtls_ssl_handshake_server_step - 0x000000003f424ff0 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000003f42aad8 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) .rodata.str1.4 - 0x000000003f42503c 0xe4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x000000003f42ab24 0xe4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) 0x10c (size before relaxing) .rodata._ZSt7nothrow - 0x000000003f425120 0x1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) - 0x000000003f425120 _ZSt7nothrow + 0x000000003f42ac08 0x1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x000000003f42ac08 _ZSt7nothrow .rodata._ZTSSt9exception - 0x000000003f425121 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - 0x000000003f425121 _ZTSSt9exception - *fill* 0x000000003f42512e 0x2 + 0x000000003f42ac09 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000003f42ac09 _ZTSSt9exception + *fill* 0x000000003f42ac16 0x2 .rodata._ZTISt9exception - 0x000000003f425130 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - 0x000000003f425130 _ZTISt9exception + 0x000000003f42ac18 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000003f42ac18 _ZTISt9exception .rodata._ZTSSt9bad_alloc - 0x000000003f425138 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - 0x000000003f425138 _ZTSSt9bad_alloc - *fill* 0x000000003f425145 0x3 + 0x000000003f42ac20 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000003f42ac20 _ZTSSt9bad_alloc + *fill* 0x000000003f42ac2d 0x3 .rodata._ZTISt9bad_alloc - 0x000000003f425148 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - 0x000000003f425148 _ZTISt9bad_alloc + 0x000000003f42ac30 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000003f42ac30 _ZTISt9bad_alloc .rodata._ZTVN10__cxxabiv120__si_class_type_infoE - 0x000000003f425154 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - 0x000000003f425154 _ZTVN10__cxxabiv120__si_class_type_infoE + 0x000000003f42ac3c 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x000000003f42ac3c _ZTVN10__cxxabiv120__si_class_type_infoE .rodata._ZL28read_encoded_value_with_basehjPKhPj - 0x000000003f425180 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x000000003f42ac68 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) .rodata._ZTVN10__cxxabiv117__class_type_infoE - 0x000000003f4251b4 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - 0x000000003f4251b4 _ZTVN10__cxxabiv117__class_type_infoE - .rodata 0x000000003f4251e0 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) - .rodata 0x000000003f425214 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - .rodata 0x000000003f425250 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) - 0x000000003f425250 Xthal_intlevel + 0x000000003f42ac9c 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x000000003f42ac9c _ZTVN10__cxxabiv117__class_type_infoE + .rodata 0x000000003f42acc8 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .rodata 0x000000003f42acfc 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .rodata 0x000000003f42ad38 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + 0x000000003f42ad38 Xthal_intlevel .rodata.str1.1 - 0x000000003f425270 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x000000003f42ad58 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) 0x3d (size before relaxing) .rodata.str1.1 - 0x000000003f4252ac 0x81 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + 0x000000003f42ad94 0x81 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) 0x84 (size before relaxing) .rodata.str1.1 - 0x000000003f42532d 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x000000003f42ae15 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) 0xb (size before relaxing) .rodata.str1.1 - 0x000000003f425337 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x000000003f42ae1f 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) 0x2 (size before relaxing) .rodata.str1.1 - 0x000000003f425337 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0x000000003f42ae1f 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) 0xc (size before relaxing) - *fill* 0x000000003f425337 0x1 - .rodata 0x000000003f425338 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) - .rodata 0x000000003f4253a0 0x2bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + *fill* 0x000000003f42ae1f 0x1 + .rodata 0x000000003f42ae20 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .rodata 0x000000003f42ae88 0x2bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) .rodata.str1.1 - 0x000000003f42565c 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x000000003f42b144 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) .rodata.str1.1 - 0x000000003f425690 0x5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) - *fill* 0x000000003f425695 0x3 - .rodata 0x000000003f425698 0x17e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) - *fill* 0x000000003f425816 0x2 - .rodata 0x000000003f425818 0x2bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0x000000003f42b178 0x5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + *fill* 0x000000003f42b17d 0x3 + .rodata 0x000000003f42b180 0x17e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + *fill* 0x000000003f42b2fe 0x2 + .rodata 0x000000003f42b300 0x2bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) .rodata.str1.1 - 0x000000003f425ad4 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) - .rodata 0x000000003f425ad4 0x2bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x000000003f42b5bc 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .rodata 0x000000003f42b5bc 0x2bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) .rodata.str1.1 - 0x000000003f425d90 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x000000003f42b878 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) .rodata.str1.1 - 0x000000003f425d90 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0x000000003f42b878 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) 0xf (size before relaxing) .rodata.str1.1 - 0x000000003f425d9d 0x1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) - *fill* 0x000000003f425d9d 0x3 - .rodata 0x000000003f425da0 0x128 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) - 0x000000003f425db0 __mprec_tinytens - 0x000000003f425dd8 __mprec_bigtens - 0x000000003f425e00 __mprec_tens - .rodata 0x000000003f425ec8 0x494 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) - 0x000000003f426184 __action_table - 0x000000003f4261f0 __state_table - 0x000000003f42625c __chclass + 0x000000003f42b885 0x1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + *fill* 0x000000003f42b885 0x3 + .rodata 0x000000003f42b888 0x128 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x000000003f42b898 __mprec_tinytens + 0x000000003f42b8c0 __mprec_bigtens + 0x000000003f42b8e8 __mprec_tens + .rodata 0x000000003f42b9b0 0x494 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x000000003f42bc6c __action_table + 0x000000003f42bcd8 __state_table + 0x000000003f42bd44 __chclass .rodata.str1.1 - 0x000000003f42635c 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) - .rodata 0x000000003f42635c 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + 0x000000003f42be44 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .rodata 0x000000003f42be44 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) *libesp_system.a:system_api.*(.rodata.esp_get_idf_version.str1.4) - *fill* 0x000000003f42637e 0x2 + *fill* 0x000000003f42be66 0x2 .rodata.esp_get_idf_version.str1.4 - 0x000000003f426380 0x18 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x000000003f42be68 0x18 esp-idf/esp_system/libesp_system.a(system_api.c.obj) *libsoc.a:uart_hal_iram.*(.rodata .rodata.*) .rodata.uart_hal_rxfifo_rst.str1.4 - 0x000000003f426398 0xd9 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) - *fill* 0x000000003f426471 0x3 + 0x000000003f42be80 0xd9 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + *fill* 0x000000003f42bf59 0x3 .rodata.uart_hal_write_txfifo.str1.4 - 0x000000003f426474 0x90 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000003f42bf5c 0x90 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) .rodata.__func__$2737 - 0x000000003f426504 0x14 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000003f42bfec 0x14 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) .rodata.__func__$2749 - 0x000000003f426518 0x15 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) - *fill* 0x000000003f42652d 0x3 + 0x000000003f42c000 0x15 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + *fill* 0x000000003f42c015 0x3 .rodata.__func__$2760 - 0x000000003f426530 0x13 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000003f42c018 0x13 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) *libesp_event.a:esp_event.*(.rodata.handler_instances_add.str1.4 .rodata.base_node_add_handler.str1.4 .rodata.loop_node_add_handler.str1.4 .rodata.esp_event_loop_create.str1.4 .rodata.esp_event_loop_run.str1.4 .rodata.esp_event_loop_run_task.str1.4 .rodata.esp_event_handler_register_with_internal.str1.4 .rodata.esp_event_handler_unregister_with_internal.str1.4 .rodata.__func__$8875 .rodata.__func__$8862 .rodata.__func__$8829 .rodata.__func__$8797 .rodata.__func__$8772 .rodata.__func__$8731 .rodata.__func__$8722) - *fill* 0x000000003f426543 0x1 + *fill* 0x000000003f42c02b 0x1 .rodata.handler_instances_add.str1.4 - 0x000000003f426544 0x3f esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000003f42c02c 0x3f esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x47 (size before relaxing) - *fill* 0x000000003f426583 0x1 + *fill* 0x000000003f42c06b 0x1 .rodata.base_node_add_handler.str1.4 - 0x000000003f426584 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000003f42c06c 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) .rodata.loop_node_add_handler.str1.4 - 0x000000003f4265b8 0x3a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000003f42c0a0 0x3a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x3e (size before relaxing) - *fill* 0x000000003f4265f2 0x2 + *fill* 0x000000003f42c0da 0x2 .rodata.esp_event_loop_create.str1.4 - 0x000000003f4265f4 0x123 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000003f42c0dc 0x123 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x125 (size before relaxing) - *fill* 0x000000003f426717 0x1 + *fill* 0x000000003f42c1ff 0x1 .rodata.esp_event_loop_run.str1.4 - 0x000000003f426718 0xb esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000003f426723 0x1 + 0x000000003f42c200 0xb esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f42c20b 0x1 .rodata.esp_event_loop_run_task.str1.4 - 0x000000003f426724 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000003f426756 0x2 + 0x000000003f42c20c 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f42c23e 0x2 .rodata.esp_event_handler_register_with_internal.str1.4 - 0x000000003f426758 0x9a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000003f4267f2 0x2 + 0x000000003f42c240 0x9a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f42c2da 0x2 .rodata.esp_event_handler_unregister_with_internal.str1.4 - 0x000000003f4267f4 0x60 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000003f42c2dc 0x60 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) .rodata.__func__$8862 - 0x000000003f426854 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000003f426866 0x2 + 0x000000003f42c33c 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f42c34e 0x2 .rodata.__func__$8829 - 0x000000003f426868 0x2b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000003f426893 0x1 + 0x000000003f42c350 0x2b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f42c37b 0x1 .rodata.__func__$8797 - 0x000000003f426894 0x29 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000003f4268bd 0x3 + 0x000000003f42c37c 0x29 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f42c3a5 0x3 .rodata.__func__$8731 - 0x000000003f4268c0 0x13 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000003f4268d3 0x1 + 0x000000003f42c3a8 0x13 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f42c3bb 0x1 .rodata.__func__$8722 - 0x000000003f4268d4 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000003f42c3bc 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) *libesp_event.a:default_event_loop.*(.rodata.esp_event_loop_create_default.str1.4 .rodata.esp_event_send_to_default_loop) - *fill* 0x000000003f4268ea 0x2 + *fill* 0x000000003f42c3d2 0x2 .rodata.esp_event_loop_create_default.str1.4 - 0x000000003f4268ec 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x000000003f42c3d4 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) *liblog.a:log_freertos.*(.rodata.esp_log_system_timestamp.str1.4) *liblog.a:log.*(.rodata.esp_log_level_set.str1.4 .rodata.__func__$3534 .rodata.__func__$3505) .rodata.esp_log_level_set.str1.4 - 0x000000003f4268f4 0x7f esp-idf/log/liblog.a(log.c.obj) - *fill* 0x000000003f426973 0x1 + 0x000000003f42c3dc 0x7f esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003f42c45b 0x1 .rodata.__func__$3534 - 0x000000003f426974 0x15 esp-idf/log/liblog.a(log.c.obj) - *fill* 0x000000003f426989 0x3 + 0x000000003f42c45c 0x15 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003f42c471 0x3 .rodata.__func__$3505 - 0x000000003f42698c 0x12 esp-idf/log/liblog.a(log.c.obj) + 0x000000003f42c474 0x12 esp-idf/log/liblog.a(log.c.obj) *(.irom1.text) *(.gnu.linkonce.r.*) *(.rodata1) - 0x000000003f42699e __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + 0x000000003f42c486 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) *(.xt_except_table) *(.gcc_except_table .gcc_except_table.*) - *fill* 0x000000003f42699e 0x2 + *fill* 0x000000003f42c486 0x2 .gcc_except_table._ZnwjRKSt9nothrow_t - 0x000000003f4269a0 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000003f42c488 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE - 0x000000003f4269b4 0x1d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - *fill* 0x000000003f4269d1 0x3 + 0x000000003f42c49c 0x1d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + *fill* 0x000000003f42c4b9 0x3 .gcc_except_table.__gxx_personality_v0 - 0x000000003f4269d4 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x000000003f42c4bc 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) .gcc_except_table.__cxa_call_unexpected - 0x000000003f4269f0 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x000000003f42c4d8 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) .gcc_except_table.__cxa_get_globals_fast - 0x000000003f426a08 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x000000003f42c4f0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) .gcc_except_table._GLOBAL__sub_D___cxa_get_globals_fast - 0x000000003f426a0c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x000000003f42c4f4 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) *(.gnu.linkonce.e.*) *(.gnu.version_r) - 0x000000003f426a10 . = ((. + 0x3) & 0xfffffffffffffffc) - 0x000000003f426a10 __eh_frame = ABSOLUTE (.) + 0x000000003f42c4f8 . = ((. + 0x3) & 0xfffffffffffffffc) + 0x000000003f42c4f8 __eh_frame = ABSOLUTE (.) *(.eh_frame) - .eh_frame 0x000000003f426a10 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o - .eh_frame 0x000000003f426a10 0x38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - .eh_frame 0x000000003f426a48 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - .eh_frame 0x000000003f426aa0 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - .eh_frame 0x000000003f426b10 0x118 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - .eh_frame 0x000000003f426c28 0x8c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - .eh_frame 0x000000003f426cb4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - .eh_frame 0x000000003f426cf4 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) - .eh_frame 0x000000003f426d1c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) - .eh_frame 0x000000003f426d44 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) - .eh_frame 0x000000003f426d6c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) - .eh_frame 0x000000003f426d94 0x110 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) - .eh_frame 0x000000003f426ea4 0x148 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - .eh_frame 0x000000003f426fec 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o - 0x000000003f426ff4 . = ((. + 0x7) & 0xfffffffffffffffc) - *fill* 0x000000003f426ff0 0x4 - 0x000000003f426ff4 __init_array_start = ABSOLUTE (.) + .eh_frame 0x000000003f42c4f8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .eh_frame 0x000000003f42c4f8 0x38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .eh_frame 0x000000003f42c530 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .eh_frame 0x000000003f42c588 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .eh_frame 0x000000003f42c5f8 0x118 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .eh_frame 0x000000003f42c710 0x8c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .eh_frame 0x000000003f42c79c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .eh_frame 0x000000003f42c7dc 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .eh_frame 0x000000003f42c804 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .eh_frame 0x000000003f42c82c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .eh_frame 0x000000003f42c854 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .eh_frame 0x000000003f42c87c 0x110 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .eh_frame 0x000000003f42c98c 0x148 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .eh_frame 0x000000003f42cad4 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + 0x000000003f42cadc . = ((. + 0x7) & 0xfffffffffffffffc) + *fill* 0x000000003f42cad8 0x4 + 0x000000003f42cadc __init_array_start = ABSOLUTE (.) *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors .ctors.*) - .ctors 0x000000003f426ff4 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .ctors 0x000000003f426ff8 0x4 esp-idf/esp_common/libesp_common.a(ipc.c.obj) - .ctors 0x000000003f426ffc 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .ctors 0x000000003f427000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - 0x000000003f427004 __init_array_end = ABSOLUTE (.) + .ctors 0x000000003f42cadc 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .ctors 0x000000003f42cae0 0x4 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .ctors 0x000000003f42cae4 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .ctors 0x000000003f42cae8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x000000003f42caec __init_array_end = ABSOLUTE (.) *crtbegin.*(.dtors) - .dtors 0x000000003f427004 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .dtors 0x000000003f42caec 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o *(EXCLUDE_FILE(*crtend.*) .dtors) - .dtors 0x000000003f427008 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .dtors 0x000000003f42caf0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) *(SORT_BY_NAME(.dtors.*)) *(.dtors) - .dtors 0x000000003f42700c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o - 0x000000003f42700c __DTOR_END__ - 0x000000003f427010 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + .dtors 0x000000003f42caf4 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + 0x000000003f42caf4 __DTOR_END__ + 0x000000003f42caf8 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) *(.xt_except_desc) *(.gnu.linkonce.h.*) - 0x000000003f427010 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + 0x000000003f42caf8 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) *(.xt_except_desc_end) *(.dynamic) *(.gnu.version_d) - 0x000000003f427010 soc_reserved_memory_region_start = ABSOLUTE (.) + 0x000000003f42caf8 soc_reserved_memory_region_start = ABSOLUTE (.) *(.reserved_memory_address) .reserved_memory_address - 0x000000003f427010 0x38 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) - 0x000000003f427048 soc_reserved_memory_region_end = ABSOLUTE (.) - 0x000000003f427048 _rodata_end = ABSOLUTE (.) - 0x000000003f427048 _lit4_start = ABSOLUTE (.) + 0x000000003f42caf8 0x38 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f42cb30 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x000000003f42cb30 _rodata_end = ABSOLUTE (.) + 0x000000003f42cb30 _lit4_start = ABSOLUTE (.) *(*.lit4) *(.lit4.*) *(.gnu.linkonce.lit4.*) - 0x000000003f427048 _lit4_end = ABSOLUTE (.) - 0x000000003f427048 . = ALIGN (0x4) - 0x000000003f427048 _thread_local_start = ABSOLUTE (.) + 0x000000003f42cb30 _lit4_end = ABSOLUTE (.) + 0x000000003f42cb30 . = ALIGN (0x4) + 0x000000003f42cb30 _thread_local_start = ABSOLUTE (.) *(.tdata) *(.tdata.*) *(.tbss) *(.tbss.*) - 0x000000003f427048 _thread_local_end = ABSOLUTE (.) - 0x000000003f427048 . = ALIGN (0x4) + 0x000000003f42cb30 _thread_local_end = ABSOLUTE (.) + 0x000000003f42cb30 . = ALIGN (0x4) -.flash.text 0x00000000400d0020 0xab05b +.flash.text 0x00000000400d0020 0xbe003 0x00000000400d0020 _stext = . 0x00000000400d0020 _text_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:abort.* *libnewlib.a:heap.* *libfreertos.a *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_ringbuf.a *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *librtc.a *libsoc.a:rtc_clk.* *libsoc.a:rtc_time.* *libsoc.a:cpu_util.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:spi_hal_iram.* *libsoc.a:uart_hal_iram.* *libsoc.a:ledc_hal_iram.* *libsoc.a:i2c_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_clk_init.* *libsoc.a:rtc_wdt.* *libsoc.a:rtc_sleep.* *libsoc.a:soc_hal.* *libsoc.a:rtc_pm.* *libsoc.a:rtc_init.* *libsoc.a:lldesc.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_rom_patch.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .literal EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:abort.* *libnewlib.a:heap.* *libfreertos.a *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_ringbuf.a *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *liblog.a:log_freertos.* *liblog.a:log.* *librtc.a *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libsoc.a:rtc_clk.* *libsoc.a:rtc_time.* *libsoc.a:cpu_util.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:spi_hal_iram.* *libsoc.a:uart_hal_iram.* *libsoc.a:ledc_hal_iram.* *libsoc.a:i2c_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_clk_init.* *libsoc.a:rtc_wdt.* *libsoc.a:rtc_sleep.* *libsoc.a:soc_hal.* *libsoc.a:rtc_pm.* *libsoc.a:rtc_init.* *libsoc.a:lldesc.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libesp_system.a:system_api.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_rom_patch.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .literal.* EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:abort.* *libnewlib.a:heap.* *libfreertos.a *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_ringbuf.a *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *librtc.a *libsoc.a:rtc_clk.* *libsoc.a:rtc_time.* *libsoc.a:cpu_util.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:spi_hal_iram.* *libsoc.a:uart_hal_iram.* *libsoc.a:ledc_hal_iram.* *libsoc.a:i2c_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_clk_init.* *libsoc.a:rtc_wdt.* *libsoc.a:rtc_sleep.* *libsoc.a:soc_hal.* *libsoc.a:rtc_pm.* *libsoc.a:rtc_init.* *libsoc.a:lldesc.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_rom_patch.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .text EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:abort.* *libnewlib.a:heap.* *libfreertos.a *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_ringbuf.a *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *liblog.a:log_freertos.* *liblog.a:log.* *librtc.a *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libsoc.a:rtc_clk.* *libsoc.a:rtc_time.* *libsoc.a:cpu_util.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:spi_hal_iram.* *libsoc.a:uart_hal_iram.* *libsoc.a:ledc_hal_iram.* *libsoc.a:i2c_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_clk_init.* *libsoc.a:rtc_wdt.* *libsoc.a:rtc_sleep.* *libsoc.a:soc_hal.* *libsoc.a:rtc_pm.* *libsoc.a:rtc_init.* *libsoc.a:lldesc.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libesp_system.a:system_api.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_rom_patch.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .text.* EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifi0iram EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifi0iram.* EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifirxiram EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifirxiram.*) + *(EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libnewlib.a:heap.* *libnewlib.a:abort.* *libfreertos.a *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_ringbuf.a *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *librtc.a *libsoc.a:rtc_clk_init.* *libsoc.a:ledc_hal_iram.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:rtc_clk.* *libsoc.a:rtc_init.* *libsoc.a:rtc_sleep.* *libsoc.a:soc_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_pm.* *libsoc.a:cpu_util.* *libsoc.a:rtc_time.* *libsoc.a:i2c_hal_iram.* *libsoc.a:rtc_periph.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:memspi_host_driver.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .literal EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libnewlib.a:heap.* *libnewlib.a:abort.* *libfreertos.a *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_ringbuf.a *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *liblog.a:log_freertos.* *liblog.a:log.* *librtc.a *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libsoc.a:rtc_clk_init.* *libsoc.a:ledc_hal_iram.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:rtc_clk.* *libsoc.a:rtc_init.* *libsoc.a:rtc_sleep.* *libsoc.a:soc_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_pm.* *libsoc.a:cpu_util.* *libsoc.a:rtc_time.* *libsoc.a:i2c_hal_iram.* *libsoc.a:rtc_periph.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libesp_system.a:system_api.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:memspi_host_driver.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .literal.* EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libnewlib.a:heap.* *libnewlib.a:abort.* *libfreertos.a *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_ringbuf.a *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *librtc.a *libsoc.a:rtc_clk_init.* *libsoc.a:ledc_hal_iram.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:rtc_clk.* *libsoc.a:rtc_init.* *libsoc.a:rtc_sleep.* *libsoc.a:soc_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_pm.* *libsoc.a:cpu_util.* *libsoc.a:rtc_time.* *libsoc.a:i2c_hal_iram.* *libsoc.a:rtc_periph.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:memspi_host_driver.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .text EXCLUDE_FILE(*libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_RTT_esp32.* *libnewlib.a:heap.* *libnewlib.a:abort.* *libfreertos.a *lib_esp_common.a:esp_err.* *libgcov.a *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_ringbuf.a *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *liblog.a:log_freertos.* *liblog.a:log.* *librtc.a *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libsoc.a:rtc_clk_init.* *libsoc.a:ledc_hal_iram.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:rtc_clk.* *libsoc.a:rtc_init.* *libsoc.a:rtc_sleep.* *libsoc.a:soc_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_pm.* *libsoc.a:cpu_util.* *libsoc.a:rtc_time.* *libsoc.a:i2c_hal_iram.* *libsoc.a:rtc_periph.* *libesp_system.a:panic.* *libesp_system.a:panic_handler.* *libesp_system.a:reset_reason.* *libesp_system.a:system_api.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:memspi_host_driver.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .text.* EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifi0iram EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifi0iram.* EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifirxiram EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifirxiram.*) .literal.esp_ota_get_app_description 0x00000000400d0020 0x4 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) .literal.esp_pthread_cfg_key_destructor @@ -31668,25529 +33536,28254 @@ LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp 0x00000000400d04f8 0x30 esp-idf/main/libmain.a(main.c.obj) 0x80 (size before relaxing) .literal.app_main - 0x00000000400d0528 0x3c esp-idf/main/libmain.a(main.c.obj) - 0xbc (size before relaxing) + 0x00000000400d0528 0x44 esp-idf/main/libmain.a(main.c.obj) + 0xcc (size before relaxing) .literal.init_memory - 0x00000000400d0564 0x20 esp-idf/files/libfiles.a(file.c.obj) + 0x00000000400d056c 0x20 esp-idf/files/libfiles.a(file.c.obj) 0x60 (size before relaxing) .literal.create_file - 0x00000000400d0584 0x1c esp-idf/files/libfiles.a(file.c.obj) + 0x00000000400d058c 0x1c esp-idf/files/libfiles.a(file.c.obj) 0x38 (size before relaxing) .literal.read_file - 0x00000000400d05a0 0x18 esp-idf/files/libfiles.a(file.c.obj) + 0x00000000400d05a8 0x18 esp-idf/files/libfiles.a(file.c.obj) 0x40 (size before relaxing) .literal.task_create_ca - 0x00000000400d05b8 0x10 esp-idf/ca/libca.a(ca.c.obj) + 0x00000000400d05c0 0x10 esp-idf/ca/libca.a(ca.c.obj) 0x24 (size before relaxing) .literal.write_certificate - 0x00000000400d05c8 0x8 esp-idf/ca/libca.a(ca.c.obj) + 0x00000000400d05d0 0x8 esp-idf/ca/libca.a(ca.c.obj) 0x28 (size before relaxing) .literal.connect - 0x00000000400d05d0 0x194 esp-idf/ca/libca.a(ca.c.obj) + 0x00000000400d05d8 0x194 esp-idf/ca/libca.a(ca.c.obj) 0x484 (size before relaxing) .literal.task_run - 0x00000000400d0764 0x0 esp-idf/ca/libca.a(ca.c.obj) + 0x00000000400d076c 0x0 esp-idf/ca/libca.a(ca.c.obj) 0x8 (size before relaxing) .literal.register_ca - 0x00000000400d0764 0x10 esp-idf/ca/libca.a(ca.c.obj) + 0x00000000400d076c 0x10 esp-idf/ca/libca.a(ca.c.obj) 0x1c (size before relaxing) .literal.dev_random_entropy_poll - 0x00000000400d0774 0x10 esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d077c 0x10 esp-idf/ca/libca.a(gen_key.c.obj) 0x20 (size before relaxing) .literal.write_private_key - 0x00000000400d0784 0x8 esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d078c 0x8 esp-idf/ca/libca.a(gen_key.c.obj) 0x2c (size before relaxing) .literal.task_create - 0x00000000400d078c 0xc esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d0794 0xc esp-idf/ca/libca.a(gen_key.c.obj) 0x24 (size before relaxing) .literal.connect - 0x00000000400d0798 0xc0 esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d07a0 0xc0 esp-idf/ca/libca.a(gen_key.c.obj) 0x234 (size before relaxing) .literal.task_run - 0x00000000400d0858 0x0 esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d0860 0x0 esp-idf/ca/libca.a(gen_key.c.obj) 0x8 (size before relaxing) .literal.register_gen_key - 0x00000000400d0858 0x10 esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d0860 0x10 esp-idf/ca/libca.a(gen_key.c.obj) 0x1c (size before relaxing) .literal.type_to_str - 0x00000000400d0868 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d0870 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .literal.str_to_type - 0x00000000400d0870 0x0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d0878 0x0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x8 (size before relaxing) - .literal.list 0x00000000400d0870 0xc esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .literal.list 0x00000000400d0878 0xc esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x2c (size before relaxing) .literal.list_entries - 0x00000000400d087c 0xc esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d0884 0xc esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x18 (size before relaxing) .literal.set_namespace - 0x00000000400d0888 0x10 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d0890 0x10 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x28 (size before relaxing) .literal.erase_all - 0x00000000400d0898 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - 0x28 (size before relaxing) - .literal.erase_namespace 0x00000000400d08a0 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x28 (size before relaxing) + .literal.erase_namespace + 0x00000000400d08a8 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x28 (size before relaxing) .literal.erase - 0x00000000400d08a8 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d08b0 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x24 (size before relaxing) .literal.erase_value - 0x00000000400d08ac 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d08b4 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x28 (size before relaxing) .literal.print_blob - 0x00000000400d08b0 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d08b8 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0xc (size before relaxing) .literal.get_value_from_nvs - 0x00000000400d08b4 0x18 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d08bc 0x18 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x9c (size before relaxing) .literal.get_value - 0x00000000400d08cc 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d08d4 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x28 (size before relaxing) .literal.store_blob - 0x00000000400d08d0 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d08d8 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x38 (size before relaxing) .literal.set_value_in_nvs - 0x00000000400d08d8 0x20 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d08e0 0x20 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0xb0 (size before relaxing) .literal.set_value - 0x00000000400d08f8 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d0900 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x28 (size before relaxing) .literal.register_nvs - 0x00000000400d08fc 0x88 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d0904 0x88 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x12c (size before relaxing) .literal.register_free - 0x00000000400d0984 0x18 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d098c 0x18 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x20 (size before relaxing) .literal.register_heap - 0x00000000400d099c 0x14 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d09a4 0x14 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x20 (size before relaxing) .literal.register_version - 0x00000000400d09b0 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d09b8 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x20 (size before relaxing) .literal.register_restart - 0x00000000400d09c0 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d09c8 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x20 (size before relaxing) .literal.register_tasks - 0x00000000400d09d0 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d09d8 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x20 (size before relaxing) .literal.free_mem - 0x00000000400d09e0 0x8 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d09e8 0x8 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0xc (size before relaxing) .literal.heap_size - 0x00000000400d09e8 0x8 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d09f0 0x8 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x18 (size before relaxing) .literal.get_version - 0x00000000400d09f0 0x40 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d09f8 0x40 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x60 (size before relaxing) .literal.restart - 0x00000000400d0a30 0x4 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d0a38 0x4 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x14 (size before relaxing) .literal.register_deep_sleep - 0x00000000400d0a34 0x34 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d0a3c 0x34 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x58 (size before relaxing) .literal.deep_sleep - 0x00000000400d0a68 0x28 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d0a70 0x28 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x78 (size before relaxing) .literal.register_light_sleep - 0x00000000400d0a90 0xc esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d0a98 0xc esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x58 (size before relaxing) .literal.light_sleep - 0x00000000400d0a9c 0x30 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d0aa4 0x30 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0xd8 (size before relaxing) .literal.tasks_info - 0x00000000400d0acc 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d0ad4 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x3c (size before relaxing) .literal.register_system - 0x00000000400d0adc 0x0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d0ae4 0x0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x1c (size before relaxing) + .literal.guiTask + 0x00000000400d0ae4 0x34 esp-idf/display/libdisplay.a(display.c.obj) + 0x74 (size before relaxing) .literal.initialise_wifi - 0x00000000400d0adc 0x5c esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x00000000400d0b18 0x5c esp-idf/wifi/libwifi.a(wifi.c.obj) 0xa0 (size before relaxing) .literal.wifi_join - 0x00000000400d0b38 0x10 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x00000000400d0b74 0x10 esp-idf/wifi/libwifi.a(wifi.c.obj) 0x48 (size before relaxing) .literal.connect - 0x00000000400d0b48 0x14 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x00000000400d0b84 0x14 esp-idf/wifi/libwifi.a(wifi.c.obj) 0x40 (size before relaxing) .literal.event_handler - 0x00000000400d0b5c 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x00000000400d0b98 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) 0x18 (size before relaxing) .literal.register_wifi - 0x00000000400d0b5c 0x28 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x00000000400d0b98 0x28 esp-idf/wifi/libwifi.a(wifi.c.obj) 0x4c (size before relaxing) .literal.server_off - 0x00000000400d0b84 0x4 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d0bc0 0x4 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x8 (size before relaxing) .literal.connect - 0x00000000400d0b88 0x1c esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d0bc4 0x1c esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x34 (size before relaxing) .literal.stop_webserver - 0x00000000400d0ba4 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d0be0 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x4 (size before relaxing) .literal.disconnect_handler - 0x00000000400d0ba4 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d0be0 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x4 (size before relaxing) .literal.start_webserver - 0x00000000400d0ba4 0x2c esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d0be0 0x2c esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x58 (size before relaxing) .literal.connect_handler - 0x00000000400d0bd0 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d0c0c 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x4 (size before relaxing) .literal.echo_post_handler - 0x00000000400d0bd0 0x70 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d0c0c 0x70 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x138 (size before relaxing) .literal.root_get_handler - 0x00000000400d0c40 0x8 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d0c7c 0x8 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x10 (size before relaxing) .literal.register_server - 0x00000000400d0c48 0x14 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d0c84 0x14 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x30 (size before relaxing) .literal.decode - 0x00000000400d0c5c 0x8 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + 0x00000000400d0c98 0x8 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) 0xc (size before relaxing) .literal.esp_efuse_get_chip_ver - 0x00000000400d0c64 0xc esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x00000000400d0ca0 0xc esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) 0x14 (size before relaxing) .literal.esp_efuse_read_field_blob - 0x00000000400d0c70 0xc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x00000000400d0cac 0xc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) 0x1c (size before relaxing) .literal.check_range_of_bits - 0x00000000400d0c7c 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000400d0cb8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) 0x4 (size before relaxing) .literal.esp_efuse_utility_process - 0x00000000400d0c7c 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000400d0cb8 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) 0x38 (size before relaxing) .literal.esp_efuse_utility_read_reg - 0x00000000400d0ca4 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000400d0ce0 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) 0x2c (size before relaxing) .literal.esp_efuse_utility_fill_buff - 0x00000000400d0cbc 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000400d0cf8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) 0x8 (size before relaxing) .literal.esp_efuse_get_coding_scheme - 0x00000000400d0cc0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x00000000400d0cfc 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) .literal.bootloader_init_mem - 0x00000000400d0cc4 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x00000000400d0d00 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) 0x10 (size before relaxing) .literal.bootloader_flash_update_id - 0x00000000400d0ccc 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x00000000400d0d08 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) 0x8 (size before relaxing) .literal.execute_flash_command - 0x00000000400d0cd0 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x00000000400d0d0c 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) 0x3c (size before relaxing) .literal.bootloader_read_flash_id - 0x00000000400d0d00 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x00000000400d0d3c 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) 0xc (size before relaxing) .literal.spi_flash_init_lock - 0x00000000400d0d08 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x00000000400d0d44 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) 0x18 (size before relaxing) .literal.spi_flash_op_lock - 0x00000000400d0d18 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x00000000400d0d54 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) 0x8 (size before relaxing) .literal.spi_flash_op_unlock - 0x00000000400d0d18 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x00000000400d0d54 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) 0x8 (size before relaxing) .literal.is_safe_write_address - 0x00000000400d0d18 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x00000000400d0d54 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) 0x8 (size before relaxing) .literal.spi_flash_init - 0x00000000400d0d18 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x00000000400d0d54 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) 0x4 (size before relaxing) .literal.esp_flash_init_default_chip - 0x00000000400d0d18 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x00000000400d0d54 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) 0x34 (size before relaxing) .literal.esp_flash_app_init - 0x00000000400d0d30 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x00000000400d0d6c 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) 0x8 (size before relaxing) .literal.esp_flash_app_init_os_functions - 0x00000000400d0d30 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x00000000400d0d6c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) .literal.load_partitions - 0x00000000400d0d38 0x18 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0d74 0x18 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x38 (size before relaxing) .literal.ensure_partitions_loaded - 0x00000000400d0d50 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0d8c 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x24 (size before relaxing) .literal.iterator_create - 0x00000000400d0d5c 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0d98 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x8 (size before relaxing) .literal.esp_partition_iterator_release - 0x00000000400d0d5c 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0d98 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x4 (size before relaxing) .literal.esp_partition_next - 0x00000000400d0d5c 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0d98 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x28 (size before relaxing) .literal.esp_partition_find - 0x00000000400d0d68 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0da4 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0xc (size before relaxing) .literal.esp_partition_get - 0x00000000400d0d68 0x8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0da4 0x8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x10 (size before relaxing) .literal.esp_partition_find_first - 0x00000000400d0d70 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0dac 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0xc (size before relaxing) .literal.esp_partition_read - 0x00000000400d0d70 0x8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0dac 0x8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x14 (size before relaxing) .literal.esp_partition_write - 0x00000000400d0d78 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0db4 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x14 (size before relaxing) .literal.esp_partition_erase_range - 0x00000000400d0d7c 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0db8 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x14 (size before relaxing) .literal.esp_partition_main_flash_region_safe - 0x00000000400d0d80 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400d0dbc 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x8 (size before relaxing) .literal.spi_flash_cache2phys - 0x00000000400d0d84 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x00000000400d0dc0 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) 0x18 (size before relaxing) .literal.spi_flash_hal_init - 0x00000000400d0d94 0x20 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x00000000400d0dd0 0x20 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) 0x2c (size before relaxing) .literal.spi_flash_hal_supports_direct_write - 0x00000000400d0db4 0x8 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x00000000400d0df0 0x8 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) 0xc (size before relaxing) .literal.spi_flash_hal_supports_direct_read - 0x00000000400d0dbc 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x00000000400d0df8 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) 0xc (size before relaxing) .literal.brownout_hal_config - 0x00000000400d0dbc 0x18 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400d0df8 0x18 esp-idf/soc/libsoc.a(brownout_hal.c.obj) 0x1c (size before relaxing) .literal.brownout_hal_intr_enable - 0x00000000400d0dd4 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400d0e10 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) 0x4 (size before relaxing) .literal.brownout_hal_intr_clear - 0x00000000400d0dd4 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400d0e10 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) 0x4 (size before relaxing) .literal.esp_netif_list_lock - 0x00000000400d0dd4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400d0e10 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0xc (size before relaxing) .literal.esp_netif_list_unlock - 0x00000000400d0dd8 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400d0e14 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x20 (size before relaxing) .literal.esp_netif_add_to_list - 0x00000000400d0de8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400d0e24 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x14 (size before relaxing) .literal.esp_netif_remove_from_list - 0x00000000400d0dec 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400d0e28 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x28 (size before relaxing) .literal.esp_netif_next_unsafe - 0x00000000400d0df4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400d0e30 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x4 (size before relaxing) .literal.esp_netif_is_netif_listed - 0x00000000400d0df4 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400d0e30 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x24 (size before relaxing) .literal.esp_netif_get_handle_from_ifkey - 0x00000000400d0dfc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400d0e38 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x2c (size before relaxing) .literal.esp_netif_config_sanity_check - 0x00000000400d0e00 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e3c 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x1c (size before relaxing) .literal.esp_netif_set_ip_old_info_api - 0x00000000400d0e0c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e48 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x4 (size before relaxing) .literal.esp_netif_init_configuration - 0x00000000400d0e0c 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e48 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x20 (size before relaxing) .literal.esp_netif_lwip_remove - 0x00000000400d0e18 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e54 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x8 (size before relaxing) .literal.esp_netif_dhcps_cb - 0x00000000400d0e18 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e54 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x24 (size before relaxing) .literal.esp_netif_lwip_add - 0x00000000400d0e20 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e5c 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x28 (size before relaxing) .literal.esp_netif_is_active - 0x00000000400d0e2c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e68 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x4 (size before relaxing) .literal.esp_netif_ip_lost_timer - 0x00000000400d0e2c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e68 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x20 (size before relaxing) .literal.esp_netif_set_default_netif - 0x00000000400d0e34 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e70 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x8 (size before relaxing) .literal.esp_netif_api_cb - 0x00000000400d0e34 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e70 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x8 (size before relaxing) .literal.esp_netif_start_ip_lost_timer - 0x00000000400d0e38 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e74 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0xc (size before relaxing) .literal.esp_netif_dhcpc_start_api - 0x00000000400d0e40 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e7c 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x2c (size before relaxing) .literal.esp_netif_update_default_netif - 0x00000000400d0e50 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e8c 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x28 (size before relaxing) .literal.esp_netif_start_api - 0x00000000400d0e60 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0e9c 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x40 (size before relaxing) .literal.esp_netif_stop_api - 0x00000000400d0e7c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0eb8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x28 (size before relaxing) .literal.esp_netif_up_api - 0x00000000400d0e7c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0eb8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0xc (size before relaxing) .literal.esp_netif_down_api - 0x00000000400d0e7c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0eb8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x24 (size before relaxing) .literal.esp_netif_init - 0x00000000400d0e80 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ebc 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x34 (size before relaxing) .literal.esp_netif_destroy - 0x00000000400d0e8c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ec8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x2c (size before relaxing) .literal.esp_netif_new - 0x00000000400d0e90 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ecc 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x8c (size before relaxing) .literal.esp_netif_attach - 0x00000000400d0ea0 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0edc 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x14 (size before relaxing) .literal.esp_netif_set_driver_config - 0x00000000400d0ea8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ee4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x4 (size before relaxing) .literal.esp_netif_set_mac - 0x00000000400d0ea8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ee4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0xc (size before relaxing) .literal.esp_netif_start - 0x00000000400d0ea8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ee4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x30 (size before relaxing) .literal.esp_netif_stop - 0x00000000400d0eac 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ee8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x30 (size before relaxing) .literal.esp_netif_dhcpc_start - 0x00000000400d0eb0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0eec 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x28 (size before relaxing) .literal.esp_netif_get_hostname - 0x00000000400d0eb4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ef0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x4 (size before relaxing) .literal.esp_netif_up - 0x00000000400d0eb4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ef0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x28 (size before relaxing) .literal.esp_netif_down - 0x00000000400d0eb8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ef4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x28 (size before relaxing) .literal.esp_netif_update_default_netif_lwip - 0x00000000400d0ebc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0ef8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x38 (size before relaxing) .literal.esp_netif_get_old_ip_info - 0x00000000400d0ec0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0efc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x4 (size before relaxing) .literal.esp_netif_get_ip_info - 0x00000000400d0ec0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0efc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x4 (size before relaxing) .literal.esp_netif_set_old_ip_info - 0x00000000400d0ec0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0efc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x28 (size before relaxing) .literal.esp_netif_dhcpc_cb - 0x00000000400d0ec4 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400d0f00 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x34 (size before relaxing) .literal.esp_netif_ppp_set_default_netif - 0x00000000400d0ed0 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000400d0f0c 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x14 (size before relaxing) .literal.esp_netif_new_ppp - 0x00000000400d0edc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000400d0f18 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x14 (size before relaxing) .literal.esp_netif_start_ppp - 0x00000000400d0ee0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000400d0f1c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x14 (size before relaxing) .literal.esp_netif_stop_ppp - 0x00000000400d0ee4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000400d0f20 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x14 (size before relaxing) .literal.esp_netif_destroy_ppp - 0x00000000400d0ee8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000400d0f24 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x14 (size before relaxing) .literal.esp_event_legacy_wifi_event_id - 0x00000000400d0eec 0xc esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x00000000400d0f28 0xc esp-idf/esp_event/libesp_event.a(event_send.c.obj) 0x14 (size before relaxing) .literal.esp_event_legacy_ip_event_id - 0x00000000400d0ef8 0x8 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x00000000400d0f34 0x8 esp-idf/esp_event/libesp_event.a(event_send.c.obj) 0x14 (size before relaxing) .literal.esp_event_legacy_event_id - 0x00000000400d0f00 0x4 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x00000000400d0f3c 0x4 esp-idf/esp_event/libesp_event.a(event_send.c.obj) 0x20 (size before relaxing) .literal.esp_event_send_internal - 0x00000000400d0f04 0x8 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x00000000400d0f40 0x8 esp-idf/esp_event/libesp_event.a(event_send.c.obj) 0x10 (size before relaxing) .literal.MD5Transform - 0x00000000400d0f0c 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x00000000400d0f48 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) .literal.MD5Init - 0x00000000400d100c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x00000000400d1048 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) .literal.MD5Update - 0x00000000400d101c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x00000000400d1058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) 0x18 (size before relaxing) .literal.MD5Final - 0x00000000400d101c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x00000000400d1058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) 0x1c (size before relaxing) .literal.md5_vector - 0x00000000400d101c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x00000000400d1058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) 0xc (size before relaxing) .literal.hmac_md5_vector - 0x00000000400d101c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + 0x00000000400d1058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) 0x1c (size before relaxing) .literal.hmac_md5 - 0x00000000400d101c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + 0x00000000400d1058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) 0x4 (size before relaxing) .literal.sha1_vector - 0x00000000400d101c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + 0x00000000400d1058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) 0x14 (size before relaxing) .literal.pbkdf2_sha1 - 0x00000000400d101c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + 0x00000000400d1058 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) 0x18 (size before relaxing) .literal.hmac_sha1_vector - 0x00000000400d1020 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x00000000400d105c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) 0x1c (size before relaxing) .literal.hmac_sha1 - 0x00000000400d1020 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x00000000400d105c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) 0x4 (size before relaxing) .literal.sha1_prf - 0x00000000400d1020 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x00000000400d105c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) 0x10 (size before relaxing) .literal.hmac_sha256_vector - 0x00000000400d1020 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400d105c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) 0x1c (size before relaxing) .literal.hmac_sha256 - 0x00000000400d1020 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400d105c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) 0x4 (size before relaxing) .literal.sha256_prf_bits - 0x00000000400d1020 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400d105c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) 0x10 (size before relaxing) .literal.sha256_prf - 0x00000000400d1020 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400d105c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) 0x4 (size before relaxing) .literal.rijndaelDecrypt - 0x00000000400d1020 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x00000000400d105c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) .literal.rijndaelKeySetupDec - 0x00000000400d1028 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x00000000400d1064 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) 0xc (size before relaxing) .literal.aes_decrypt_init - 0x00000000400d102c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x00000000400d1068 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) 0xc (size before relaxing) .literal.aes_decrypt - 0x00000000400d102c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x00000000400d1068 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) 0x4 (size before relaxing) .literal.aes_decrypt_deinit - 0x00000000400d102c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x00000000400d1068 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) 0x4 (size before relaxing) .literal.rijndaelEncrypt - 0x00000000400d102c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x00000000400d1068 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) 0x10 (size before relaxing) .literal.aes_encrypt_init - 0x00000000400d102c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x00000000400d1068 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) 0xc (size before relaxing) .literal.aes_encrypt - 0x00000000400d102c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x00000000400d1068 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) 0x4 (size before relaxing) .literal.aes_encrypt_deinit - 0x00000000400d102c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x00000000400d1068 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) 0x4 (size before relaxing) .literal.rijndaelKeySetupEnc - 0x00000000400d102c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x00000000400d1068 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) 0x14 (size before relaxing) .literal.omac1_aes_vector - 0x00000000400d1030 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x00000000400d106c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) 0x1c (size before relaxing) .literal.omac1_aes_128_vector - 0x00000000400d1034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x00000000400d1070 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) 0x4 (size before relaxing) .literal.omac1_aes_128 - 0x00000000400d1034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x00000000400d1070 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) 0x4 (size before relaxing) .literal.aes_unwrap - 0x00000000400d1034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x00000000400d1070 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) 0x24 (size before relaxing) .literal.aes_wrap - 0x00000000400d1034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x00000000400d1070 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) 0x2c (size before relaxing) .literal.ccmp_aad_nonce - 0x00000000400d1034 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x00000000400d1070 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) 0x18 (size before relaxing) .literal.ccmp_decrypt - 0x00000000400d103c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x00000000400d1078 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) 0x10 (size before relaxing) .literal.ccmp_encrypt - 0x00000000400d103c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x00000000400d1078 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) 0x18 (size before relaxing) .literal.sha256_vector - 0x00000000400d103c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + 0x00000000400d1078 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) 0x14 (size before relaxing) .literal.aes_ccm_encr_start - 0x00000000400d103c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400d1078 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x4 (size before relaxing) .literal.aes_ccm_auth - 0x00000000400d103c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400d1078 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0xc (size before relaxing) .literal.aes_ccm_encr - 0x00000000400d1040 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400d107c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0xc (size before relaxing) .literal.aes_ccm_encr_auth - 0x00000000400d1040 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400d107c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x4 (size before relaxing) .literal.aes_ccm_decr_auth - 0x00000000400d1040 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400d107c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x4 (size before relaxing) .literal.aes_ccm_auth_start - 0x00000000400d1040 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400d107c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x20 (size before relaxing) .literal.aes_ccm_ae - 0x00000000400d1040 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400d107c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x1c (size before relaxing) .literal.aes_ccm_ad - 0x00000000400d1040 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400d107c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x20 (size before relaxing) .literal._ZL18nvs_find_ns_handlejPPN3nvs15NVSHandleSimpleE - 0x00000000400d1040 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400d107c 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) .literal._ZL24lookup_storage_from_namePKc - 0x00000000400d1048 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400d1084 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x8 (size before relaxing) .literal._ZL19nvs_get_str_or_blobjN3nvs8ItemTypeEPKcPvPj - 0x00000000400d1048 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400d1084 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) .literal._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t - 0x00000000400d1050 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal.nvs_flash_init_partition - 0x00000000400d1050 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x18 (size before relaxing) - .literal.nvs_flash_init - 0x00000000400d1050 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x8 (size before relaxing) - .literal.nvs_flash_erase_partition - 0x00000000400d1054 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_flash_erase - 0x00000000400d1058 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x8 (size before relaxing) - .literal.nvs_open_from_partition - 0x00000000400d1058 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x24 (size before relaxing) - .literal.nvs_open - 0x00000000400d1064 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x8 (size before relaxing) - .literal.nvs_close - 0x00000000400d1064 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x18 (size before relaxing) - .literal.nvs_erase_key - 0x00000000400d1068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x10 (size before relaxing) - .literal.nvs_erase_all - 0x00000000400d1068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x10 (size before relaxing) - .literal.nvs_commit - 0x00000000400d1068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x10 (size before relaxing) - .literal.nvs_set_str - 0x00000000400d1068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x10 (size before relaxing) - .literal.nvs_set_blob - 0x00000000400d1068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x10 (size before relaxing) - .literal.nvs_get_str - 0x00000000400d1068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal.nvs_get_blob - 0x00000000400d1068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal.nvs_entry_find - 0x00000000400d1068 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x1c (size before relaxing) - .literal.nvs_entry_next - 0x00000000400d1068 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x24 (size before relaxing) - .literal.nvs_entry_info - 0x00000000400d1074 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_setIaEijPKcT_ - 0x00000000400d1074 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_set_i8 - 0x00000000400d1078 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_setIhEijPKcT_ - 0x00000000400d1078 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_set_u8 - 0x00000000400d107c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_setIsEijPKcT_ - 0x00000000400d107c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_set_i16 - 0x00000000400d1080 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_setItEijPKcT_ - 0x00000000400d1080 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_set_u16 - 0x00000000400d1084 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_setIiEijPKcT_ - 0x00000000400d1084 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_set_i32 - 0x00000000400d1088 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_setIjEijPKcT_ - 0x00000000400d1088 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_set_u32 0x00000000400d108c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4 (size before relaxing) - .literal._Z7nvs_setIxEijPKcT_ + .literal.nvs_flash_init_partition + 0x00000000400d108c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + .literal.nvs_flash_init 0x00000000400d108c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_set_i64 - 0x00000000400d1090 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_setIyEijPKcT_ + 0x8 (size before relaxing) + .literal.nvs_flash_erase_partition 0x00000000400d1090 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - .literal.nvs_set_u64 + .literal.nvs_flash_erase 0x00000000400d1094 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_getIaEijPKcPT_ - 0x00000000400d1094 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_get_i8 - 0x00000000400d1098 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_getIhEijPKcPT_ - 0x00000000400d1098 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_get_u8 - 0x00000000400d109c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_getIsEijPKcPT_ - 0x00000000400d109c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_get_i16 + 0x8 (size before relaxing) + .literal.nvs_open_from_partition + 0x00000000400d1094 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x24 (size before relaxing) + .literal.nvs_open 0x00000000400d10a0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_getItEijPKcPT_ + 0x8 (size before relaxing) + .literal.nvs_close 0x00000000400d10a0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_get_u16 + 0x18 (size before relaxing) + .literal.nvs_erase_key + 0x00000000400d10a4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_erase_all + 0x00000000400d10a4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_commit + 0x00000000400d10a4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_str + 0x00000000400d10a4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_blob + 0x00000000400d10a4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_str 0x00000000400d10a4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4 (size before relaxing) - .literal._Z7nvs_getIiEijPKcPT_ - 0x00000000400d10a4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_get_i32 - 0x00000000400d10a8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_blob + 0x00000000400d10a4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4 (size before relaxing) - .literal._Z7nvs_getIjEijPKcPT_ - 0x00000000400d10a8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_get_u32 - 0x00000000400d10ac 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x4 (size before relaxing) - .literal._Z7nvs_getIxEijPKcPT_ - 0x00000000400d10ac 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x14 (size before relaxing) - .literal.nvs_get_i64 + .literal.nvs_entry_find + 0x00000000400d10a4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x1c (size before relaxing) + .literal.nvs_entry_next + 0x00000000400d10a4 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x24 (size before relaxing) + .literal.nvs_entry_info 0x00000000400d10b0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4 (size before relaxing) - .literal._Z7nvs_getIyEijPKcPT_ + .literal._Z7nvs_setIaEijPKcT_ 0x00000000400d10b0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - .literal.nvs_get_u64 + .literal.nvs_set_i8 0x00000000400d10b4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4 (size before relaxing) + .literal._Z7nvs_setIhEijPKcT_ + 0x00000000400d10b4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u8 + 0x00000000400d10b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIsEijPKcT_ + 0x00000000400d10b8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_i16 + 0x00000000400d10bc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setItEijPKcT_ + 0x00000000400d10bc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u16 + 0x00000000400d10c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIiEijPKcT_ + 0x00000000400d10c0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_i32 + 0x00000000400d10c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIjEijPKcT_ + 0x00000000400d10c4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u32 + 0x00000000400d10c8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIxEijPKcT_ + 0x00000000400d10c8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_i64 + 0x00000000400d10cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIyEijPKcT_ + 0x00000000400d10cc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u64 + 0x00000000400d10d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIaEijPKcPT_ + 0x00000000400d10d0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_i8 + 0x00000000400d10d4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIhEijPKcPT_ + 0x00000000400d10d4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u8 + 0x00000000400d10d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIsEijPKcPT_ + 0x00000000400d10d8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_i16 + 0x00000000400d10dc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getItEijPKcPT_ + 0x00000000400d10dc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u16 + 0x00000000400d10e0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIiEijPKcPT_ + 0x00000000400d10e0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_i32 + 0x00000000400d10e4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIjEijPKcPT_ + 0x00000000400d10e4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u32 + 0x00000000400d10e8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIxEijPKcPT_ + 0x00000000400d10e8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_i64 + 0x00000000400d10ec 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIyEijPKcPT_ + 0x00000000400d10ec 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u64 + 0x00000000400d10f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) .literal._ZN3nvs7Storage15clearNamespacesEv - 0x00000000400d10b4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d10f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs7StorageD2Ev - 0x00000000400d10b4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d10f0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE - 0x00000000400d10b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x10 (size before relaxing) .literal._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE - 0x00000000400d10b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x28 (size before relaxing) .literal._ZN3nvs7Storage4initEjj - 0x00000000400d10b8 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d10f4 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x3c (size before relaxing) .literal._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE - 0x00000000400d10c4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1100 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE - 0x00000000400d10c8 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1104 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x50 (size before relaxing) .literal._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj - 0x00000000400d10dc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1118 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x2c (size before relaxing) .literal._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE - 0x00000000400d10ec 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1128 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x2c (size before relaxing) .literal._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj - 0x00000000400d10fc 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1138 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x34 (size before relaxing) .literal._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj - 0x00000000400d1104 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1140 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x14 (size before relaxing) .literal._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj - 0x00000000400d1104 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1140 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x6c (size before relaxing) .literal._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh - 0x00000000400d1118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x20 (size before relaxing) .literal._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc - 0x00000000400d1118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x14 (size before relaxing) .literal._ZN3nvs7Storage14eraseNamespaceEh - 0x00000000400d1118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj - 0x00000000400d1118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs7Storage22calcEntriesInNamespaceEhRj - 0x00000000400d1118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t - 0x00000000400d1118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t - 0x00000000400d1118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc - 0x00000000400d1118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400d1154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs19NVSPartitionManagerD5Ev - 0x00000000400d1118 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400d1154 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs19NVSPartitionManager12get_instanceEv - 0x00000000400d1118 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400d1154 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) 0x10 (size before relaxing) .literal._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE - 0x00000000400d1120 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400d115c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc - 0x00000000400d1120 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400d115c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs19NVSPartitionManager11init_customEPKcjj - 0x00000000400d1120 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400d115c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) 0x20 (size before relaxing) .literal._ZN3nvs19NVSPartitionManager14init_partitionEPKc - 0x00000000400d1120 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400d115c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE - 0x00000000400d1120 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400d115c 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) 0x1c (size before relaxing) .literal._ZN3nvs8HashList5clearEv - 0x00000000400d1128 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400d1164 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs8HashListD2Ev - 0x00000000400d1128 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400d1164 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs8HashList6insertERKNS_4ItemEj - 0x00000000400d1128 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400d1164 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) 0x10 (size before relaxing) .literal._ZN3nvs8HashList5eraseEjb - 0x00000000400d112c 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400d1168 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) 0x14 (size before relaxing) .literal._ZN3nvs8HashList4findEjRKNS_4ItemE - 0x00000000400d1138 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400d1174 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs4Page6Header14calculateCrc32Ev - 0x00000000400d1138 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d1174 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) .literal._ZN3nvs4Page20updateFirstUsedEntryEjj - 0x00000000400d113c 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d1178 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x20 (size before relaxing) .literal._ZN3nvs4Page10initializeEv - 0x00000000400d1154 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d1190 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x18 (size before relaxing) .literal._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE - 0x00000000400d115c 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d1198 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x24 (size before relaxing) .literal._ZN3nvs4Page10writeEntryERKNS_4ItemE - 0x00000000400d1168 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11a4 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x18 (size before relaxing) .literal._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE - 0x00000000400d1174 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11b0 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x2c (size before relaxing) .literal._ZN3nvs4Page14writeEntryDataEPKhj - 0x00000000400d1180 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11bc 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x48 (size before relaxing) .literal._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh - 0x00000000400d1194 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11d0 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x5c (size before relaxing) .literal._ZN3nvs4Page14alterPageStateENS0_9PageStateE - 0x00000000400d11a4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11e0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x4 (size before relaxing) .literal._ZNK3nvs4Page9readEntryEjRNS_4ItemE - 0x00000000400d11a4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11e0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x14 (size before relaxing) .literal._ZN3nvs4Page17eraseEntryAndSpanEj - 0x00000000400d11a4 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11e0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x48 (size before relaxing) .literal._ZN3nvs4Page9copyItemsERS0_ - 0x00000000400d11ac 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11e8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x44 (size before relaxing) .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE - 0x00000000400d11b4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x30 (size before relaxing) .literal._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE - 0x00000000400d11b4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x28 (size before relaxing) .literal._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE - 0x00000000400d11b4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x28 (size before relaxing) .literal._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE - 0x00000000400d11b4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs4Page15mLoadEntryTableEv - 0x00000000400d11b4 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11f0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x7c (size before relaxing) .literal._ZN3nvs4Page4loadEj - 0x00000000400d11bc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d11f8 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x2c (size before relaxing) .literal._ZNK3nvs4Page12getSeqNumberERj - 0x00000000400d11cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d1208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs4Page12setSeqNumberEj - 0x00000000400d11cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d1208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs4Page5eraseEv - 0x00000000400d11cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d1208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs4Page11markFreeingEv - 0x00000000400d11cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d1208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs4Page8markFullEv - 0x00000000400d11cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d1208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x8 (size before relaxing) .literal._ZNK3nvs4Page18getVarDataTailroomEv - 0x00000000400d11cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400d1208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs11PageManager12activatePageEv - 0x00000000400d11cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x00000000400d1208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs11PageManager14requestNewPageEv - 0x00000000400d11cc 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x00000000400d1208 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) 0x30 (size before relaxing) .literal._ZN3nvs11PageManager4loadEjj - 0x00000000400d11d8 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x00000000400d1214 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) 0x60 (size before relaxing) .literal._ZN3nvs15NVSHandleSimple6commitEv - 0x00000000400d11ec 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d1228 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs15NVSHandleSimpleD2Ev - 0x00000000400d11ec 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d1228 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs15NVSHandleSimpleD0Ev - 0x00000000400d11ec 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d1228 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj - 0x00000000400d11ec 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d1228 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x10 (size before relaxing) .literal._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x8 (size before relaxing) .literal._ZN3nvs15NVSHandleSimple10erase_itemEPKc - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs15NVSHandleSimple9erase_allEv - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs15NVSHandleSimple20get_used_entry_countERj - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x8 (size before relaxing) .literal._ZNK3nvs4Item14calculateCrc32Ev - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) 0xc (size before relaxing) .literal._ZNK3nvs4Item26calculateCrc32WithoutValueEv - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) 0xc (size before relaxing) .literal._ZN3nvs4Item14calculateCrc32EPKhj - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs15nvs_flash_writeEjPKvj - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) 0x4 (size before relaxing) .literal._ZN3nvs14nvs_flash_readEjPvj - 0x00000000400d11f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + 0x00000000400d122c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) 0x4 (size before relaxing) .literal.s_set_default_wifi_log_level - 0x00000000400d11f0 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x00000000400d122c 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) 0x10 (size before relaxing) .literal.esp_wifi_deinit - 0x00000000400d11f8 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x00000000400d1234 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) 0x1c (size before relaxing) .literal.esp_wifi_init - 0x00000000400d1200 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x00000000400d123c 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) 0x40 (size before relaxing) .literal.wifi_default_action_sta_got_ip - 0x00000000400d1214 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d1250 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x1c (size before relaxing) .literal.wifi_default_action_ap_stop - 0x00000000400d1220 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d125c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x8 (size before relaxing) .literal.wifi_default_action_sta_stop - 0x00000000400d1220 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d125c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x8 (size before relaxing) .literal.wifi_start - 0x00000000400d1220 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d125c 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x38 (size before relaxing) .literal.wifi_default_action_ap_start - 0x00000000400d1234 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d1270 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x8 (size before relaxing) .literal.wifi_default_action_sta_start - 0x00000000400d1234 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d1270 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x8 (size before relaxing) .literal.wifi_default_action_sta_disconnected - 0x00000000400d1234 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d1270 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x8 (size before relaxing) .literal.wifi_default_action_sta_connected - 0x00000000400d1234 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d1270 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x28 (size before relaxing) .literal.create_and_attach - 0x00000000400d1234 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d1270 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x18 (size before relaxing) .literal._esp_wifi_clear_default_wifi_handlers - 0x00000000400d1238 0x2c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d1274 0x2c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x4c (size before relaxing) .literal._esp_wifi_set_default_wifi_handlers - 0x00000000400d1264 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d12a0 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x50 (size before relaxing) .literal.esp_wifi_set_default_wifi_sta_handlers - 0x00000000400d1268 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d12a4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x4 (size before relaxing) .literal.esp_wifi_set_default_wifi_ap_handlers - 0x00000000400d1268 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d12a4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x4 (size before relaxing) .literal.esp_netif_attach_wifi_station - 0x00000000400d1268 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d12a4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x8 (size before relaxing) .literal.esp_netif_attach_wifi_ap - 0x00000000400d1268 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d12a4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x8 (size before relaxing) .literal.esp_netif_create_default_wifi_ap - 0x00000000400d1268 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d12a4 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x24 (size before relaxing) .literal.esp_netif_create_default_wifi_sta - 0x00000000400d127c 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400d12b8 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x24 (size before relaxing) .literal.wifi_sta_receive - 0x00000000400d1288 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400d12c4 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) .literal.wifi_ap_receive - 0x00000000400d1290 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400d12cc 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) 0x8 (size before relaxing) .literal.wifi_driver_start - 0x00000000400d1290 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400d12cc 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) 0xc (size before relaxing) .literal.wifi_free - 0x00000000400d1298 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - 0x4 (size before relaxing) + 0x00000000400d12d4 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) .literal.wifi_transmit - 0x00000000400d1298 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400d12d8 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) 0x4 (size before relaxing) .literal.esp_wifi_create_if_driver - 0x00000000400d1298 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400d12d8 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) 0x18 (size before relaxing) .literal.esp_wifi_get_if_mac - 0x00000000400d12a4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400d12e4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) 0x4 (size before relaxing) .literal.esp_wifi_register_if_rxcb - 0x00000000400d12a4 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400d12e4 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) 0x3c (size before relaxing) .literal.queue_create_wrapper - 0x00000000400d12b8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.mutex_delete_wrapper - 0x00000000400d12b8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.wifi_thread_semphr_free - 0x00000000400d12b8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.semphr_delete_wrapper - 0x00000000400d12b8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.get_time_wrapper - 0x00000000400d12b8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.wifi_clock_disable_wrapper - 0x00000000400d12b8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.wifi_clock_enable_wrapper - 0x00000000400d12b8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.wifi_reset_mac_wrapper - 0x00000000400d12b8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12f8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0xc (size before relaxing) .literal.timer_setfn_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.timer_done_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.esp_event_post_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x8 (size before relaxing) .literal.task_create_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x8 (size before relaxing) .literal.task_create_pinned_to_core_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x8 (size before relaxing) .literal.event_group_wait_bits_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x8 (size before relaxing) .literal.queue_recv_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x8 (size before relaxing) .literal.semphr_take_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x8 (size before relaxing) .literal.queue_send_to_front_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.queue_send_to_back_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.queue_send_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x8 (size before relaxing) .literal.semphr_give_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.recursive_mutex_create_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.mutex_create_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.semphr_create_wrapper - 0x00000000400d12bc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.wifi_thread_semphr_get_wrapper - 0x00000000400d12bc 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d12fc 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x1c (size before relaxing) .literal.spin_lock_create_wrapper - 0x00000000400d12c8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d1308 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0xc (size before relaxing) .literal.set_isr_wrapper - 0x00000000400d12cc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d130c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.wifi_create_queue - 0x00000000400d12cc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d130c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0xc (size before relaxing) .literal.wifi_create_queue_wrapper - 0x00000000400d12cc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d130c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.wifi_delete_queue - 0x00000000400d12cc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d130c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x8 (size before relaxing) .literal.wifi_delete_queue_wrapper - 0x00000000400d12cc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400d130c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4 (size before relaxing) .literal.load_cal_data_from_nvs_handle - 0x00000000400d12cc 0x1c esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d130c 0x20 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x48 (size before relaxing) .literal.store_cal_data_to_nvs_handle - 0x00000000400d12e8 0x14 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d132c 0x14 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x60 (size before relaxing) .literal.esp_phy_rf_deinit - 0x00000000400d12fc 0x1c esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d1340 0x20 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x44 (size before relaxing) .literal.esp_modem_sleep_enter - 0x00000000400d1318 0x18 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d1360 0x18 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x3c (size before relaxing) .literal.esp_modem_sleep_register - 0x00000000400d1330 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d1378 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x34 (size before relaxing) .literal.esp_phy_get_init_data - 0x00000000400d1338 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d1380 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .literal.esp_phy_load_cal_data_from_nvs - 0x00000000400d133c 0xc esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d1384 0xc esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x28 (size before relaxing) .literal.esp_phy_store_cal_data_to_nvs - 0x00000000400d1348 0x0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d1390 0x0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x10 (size before relaxing) .literal.esp_phy_rf_init - 0x00000000400d1348 0xc esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d1390 0x14 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x58 (size before relaxing) .literal.esp_modem_sleep_exit - 0x00000000400d1354 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d13a4 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x3c (size before relaxing) .literal.esp_modem_sleep_deregister - 0x00000000400d1358 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d13a8 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x3c (size before relaxing) .literal.esp_phy_load_cal_and_init - 0x00000000400d1360 0x14 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400d13b0 0x14 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x78 (size before relaxing) .literal.kill_oldest_dhcps_pool - 0x00000000400d1374 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d13c4 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0xc (size before relaxing) .literal.parse_options - 0x00000000400d1378 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d13c8 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0xc (size before relaxing) .literal.create_msg - 0x00000000400d1380 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d13d0 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x18 (size before relaxing) .literal.add_offer_options - 0x00000000400d1384 0x18 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d13d4 0x18 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x1c (size before relaxing) .literal.dhcps_poll_set - 0x00000000400d139c 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d13ec 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x1c (size before relaxing) .literal.parse_msg - 0x00000000400d13a0 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d13f0 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x70 (size before relaxing) .literal.dhcps_pbuf_alloc - 0x00000000400d13b0 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d1400 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x4 (size before relaxing) .literal.send_offer - 0x00000000400d13b0 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d1400 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x24 (size before relaxing) .literal.send_ack - 0x00000000400d13bc 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d140c 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x28 (size before relaxing) .literal.send_nak - 0x00000000400d13c0 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d1410 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x20 (size before relaxing) .literal.handle_dhcp - 0x00000000400d13c0 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d1410 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x24 (size before relaxing) .literal.dhcps_set_new_lease_cb - 0x00000000400d13c0 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d1410 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x4 (size before relaxing) .literal.dhcps_start - 0x00000000400d13c0 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d1410 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x34 (size before relaxing) .literal.dhcps_stop - 0x00000000400d13c8 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d1418 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x20 (size before relaxing) .literal.dhcps_coarse_tmr - 0x00000000400d13cc 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400d141c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x14 (size before relaxing) .literal.tcpip_timeouts_mbox_fetch - 0x00000000400d13cc 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400d141c 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x14 (size before relaxing) .literal.tcpip_thread_handle_msg - 0x00000000400d13cc 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400d141c 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x24 (size before relaxing) .literal.tcpip_thread - 0x00000000400d13dc 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400d142c 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x24 (size before relaxing) .literal.tcpip_inpkt - 0x00000000400d13ec 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400d143c 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x20 (size before relaxing) .literal.tcpip_input - 0x00000000400d13f4 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400d1444 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x10 (size before relaxing) .literal.tcpip_callback - 0x00000000400d13fc 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400d144c 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x1c (size before relaxing) .literal.tcpip_try_callback - 0x00000000400d1400 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400d1450 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x20 (size before relaxing) .literal.tcpip_send_msg_wait_sem - 0x00000000400d1404 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400d1454 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x24 (size before relaxing) .literal.tcpip_init - 0x00000000400d140c 0x14 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400d145c 0x14 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x38 (size before relaxing) .literal.lwip_htonl - 0x00000000400d1420 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + 0x00000000400d1470 0x0 esp-idf/lwip/liblwip.a(def.c.obj) 0x8 (size before relaxing) .literal.dns_backupserver_available - 0x00000000400d1420 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400d1470 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) .literal.dns_create_txid - 0x00000000400d1424 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400d1474 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) 0x8 (size before relaxing) .literal.dns_call_found - 0x00000000400d1428 0x14 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400d1478 0x14 esp-idf/lwip/liblwip.a(dns.c.obj) 0x24 (size before relaxing) .literal.dns_send - 0x00000000400d143c 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400d148c 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) 0x60 (size before relaxing) .literal.dns_check_entry - 0x00000000400d1454 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400d14a4 0xc esp-idf/lwip/liblwip.a(dns.c.obj) 0x34 (size before relaxing) .literal.dns_check_entries - 0x00000000400d1460 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400d14b0 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) 0x4 (size before relaxing) .literal.dns_setserver - 0x00000000400d1460 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400d14b0 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) 0x10 (size before relaxing) .literal.dns_clear_servers - 0x00000000400d1460 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400d14b0 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) 0x4 (size before relaxing) .literal.dns_tmr - 0x00000000400d1460 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400d14b0 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) 0x4 (size before relaxing) .literal.lwip_init - 0x00000000400d1460 0xc esp-idf/lwip/liblwip.a(init.c.obj) + 0x00000000400d14b0 0xc esp-idf/lwip/liblwip.a(init.c.obj) 0x24 (size before relaxing) .literal.ip_input - 0x00000000400d146c 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x00000000400d14bc 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) 0x8 (size before relaxing) .literal.mem_malloc - 0x00000000400d146c 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x00000000400d14bc 0xc esp-idf/lwip/liblwip.a(mem.c.obj) 0x1c (size before relaxing) .literal.mem_free - 0x00000000400d1478 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x00000000400d14c8 0xc esp-idf/lwip/liblwip.a(mem.c.obj) 0x1c (size before relaxing) .literal.do_memp_malloc_pool - 0x00000000400d1484 0xc esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000400d14d4 0xc esp-idf/lwip/liblwip.a(memp.c.obj) 0x20 (size before relaxing) .literal.do_memp_free_pool - 0x00000000400d1490 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000400d14e0 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) 0x1c (size before relaxing) .literal.memp_malloc - 0x00000000400d1498 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000400d14e8 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) 0x10 (size before relaxing) .literal.memp_free - 0x00000000400d14a0 0x4 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000400d14f0 0x4 esp-idf/lwip/liblwip.a(memp.c.obj) 0x10 (size before relaxing) .literal.netif_loopif_init - 0x00000000400d14a4 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d14f4 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) 0x18 (size before relaxing) .literal.netif_do_ip_addr_changed - 0x00000000400d14b8 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1508 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) 0xc (size before relaxing) .literal.netif_issue_reports - 0x00000000400d14b8 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1508 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) 0x1c (size before relaxing) .literal.netif_do_set_ipaddr - 0x00000000400d14c0 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1510 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) 0x1c (size before relaxing) .literal.netif_poll - 0x00000000400d14c8 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1518 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) 0x40 (size before relaxing) .literal.netif_set_addr - 0x00000000400d14dc 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d152c 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) 0x14 (size before relaxing) .literal.netif_add - 0x00000000400d14e4 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1534 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) 0x48 (size before relaxing) .literal.netif_set_default - 0x00000000400d150c 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d155c 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) .literal.netif_set_up - 0x00000000400d1510 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1560 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) 0x10 (size before relaxing) .literal.netif_set_down - 0x00000000400d1514 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1564 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) 0x10 (size before relaxing) .literal.netif_remove - 0x00000000400d1518 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1568 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) 0x24 (size before relaxing) .literal.netif_set_link_up - 0x00000000400d1518 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1568 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) 0x14 (size before relaxing) .literal.netif_init - 0x00000000400d151c 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d156c 0xc esp-idf/lwip/liblwip.a(netif.c.obj) 0x20 (size before relaxing) .literal.netif_loop_output - 0x00000000400d1528 0x18 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1578 0x18 esp-idf/lwip/liblwip.a(netif.c.obj) 0x44 (size before relaxing) .literal.netif_loop_output_ipv6 - 0x00000000400d1540 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1590 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) 0x4 (size before relaxing) .literal.netif_loop_output_ipv4 - 0x00000000400d1540 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1590 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) 0x4 (size before relaxing) .literal.netif_ip6_addr_set_parts - 0x00000000400d1540 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d1590 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) 0x28 (size before relaxing) .literal.netif_ip6_addr_set - 0x00000000400d1554 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d15a4 0xc esp-idf/lwip/liblwip.a(netif.c.obj) 0x1c (size before relaxing) .literal.netif_ip6_addr_set_state - 0x00000000400d1560 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d15b0 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) 0x24 (size before relaxing) .literal.netif_get_ip6_addr_match - 0x00000000400d1564 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d15b4 0xc esp-idf/lwip/liblwip.a(netif.c.obj) 0x18 (size before relaxing) .literal.netif_get_by_index - 0x00000000400d1570 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d15c0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) 0x4 (size before relaxing) .literal.netif_find - 0x00000000400d1570 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400d15c0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) 0x8 (size before relaxing) .literal.pbuf_add_header_impl - 0x00000000400d1570 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15c0 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x14 (size before relaxing) .literal.pbuf_pool_is_empty - 0x00000000400d157c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15cc 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x1c (size before relaxing) .literal.pbuf_free_ooseq - 0x00000000400d1584 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15d4 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x14 (size before relaxing) .literal.pbuf_free_ooseq_callback - 0x00000000400d1588 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15d8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x4 (size before relaxing) .literal.pbuf_alloc_reference - 0x00000000400d1588 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15d8 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x18 (size before relaxing) .literal.pbuf_add_header - 0x00000000400d1594 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15e4 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x4 (size before relaxing) .literal.pbuf_add_header_force - 0x00000000400d1594 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15e4 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x4 (size before relaxing) .literal.pbuf_remove_header - 0x00000000400d1594 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15e4 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x1c (size before relaxing) .literal.pbuf_header_impl - 0x00000000400d159c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15ec 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x8 (size before relaxing) .literal.pbuf_header_force - 0x00000000400d159c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15ec 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x4 (size before relaxing) .literal.pbuf_free - 0x00000000400d159c 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15ec 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x3c (size before relaxing) .literal.pbuf_alloc - 0x00000000400d15ac 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d15fc 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x44 (size before relaxing) .literal.pbuf_realloc - 0x00000000400d15c0 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1610 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x28 (size before relaxing) .literal.pbuf_free_header - 0x00000000400d15d4 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1624 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x8 (size before relaxing) .literal.pbuf_ref - 0x00000000400d15d4 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1624 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x18 (size before relaxing) .literal.pbuf_cat - 0x00000000400d15dc 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d162c 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x18 (size before relaxing) .literal.pbuf_chain - 0x00000000400d15e8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1638 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x8 (size before relaxing) .literal.pbuf_copy - 0x00000000400d15e8 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1638 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x38 (size before relaxing) .literal.pbuf_copy_partial - 0x00000000400d1600 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1650 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x14 (size before relaxing) .literal.pbuf_skip - 0x00000000400d1608 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1658 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) .literal.pbuf_take - 0x00000000400d160c 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d165c 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x34 (size before relaxing) .literal.pbuf_take_at - 0x00000000400d1624 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1674 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x1c (size before relaxing) .literal.pbuf_clone - 0x00000000400d162c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d167c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x18 (size before relaxing) .literal.pbuf_try_get_at - 0x00000000400d1634 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1684 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x4 (size before relaxing) .literal.pbuf_get_at - 0x00000000400d1634 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1684 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x4 (size before relaxing) .literal.pbuf_put_at - 0x00000000400d1634 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400d1684 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x4 (size before relaxing) .literal.raw_input_local_match - 0x00000000400d1634 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400d1684 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) .literal.raw_input - 0x00000000400d1638 0x18 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400d1688 0x18 esp-idf/lwip/liblwip.a(raw.c.obj) 0x24 (size before relaxing) .literal.raw_bind - 0x00000000400d1650 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400d16a0 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) 0x10 (size before relaxing) .literal.raw_sendto_if_src - 0x00000000400d1654 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400d16a4 0xc esp-idf/lwip/liblwip.a(raw.c.obj) 0x40 (size before relaxing) .literal.raw_sendto - 0x00000000400d1660 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400d16b0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) 0x18 (size before relaxing) .literal.raw_send - 0x00000000400d1660 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400d16b0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) 0x4 (size before relaxing) .literal.raw_remove - 0x00000000400d1660 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400d16b0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) 0x8 (size before relaxing) .literal.raw_new - 0x00000000400d1660 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400d16b0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) 0xc (size before relaxing) .literal.raw_new_ip_type - 0x00000000400d1660 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400d16b0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) 0x4 (size before relaxing) .literal.raw_netif_ip_addr_changed - 0x00000000400d1660 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400d16b0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) 0x4 (size before relaxing) .literal.tcp_new_port - 0x00000000400d1660 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16b0 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x14 (size before relaxing) .literal.tcp_remove_listener - 0x00000000400d1670 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16c0 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) 0x10 (size before relaxing) .literal.tcp_listen_closed - 0x00000000400d167c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16cc 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) 0x20 (size before relaxing) .literal.tcp_free_listen - 0x00000000400d1688 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16d8 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x14 (size before relaxing) .literal.tcp_init - 0x00000000400d1690 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16e0 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x8 (size before relaxing) .literal.tcp_free - 0x00000000400d1690 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16e0 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x14 (size before relaxing) .literal.tcp_backlog_delayed - 0x00000000400d1698 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16e8 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x18 (size before relaxing) .literal.tcp_backlog_accepted - 0x00000000400d16a0 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16f0 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x18 (size before relaxing) .literal.tcp_close_shutdown_fin - 0x00000000400d16a4 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16f4 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x24 (size before relaxing) .literal.tcp_handle_closepend - 0x00000000400d16a8 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16f8 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x8 (size before relaxing) .literal.tcp_bind - 0x00000000400d16a8 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d16f8 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) 0x34 (size before relaxing) .literal.tcp_listen_with_backlog_and_err - 0x00000000400d16b4 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d1704 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x38 (size before relaxing) .literal.tcp_update_rcv_ann_wnd - 0x00000000400d16cc 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d171c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x20 (size before relaxing) .literal.tcp_recved - 0x00000000400d16dc 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d172c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x24 (size before relaxing) .literal.tcp_seg_free - 0x00000000400d16ec 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d173c 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x8 (size before relaxing) .literal.tcp_segs_free - 0x00000000400d16ec 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d173c 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x4 (size before relaxing) .literal.tcp_seg_copy - 0x00000000400d16ec 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d173c 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x1c (size before relaxing) .literal.tcp_pcb_num_cal - 0x00000000400d16f4 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d1744 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x10 (size before relaxing) .literal.tcp_recv - 0x00000000400d16f8 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d1748 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) 0x14 (size before relaxing) .literal.tcp_sent - 0x00000000400d1704 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d1754 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) 0x14 (size before relaxing) .literal.tcp_err - 0x00000000400d1710 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d1760 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) 0x14 (size before relaxing) .literal.tcp_poll - 0x00000000400d171c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d176c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x1c (size before relaxing) .literal.tcp_next_iss - 0x00000000400d172c 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d177c 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x1c (size before relaxing) .literal.tcp_eff_send_mss_netif - 0x00000000400d1740 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d1790 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) 0x18 (size before relaxing) .literal.tcp_free_ooseq - 0x00000000400d174c 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d179c 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x4 (size before relaxing) .literal.tcp_pcb_purge - 0x00000000400d174c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d179c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x1c (size before relaxing) .literal.tcp_pcb_remove - 0x00000000400d1750 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d17a0 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) 0x4c (size before relaxing) .literal.tcp_abandon - 0x00000000400d177c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d17cc 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x4c (size before relaxing) .literal.tcp_abort - 0x00000000400d178c 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d17dc 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x4 (size before relaxing) .literal.tcp_accept_null - 0x00000000400d178c 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d17dc 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x14 (size before relaxing) .literal.tcp_kill_timewait - 0x00000000400d1794 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d17e4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) 0xc (size before relaxing) .literal.tcp_kill_prio - 0x00000000400d1794 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d17e4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) 0xc (size before relaxing) .literal.tcp_netif_ip_addr_changed_pcblist - 0x00000000400d1794 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d17e4 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) 0x18 (size before relaxing) .literal.tcp_netif_ip_addr_changed - 0x00000000400d17a0 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d17f0 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x14 (size before relaxing) .literal.tcp_kill_state - 0x00000000400d17a0 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d17f0 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x1c (size before relaxing) .literal.tcp_alloc - 0x00000000400d17a8 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d17f8 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x64 (size before relaxing) .literal.tcp_new_ip_type - 0x00000000400d17b8 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d1808 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x4 (size before relaxing) .literal.tcp_close_shutdown - 0x00000000400d17b8 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400d1808 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x5c (size before relaxing) .literal.tcp_close - 0x00000000400d17c8 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0xc (size before relaxing) - .literal.tcp_recv_null - 0x00000000400d17cc 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x14 (size before relaxing) - .literal.tcp_process_refused_data - 0x00000000400d17d0 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x10 (size before relaxing) - .literal.tcp_fasttmr - 0x00000000400d17d4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x18 (size before relaxing) - .literal.tcp_shutdown - 0x00000000400d17d4 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x14 (size before relaxing) - .literal.tcp_slowtmr - 0x00000000400d17d8 0x40 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0xb8 (size before relaxing) - .literal.tcp_tmr 0x00000000400d1818 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) 0xc (size before relaxing) + .literal.tcp_recv_null + 0x00000000400d181c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_process_refused_data + 0x00000000400d1820 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_fasttmr + 0x00000000400d1824 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_shutdown + 0x00000000400d1824 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_slowtmr + 0x00000000400d1828 0x40 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xb8 (size before relaxing) + .literal.tcp_tmr + 0x00000000400d1868 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) .literal.tcp_get_next_optbyte - 0x00000000400d181c 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d186c 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .literal.tcp_parseopt - 0x00000000400d182c 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d187c 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x2c (size before relaxing) .literal.tcp_input_delayed_close - 0x00000000400d183c 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d188c 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x20 (size before relaxing) .literal.tcp_timewait_input - 0x00000000400d1848 0x1c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d1898 0x1c esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x38 (size before relaxing) .literal.tcp_listen_input - 0x00000000400d1864 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d18b4 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x64 (size before relaxing) .literal.tcp_free_acked_segments - 0x00000000400d186c 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d18bc 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x30 (size before relaxing) .literal.tcp_oos_insert_segment - 0x00000000400d187c 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d18cc 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x2c (size before relaxing) .literal.tcp_receive - 0x00000000400d1884 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d18d4 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x16c (size before relaxing) .literal.tcp_process - 0x00000000400d18c4 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d1914 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0xc8 (size before relaxing) .literal.tcp_input - 0x00000000400d18e4 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d1934 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x134 (size before relaxing) .literal.tcp_trigger_input_pcb_close - 0x00000000400d1914 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400d1964 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x4 (size before relaxing) .literal.tcp_write_checks - 0x00000000400d1914 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1964 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x20 (size before relaxing) .literal.tcp_output_segment_busy - 0x00000000400d1928 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1978 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x10 (size before relaxing) .literal.tcp_output_fill_options - 0x00000000400d1930 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1980 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x18 (size before relaxing) .literal.tcp_pbuf_prealloc - 0x00000000400d193c 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d198c 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x24 (size before relaxing) .literal.tcp_create_segment - 0x00000000400d194c 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d199c 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x40 (size before relaxing) .literal.tcp_output_alloc_header_common - 0x00000000400d195c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d19ac 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x28 (size before relaxing) .literal.tcp_output_alloc_header - 0x00000000400d1964 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d19b4 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x14 (size before relaxing) .literal.tcp_route - 0x00000000400d196c 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d19bc 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0xc (size before relaxing) .literal.tcp_output_segment - 0x00000000400d196c 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d19bc 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x54 (size before relaxing) .literal.tcp_output_control_segment - 0x00000000400d1980 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d19d0 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x24 (size before relaxing) .literal.tcp_write - 0x00000000400d1988 0x30 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d19d8 0x30 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x88 (size before relaxing) .literal.tcp_split_unsent_seg - 0x00000000400d19b8 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a08 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x54 (size before relaxing) .literal.tcp_enqueue_flags - 0x00000000400d19cc 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a1c 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x44 (size before relaxing) .literal.tcp_send_fin - 0x00000000400d19e8 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a38 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x1c (size before relaxing) .literal.tcp_rexmit_rto_prepare - 0x00000000400d19f0 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a40 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x24 (size before relaxing) .literal.tcp_rexmit - 0x00000000400d19fc 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a4c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x1c (size before relaxing) .literal.tcp_rexmit_fast - 0x00000000400d1a04 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a54 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x14 (size before relaxing) .literal.tcp_rst - 0x00000000400d1a0c 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a5c 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x2c (size before relaxing) .literal.tcp_send_empty_ack - 0x00000000400d1a1c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a6c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x20 (size before relaxing) .literal.tcp_output - 0x00000000400d1a24 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a74 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x68 (size before relaxing) .literal.tcp_rexmit_rto_commit - 0x00000000400d1a34 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a84 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x14 (size before relaxing) .literal.tcp_rexmit_rto - 0x00000000400d1a3c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a8c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x18 (size before relaxing) .literal.tcp_keepalive - 0x00000000400d1a44 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1a94 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x24 (size before relaxing) .literal.tcp_zero_window_probe - 0x00000000400d1a50 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400d1aa0 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x34 (size before relaxing) .literal.sys_timeout_abs - 0x00000000400d1a5c 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400d1aac 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x18 (size before relaxing) .literal.lwip_cyclic_timer - 0x00000000400d1a6c 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400d1abc 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x14 (size before relaxing) .literal.sys_timeout - 0x00000000400d1a74 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400d1ac4 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x1c (size before relaxing) .literal.tcp_timer_needed - 0x00000000400d1a80 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400d1ad0 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x14 (size before relaxing) .literal.tcpip_tcp_timer - 0x00000000400d1a88 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400d1ad8 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x18 (size before relaxing) .literal.sys_timeouts_init - 0x00000000400d1a88 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400d1ad8 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0xc (size before relaxing) .literal.sys_untimeout - 0x00000000400d1a8c 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400d1adc 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x8 (size before relaxing) .literal.sys_check_timeouts - 0x00000000400d1a8c 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400d1adc 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x10 (size before relaxing) .literal.sys_timeouts_sleeptime - 0x00000000400d1a8c 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400d1adc 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x18 (size before relaxing) .literal.udp_new_port - 0x00000000400d1a94 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1ae4 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) 0x14 (size before relaxing) .literal.udp_input_local_match - 0x00000000400d1a9c 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1aec 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) 0x1c (size before relaxing) .literal.udp_init - 0x00000000400d1aac 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1afc 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) 0x8 (size before relaxing) .literal.udp_input - 0x00000000400d1aac 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1afc 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) 0x6c (size before relaxing) .literal.udp_bind - 0x00000000400d1abc 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b0c 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) 0x24 (size before relaxing) .literal.udp_sendto_if_src - 0x00000000400d1ac0 0x1c esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b10 0x1c esp-idf/lwip/liblwip.a(udp.c.obj) 0x68 (size before relaxing) .literal.udp_sendto_if - 0x00000000400d1adc 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b2c 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) 0x2c (size before relaxing) .literal.udp_sendto - 0x00000000400d1aec 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b3c 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) 0x44 (size before relaxing) .literal.udp_send - 0x00000000400d1afc 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b4c 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) 0x14 (size before relaxing) .literal.udp_connect - 0x00000000400d1b04 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b54 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) 0x28 (size before relaxing) .literal.udp_disconnect - 0x00000000400d1b0c 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b5c 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) 0xc (size before relaxing) .literal.udp_recv - 0x00000000400d1b14 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b64 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) 0x8 (size before relaxing) .literal.udp_remove - 0x00000000400d1b18 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b68 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) 0x10 (size before relaxing) .literal.udp_new - 0x00000000400d1b1c 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b6c 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) 0x8 (size before relaxing) .literal.udp_new_ip_type - 0x00000000400d1b1c 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b6c 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) 0x4 (size before relaxing) .literal.udp_netif_ip_addr_changed - 0x00000000400d1b1c 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400d1b6c 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) 0x4 (size before relaxing) .literal.dhcp_option_short - 0x00000000400d1b1c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1b6c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x10 (size before relaxing) .literal.dhcp_option - 0x00000000400d1b28 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1b78 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x10 (size before relaxing) .literal.dhcp_option_byte - 0x00000000400d1b30 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1b80 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x10 (size before relaxing) .literal.dhcp_option_long - 0x00000000400d1b38 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1b88 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x10 (size before relaxing) .literal.dhcp_create_msg - 0x00000000400d1b40 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1b90 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x3c (size before relaxing) .literal.dhcp_option_hostname - 0x00000000400d1b54 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1ba4 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x20 (size before relaxing) .literal.dhcp_option_trailer - 0x00000000400d1b5c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bac 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x4 (size before relaxing) .literal.dhcp_rebind - 0x00000000400d1b5c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bac 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x3c (size before relaxing) .literal.dhcp_t2_timeout - 0x00000000400d1b68 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bb8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x4 (size before relaxing) .literal.dhcp_reboot - 0x00000000400d1b68 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bb8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x48 (size before relaxing) .literal.dhcp_select - 0x00000000400d1b68 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bb8 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x68 (size before relaxing) .literal.dhcp_handle_offer - 0x00000000400d1b74 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bc4 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x10 (size before relaxing) .literal.dhcp_discover - 0x00000000400d1b7c 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bcc 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x40 (size before relaxing) .literal.dhcp_decline - 0x00000000400d1b80 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bd0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x2c (size before relaxing) .literal.dhcp_check - 0x00000000400d1b80 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bd0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x8 (size before relaxing) .literal.dhcp_bind - 0x00000000400d1b80 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bd0 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x24 (size before relaxing) .literal.dhcp_handle_nak - 0x00000000400d1b88 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bd8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x10 (size before relaxing) .literal.dhcp_dec_pcb_refcount - 0x00000000400d1b88 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bd8 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x1c (size before relaxing) .literal.dhcp_inc_pcb_refcount - 0x00000000400d1b94 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1be4 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x30 (size before relaxing) .literal.dhcp_parse_reply - 0x00000000400d1ba0 0x30 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1bf0 0x30 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x84 (size before relaxing) .literal.dhcp_handle_ack - 0x00000000400d1bd0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c20 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x18 (size before relaxing) .literal.dhcp_recv - 0x00000000400d1bd0 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c20 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x44 (size before relaxing) .literal.dhcp_cleanup - 0x00000000400d1bd8 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c28 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x14 (size before relaxing) .literal.dhcp_set_cb - 0x00000000400d1be0 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c30 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x10 (size before relaxing) .literal.dhcp_network_changed - 0x00000000400d1be4 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c34 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x18 (size before relaxing) .literal.dhcp_arp_reply - 0x00000000400d1bec 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c3c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0xc (size before relaxing) .literal.dhcp_renew - 0x00000000400d1bec 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c3c 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x38 (size before relaxing) .literal.dhcp_t1_timeout - 0x00000000400d1bf0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c40 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x4 (size before relaxing) .literal.dhcp_release_and_stop - 0x00000000400d1bf0 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c40 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x34 (size before relaxing) .literal.dhcp_start - 0x00000000400d1bf4 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c44 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x2c (size before relaxing) .literal.dhcp_coarse_tmr - 0x00000000400d1bf8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c48 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x14 (size before relaxing) .literal.dhcp_timeout - 0x00000000400d1bf8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c48 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x20 (size before relaxing) .literal.dhcp_fine_tmr - 0x00000000400d1bf8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c48 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x8 (size before relaxing) .literal.dhcp_release - 0x00000000400d1bf8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c48 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x4 (size before relaxing) .literal.dhcp_stop - 0x00000000400d1bf8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400d1c48 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x4 (size before relaxing) .literal.free_etharp_q - 0x00000000400d1bf8 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c48 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x20 (size before relaxing) .literal.etharp_free_entry - 0x00000000400d1c08 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c58 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x10 (size before relaxing) .literal.etharp_find_entry - 0x00000000400d1c10 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c60 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x2c (size before relaxing) .literal.etharp_update_arp_entry - 0x00000000400d1c20 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c70 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x30 (size before relaxing) .literal.etharp_raw - 0x00000000400d1c28 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c78 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x3c (size before relaxing) .literal.etharp_request_dst - 0x00000000400d1c3c 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c8c 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x8 (size before relaxing) .literal.etharp_cleanup_netif - 0x00000000400d1c3c 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c8c 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x8 (size before relaxing) .literal.etharp_input - 0x00000000400d1c3c 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c8c 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x1c (size before relaxing) .literal.etharp_request - 0x00000000400d1c3c 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c8c 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x8 (size before relaxing) .literal.garp_tmr - 0x00000000400d1c40 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c90 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x8 (size before relaxing) .literal.etharp_tmr - 0x00000000400d1c40 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c90 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) 0xc (size before relaxing) .literal.etharp_output_to_arp_index - 0x00000000400d1c40 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c90 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x24 (size before relaxing) .literal.etharp_query - 0x00000000400d1c48 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1c98 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x5c (size before relaxing) .literal.etharp_output - 0x00000000400d1c5c 0xc esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400d1cac 0xc esp-idf/lwip/liblwip.a(etharp.c.obj) 0x48 (size before relaxing) .literal.icmp_send_response - 0x00000000400d1c68 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x00000000400d1cb8 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) 0x28 (size before relaxing) .literal.icmp_input - 0x00000000400d1c74 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x00000000400d1cc4 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) 0x68 (size before relaxing) .literal.icmp_dest_unreach - 0x00000000400d1c80 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x00000000400d1cd0 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) 0x4 (size before relaxing) .literal.igmp_start_timer - 0x00000000400d1c80 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1cd0 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x10 (size before relaxing) .literal.igmp_delaying_member - 0x00000000400d1c88 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1cd8 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x4 (size before relaxing) .literal.igmp_ip_output_if - 0x00000000400d1c88 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1cd8 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x4 (size before relaxing) .literal.igmp_send - 0x00000000400d1c88 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1cd8 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x28 (size before relaxing) .literal.igmp_timeout - 0x00000000400d1c98 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1ce8 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x8 (size before relaxing) .literal.igmp_init - 0x00000000400d1c9c 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1cec 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x10 (size before relaxing) .literal.igmp_stop - 0x00000000400d1ca4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1cf4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x4 (size before relaxing) .literal.igmp_report_groups - 0x00000000400d1ca4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1cf4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x4 (size before relaxing) .literal.igmp_lookup_group - 0x00000000400d1ca4 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1cf4 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x24 (size before relaxing) .literal.igmp_start - 0x00000000400d1cb4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1d04 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x8 (size before relaxing) .literal.igmp_input - 0x00000000400d1cb4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1d04 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x28 (size before relaxing) .literal.igmp_joingroup_netif - 0x00000000400d1cb4 0xc esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1d04 0xc esp-idf/lwip/liblwip.a(igmp.c.obj) 0x28 (size before relaxing) .literal.igmp_joingroup - 0x00000000400d1cc0 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1d10 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x1c (size before relaxing) .literal.igmp_leavegroup_netif - 0x00000000400d1cc8 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1d18 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x2c (size before relaxing) .literal.igmp_leavegroup - 0x00000000400d1cd8 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1d28 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x1c (size before relaxing) .literal.igmp_tmr - 0x00000000400d1ce0 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1d30 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x18 (size before relaxing) .literal.igmp_timeout_cb - 0x00000000400d1ce0 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400d1d30 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x4 (size before relaxing) .literal.ip4_input_accept - 0x00000000400d1ce0 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400d1d30 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x8 (size before relaxing) .literal.ip4_netif_exist - 0x00000000400d1ce0 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400d1d30 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x4 (size before relaxing) .literal.ip4_route_src_hook - 0x00000000400d1ce0 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400d1d30 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x4 (size before relaxing) .literal.ip4_route - 0x00000000400d1ce0 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400d1d30 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x10 (size before relaxing) .literal.ip4_route_src - 0x00000000400d1ce4 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400d1d34 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) 0xc (size before relaxing) .literal.ip4_input - 0x00000000400d1ce4 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400d1d34 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x68 (size before relaxing) .literal.ip4_output_if_opt_src - 0x00000000400d1ce8 0x14 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400d1d38 0x14 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x44 (size before relaxing) .literal.ip4_output_if_opt - 0x00000000400d1cfc 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400d1d4c 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x4 (size before relaxing) .literal.ip4_output_if - 0x00000000400d1cfc 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400d1d4c 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x4 (size before relaxing) .literal.ip4_output_if_src - 0x00000000400d1cfc 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400d1d4c 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x4 (size before relaxing) .literal.ip4addr_aton - 0x00000000400d1cfc 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x00000000400d1d4c 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) 0x34 (size before relaxing) .literal.ip4_frag - 0x00000000400d1d10 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x00000000400d1d60 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) 0x44 (size before relaxing) .literal.icmp6_send_response_with_addrs_and_netif - 0x00000000400d1d20 0xc esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400d1d70 0xc esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x28 (size before relaxing) .literal.icmp6_send_response - 0x00000000400d1d2c 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400d1d7c 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x20 (size before relaxing) .literal.icmp6_send_response_with_addrs - 0x00000000400d1d34 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400d1d84 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x1c (size before relaxing) .literal.icmp6_input - 0x00000000400d1d3c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400d1d8c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x48 (size before relaxing) .literal.icmp6_dest_unreach - 0x00000000400d1d3c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400d1d8c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x4 (size before relaxing) .literal.icmp6_time_exceeded_with_addrs - 0x00000000400d1d3c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400d1d8c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x4 (size before relaxing) .literal.icmp6_param_problem - 0x00000000400d1d3c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400d1d8c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x8 (size before relaxing) .literal.ip6_input_accept - 0x00000000400d1d3c 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400d1d8c 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) 0x4 (size before relaxing) .literal.ip6_route - 0x00000000400d1d3c 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400d1d8c 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) 0x1c (size before relaxing) .literal.ip6_select_source_address - 0x00000000400d1d3c 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400d1d8c 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) 0x14 (size before relaxing) .literal.ip6_input - 0x00000000400d1d40 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400d1d90 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) 0xf8 (size before relaxing) .literal.ip6_output_if_src - 0x00000000400d1d44 0x14 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400d1d94 0x14 esp-idf/lwip/liblwip.a(ip6.c.obj) 0x48 (size before relaxing) .literal.ip6_output_if - 0x00000000400d1d58 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400d1da8 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) 0x8 (size before relaxing) .literal.ip6_options_add_hbh_ra - 0x00000000400d1d58 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400d1da8 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) 0x4 (size before relaxing) .literal.ip6_reass_free_complete_datagram - 0x00000000400d1d58 0x1c esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400d1da8 0x1c esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0x48 (size before relaxing) .literal.ip6_reass_remove_oldest_datagram - 0x00000000400d1d74 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400d1dc4 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0xc (size before relaxing) .literal.ip6_reass_tmr - 0x00000000400d1d74 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400d1dc4 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0x8 (size before relaxing) .literal.ip6_reass - 0x00000000400d1d74 0x24 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400d1dc4 0x24 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0x98 (size before relaxing) .literal.ip6_frag - 0x00000000400d1d98 0x10 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400d1de8 0x10 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0x44 (size before relaxing) .literal.mld6_delayed_report - 0x00000000400d1da8 0xc esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1df8 0xc esp-idf/lwip/liblwip.a(mld6.c.obj) 0x14 (size before relaxing) .literal.mld6_new_group - 0x00000000400d1db4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e04 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x4 (size before relaxing) .literal.mld6_send - 0x00000000400d1db4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e04 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x20 (size before relaxing) .literal.mld6_stop - 0x00000000400d1db4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e04 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x4 (size before relaxing) .literal.mld6_report_groups - 0x00000000400d1db4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e04 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x4 (size before relaxing) .literal.mld6_input - 0x00000000400d1db4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e04 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x28 (size before relaxing) .literal.mld6_joingroup_netif - 0x00000000400d1db4 0x4 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e04 0x4 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x24 (size before relaxing) .literal.mld6_joingroup - 0x00000000400d1db8 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e08 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) 0xc (size before relaxing) .literal.mld6_leavegroup_netif - 0x00000000400d1db8 0x4 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e08 0x4 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x1c (size before relaxing) .literal.mld6_leavegroup - 0x00000000400d1dbc 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e0c 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) 0xc (size before relaxing) .literal.mld6_tmr - 0x00000000400d1dbc 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e0c 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x18 (size before relaxing) .literal.mld6_timeout_cb - 0x00000000400d1dbc 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400d1e0c 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x4 (size before relaxing) .literal.nd6_find_neighbor_cache_entry - 0x00000000400d1dbc 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e0c 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) .literal.nd6_find_destination_cache_entry - 0x00000000400d1dc0 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e10 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) .literal.nd6_new_destination_cache_entry - 0x00000000400d1dc4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e14 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x4 (size before relaxing) .literal.nd6_is_prefix_in_netif - 0x00000000400d1dc4 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e14 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) .literal.nd6_select_router - 0x00000000400d1dc8 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e18 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) .literal.nd6_get_router - 0x00000000400d1dd0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e20 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x4 (size before relaxing) .literal.nd6_get_onlink_prefix - 0x00000000400d1dd0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e20 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x4 (size before relaxing) .literal.nd6_new_onlink_prefix - 0x00000000400d1dd0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e20 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x4 (size before relaxing) .literal.nd6_send_q - 0x00000000400d1dd0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e20 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x18 (size before relaxing) .literal.nd6_duplicate_addr_detected - 0x00000000400d1dd0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e20 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x8 (size before relaxing) .literal.nd6_process_autoconfig_prefix - 0x00000000400d1dd0 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e20 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x2c (size before relaxing) .literal.nd6_free_q - 0x00000000400d1de0 0x1c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e30 0x1c esp-idf/lwip/liblwip.a(nd6.c.obj) 0x34 (size before relaxing) .literal.nd6_free_neighbor_cache_entry - 0x00000000400d1dfc 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e4c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x8 (size before relaxing) .literal.nd6_new_neighbor_cache_entry - 0x00000000400d1dfc 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e4c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x1c (size before relaxing) .literal.nd6_send_na - 0x00000000400d1dfc 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e4c 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) 0x30 (size before relaxing) .literal.nd6_send_rs - 0x00000000400d1e08 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e58 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x20 (size before relaxing) .literal.nd6_send_ns - 0x00000000400d1e08 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e58 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x30 (size before relaxing) .literal.nd6_send_neighbor_cache_probe - 0x00000000400d1e0c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e5c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x4 (size before relaxing) .literal.nd6_new_router - 0x00000000400d1e0c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e5c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x14 (size before relaxing) .literal.nd6_get_next_hop_entry - 0x00000000400d1e0c 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e5c 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x4c (size before relaxing) .literal.nd6_queue_packet - 0x00000000400d1e1c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e6c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x24 (size before relaxing) .literal.nd6_input - 0x00000000400d1e1c 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e6c 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x124 (size before relaxing) .literal.nd6_tmr - 0x00000000400d1e2c 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e7c 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x54 (size before relaxing) .literal.nd6_clear_destination_cache - 0x00000000400d1e34 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e84 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x4 (size before relaxing) .literal.nd6_find_route - 0x00000000400d1e34 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e84 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x1c (size before relaxing) .literal.nd6_get_next_hop_addr_or_queue - 0x00000000400d1e3c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e8c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0xc (size before relaxing) .literal.nd6_get_destination_mtu - 0x00000000400d1e3c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e8c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x8 (size before relaxing) .literal.nd6_reachability_hint - 0x00000000400d1e3c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e8c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x1c (size before relaxing) .literal.nd6_cleanup_netif - 0x00000000400d1e3c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e8c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x14 (size before relaxing) .literal.nd6_adjust_mld_membership - 0x00000000400d1e3c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400d1e8c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x10 (size before relaxing) .literal.ethernet_input - 0x00000000400d1e3c 0x4 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x00000000400d1e8c 0x4 esp-idf/lwip/liblwip.a(ethernet.c.obj) 0x28 (size before relaxing) .literal.ethernet_output - 0x00000000400d1e40 0xc esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x00000000400d1e90 0xc esp-idf/lwip/liblwip.a(ethernet.c.obj) 0x20 (size before relaxing) .literal.sys_thread_sem_free - 0x00000000400d1e4c 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1e9c 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x8 (size before relaxing) .literal.sys_mutex_new - 0x00000000400d1e4c 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1e9c 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x4 (size before relaxing) .literal.sys_mutex_lock - 0x00000000400d1e4c 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1e9c 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x14 (size before relaxing) .literal.sys_mutex_unlock - 0x00000000400d1e58 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ea8 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x14 (size before relaxing) .literal.sys_sem_new - 0x00000000400d1e60 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1eb0 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x20 (size before relaxing) .literal.sys_sem_signal - 0x00000000400d1e6c 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ebc 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x14 (size before relaxing) .literal.sys_sem_signal_isr - 0x00000000400d1e74 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ec4 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x4 (size before relaxing) .literal.sys_arch_sem_wait - 0x00000000400d1e74 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ec4 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x20 (size before relaxing) .literal.sys_mbox_new - 0x00000000400d1e7c 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ecc 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0xc (size before relaxing) .literal.sys_mbox_post - 0x00000000400d1e7c 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ecc 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x14 (size before relaxing) .literal.sys_mbox_trypost - 0x00000000400d1e84 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ed4 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x4 (size before relaxing) .literal.sys_arch_mbox_fetch - 0x00000000400d1e84 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ed4 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x20 (size before relaxing) .literal.sys_arch_mbox_tryfetch - 0x00000000400d1e8c 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1edc 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x14 (size before relaxing) .literal.sys_mbox_free - 0x00000000400d1e90 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ee0 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x1c (size before relaxing) .literal.sys_thread_new - 0x00000000400d1e98 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ee8 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x8 (size before relaxing) .literal.sys_init - 0x00000000400d1e98 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1ee8 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x28 (size before relaxing) .literal.sys_now - 0x00000000400d1eac 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1efc 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x4 (size before relaxing) .literal.sys_arch_protect - 0x00000000400d1eac 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1efc 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0xc (size before relaxing) .literal.sys_arch_unprotect - 0x00000000400d1eac 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1efc 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x8 (size before relaxing) .literal.sys_thread_sem_init - 0x00000000400d1eac 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1efc 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x2c (size before relaxing) .literal.sys_thread_sem_get - 0x00000000400d1eb0 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400d1f00 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0xc (size before relaxing) .literal.inet_cksum_pseudo_base - 0x00000000400d1eb0 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400d1f00 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) 0xc (size before relaxing) .literal.inet_chksum_pseudo - 0x00000000400d1eb4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400d1f04 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) 0x4 (size before relaxing) .literal.ip6_chksum_pseudo - 0x00000000400d1eb4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400d1f04 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) 0x4 (size before relaxing) .literal.ip_chksum_pseudo - 0x00000000400d1eb4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400d1f04 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) 0x8 (size before relaxing) .literal.inet_chksum - 0x00000000400d1eb4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400d1f04 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) 0x4 (size before relaxing) .literal.inet_chksum_pbuf - 0x00000000400d1eb4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400d1f04 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) 0x4 (size before relaxing) .literal.lwip_get_socket_select_semaphore - 0x00000000400d1eb4 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400d1f04 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x4 (size before relaxing) .literal.lwip_stop_socket_select_isr - 0x00000000400d1eb4 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400d1f04 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x4 (size before relaxing) .literal.lwip_stop_socket_select - 0x00000000400d1eb4 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400d1f04 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x4 (size before relaxing) .literal.lwip_ioctl_r_wrapper - 0x00000000400d1eb4 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400d1f04 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x4 (size before relaxing) .literal.lwip_fcntl_r_wrapper - 0x00000000400d1eb4 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400d1f04 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x4 (size before relaxing) .literal.esp_vfs_lwip_sockets_register - 0x00000000400d1eb4 0x30 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400d1f04 0x30 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x3c (size before relaxing) .literal.tryget_socket_unconn_nouse - 0x00000000400d1ee4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f34 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) .literal.free_socket_locked - 0x00000000400d1ee8 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f38 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) 0x10 (size before relaxing) .literal.lwip_sockopt_to_ipopt - 0x00000000400d1ef4 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f44 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) 0x14 (size before relaxing) .literal.lwip_link_select_cb - 0x00000000400d1f00 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f50 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x10 (size before relaxing) .literal.lwip_unlink_select_cb - 0x00000000400d1f08 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f58 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) 0x28 (size before relaxing) .literal.sockaddr_to_ipaddr_port - 0x00000000400d1f14 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f64 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x14 (size before relaxing) .literal.lwip_sock_make_addr - 0x00000000400d1f14 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f64 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x30 (size before relaxing) .literal.lwip_recv_tcp_from - 0x00000000400d1f24 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f74 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x8 (size before relaxing) .literal.sock_inc_used - 0x00000000400d1f24 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f74 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) 0x20 (size before relaxing) .literal.tryget_socket_unconn - 0x00000000400d1f30 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f80 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x8 (size before relaxing) .literal.sock_inc_used_locked - 0x00000000400d1f30 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f80 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x28 (size before relaxing) .literal.tryget_socket_unconn_locked - 0x00000000400d1f34 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f84 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x8 (size before relaxing) .literal.lwip_select_inc_sockets_used_set - 0x00000000400d1f34 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f84 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xc (size before relaxing) .literal.lwip_select_inc_sockets_used - 0x00000000400d1f34 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f84 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xc (size before relaxing) .literal.alloc_socket - 0x00000000400d1f34 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f84 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x28 (size before relaxing) .literal.free_socket_free_elements - 0x00000000400d1f3c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f8c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xc (size before relaxing) .literal.free_socket - 0x00000000400d1f3c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f8c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x10 (size before relaxing) .literal.done_socket - 0x00000000400d1f3c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f8c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x28 (size before relaxing) .literal.tryget_socket - 0x00000000400d1f40 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f90 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x8 (size before relaxing) .literal.get_socket - 0x00000000400d1f40 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f90 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x8 (size before relaxing) .literal.lwip_selscan - 0x00000000400d1f40 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f90 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x24 (size before relaxing) .literal.lwip_select_dec_sockets_used - 0x00000000400d1f48 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1f98 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x18 (size before relaxing) .literal.lwip_socket_register_membership - 0x00000000400d1f50 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fa0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x10 (size before relaxing) .literal.lwip_socket_unregister_membership - 0x00000000400d1f54 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fa4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xc (size before relaxing) .literal.lwip_socket_register_mld6_membership - 0x00000000400d1f54 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fa4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x10 (size before relaxing) .literal.lwip_socket_unregister_mld6_membership - 0x00000000400d1f58 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fa8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xc (size before relaxing) .literal.lwip_socket_drop_registered_memberships - 0x00000000400d1f58 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fa8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x10 (size before relaxing) .literal.lwip_socket_drop_registered_mld6_memberships - 0x00000000400d1f58 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fa8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x10 (size before relaxing) .literal.lwip_recv_tcp - 0x00000000400d1f58 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fa8 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x50 (size before relaxing) .literal.lwip_recvfrom_udp_raw - 0x00000000400d1f70 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fc0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) 0x28 (size before relaxing) .literal.select_check_waiters - 0x00000000400d1f7c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fcc 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x20 (size before relaxing) .literal.event_callback - 0x00000000400d1f80 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fd0 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x38 (size before relaxing) .literal.lwip_setsockopt_impl - 0x00000000400d1f90 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d1fe0 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x158 (size before relaxing) .literal.lwip_setsockopt_callback - 0x00000000400d1fc8 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2018 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) 0x1c (size before relaxing) .literal.lwip_accept - 0x00000000400d1fd4 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2024 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) 0x78 (size before relaxing) .literal.lwip_bind - 0x00000000400d1fe0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2030 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x40 (size before relaxing) .literal.lwip_close - 0x00000000400d1fe4 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2034 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x30 (size before relaxing) .literal.lwip_listen - 0x00000000400d1fec 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d203c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x1c (size before relaxing) .literal.lwip_recvfrom - 0x00000000400d1fec 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d203c 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x30 (size before relaxing) .literal.lwip_read - 0x00000000400d1ff4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2044 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x4 (size before relaxing) .literal.lwip_recv - 0x00000000400d1ff4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2044 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x4 (size before relaxing) .literal.lwip_sendto - 0x00000000400d1ff4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2044 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x50 (size before relaxing) .literal.lwip_send - 0x00000000400d1ff8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2048 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x1c (size before relaxing) .literal.lwip_socket - 0x00000000400d1ff8 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2048 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x2c (size before relaxing) .literal.lwip_write - 0x00000000400d1ffc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d204c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x4 (size before relaxing) .literal.lwip_select - 0x00000000400d1ffc 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d204c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) 0x8c (size before relaxing) .literal.lwip_setsockopt - 0x00000000400d2008 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2058 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x30 (size before relaxing) .literal.lwip_ioctl - 0x00000000400d200c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d205c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x14 (size before relaxing) .literal.lwip_fcntl - 0x00000000400d2010 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400d2060 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x20 (size before relaxing) .literal.netconn_apimsg - 0x00000000400d2014 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d2064 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x8 (size before relaxing) .literal.netconn_tcp_recvd_msg - 0x00000000400d2014 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d2064 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x10 (size before relaxing) .literal.netconn_close_shutdown - 0x00000000400d201c 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d206c 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x14 (size before relaxing) .literal.netconn_new_with_proto_and_callback - 0x00000000400d2024 0x18 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d2074 0x18 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x34 (size before relaxing) .literal.netconn_prepare_delete - 0x00000000400d203c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d208c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0xc (size before relaxing) .literal.netconn_delete - 0x00000000400d2040 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d2090 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x8 (size before relaxing) .literal.netconn_getaddr - 0x00000000400d2040 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d2090 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x20 (size before relaxing) .literal.netconn_bind - 0x00000000400d2050 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20a0 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x1c (size before relaxing) .literal.netconn_listen_with_backlog - 0x00000000400d2058 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20a8 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x10 (size before relaxing) .literal.netconn_tcp_recvd - 0x00000000400d2060 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20b0 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0xc (size before relaxing) .literal.netconn_send - 0x00000000400d2060 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20b0 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x10 (size before relaxing) .literal.netconn_write_vectors_partly - 0x00000000400d2068 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20b8 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x30 (size before relaxing) .literal.netconn_write_partly - 0x00000000400d207c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20cc 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x4 (size before relaxing) .literal.netconn_err - 0x00000000400d207c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20cc 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x8 (size before relaxing) .literal.netconn_accept - 0x00000000400d207c 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20cc 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x2c (size before relaxing) .literal.netconn_recv_data - 0x00000000400d2088 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20d8 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x38 (size before relaxing) .literal.netconn_recv_udp_raw_netbuf_flags - 0x00000000400d2098 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20e8 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0xc (size before relaxing) .literal.netconn_recv_data_tcp - 0x00000000400d209c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20ec 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x10 (size before relaxing) .literal.netconn_recv_tcp_pbuf_flags - 0x00000000400d209c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20ec 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0xc (size before relaxing) .literal.netconn_join_leave_group - 0x00000000400d209c 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20ec 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x14 (size before relaxing) .literal.netconn_join_leave_group_netif - 0x00000000400d20a4 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400d20f4 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x14 (size before relaxing) .literal.lwip_netconn_err_to_msg - 0x00000000400d20a8 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d20f8 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x1c (size before relaxing) .literal.recv_udp - 0x00000000400d20c0 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2110 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x3c (size before relaxing) .literal.recv_raw - 0x00000000400d20d0 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2120 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x18 (size before relaxing) .literal.setup_tcp - 0x00000000400d20d0 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2120 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x24 (size before relaxing) .literal.pcb_new - 0x00000000400d20e4 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2134 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x30 (size before relaxing) .literal.err_tcp - 0x00000000400d20f8 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2148 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x40 (size before relaxing) .literal.netconn_mark_mbox_invalid - 0x00000000400d210c 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d215c 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x14 (size before relaxing) .literal.lwip_netconn_do_writemore - 0x00000000400d2110 0x20 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2160 0x20 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x60 (size before relaxing) .literal.lwip_netconn_do_close_internal - 0x00000000400d2130 0x1c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2180 0x1c esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x88 (size before relaxing) .literal.poll_tcp - 0x00000000400d214c 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d219c 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x1c (size before relaxing) .literal.sent_tcp - 0x00000000400d2150 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21a0 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x1c (size before relaxing) .literal.recv_tcp - 0x00000000400d2154 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21a4 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x38 (size before relaxing) .literal.lwip_netconn_is_deallocated_msg - 0x00000000400d2168 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21b8 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x4 (size before relaxing) .literal.lwip_netconn_is_err_msg - 0x00000000400d2168 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21b8 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x1c (size before relaxing) .literal.lwip_netconn_do_newconn - 0x00000000400d2170 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21c0 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x8 (size before relaxing) .literal.netconn_alloc - 0x00000000400d2170 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21c0 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x1c (size before relaxing) .literal.netconn_free - 0x00000000400d2178 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21c8 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x28 (size before relaxing) .literal.netconn_drain - 0x00000000400d2188 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21d8 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x40 (size before relaxing) .literal.accept_function - 0x00000000400d2190 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21e0 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x4c (size before relaxing) .literal.lwip_netconn_do_delconn - 0x00000000400d2198 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21e8 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x38 (size before relaxing) .literal.lwip_netconn_do_bind - 0x00000000400d21a8 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21f8 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x18 (size before relaxing) .literal.lwip_netconn_do_listen - 0x00000000400d21a8 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d21f8 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x34 (size before relaxing) .literal.lwip_netconn_do_send - 0x00000000400d21b4 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2204 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x28 (size before relaxing) .literal.lwip_netconn_do_recv - 0x00000000400d21b4 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2204 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0xc (size before relaxing) .literal.lwip_netconn_do_accepted - 0x00000000400d21b4 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2204 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x8 (size before relaxing) .literal.lwip_netconn_do_write - 0x00000000400d21b4 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2204 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x24 (size before relaxing) .literal.lwip_netconn_do_getaddr - 0x00000000400d21bc 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d220c 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x14 (size before relaxing) .literal.lwip_netconn_do_close - 0x00000000400d21c4 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d2214 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x38 (size before relaxing) .literal.lwip_netconn_do_join_leave_group - 0x00000000400d21cc 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d221c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x14 (size before relaxing) .literal.lwip_netconn_do_join_leave_group_netif - 0x00000000400d21cc 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400d221c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x18 (size before relaxing) .literal.err_to_errno - 0x00000000400d21cc 0x4 esp-idf/lwip/liblwip.a(err.c.obj) + 0x00000000400d221c 0x4 esp-idf/lwip/liblwip.a(err.c.obj) .literal.netbuf_delete - 0x00000000400d21d0 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x00000000400d2220 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) 0x8 (size before relaxing) .literal.netbuf_alloc - 0x00000000400d21d0 0x10 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x00000000400d2220 0x10 esp-idf/lwip/liblwip.a(netbuf.c.obj) 0x20 (size before relaxing) .literal.netbuf_free - 0x00000000400d21e0 0x4 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x00000000400d2230 0x4 esp-idf/lwip/liblwip.a(netbuf.c.obj) 0xc (size before relaxing) .literal.heap_caps_get_free_size - 0x00000000400d21e4 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400d2234 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) .literal.heap_caps_get_minimum_free_size - 0x00000000400d21f0 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400d2240 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) 0xc (size before relaxing) .literal.heap_caps_get_info - 0x00000000400d21f4 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400d2244 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) 0x10 (size before relaxing) .literal.heap_caps_get_largest_free_block - 0x00000000400d21f8 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400d2248 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) 0x4 (size before relaxing) .literal.register_heap - 0x00000000400d21f8 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x00000000400d2248 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) 0x18 (size before relaxing) .literal.heap_caps_enable_nonos_stack_heaps - 0x00000000400d220c 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x00000000400d225c 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) 0xc (size before relaxing) .literal.heap_caps_init - 0x00000000400d2210 0x38 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x00000000400d2260 0x38 esp-idf/heap/libheap.a(heap_caps_init.c.obj) 0x84 (size before relaxing) - .literal.gpio_wakeup_enable - 0x00000000400d2248 0x2c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_od_enable + 0x00000000400d2298 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_od_disable + 0x00000000400d22b4 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_input_enable + 0x00000000400d22b8 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_input_disable + 0x00000000400d22c8 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_output_disable + 0x00000000400d22d4 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x3c (size before relaxing) + .literal.gpio_output_enable + 0x00000000400d22e4 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_set_level + 0x00000000400d22f0 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_set_direction + 0x00000000400d22f4 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) 0x40 (size before relaxing) + .literal.gpio_wakeup_enable + 0x00000000400d22fc 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x40 (size before relaxing) + .literal.gpio_iomux_in + 0x00000000400d2310 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_iomux_out + 0x00000000400d2318 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x2c (size before relaxing) .literal.periph_module_enable - 0x00000000400d2274 0x40 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x00000000400d2328 0x40 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) 0x98 (size before relaxing) .literal.periph_module_disable - 0x00000000400d22b4 0x18 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x00000000400d2368 0x18 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) 0x98 (size before relaxing) .literal.periph_module_reset - 0x00000000400d22cc 0x14 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x00000000400d2380 0x14 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) 0x7c (size before relaxing) .literal.rtc_gpio_isolate - 0x00000000400d22e0 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x00000000400d2394 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) 0x30 (size before relaxing) .literal.rtc_gpio_force_hold_dis_all - 0x00000000400d22f8 0x8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x00000000400d23ac 0x8 esp-idf/driver/libdriver.a(rtc_io.c.obj) 0x14 (size before relaxing) .literal.rtc_gpio_wakeup_enable - 0x00000000400d2300 0x8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x00000000400d23b4 0x8 esp-idf/driver/libdriver.a(rtc_io.c.obj) 0x30 (size before relaxing) .literal.rtc_isr - 0x00000000400d2308 0x10 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x00000000400d23bc 0x10 esp-idf/driver/libdriver.a(rtc_module.c.obj) 0x20 (size before relaxing) .literal.rtc_isr_ensure_installed - 0x00000000400d2318 0xc esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x00000000400d23cc 0xc esp-idf/driver/libdriver.a(rtc_module.c.obj) 0x20 (size before relaxing) .literal.rtc_isr_register - 0x00000000400d2324 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x00000000400d23d8 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) 0x18 (size before relaxing) + .literal.bus_uses_iomux_pins + 0x00000000400d23dc 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_claim + 0x00000000400d23e0 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x20 (size before relaxing) + .literal.spicommon_periph_free + 0x00000000400d23f0 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0xc (size before relaxing) + .literal.spicommon_irqsource_for_host + 0x00000000400d23f0 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x4 (size before relaxing) + .literal.spicommon_dma_chan_claim + 0x00000000400d23f0 0x14 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x24 (size before relaxing) + .literal.spicommon_dma_chan_free + 0x00000000400d2404 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x2c (size before relaxing) + .literal.spicommon_bus_initialize_io + 0x00000000400d2410 0x58 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x178 (size before relaxing) + .literal.spicommon_cs_initialize + 0x00000000400d2468 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x40 (size before relaxing) .literal.uart_pattern_queue_update - 0x00000000400d2328 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2470 0x4 esp-idf/driver/libdriver.a(uart.c.obj) .literal.uart_pattern_link_free - 0x00000000400d232c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2474 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x14 (size before relaxing) .literal.uart_module_enable - 0x00000000400d2334 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d247c 0x4 esp-idf/driver/libdriver.a(uart.c.obj) 0x18 (size before relaxing) .literal.uart_pattern_enqueue - 0x00000000400d2338 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2480 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x14 (size before relaxing) .literal.uart_rx_intr_handler_default - 0x00000000400d2340 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2488 0x40 esp-idf/driver/libdriver.a(uart.c.obj) 0x114 (size before relaxing) .literal.uart_module_disable - 0x00000000400d2380 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d24c8 0x0 esp-idf/driver/libdriver.a(uart.c.obj) 0x14 (size before relaxing) .literal.uart_set_word_length - 0x00000000400d2380 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d24c8 0x14 esp-idf/driver/libdriver.a(uart.c.obj) 0x34 (size before relaxing) .literal.uart_get_word_length - 0x00000000400d2394 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d24dc 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x20 (size before relaxing) .literal.uart_set_stop_bits - 0x00000000400d239c 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d24e4 0xc esp-idf/driver/libdriver.a(uart.c.obj) 0x34 (size before relaxing) .literal.uart_get_stop_bits - 0x00000000400d23a8 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d24f0 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x20 (size before relaxing) .literal.uart_set_parity - 0x00000000400d23b0 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d24f8 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x28 (size before relaxing) .literal.uart_get_parity - 0x00000000400d23b8 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2500 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x20 (size before relaxing) .literal.uart_set_baudrate - 0x00000000400d23c0 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2508 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x2c (size before relaxing) .literal.uart_get_baudrate - 0x00000000400d23c8 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2510 0x4 esp-idf/driver/libdriver.a(uart.c.obj) 0x28 (size before relaxing) .literal.uart_enable_intr_mask - 0x00000000400d23cc 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2514 0x4 esp-idf/driver/libdriver.a(uart.c.obj) 0x24 (size before relaxing) .literal.uart_disable_intr_mask - 0x00000000400d23d0 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2518 0x4 esp-idf/driver/libdriver.a(uart.c.obj) 0x24 (size before relaxing) .literal.uart_pattern_queue_reset - 0x00000000400d23d4 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d251c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x3c (size before relaxing) .literal.uart_enable_rx_intr - 0x00000000400d23dc 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2524 0x0 esp-idf/driver/libdriver.a(uart.c.obj) 0x4 (size before relaxing) .literal.uart_check_buf_full - 0x00000000400d23dc 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2524 0x4 esp-idf/driver/libdriver.a(uart.c.obj) 0x18 (size before relaxing) .literal.uart_disable_rx_intr - 0x00000000400d23e0 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2528 0x0 esp-idf/driver/libdriver.a(uart.c.obj) 0x4 (size before relaxing) .literal.uart_disable_tx_intr - 0x00000000400d23e0 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2528 0x0 esp-idf/driver/libdriver.a(uart.c.obj) 0x4 (size before relaxing) .literal.uart_enable_tx_intr - 0x00000000400d23e0 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2528 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x34 (size before relaxing) .literal.uart_tx_all - 0x00000000400d23e8 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2530 0xc esp-idf/driver/libdriver.a(uart.c.obj) 0x50 (size before relaxing) .literal.uart_isr_register - 0x00000000400d23f4 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d253c 0x4 esp-idf/driver/libdriver.a(uart.c.obj) 0x2c (size before relaxing) .literal.uart_param_config - 0x00000000400d23f8 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2540 0x10 esp-idf/driver/libdriver.a(uart.c.obj) 0x78 (size before relaxing) .literal.uart_intr_config - 0x00000000400d2408 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2550 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x44 (size before relaxing) .literal.uart_wait_tx_done - 0x00000000400d2410 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2558 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x64 (size before relaxing) .literal.uart_write_bytes - 0x00000000400d2418 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2560 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x38 (size before relaxing) .literal.uart_read_bytes - 0x00000000400d2420 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2568 0x10 esp-idf/driver/libdriver.a(uart.c.obj) 0x64 (size before relaxing) .literal.uart_get_buffered_data_len - 0x00000000400d2430 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2578 0x4 esp-idf/driver/libdriver.a(uart.c.obj) 0x28 (size before relaxing) .literal.uart_flush_input - 0x00000000400d2434 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d257c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) 0x84 (size before relaxing) .literal.uart_driver_delete - 0x00000000400d243c 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2584 0x14 esp-idf/driver/libdriver.a(uart.c.obj) 0x60 (size before relaxing) .literal.uart_driver_install - 0x00000000400d2450 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d2598 0x3c esp-idf/driver/libdriver.a(uart.c.obj) 0xbc (size before relaxing) .literal.uart_is_driver_installed - 0x00000000400d248c 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d25d4 0x0 esp-idf/driver/libdriver.a(uart.c.obj) 0x4 (size before relaxing) .literal.uart_set_select_notif_callback - 0x00000000400d248c 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d25d4 0x0 esp-idf/driver/libdriver.a(uart.c.obj) 0x4 (size before relaxing) .literal.uart_get_selectlock - 0x00000000400d248c 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d25d4 0x0 esp-idf/driver/libdriver.a(uart.c.obj) 0x4 (size before relaxing) .literal.uart_set_wakeup_threshold - 0x00000000400d248c 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d25d4 0xc esp-idf/driver/libdriver.a(uart.c.obj) 0x34 (size before relaxing) .literal.uart_wait_tx_idle_polling - 0x00000000400d2498 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d25e0 0x4 esp-idf/driver/libdriver.a(uart.c.obj) 0x1c (size before relaxing) .literal.esp_fill_random - 0x00000000400d249c 0x10 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x00000000400d25e4 0x10 esp-idf/esp32/libesp32.a(hw_random.c.obj) 0x18 (size before relaxing) .literal.get_power_down_flags - 0x00000000400d24ac 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d25f4 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) .literal.ext0_wakeup_prepare - 0x00000000400d24b0 0x1c esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d25f8 0x1c esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x30 (size before relaxing) .literal.ext1_wakeup_prepare - 0x00000000400d24cc 0xc esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d2614 0xc esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x40 (size before relaxing) .literal.timer_wakeup_prepare - 0x00000000400d24d8 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d2620 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x10 (size before relaxing) .literal.esp_get_deep_sleep_wake_stub - 0x00000000400d24e0 0x30 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d2628 0x30 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x38 (size before relaxing) .literal.esp_set_deep_sleep_wake_stub - 0x00000000400d2510 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d2658 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x14 (size before relaxing) .literal.esp_light_sleep_start - 0x00000000400d2510 0x50 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d2658 0x50 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x84 (size before relaxing) .literal.esp_sleep_disable_wakeup_source - 0x00000000400d2560 0xc esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d26a8 0xc esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x28 (size before relaxing) .literal.esp_sleep_enable_timer_wakeup - 0x00000000400d256c 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d26b4 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x4 (size before relaxing) .literal.esp_sleep_enable_ext1_wakeup - 0x00000000400d256c 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d26b4 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x24 (size before relaxing) .literal.esp_sleep_enable_gpio_wakeup - 0x00000000400d2570 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d26b8 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x14 (size before relaxing) .literal.esp_sleep_enable_uart_wakeup - 0x00000000400d2574 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d26bc 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x4 (size before relaxing) .literal.esp_sleep_get_wakeup_cause - 0x00000000400d2574 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400d26bc 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0xc (size before relaxing) .literal.esp_base_mac_addr_set - 0x00000000400d2578 0x10 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000400d26c0 0x10 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) 0x24 (size before relaxing) .literal.esp_base_mac_addr_get - 0x00000000400d2588 0x4 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000400d26d0 0x4 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) 0x1c (size before relaxing) .literal.esp_efuse_mac_get_default - 0x00000000400d258c 0x18 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000400d26d4 0x18 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) 0x2c (size before relaxing) .literal.esp_read_mac - 0x00000000400d25a4 0x10 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000400d26ec 0x10 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) 0x50 (size before relaxing) .literal.ets_timer_setfn - 0x00000000400d25b4 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x00000000400d26fc 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) 0x24 (size before relaxing) .literal.ets_timer_done - 0x00000000400d25cc 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x00000000400d2714 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) 0x8 (size before relaxing) .literal.find_command_by_name - 0x00000000400d25cc 0x4 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400d2714 0x4 esp-idf/console/libconsole.a(commands.c.obj) 0x10 (size before relaxing) .literal.help_command - 0x00000000400d25d0 0x14 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400d2718 0x14 esp-idf/console/libconsole.a(commands.c.obj) 0x30 (size before relaxing) .literal.esp_console_init - 0x00000000400d25e4 0xc esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400d272c 0xc esp-idf/console/libconsole.a(commands.c.obj) 0x10 (size before relaxing) .literal.esp_console_cmd_register - 0x00000000400d25f0 0x4 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400d2738 0xc esp-idf/console/libconsole.a(commands.c.obj) 0x28 (size before relaxing) .literal.esp_console_get_completion - 0x00000000400d25f4 0x0 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400d2744 0x0 esp-idf/console/libconsole.a(commands.c.obj) 0x10 (size before relaxing) .literal.esp_console_get_hint - 0x00000000400d25f4 0x0 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400d2744 0x0 esp-idf/console/libconsole.a(commands.c.obj) 0x14 (size before relaxing) .literal.esp_console_run - 0x00000000400d25f4 0x0 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400d2744 0x0 esp-idf/console/libconsole.a(commands.c.obj) 0x24 (size before relaxing) .literal.esp_console_register_help_command - 0x00000000400d25f4 0xc esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400d2744 0xc esp-idf/console/libconsole.a(commands.c.obj) 0x10 (size before relaxing) .literal.esp_console_split_argv - 0x00000000400d2600 0x4 esp-idf/console/libconsole.a(split_argv.c.obj) + 0x00000000400d2750 0x4 esp-idf/console/libconsole.a(split_argv.c.obj) .literal.arg_register_error - 0x00000000400d2604 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2754 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x4 (size before relaxing) .literal.arg_parse_untagged - 0x00000000400d2604 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2754 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) 0xc (size before relaxing) .literal.arg_parse_check - 0x00000000400d2608 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2758 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x4 (size before relaxing) .literal.detectsuffix - 0x00000000400d2608 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2758 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0xc (size before relaxing) .literal.alloc_shortoptions - 0x00000000400d2608 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2758 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x8 (size before relaxing) .literal.arg_end_errorfn - 0x00000000400d2608 0x24 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2758 0x24 esp-idf/console/libconsole.a(argtable3.c.obj) 0x44 (size before relaxing) .literal.strtol0X - 0x00000000400d262c 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d277c 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x10 (size before relaxing) .literal.arg_int_scanfn - 0x00000000400d262c 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d277c 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) 0x3c (size before relaxing) .literal.alloc_longoptions - 0x00000000400d263c 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d278c 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0xc (size before relaxing) .literal.find_shortoption - 0x00000000400d263c 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d278c 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x4 (size before relaxing) .literal.arg_parse_tagged - 0x00000000400d263c 0xc esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d278c 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) 0x54 (size before relaxing) .literal.arg_cat_optionv - 0x00000000400d2648 0x24 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d279c 0x24 esp-idf/console/libconsole.a(argtable3.c.obj) 0x50 (size before relaxing) .literal.arg_cat_option - 0x00000000400d266c 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d27c0 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x60 (size before relaxing) .literal.arg_print_gnuswitch - 0x00000000400d266c 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d27c0 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) 0x24 (size before relaxing) .literal.arg_end - 0x00000000400d267c 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d27d0 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) 0xc (size before relaxing) .literal.arg_intn - 0x00000000400d2684 0x14 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d27d8 0x14 esp-idf/console/libconsole.a(argtable3.c.obj) 0x18 (size before relaxing) .literal.arg_int0 - 0x00000000400d2698 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d27ec 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x4 (size before relaxing) .literal.arg_strn - 0x00000000400d2698 0x14 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d27ec 0x14 esp-idf/console/libconsole.a(argtable3.c.obj) 0x1c (size before relaxing) .literal.arg_str0 - 0x00000000400d26ac 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2800 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x4 (size before relaxing) .literal.arg_str1 - 0x00000000400d26ac 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2800 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x4 (size before relaxing) .literal.arg_parse - 0x00000000400d26ac 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2800 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) 0x24 (size before relaxing) .literal.arg_print_option - 0x00000000400d26b4 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2808 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) 0x18 (size before relaxing) .literal.arg_int_errorfn - 0x00000000400d26b8 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d280c 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) 0x4c (size before relaxing) .literal.arg_str_errorfn - 0x00000000400d26d0 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2824 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x28 (size before relaxing) .literal.arg_print_syntax - 0x00000000400d26d0 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2824 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) 0x30 (size before relaxing) .literal.arg_print_glossary - 0x00000000400d26e0 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d2834 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) 0x14 (size before relaxing) .literal.arg_print_formatted - 0x00000000400d26e8 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400d283c 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) 0x18 (size before relaxing) .literal.abAppend - 0x00000000400d26e8 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d283c 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) 0x8 (size before relaxing) .literal.abFree - 0x00000000400d26ec 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2840 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x4 (size before relaxing) .literal.freeCompletions - 0x00000000400d26ec 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2840 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x8 (size before relaxing) .literal.getCursorPosition - 0x00000000400d26ec 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2840 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) 0x1c (size before relaxing) .literal.getColumns - 0x00000000400d26f4 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2848 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) 0x28 (size before relaxing) .literal.linenoiseBeep - 0x00000000400d26fc 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2850 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x8 (size before relaxing) .literal.linenoiseDumb - 0x00000000400d26fc 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2850 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) 0x2c (size before relaxing) .literal.sanitize - 0x00000000400d2700 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2858 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x4 (size before relaxing) .literal.linenoiseSetMultiLine - 0x00000000400d2700 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2858 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) .literal.linenoiseSetDumbMode - 0x00000000400d2704 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d285c 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) .literal.linenoiseClearScreen - 0x00000000400d2708 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2860 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) 0xc (size before relaxing) .literal.linenoiseSetCompletionCallback - 0x00000000400d270c 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2864 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) .literal.linenoiseSetHintsCallback - 0x00000000400d2710 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2868 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) .literal.linenoiseAddCompletion - 0x00000000400d2714 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d286c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x14 (size before relaxing) .literal.refreshShowHints - 0x00000000400d2714 0xc esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d286c 0xc esp-idf/console/libconsole.a(linenoise.c.obj) 0x28 (size before relaxing) .literal.refreshMultiLine - 0x00000000400d2720 0x1c esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2878 0x1c esp-idf/console/libconsole.a(linenoise.c.obj) 0x78 (size before relaxing) .literal.refreshSingleLine - 0x00000000400d273c 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2894 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) 0x44 (size before relaxing) .literal.refreshLine - 0x00000000400d2740 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2898 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0xc (size before relaxing) .literal.completeLine - 0x00000000400d2740 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d2898 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) 0x38 (size before relaxing) .literal.linenoiseEditInsert - 0x00000000400d2744 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d289c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x1c (size before relaxing) .literal.linenoiseEditMoveLeft - 0x00000000400d2744 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d289c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x4 (size before relaxing) .literal.linenoiseEditMoveRight - 0x00000000400d2744 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d289c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x4 (size before relaxing) .literal.linenoiseEditMoveHome - 0x00000000400d2744 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d289c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x4 (size before relaxing) .literal.linenoiseEditMoveEnd - 0x00000000400d2744 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d289c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x4 (size before relaxing) .literal.linenoiseEditHistoryNext - 0x00000000400d2744 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d289c 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) 0x1c (size before relaxing) .literal.linenoiseEditDelete - 0x00000000400d274c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28a4 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x8 (size before relaxing) .literal.linenoiseEditBackspace - 0x00000000400d274c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28a4 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x8 (size before relaxing) .literal.linenoiseEditDeletePrevWord - 0x00000000400d274c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28a4 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x8 (size before relaxing) .literal.linenoiseProbe - 0x00000000400d274c 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28a4 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) 0x30 (size before relaxing) .literal.linenoiseFree - 0x00000000400d2750 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28a8 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x4 (size before relaxing) .literal.linenoiseHistoryAdd - 0x00000000400d2750 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28a8 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) 0x28 (size before relaxing) .literal.linenoiseEdit - 0x00000000400d2754 0xc esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28ac 0xc esp-idf/console/libconsole.a(linenoise.c.obj) 0xd8 (size before relaxing) .literal.linenoiseRaw - 0x00000000400d2760 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28b8 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x10 (size before relaxing) .literal.linenoise - 0x00000000400d2760 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28b8 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x20 (size before relaxing) .literal.linenoiseHistorySetMaxLen - 0x00000000400d2760 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28b8 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) 0x20 (size before relaxing) .literal.linenoiseHistorySave - 0x00000000400d2760 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28b8 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) 0x1c (size before relaxing) .literal.linenoiseHistoryLoad - 0x00000000400d2768 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400d28c0 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) 0x20 (size before relaxing) .literal.httpd_recv_pending - 0x00000000400d276c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28c4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x4 (size before relaxing) .literal.httpd_sock_err - 0x00000000400d276c 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28c4 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x1c (size before relaxing) .literal.httpd_sess_set_send_override - 0x00000000400d2778 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28d0 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) .literal.httpd_sess_set_recv_override - 0x00000000400d277c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28d4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x4 (size before relaxing) .literal.httpd_sess_set_pending_override - 0x00000000400d277c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28d4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x4 (size before relaxing) .literal.httpd_recv_with_opt - 0x00000000400d277c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28d4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x4 (size before relaxing) .literal.httpd_recv - 0x00000000400d277c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28d4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x4 (size before relaxing) .literal.httpd_unrecv - 0x00000000400d277c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28d4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x4 (size before relaxing) .literal.httpd_resp_send - 0x00000000400d277c 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28d4 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x44 (size before relaxing) .literal.httpd_resp_send_chunk - 0x00000000400d2794 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28ec 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x58 (size before relaxing) .literal.httpd_resp_send_err - 0x00000000400d279c 0x6c esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d28f4 0x6c esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0xa4 (size before relaxing) .literal.httpd_req_handle_err - 0x00000000400d2808 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d2960 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x4 (size before relaxing) .literal.httpd_req_recv - 0x00000000400d2808 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d2960 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x4 (size before relaxing) .literal.httpd_default_send - 0x00000000400d2808 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d2960 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0xc (size before relaxing) .literal.httpd_default_recv - 0x00000000400d280c 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400d2964 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0xc (size before relaxing) .literal.httpd_uri_match_simple - 0x00000000400d2810 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x00000000400d2968 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) 0x8 (size before relaxing) .literal.httpd_find_uri_handler - 0x00000000400d2810 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x00000000400d2968 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) 0x4 (size before relaxing) .literal.httpd_register_uri_handler - 0x00000000400d2810 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x00000000400d2968 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) 0x40 (size before relaxing) .literal.httpd_unregister_all_uri_handlers - 0x00000000400d282c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x00000000400d2984 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) 0x8 (size before relaxing) .literal.httpd_uri - 0x00000000400d282c 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x00000000400d2984 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) 0x38 (size before relaxing) .literal.fd_is_valid - 0x00000000400d283c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d2994 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x8 (size before relaxing) .literal.httpd_sess_free_ctx - 0x00000000400d283c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d2994 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x4 (size before relaxing) .literal.httpd_sess_get_transport_ctx - 0x00000000400d283c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d2994 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x4 (size before relaxing) .literal.httpd_sess_set_transport_ctx - 0x00000000400d283c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d2994 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x8 (size before relaxing) .literal.httpd_sess_delete - 0x00000000400d283c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d2994 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x8 (size before relaxing) .literal.httpd_sess_new - 0x00000000400d283c 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d2994 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x28 (size before relaxing) .literal.httpd_sess_delete_invalid - 0x00000000400d2850 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d29a8 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x1c (size before relaxing) .literal.httpd_sess_close - 0x00000000400d2858 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d29b0 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x8 (size before relaxing) .literal.httpd_sess_pending - 0x00000000400d285c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d29b4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x4 (size before relaxing) .literal.httpd_sess_process - 0x00000000400d285c 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d29b4 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x10 (size before relaxing) .literal.httpd_sess_trigger_close - 0x00000000400d2860 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d29b8 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0xc (size before relaxing) .literal.httpd_sess_close_lru - 0x00000000400d2864 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400d29bc 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x4 (size before relaxing) .literal.httpd_close_all_sessions - 0x00000000400d2864 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d29bc 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0xc (size before relaxing) .literal.httpd_process_ctrl_msg - 0x00000000400d2868 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d29c0 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x28 (size before relaxing) .literal.httpd_accept_conn - 0x00000000400d2878 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d29d0 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x4c (size before relaxing) .literal.httpd_server - 0x00000000400d2888 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d29e0 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x50 (size before relaxing) .literal.httpd_thread - 0x00000000400d2898 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d29f0 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x1c (size before relaxing) .literal.httpd_create - 0x00000000400d28a0 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d29f8 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x84 (size before relaxing) .literal.httpd_server_init - 0x00000000400d28b8 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d2a10 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x9c (size before relaxing) .literal.httpd_delete - 0x00000000400d28d4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d2a2c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x18 (size before relaxing) .literal.httpd_queue_work - 0x00000000400d28d4 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d2a2c 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x18 (size before relaxing) .literal.httpd_start - 0x00000000400d28dc 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d2a34 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x34 (size before relaxing) .literal.httpd_stop - 0x00000000400d28f0 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000400d2a48 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x14 (size before relaxing) .literal.init_req - 0x00000000400d28f4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2a4c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x4 (size before relaxing) .literal.init_req_aux - 0x00000000400d28f4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2a4c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x8 (size before relaxing) .literal.parse_init - 0x00000000400d28f4 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2a4c 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x24 (size before relaxing) .literal.cb_header_value - 0x00000000400d290c 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2a64 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x14 (size before relaxing) .literal.cb_url - 0x00000000400d2918 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2a70 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x20 (size before relaxing) .literal.verify_url - 0x00000000400d2920 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2a78 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x3c (size before relaxing) .literal.cb_headers_complete - 0x00000000400d292c 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2a84 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x30 (size before relaxing) .literal.pause_parsing - 0x00000000400d2938 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2a90 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x28 (size before relaxing) .literal.cb_no_body - 0x00000000400d2944 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2a9c 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x1c (size before relaxing) .literal.cb_on_body - 0x00000000400d2948 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2aa0 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x18 (size before relaxing) .literal.cb_header_field - 0x00000000400d294c 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2aa4 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x20 (size before relaxing) .literal.continue_parsing - 0x00000000400d2950 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2aa8 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x4 (size before relaxing) .literal.read_block - 0x00000000400d2950 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2aa8 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x8 (size before relaxing) .literal.parse_block - 0x00000000400d2950 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2aa8 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x40 (size before relaxing) .literal.httpd_parse_req - 0x00000000400d2964 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2abc 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x14 (size before relaxing) .literal.httpd_req_cleanup - 0x00000000400d2964 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2abc 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x4 (size before relaxing) .literal.httpd_req_new - 0x00000000400d2964 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2abc 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x18 (size before relaxing) .literal.httpd_req_delete - 0x00000000400d296c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000400d2ac4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0xc (size before relaxing) .literal.cs_create_ctrl_sock - 0x00000000400d296c 0x4 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x00000000400d2ac4 0x4 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) 0x18 (size before relaxing) .literal.cs_free_ctrl_sock - 0x00000000400d2970 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x00000000400d2ac8 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) 0x4 (size before relaxing) .literal.cs_send_to_ctrl_sock - 0x00000000400d2970 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x00000000400d2ac8 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) 0x10 (size before relaxing) .literal.httpd_ssl_close - 0x00000000400d2970 0xc esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000400d2ac8 0xc esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x14 (size before relaxing) .literal.httpd_ssl_open - 0x00000000400d297c 0x30 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000400d2ad4 0x30 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x68 (size before relaxing) .literal.httpd_ssl_recv - 0x00000000400d29ac 0x8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000400d2b04 0x8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x14 (size before relaxing) .literal.httpd_ssl_send - 0x00000000400d29b4 0x4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000400d2b0c 0x4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x14 (size before relaxing) .literal.httpd_ssl_pending - 0x00000000400d29b8 0x4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000400d2b10 0x4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x18 (size before relaxing) .literal.free_secure_context - 0x00000000400d29bc 0x8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000400d2b14 0x8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x30 (size before relaxing) .literal.create_secure_context - 0x00000000400d29c4 0x4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000400d2b1c 0x4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x54 (size before relaxing) .literal.httpd_ssl_start - 0x00000000400d29c8 0x1c esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000400d2b20 0x1c esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x44 (size before relaxing) .literal.httpd_ssl_stop - 0x00000000400d29e4 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000400d2b3c 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x4 (size before relaxing) .literal.esp_vfs_fat_spiflash_mount - 0x00000000400d29e4 0x24 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + 0x00000000400d2b3c 0x24 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) 0xa0 (size before relaxing) .literal.ff_diskio_get_drive - 0x00000000400d2a08 0x4 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000400d2b60 0x4 esp-idf/fatfs/libfatfs.a(diskio.c.obj) .literal.ff_diskio_register - 0x00000000400d2a0c 0x10 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000400d2b64 0x10 esp-idf/fatfs/libfatfs.a(diskio.c.obj) 0x28 (size before relaxing) .literal.ff_disk_initialize - 0x00000000400d2a1c 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000400d2b74 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) 0x4 (size before relaxing) .literal.ff_disk_status - 0x00000000400d2a1c 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000400d2b74 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) 0x4 (size before relaxing) .literal.ff_disk_read - 0x00000000400d2a1c 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000400d2b74 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) 0x4 (size before relaxing) .literal.ff_disk_write - 0x00000000400d2a1c 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000400d2b74 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) 0x4 (size before relaxing) .literal.ff_disk_ioctl - 0x00000000400d2a1c 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000400d2b74 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) 0x4 (size before relaxing) .literal.get_fattime - 0x00000000400d2a1c 0x8 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000400d2b74 0x8 esp-idf/fatfs/libfatfs.a(diskio.c.obj) .literal.ff_wl_read - 0x00000000400d2a24 0x18 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x00000000400d2b7c 0x18 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) 0x30 (size before relaxing) .literal.ff_wl_write - 0x00000000400d2a3c 0xc esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x00000000400d2b94 0xc esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) 0x48 (size before relaxing) .literal.ff_wl_ioctl - 0x00000000400d2a48 0x4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x00000000400d2ba0 0x4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) 0x20 (size before relaxing) .literal.ff_diskio_register_wl_partition - 0x00000000400d2a4c 0x4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x00000000400d2ba4 0x4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) 0xc (size before relaxing) .literal.ld_clust - 0x00000000400d2a50 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2ba8 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x8 (size before relaxing) .literal.st_clust - 0x00000000400d2a54 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2bac 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x8 (size before relaxing) .literal.get_fileinfo - 0x00000000400d2a58 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2bb0 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xc (size before relaxing) .literal.create_name - 0x00000000400d2a5c 0x18 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2bb4 0x18 esp-idf/fatfs/libfatfs.a(ff.c.obj) .literal.lock_fs - 0x00000000400d2a74 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2bcc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x4 (size before relaxing) .literal.sync_window - 0x00000000400d2a74 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2bcc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x8 (size before relaxing) .literal.move_window - 0x00000000400d2a74 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2bcc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x8 (size before relaxing) .literal.check_fs - 0x00000000400d2a74 0x10 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2bcc 0x10 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x1c (size before relaxing) .literal.find_volume - 0x00000000400d2a84 0x24 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2bdc 0x24 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x88 (size before relaxing) .literal.put_fat - 0x00000000400d2aa8 0xc esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c00 0xc esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x28 (size before relaxing) .literal.get_fat - 0x00000000400d2ab4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c0c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x1c (size before relaxing) .literal.dir_sdi - 0x00000000400d2ab4 0x8 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c0c 0x8 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xc (size before relaxing) .literal.create_chain - 0x00000000400d2abc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c14 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x14 (size before relaxing) .literal.remove_chain - 0x00000000400d2abc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c14 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xc (size before relaxing) .literal.dir_remove - 0x00000000400d2abc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c14 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x4 (size before relaxing) .literal.dir_clear - 0x00000000400d2abc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c14 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x14 (size before relaxing) .literal.dir_next - 0x00000000400d2abc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c14 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x14 (size before relaxing) .literal.dir_find - 0x00000000400d2abc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c14 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x10 (size before relaxing) .literal.follow_path - 0x00000000400d2abc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c14 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x10 (size before relaxing) .literal.dir_alloc - 0x00000000400d2abc 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c14 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xc (size before relaxing) .literal.dir_register - 0x00000000400d2abc 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c14 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x10 (size before relaxing) .literal.dir_read - 0x00000000400d2ac0 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c18 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x8 (size before relaxing) .literal.sync_fs - 0x00000000400d2ac0 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c18 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x34 (size before relaxing) .literal.unlock_fs - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x4 (size before relaxing) .literal.validate - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xc (size before relaxing) .literal.f_mount - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x18 (size before relaxing) .literal.f_open - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x48 (size before relaxing) .literal.f_read - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x44 (size before relaxing) .literal.f_write - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x48 (size before relaxing) .literal.f_sync - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x2c (size before relaxing) .literal.f_close - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xc (size before relaxing) .literal.f_lseek - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x40 (size before relaxing) .literal.f_opendir - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x14 (size before relaxing) .literal.f_closedir - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x8 (size before relaxing) .literal.f_readdir - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x18 (size before relaxing) .literal.f_stat - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x10 (size before relaxing) .literal.f_truncate - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x24 (size before relaxing) .literal.f_unlink - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x24 (size before relaxing) .literal.f_mkdir - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x40 (size before relaxing) .literal.f_rename - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x3c (size before relaxing) .literal.f_utime - 0x00000000400d2ac4 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x14 (size before relaxing) .literal.f_mkfs - 0x00000000400d2ac4 0x24 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000400d2c1c 0x28 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x140 (size before relaxing) .literal.ff_memalloc - 0x00000000400d2ae8 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x00000000400d2c44 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) 0x4 (size before relaxing) .literal.ff_cre_syncobj - 0x00000000400d2ae8 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x00000000400d2c44 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) 0x4 (size before relaxing) .literal.ff_del_syncobj - 0x00000000400d2ae8 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x00000000400d2c44 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) 0x4 (size before relaxing) .literal.ff_req_grant - 0x00000000400d2ae8 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x00000000400d2c44 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) 0x4 (size before relaxing) .literal.ff_rel_grant - 0x00000000400d2ae8 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x00000000400d2c44 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) 0x4 (size before relaxing) .literal.find_unused_context_index - 0x00000000400d2ae8 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2c44 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .literal.get_next_fd - 0x00000000400d2aec 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2c48 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .literal.fat_mode_conv - 0x00000000400d2af0 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2c4c 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .literal.vfs_fat_fstat - 0x00000000400d2af4 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2c50 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .literal.file_cleanup - 0x00000000400d2afc 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - 0xc (size before relaxing) + 0x00000000400d2c58 0xc esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .literal.prepend_drive_to_path - 0x00000000400d2b04 0xc esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2c64 0x10 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x14 (size before relaxing) .literal.fresult_to_errno - 0x00000000400d2b10 0x10 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - 0x14 (size before relaxing) + 0x00000000400d2c74 0x14 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .literal.vfs_fat_utime - 0x00000000400d2b20 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2c88 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x28 (size before relaxing) .literal.vfs_fat_telldir - 0x00000000400d2b20 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2c90 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x10 (size before relaxing) .literal.vfs_fat_lseek - 0x00000000400d2b28 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2c98 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x1c (size before relaxing) .literal.vfs_fat_close - 0x00000000400d2b2c 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2c9c 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x1c (size before relaxing) .literal.vfs_fat_truncate - 0x00000000400d2b2c 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2c9c 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x74 (size before relaxing) .literal.vfs_fat_open - 0x00000000400d2b34 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2ca4 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x44 (size before relaxing) .literal.vfs_fat_access - 0x00000000400d2b38 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2ca8 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x18 (size before relaxing) .literal.vfs_fat_fsync - 0x00000000400d2b38 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2ca8 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x18 (size before relaxing) .literal.vfs_fat_rmdir - 0x00000000400d2b38 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2ca8 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x18 (size before relaxing) .literal.vfs_fat_unlink - 0x00000000400d2b38 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2ca8 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x18 (size before relaxing) .literal.vfs_fat_mkdir - 0x00000000400d2b38 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2ca8 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x18 (size before relaxing) .literal.vfs_fat_closedir - 0x00000000400d2b38 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2ca8 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x20 (size before relaxing) .literal.vfs_fat_seekdir - 0x00000000400d2b3c 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cac 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x28 (size before relaxing) .literal.vfs_fat_readdir_r - 0x00000000400d2b40 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb0 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x1c (size before relaxing) .literal.vfs_fat_readdir - 0x00000000400d2b44 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb4 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x8 (size before relaxing) .literal.vfs_fat_opendir - 0x00000000400d2b44 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb4 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x2c (size before relaxing) .literal.vfs_fat_rename - 0x00000000400d2b48 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb4 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x18 (size before relaxing) .literal.vfs_fat_pread - 0x00000000400d2b48 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb4 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x34 (size before relaxing) .literal.vfs_fat_read - 0x00000000400d2b48 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb4 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x10 (size before relaxing) .literal.vfs_fat_link - 0x00000000400d2b48 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb4 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x68 (size before relaxing) .literal.vfs_fat_pwrite - 0x00000000400d2b48 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb4 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x34 (size before relaxing) .literal.vfs_fat_write - 0x00000000400d2b48 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb4 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x20 (size before relaxing) .literal.find_context_index_by_path - 0x00000000400d2b48 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb4 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x8 (size before relaxing) .literal.vfs_fat_stat - 0x00000000400d2b48 0xc esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cb8 0xc esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x34 (size before relaxing) .literal.esp_vfs_fat_register - 0x00000000400d2b54 0x64 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2cc4 0x68 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0xa0 (size before relaxing) .literal.esp_vfs_fat_unregister_path - 0x00000000400d2bb8 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000400d2d2c 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x18 (size before relaxing) .literal._ZL12check_handleiPKc - 0x00000000400d2bbc 0x14 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x00000000400d2d30 0x14 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x2c (size before relaxing) .literal.wl_mount - 0x00000000400d2bd0 0x20 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x00000000400d2d44 0x20 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x78 (size before relaxing) .literal.wl_erase_range - 0x00000000400d2bf0 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x00000000400d2d64 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x14 (size before relaxing) .literal.wl_write - 0x00000000400d2bf4 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x00000000400d2d68 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x14 (size before relaxing) .literal.wl_read - 0x00000000400d2bf8 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x00000000400d2d6c 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x14 (size before relaxing) .literal.wl_size - 0x00000000400d2bfc 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x00000000400d2d70 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x14 (size before relaxing) .literal.wl_sector_size - 0x00000000400d2c00 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x00000000400d2d74 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x14 (size before relaxing) .literal._ZN9Partition12erase_sectorEj - 0x00000000400d2c04 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x00000000400d2d78 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) 0x4 (size before relaxing) .literal._ZN9Partition11sector_sizeEv - 0x00000000400d2c04 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x00000000400d2d78 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) 0x4 (size before relaxing) .literal._ZN9Partition11erase_rangeEjj - 0x00000000400d2c04 0x8 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x00000000400d2d78 0x8 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) 0x14 (size before relaxing) .literal._ZN9Partition5writeEjPKvj - 0x00000000400d2c0c 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x00000000400d2d80 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) 0x4 (size before relaxing) .literal._ZN9Partition4readEjPvj - 0x00000000400d2c0c 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x00000000400d2d80 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) 0x4 (size before relaxing) .literal._ZN9PartitionD0Ev - 0x00000000400d2c0c 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x00000000400d2d80 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) 0x4 (size before relaxing) .literal._ZN9PartitionC2EPK15esp_partition_t - 0x00000000400d2c0c 0x4 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x00000000400d2d80 0x4 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) .literal._ZN8WL_FlashD2Ev - 0x00000000400d2c10 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2d84 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x4 (size before relaxing) .literal._ZN8WL_FlashD0Ev - 0x00000000400d2c10 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2d84 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x8 (size before relaxing) .literal._ZN8WL_Flash11erase_rangeEjj - 0x00000000400d2c10 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2d84 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x14 (size before relaxing) .literal._ZN8WL_Flash6configEP11WL_Config_sP12Flash_Access - 0x00000000400d2c1c 0x8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2d90 0x8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x30 (size before relaxing) .literal._ZN8WL_FlashC2Ev - 0x00000000400d2c24 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2d98 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) .literal._ZN8WL_Flash12initSectionsEv - 0x00000000400d2c28 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2d9c 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x48 (size before relaxing) .literal._ZN8WL_Flash10fillOkBuffEi - 0x00000000400d2c2c 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2da0 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x4 (size before relaxing) .literal._ZN8WL_Flash11updateV1_V2Ev - 0x00000000400d2c2c 0x10 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2da0 0x10 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x94 (size before relaxing) .literal._ZN8WL_Flash13updateVersionEv - 0x00000000400d2c3c 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2db0 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x4 (size before relaxing) .literal._ZN8WL_Flash9OkBuffSetEi - 0x00000000400d2c3c 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2db0 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x4 (size before relaxing) .literal._ZN8WL_Flash10recoverPosEv - 0x00000000400d2c3c 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2db0 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x18 (size before relaxing) .literal._ZN8WL_Flash4initEv - 0x00000000400d2c40 0x10 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2db4 0x10 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x100 (size before relaxing) .literal._ZN8WL_Flash8updateWLEv - 0x00000000400d2c50 0x20 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2dc4 0x20 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x84 (size before relaxing) .literal._ZN8WL_Flash5flushEv - 0x00000000400d2c70 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2de4 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x4 (size before relaxing) .literal._ZN8WL_Flash12erase_sectorEj - 0x00000000400d2c70 0x8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2de4 0x8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x24 (size before relaxing) .literal._ZN8WL_Flash5writeEjPKvj - 0x00000000400d2c78 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2dec 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x24 (size before relaxing) .literal._ZN8WL_Flash4readEjPvj - 0x00000000400d2c7c 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000400d2df0 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x24 (size before relaxing) .literal._ZN5crc328crc32_leEjPKhj - 0x00000000400d2c80 0x0 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + 0x00000000400d2df4 0x0 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) 0x4 (size before relaxing) .literal.esp_spiffs_get_empty - 0x00000000400d2c80 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2df4 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .literal.spiffs_res_to_errno - 0x00000000400d2c84 0x2c esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2df8 0x2c esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .literal.spiffs_mode_conv - 0x00000000400d2cb0 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e24 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x4 (size before relaxing) .literal.esp_spiffs_by_label - 0x00000000400d2cb0 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e24 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x8 (size before relaxing) .literal.vfs_spiffs_telldir - 0x00000000400d2cb4 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e28 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x10 (size before relaxing) .literal.esp_spiffs_free - 0x00000000400d2cc0 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e34 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x1c (size before relaxing) .literal.esp_spiffs_init - 0x00000000400d2cc0 0x54 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e34 0x54 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x130 (size before relaxing) .literal.vfs_spiffs_rmdir - 0x00000000400d2d14 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e88 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x4 (size before relaxing) .literal.vfs_spiffs_mkdir - 0x00000000400d2d14 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e88 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x4 (size before relaxing) .literal.vfs_spiffs_link - 0x00000000400d2d14 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e88 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x4 (size before relaxing) .literal.vfs_spiffs_update_mtime_value - 0x00000000400d2d14 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e88 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x14 (size before relaxing) .literal.vfs_spiffs_utime - 0x00000000400d2d18 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e8c 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x28 (size before relaxing) .literal.vfs_spiffs_closedir - 0x00000000400d2d20 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e94 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x28 (size before relaxing) .literal.vfs_spiffs_seekdir - 0x00000000400d2d24 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2e98 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x44 (size before relaxing) .literal.vfs_spiffs_readdir_r - 0x00000000400d2d30 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ea4 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x3c (size before relaxing) .literal.vfs_spiffs_readdir - 0x00000000400d2d38 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2eac 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x18 (size before relaxing) .literal.vfs_spiffs_opendir - 0x00000000400d2d3c 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2eb0 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x34 (size before relaxing) .literal.vfs_spiffs_rename - 0x00000000400d2d48 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2eb8 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x2c (size before relaxing) .literal.vfs_spiffs_unlink - 0x00000000400d2d54 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ec4 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x24 (size before relaxing) .literal.vfs_spiffs_stat - 0x00000000400d2d58 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ec8 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x38 (size before relaxing) .literal.vfs_spiffs_fstat - 0x00000000400d2d6c 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2edc 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x2c (size before relaxing) .literal.vfs_spiffs_close - 0x00000000400d2d70 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ee0 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x14 (size before relaxing) .literal.vfs_spiffs_update_mtime - 0x00000000400d2d70 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ee0 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x18 (size before relaxing) .literal.vfs_spiffs_open - 0x00000000400d2d70 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ee0 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x2c (size before relaxing) .literal.vfs_spiffs_read - 0x00000000400d2d74 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ee4 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x14 (size before relaxing) .literal.vfs_spiffs_lseek - 0x00000000400d2d74 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ee4 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x14 (size before relaxing) .literal.vfs_spiffs_write - 0x00000000400d2d74 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ee4 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x14 (size before relaxing) .literal.esp_spiffs_info - 0x00000000400d2d74 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ee4 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0xc (size before relaxing) .literal.esp_vfs_spiffs_register - 0x00000000400d2d74 0x58 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000400d2ee4 0x58 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x78 (size before relaxing) .literal.spiffs_api_lock - 0x00000000400d2dcc 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x00000000400d2f3c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x4 (size before relaxing) .literal.spiffs_api_unlock - 0x00000000400d2dcc 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x00000000400d2f3c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x4 (size before relaxing) .literal.spiffs_api_read - 0x00000000400d2dcc 0x8 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x00000000400d2f3c 0x8 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x14 (size before relaxing) .literal.spiffs_api_write - 0x00000000400d2dd4 0x4 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x00000000400d2f44 0x4 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x14 (size before relaxing) .literal.spiffs_api_erase - 0x00000000400d2dd8 0x4 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x00000000400d2f48 0x4 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x14 (size before relaxing) .literal.spiffs_api_check - 0x00000000400d2ddc 0xc esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x00000000400d2f4c 0xc esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x18 (size before relaxing) .literal.spiffs_hydro_write - 0x00000000400d2de8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f58 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x8 (size before relaxing) .literal.spiffs_fflush_cache - 0x00000000400d2de8 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f58 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x10 (size before relaxing) .literal.spiffs_hydro_read - 0x00000000400d2dec 0x10 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f5c 0x10 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x48 (size before relaxing) .literal.spiffs_stat_pix - 0x00000000400d2dfc 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f6c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0xc (size before relaxing) .literal.spiffs_read_dir_v - 0x00000000400d2e00 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f70 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x10 (size before relaxing) .literal.SPIFFS_format - 0x00000000400d2e08 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f78 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x20 (size before relaxing) .literal.SPIFFS_mount - 0x00000000400d2e0c 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f7c 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x30 (size before relaxing) .literal.SPIFFS_unmount - 0x00000000400d2e14 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f84 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x14 (size before relaxing) .literal.SPIFFS_open - 0x00000000400d2e14 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f84 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x78 (size before relaxing) .literal.SPIFFS_read - 0x00000000400d2e14 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f84 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x8 (size before relaxing) .literal.SPIFFS_write - 0x00000000400d2e14 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f84 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x60 (size before relaxing) .literal.SPIFFS_lseek - 0x00000000400d2e18 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f88 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x3c (size before relaxing) .literal.SPIFFS_remove - 0x00000000400d2e20 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f90 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x48 (size before relaxing) .literal.SPIFFS_stat - 0x00000000400d2e20 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f90 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x28 (size before relaxing) .literal.SPIFFS_fstat - 0x00000000400d2e20 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f90 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x24 (size before relaxing) .literal.SPIFFS_close - 0x00000000400d2e20 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f90 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x24 (size before relaxing) .literal.SPIFFS_rename - 0x00000000400d2e20 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f90 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x5c (size before relaxing) .literal.SPIFFS_update_meta - 0x00000000400d2e24 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f94 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x3c (size before relaxing) .literal.SPIFFS_fupdate_meta - 0x00000000400d2e24 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f94 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x2c (size before relaxing) .literal.SPIFFS_opendir - 0x00000000400d2e24 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f94 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0xc (size before relaxing) .literal.SPIFFS_readdir - 0x00000000400d2e24 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f94 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x14 (size before relaxing) .literal.SPIFFS_closedir - 0x00000000400d2e28 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f98 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0xc (size before relaxing) .literal.SPIFFS_info - 0x00000000400d2e28 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000400d2f98 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x14 (size before relaxing) .literal.spiffs_obj_lu_scan_v - 0x00000000400d2e28 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2f98 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x8 (size before relaxing) .literal.spiffs_update_ix_map - 0x00000000400d2e2c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2f9c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x4 (size before relaxing) .literal.spiffs_hash - 0x00000000400d2e2c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2f9c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) .literal.spiffs_obj_lu_find_id_and_span_v - 0x00000000400d2e30 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fa0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x8 (size before relaxing) .literal.spiffs_page_data_check - 0x00000000400d2e30 0x1c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fa0 0x1c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x28 (size before relaxing) .literal.spiffs_page_index_check - 0x00000000400d2e4c 0x14 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fbc 0x14 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x28 (size before relaxing) .literal.spiffs_object_find_object_index_header_by_name_v - 0x00000000400d2e60 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fd0 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x10 (size before relaxing) .literal.spiffs_obj_lu_find_free_obj_id_compact_v - 0x00000000400d2e64 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fd4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x14 (size before relaxing) .literal.spiffs_obj_lu_find_free_obj_id_bitmap_v - 0x00000000400d2e64 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fd4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x10 (size before relaxing) .literal.spiffs_phys_cpy - 0x00000000400d2e64 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fd4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x8 (size before relaxing) .literal.spiffs_obj_lu_find_entry_visitor - 0x00000000400d2e64 0xc esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fd4 0xc esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x14 (size before relaxing) .literal.spiffs_erase_block - 0x00000000400d2e70 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fe0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0xc (size before relaxing) .literal.spiffs_obj_lu_scan - 0x00000000400d2e70 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fe0 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x28 (size before relaxing) .literal.spiffs_obj_lu_find_id - 0x00000000400d2e74 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fe8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0xc (size before relaxing) .literal.spiffs_obj_lu_find_free - 0x00000000400d2e74 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2fe8 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x14 (size before relaxing) .literal.spiffs_obj_lu_find_id_and_span - 0x00000000400d2e7c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff0 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x10 (size before relaxing) .literal.spiffs_page_allocate_data - 0x00000000400d2e80 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x14 (size before relaxing) .literal.spiffs_page_delete - 0x00000000400d2e80 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x8 (size before relaxing) .literal.spiffs_page_move - 0x00000000400d2e80 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x18 (size before relaxing) .literal.spiffs_cb_object_event - 0x00000000400d2e80 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0xc (size before relaxing) .literal.spiffs_object_create - 0x00000000400d2e80 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x20 (size before relaxing) .literal.spiffs_object_update_index_hdr - 0x00000000400d2e80 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x28 (size before relaxing) .literal.spiffs_object_open_by_page - 0x00000000400d2e80 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x1c (size before relaxing) .literal.spiffs_object_append - 0x00000000400d2e80 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x84 (size before relaxing) .literal.spiffs_object_modify - 0x00000000400d2e80 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x6c (size before relaxing) .literal.spiffs_object_find_object_index_header_by_name - 0x00000000400d2e80 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff4 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x10 (size before relaxing) .literal.spiffs_object_truncate - 0x00000000400d2e84 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d2ff8 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x8c (size before relaxing) .literal.spiffs_object_read - 0x00000000400d2e8c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d3000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x30 (size before relaxing) .literal.spiffs_obj_lu_find_free_obj_id - 0x00000000400d2e8c 0xc esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d3000 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x24 (size before relaxing) .literal.spiffs_fd_find_new - 0x00000000400d2e98 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d3008 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0xc (size before relaxing) .literal.spiffs_fd_return - 0x00000000400d2e9c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d300c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x8 (size before relaxing) .literal.spiffs_fd_get - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d3010 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x8 (size before relaxing) .literal.spiffs_fd_temporal_cache_rehash - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x00000000400d3010 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x8 (size before relaxing) .literal.spiffs_cache_page_remove_oldest - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - 0x4 (size before relaxing) + 0x00000000400d3010 0x4 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) .literal.spiffs_cache_drop_page - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x00000000400d3014 0x4 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) 0x8 (size before relaxing) .literal.spiffs_phys_rd - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x00000000400d3018 0x4 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) 0x14 (size before relaxing) .literal.spiffs_phys_wr - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x00000000400d301c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) 0xc (size before relaxing) .literal.spiffs_cache_page_allocate_by_fd - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x00000000400d301c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) 0x8 (size before relaxing) .literal.spiffs_cache_fd_release - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x00000000400d301c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) 0x4 (size before relaxing) .literal.spiffs_cache_init - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x00000000400d301c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) 0x8 (size before relaxing) .literal.spiffs_gc_erase_block - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x00000000400d301c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) 0x8 (size before relaxing) .literal.spiffs_gc_quick - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x00000000400d301c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) 0x10 (size before relaxing) .literal.spiffs_gc_erase_page_stats - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x00000000400d301c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) 0x8 (size before relaxing) .literal.spiffs_gc_find_candidate - 0x00000000400d2ea0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x00000000400d301c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) 0x14 (size before relaxing) .literal.spiffs_gc_clean - 0x00000000400d2ea0 0x4 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x00000000400d301c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) 0x68 (size before relaxing) .literal.spiffs_gc_check - 0x00000000400d2ea4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x00000000400d301c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) 0x14 (size before relaxing) - .literal.select - 0x00000000400d2ea4 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) + .literal.lvgl_driver_init + 0x00000000400d301c 0x0 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) 0x4 (size before relaxing) - .literal.s_get_num_reserved_regions - 0x00000000400d2ea4 0x8 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - .literal.s_prepare_reserved_regions - 0x00000000400d2eac 0x24 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - 0x3c (size before relaxing) - .literal.soc_get_available_memory_region_max_count - 0x00000000400d2ed0 0x4 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - 0x8 (size before relaxing) - .literal.soc_get_available_memory_regions - 0x00000000400d2ed4 0x4 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - 0x14 (size before relaxing) - .literal.rtcio_hal_isolate - 0x00000000400d2ed8 0x1c esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - 0x38 (size before relaxing) - .literal.uart_hal_set_baudrate - 0x00000000400d2ef4 0x18 esp-idf/soc/libsoc.a(uart_hal.c.obj) - .literal.uart_hal_get_baudrate - 0x00000000400d2f0c 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0xc (size before relaxing) - .literal.uart_hal_set_hw_flow_ctrl - 0x00000000400d2f0c 0x10 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x14 (size before relaxing) - .literal.uart_hal_set_rx_timeout - 0x00000000400d2f1c 0xc esp-idf/soc/libsoc.a(uart_hal.c.obj) - .literal.uart_hal_set_tx_idle_num - 0x00000000400d2f28 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) - .literal.uart_hal_set_txfifo_empty_thr - 0x00000000400d2f2c 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) - .literal.uart_hal_init - 0x00000000400d2f30 0xc esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x20 (size before relaxing) - .literal.mbedtls_clz - 0x00000000400d2f3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_int_div_int - 0x00000000400d2f3c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .literal.mbedtls_mpi_zeroize - 0x00000000400d2f48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mpi_uint_bigendian_to_host - 0x00000000400d2f48 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .literal.mpi_bigendian_to_host - 0x00000000400d2f4c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_mpi_free - 0x00000000400d2f50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_mpi_grow - 0x00000000400d2f50 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_mpi_shrink - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_mpi_copy - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.win_close_action + 0x00000000400d301c 0x8 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) 0x10 (size before relaxing) - .literal.mbedtls_mpi_swap - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_mpi_safe_cond_assign - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_safe_cond_swap - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_mpi_lset - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_mpi_set_bit - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_bitlen - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_size - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_read_binary - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_mpi_write_binary - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_shift_l - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_mpi_shift_r - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_mpi_cmp_abs - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_cmp_mpi - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_lt_mpi_ct - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_mpi_cmp_int - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_add_abs - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_mpi_sub_abs - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x1c (size before relaxing) - .literal.mbedtls_mpi_add_mpi - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_mpi_sub_mpi - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_mpi_add_int - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_sub_int - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_mul_int - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_read_string - 0x00000000400d2f54 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x30 (size before relaxing) - .literal.mbedtls_mpi_div_mpi - 0x00000000400d2f54 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xb8 (size before relaxing) - .literal.mbedtls_mpi_div_int - 0x00000000400d2f5c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_mpi_mod_mpi - 0x00000000400d2f5c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_mpi_mod_int - 0x00000000400d2f5c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4 (size before relaxing) - .literal.mpi_write_hlp - 0x00000000400d2f5c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_mpi_write_string - 0x00000000400d2f60 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x1c (size before relaxing) - .literal.mbedtls_mpi_write_file - 0x00000000400d2f64 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x2c (size before relaxing) - .literal.mpi_check_small_factors - 0x00000000400d2f74 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_mpi_gcd - 0x00000000400d2f78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x60 (size before relaxing) - .literal.mbedtls_mpi_fill_random - 0x00000000400d2f78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x14 (size before relaxing) - .literal.mpi_miller_rabin - 0x00000000400d2f78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x78 (size before relaxing) - .literal.mbedtls_mpi_inv_mod - 0x00000000400d2f78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xd0 (size before relaxing) - .literal.mbedtls_mpi_is_prime_ext - 0x00000000400d2f78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_mpi_gen_prime - 0x00000000400d2f78 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x4c (size before relaxing) - .literal.block_cipher_df - 0x00000000400d2f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x3c (size before relaxing) - .literal.ctr_drbg_update_internal - 0x00000000400d2f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_ctr_drbg_init - 0x00000000400d2f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ctr_drbg_free - 0x00000000400d2f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_ctr_drbg_reseed - 0x00000000400d2f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_ctr_drbg_seed - 0x00000000400d2f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_ctr_drbg_random_with_add - 0x00000000400d2f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x20 (size before relaxing) - .literal.mbedtls_ctr_drbg_random - 0x00000000400d2f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x4 (size before relaxing) - .literal.ecp_check_pubkey_mx - 0x00000000400d2f80 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x8 (size before relaxing) - .literal.ecp_modp - 0x00000000400d2f84 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x20 (size before relaxing) - .literal.ecp_randomize_mxz - 0x00000000400d2f88 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x30 (size before relaxing) - .literal.ecp_randomize_jac - 0x00000000400d2f90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x50 (size before relaxing) - .literal.ecp_double_add_mxz - 0x00000000400d2f90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xf8 (size before relaxing) - .literal.ecp_normalize_mxz - 0x00000000400d2f90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x14 (size before relaxing) - .literal.ecp_normalize_jac - 0x00000000400d2f90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.sysmon_task + 0x00000000400d3024 0x24 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) 0x40 (size before relaxing) - .literal.ecp_double_jac - 0x00000000400d2f90 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x134 (size before relaxing) - .literal.ecp_normalize_jac_many - 0x00000000400d2f94 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.sysmon_create + 0x00000000400d3048 0x14 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) 0x84 (size before relaxing) - .literal.ecp_safe_invert_jac - 0x00000000400d2f98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x14 (size before relaxing) - .literal.ecp_select_comb - 0x00000000400d2f98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xc (size before relaxing) - .literal.ecp_comb_recode_core - 0x00000000400d2f98 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.disp_driver_init + 0x00000000400d305c 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) 0x8 (size before relaxing) - .literal.ecp_comb_recode_scalar - 0x00000000400d2f9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x2c (size before relaxing) - .literal.ecp_check_pubkey_sw - 0x00000000400d2f9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x68 (size before relaxing) - .literal.mbedtls_ecp_curve_list - 0x00000000400d2f9c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .literal.mbedtls_ecp_grp_id_list - 0x00000000400d2fa0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_ecp_curve_info_from_grp_id - 0x00000000400d2fa8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.disp_driver_flush + 0x00000000400d305c 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) 0x4 (size before relaxing) - .literal.mbedtls_ecp_curve_info_from_tls_id - 0x00000000400d2fa8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ecp_curve_info_from_name - 0x00000000400d2fa8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_ecp_point_init - 0x00000000400d2fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_ecp_group_init - 0x00000000400d2fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_ecp_keypair_init - 0x00000000400d2fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_ecp_point_free - 0x00000000400d2fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_ecp_group_free - 0x00000000400d2fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.disp_spi_add_device_config + 0x00000000400d305c 0x18 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) 0x20 (size before relaxing) - .literal.mbedtls_ecp_keypair_free - 0x00000000400d2fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_ecp_copy - 0x00000000400d2fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xc (size before relaxing) - .literal.ecp_mul_mxz - 0x00000000400d2fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x50 (size before relaxing) - .literal.mbedtls_ecp_group_copy - 0x00000000400d2fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.disp_spi_add_device + 0x00000000400d3074 0x4 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + 0x8 (size before relaxing) + .literal.disp_spi_init + 0x00000000400d3078 0x8 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + 0x1c (size before relaxing) + .literal.disp_spi_send_data + 0x00000000400d3080 0x8 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + 0x10 (size before relaxing) + .literal.disp_spi_send_colors + 0x00000000400d3088 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + 0x10 (size before relaxing) + .literal.disp_spi_is_busy + 0x00000000400d3088 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) 0x4 (size before relaxing) - .literal.mbedtls_ecp_set_zero - 0x00000000400d2fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.ili9341_send_cmd + 0x00000000400d3088 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) 0xc (size before relaxing) - .literal.ecp_add_mixed - 0x00000000400d2fac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x120 (size before relaxing) - .literal.ecp_precompute_comb - 0x00000000400d2fb4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.ili9341_send_data + 0x00000000400d3088 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + 0xc (size before relaxing) + .literal.ili9341_send_color + 0x00000000400d3088 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + 0xc (size before relaxing) + .literal.ili9341_flush + 0x00000000400d3088 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) 0x18 (size before relaxing) - .literal.ecp_mul_comb_core - 0x00000000400d2fb4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x20 (size before relaxing) - .literal.ecp_mul_comb_after_precomp - 0x00000000400d2fb4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.ili9341_enable_backlight + 0x00000000400d3088 0x18 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + 0x1c (size before relaxing) + .literal.ili9341_init + 0x00000000400d30a0 0x4 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + 0x40 (size before relaxing) + .literal.lv_disp_get_scr_act + 0x00000000400d30a4 0x8 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) 0x10 (size before relaxing) - .literal.ecp_mul_comb - 0x00000000400d2fb4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x2c (size before relaxing) - .literal.mbedtls_ecp_is_zero - 0x00000000400d2fb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.lv_disp_get_layer_top + 0x00000000400d30ac 0x4 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + 0x10 (size before relaxing) + .literal.lv_disp_get_layer_sys + 0x00000000400d30b0 0x4 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + 0x10 (size before relaxing) + .literal.lv_event_mark_deleted + 0x00000000400d30b4 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.refresh_children_position + 0x00000000400d30b8 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_init + 0x00000000400d30c0 0x1c esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x48 (size before relaxing) + .literal.lv_obj_set_drag + 0x00000000400d30dc 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_event_send_func + 0x00000000400d30e0 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x10 (size before relaxing) + .literal.lv_event_send + 0x00000000400d30e4 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) 0x4 (size before relaxing) - .literal.mbedtls_ecp_point_cmp - 0x00000000400d2fb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.lv_event_get_data + 0x00000000400d30e4 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x4 (size before relaxing) + .literal.lv_obj_allocate_ext_attr + 0x00000000400d30e4 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x4 (size before relaxing) + .literal.lv_obj_get_screen + 0x00000000400d30e4 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_get_disp + 0x00000000400d30e8 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x24 (size before relaxing) + .literal.lv_obj_get_child + 0x00000000400d30ec 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x8 (size before relaxing) + .literal.lv_obj_get_child_back + 0x00000000400d30ec 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .literal.lv_obj_get_coords + 0x00000000400d30f4 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x4 (size before relaxing) + .literal.lv_obj_get_x + 0x00000000400d30f4 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x4 (size before relaxing) + .literal.lv_obj_get_y + 0x00000000400d30f4 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x4 (size before relaxing) + .literal.lv_obj_invalidate_area + 0x00000000400d30f4 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x34 (size before relaxing) + .literal.lv_obj_invalidate + 0x00000000400d30fc 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x8 (size before relaxing) + .literal.lv_obj_move_foreground + 0x00000000400d30fc 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x14 (size before relaxing) + .literal.lv_obj_set_pos + 0x00000000400d30fc 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) 0x10 (size before relaxing) - .literal.mbedtls_ecp_point_write_binary - 0x00000000400d2fb8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x1c (size before relaxing) - .literal.mbedtls_ecp_point_read_binary - 0x00000000400d2fbc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x1c (size before relaxing) - .literal.mbedtls_ecp_tls_read_point - 0x00000000400d2fc0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.lv_obj_set_x + 0x00000000400d30fc 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) 0x8 (size before relaxing) - .literal.mbedtls_ecp_tls_write_point - 0x00000000400d2fc0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.lv_obj_set_y + 0x00000000400d30fc 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) 0x8 (size before relaxing) - .literal.mbedtls_ecp_tls_read_group_id - 0x00000000400d2fc4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.lv_obj_align + 0x00000000400d30fc 0xc esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0xe8 (size before relaxing) + .literal.lv_obj_align_origo + 0x00000000400d3108 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x88 (size before relaxing) + .literal.lv_obj_realign + 0x00000000400d310c 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x8 (size before relaxing) + .literal.lv_obj_set_parent + 0x00000000400d310c 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x2c (size before relaxing) + .literal.lv_obj_refresh_style + 0x00000000400d3114 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x8 (size before relaxing) + .literal.refresh_children_style + 0x00000000400d3114 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) 0xc (size before relaxing) - .literal.mbedtls_ecp_tls_write_group - 0x00000000400d2fc4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.lv_obj_set_style + 0x00000000400d3114 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x8 (size before relaxing) + .literal.lv_obj_refresh_ext_draw_pad + 0x00000000400d3114 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x4 (size before relaxing) + .literal.lv_obj_create + 0x00000000400d3114 0x20 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x6c (size before relaxing) + .literal.lv_obj_set_size + 0x00000000400d3134 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x28 (size before relaxing) + .literal.lv_obj_set_height + 0x00000000400d3134 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x8 (size before relaxing) + .literal.lv_obj_get_opa_scale + 0x00000000400d3134 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x4 (size before relaxing) + .literal.delete_children + 0x00000000400d3134 0x4 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x40 (size before relaxing) + .literal.lv_obj_del + 0x00000000400d3138 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x50 (size before relaxing) + .literal.lv_obj_get_style + 0x00000000400d3138 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x18 (size before relaxing) + .literal.lv_obj_design + 0x00000000400d3140 0x8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x28 (size before relaxing) + .literal.lv_obj_get_width_fit + 0x00000000400d3148 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x8 (size before relaxing) + .literal.lv_obj_get_height_fit + 0x00000000400d3148 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x8 (size before relaxing) + .literal.lv_obj_is_focused + 0x00000000400d3148 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x4 (size before relaxing) + .literal.lv_obj_signal + 0x00000000400d3148 0xc esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x14 (size before relaxing) + .literal.lv_refr_join_area + 0x00000000400d3154 0x10 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x1c (size before relaxing) + .literal.lv_refr_get_top_obj + 0x00000000400d3164 0x0 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x14 (size before relaxing) + .literal.lv_refr_obj + 0x00000000400d3164 0x0 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x20 (size before relaxing) + .literal.lv_refr_obj_and_children + 0x00000000400d3164 0x0 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x20 (size before relaxing) + .literal.lv_inv_area + 0x00000000400d3164 0x4 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x1c (size before relaxing) + .literal.lv_refr_get_disp_refreshing + 0x00000000400d3168 0x0 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x4 (size before relaxing) + .literal.lv_refr_vdb_flush + 0x00000000400d3168 0x8 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x10 (size before relaxing) + .literal.lv_refr_area_part + 0x00000000400d3170 0x0 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x34 (size before relaxing) + .literal.lv_refr_area + 0x00000000400d3170 0x8 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x38 (size before relaxing) + .literal.lv_refr_areas + 0x00000000400d3178 0x4 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x10 (size before relaxing) + .literal.lv_disp_refr_task + 0x00000000400d317c 0x4 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x38 (size before relaxing) + .literal.lv_style_copy + 0x00000000400d3180 0x0 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + 0x4 (size before relaxing) + .literal.lv_style_init + 0x00000000400d3180 0x7c esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + 0xbc (size before relaxing) + .literal.lv_draw_get_buf + 0x00000000400d31fc 0x8 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + 0x10 (size before relaxing) + .literal.lv_draw_free_buf + 0x00000000400d3204 0x0 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) 0xc (size before relaxing) + .literal.lv_draw_aa_get_opa + 0x00000000400d3204 0x4 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .literal.lv_draw_aa_ver_seg + 0x00000000400d3208 0x0 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + 0x8 (size before relaxing) + .literal.lv_draw_aa_hor_seg + 0x00000000400d3208 0x0 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + 0x8 (size before relaxing) + .literal.sw_mem_blend + 0x00000000400d3208 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0x8 (size before relaxing) + .literal.sw_color_fill + 0x00000000400d3208 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0xc (size before relaxing) + .literal.lv_draw_px + 0x00000000400d3208 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0x8 (size before relaxing) + .literal.lv_draw_fill + 0x00000000400d3208 0x8 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0x20 (size before relaxing) .text.esp_ota_get_app_description - 0x00000000400d2fc4 0x8 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) - 0x00000000400d2fc4 esp_ota_get_app_description + 0x00000000400d3210 0x8 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x00000000400d3210 esp_ota_get_app_description .text.esp_pthread_cfg_key_destructor - 0x00000000400d2fcc 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000400d3218 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) 0xe (size before relaxing) - *fill* 0x00000000400d2fd6 0x2 + *fill* 0x00000000400d3222 0x2 .text.esp_pthread_init - 0x00000000400d2fd8 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000400d3224 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) 0x3e (size before relaxing) - 0x00000000400d2fd8 esp_pthread_init - *fill* 0x00000000400d300e 0x2 + 0x00000000400d3224 esp_pthread_init + *fill* 0x00000000400d325a 0x2 .text.pthread_cancel - 0x00000000400d3010 0x1e esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000400d325c 0x1e esp-idf/pthread/libpthread.a(pthread.c.obj) 0x22 (size before relaxing) - 0x00000000400d3010 pthread_cancel - *fill* 0x00000000400d302e 0x2 + 0x00000000400d325c pthread_cancel + *fill* 0x00000000400d327a 0x2 .text.pthread_mutex_init - 0x00000000400d3030 0x68 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000400d327c 0x68 esp-idf/pthread/libpthread.a(pthread.c.obj) 0x70 (size before relaxing) - 0x00000000400d3030 pthread_mutex_init + 0x00000000400d327c pthread_mutex_init .text.pthread_mutex_init_if_static - 0x00000000400d3098 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000400d32e4 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) 0x38 (size before relaxing) .text.find_key - 0x00000000400d30c8 0x28 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000400d3314 0x28 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) 0x2b (size before relaxing) - *fill* 0x00000000400d30f0 0x0 + *fill* 0x00000000400d333c 0x0 .text.pthread_local_storage_thread_deleted_callback - 0x00000000400d30f0 0x46 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000400d333c 0x46 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) 0x4a (size before relaxing) - *fill* 0x00000000400d3136 0x2 + *fill* 0x00000000400d3382 0x2 .text.pthread_key_create - 0x00000000400d3138 0x48 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000400d3384 0x48 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) 0x4c (size before relaxing) - 0x00000000400d3138 pthread_key_create + 0x00000000400d3384 pthread_key_create .text.pthread_key_delete - 0x00000000400d3180 0x3a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000400d33cc 0x3a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) 0x45 (size before relaxing) - 0x00000000400d3180 pthread_key_delete - *fill* 0x00000000400d31ba 0x2 + 0x00000000400d33cc pthread_key_delete + *fill* 0x00000000400d3406 0x2 .text.pthread_getspecific - 0x00000000400d31bc 0x25 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000400d3408 0x25 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) 0x29 (size before relaxing) - 0x00000000400d31bc pthread_getspecific - *fill* 0x00000000400d31e1 0x3 + 0x00000000400d3408 pthread_getspecific + *fill* 0x00000000400d342d 0x3 .text.pthread_setspecific - 0x00000000400d31e4 0x95 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000400d3430 0x95 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) 0xa5 (size before relaxing) - 0x00000000400d31e4 pthread_setspecific - *fill* 0x00000000400d3279 0x3 + 0x00000000400d3430 pthread_setspecific + *fill* 0x00000000400d34c5 0x3 .text.esp_cache_err_int_init - 0x00000000400d327c 0x56 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x00000000400d34c8 0x56 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) 0x5e (size before relaxing) - 0x00000000400d327c esp_cache_err_int_init - *fill* 0x00000000400d32d2 0x2 + 0x00000000400d34c8 esp_cache_err_int_init + *fill* 0x00000000400d351e 0x2 .text.select_rtc_slow_clk - 0x00000000400d32d4 0x67 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x00000000400d3520 0x67 esp-idf/esp32/libesp32.a(clk.c.obj) 0x7b (size before relaxing) - *fill* 0x00000000400d333b 0x1 + *fill* 0x00000000400d3587 0x1 .text.esp_clk_init - 0x00000000400d333c 0xa9 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x00000000400d3588 0xa9 esp-idf/esp32/libesp32.a(clk.c.obj) 0xd9 (size before relaxing) - 0x00000000400d333c esp_clk_init - *fill* 0x00000000400d33e5 0x3 + 0x00000000400d3588 esp_clk_init + *fill* 0x00000000400d3631 0x3 .text.esp_perip_clk_init - 0x00000000400d33e8 0xde esp-idf/esp32/libesp32.a(clk.c.obj) + 0x00000000400d3634 0xde esp-idf/esp32/libesp32.a(clk.c.obj) 0x10a (size before relaxing) - 0x00000000400d33e8 esp_perip_clk_init - *fill* 0x00000000400d34c6 0x2 + 0x00000000400d3634 esp_perip_clk_init + *fill* 0x00000000400d3712 0x2 .text.do_global_ctors - 0x00000000400d34c8 0x19 esp-idf/esp32/libesp32.a(cpu_start.c.obj) - *fill* 0x00000000400d34e1 0x3 + 0x00000000400d3714 0x19 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x00000000400d372d 0x3 .text.main_task - 0x00000000400d34e4 0x6c esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x00000000400d3730 0x6c esp-idf/esp32/libesp32.a(cpu_start.c.obj) 0x90 (size before relaxing) .text.intr_matrix_clear - 0x00000000400d3550 0x29 esp-idf/esp32/libesp32.a(cpu_start.c.obj) - *fill* 0x00000000400d3579 0x3 + 0x00000000400d379c 0x29 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x00000000400d37c5 0x3 .text.wdt_reset_cpu1_info_enable - 0x00000000400d357c 0x29 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x00000000400d37c8 0x29 esp-idf/esp32/libesp32.a(cpu_start.c.obj) 0x2d (size before relaxing) - *fill* 0x00000000400d35a5 0x3 + *fill* 0x00000000400d37f1 0x3 .text.esp_crosscore_int_init - 0x00000000400d35a8 0x6e esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x00000000400d37f4 0x6e esp-idf/esp32/libesp32.a(crosscore_int.c.obj) 0x76 (size before relaxing) - 0x00000000400d35a8 esp_crosscore_int_init - *fill* 0x00000000400d3616 0x2 + 0x00000000400d37f4 esp_crosscore_int_init + *fill* 0x00000000400d3862 0x2 .text.dport_access_init_core - 0x00000000400d3618 0x62 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x00000000400d3864 0x62 esp-idf/esp32/libesp32.a(dport_access.c.obj) 0x6a (size before relaxing) - *fill* 0x00000000400d367a 0x2 + *fill* 0x00000000400d38c6 0x2 .text.esp_dport_access_int_init - 0x00000000400d367c 0x37 esp-idf/esp32/libesp32.a(dport_access.c.obj) - 0x00000000400d367c esp_dport_access_int_init - *fill* 0x00000000400d36b3 0x1 + 0x00000000400d38c8 0x37 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x00000000400d38c8 esp_dport_access_int_init + *fill* 0x00000000400d38ff 0x1 .text.esp_int_wdt_init - 0x00000000400d36b4 0xee esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x00000000400d3900 0xee esp-idf/esp32/libesp32.a(int_wdt.c.obj) 0xf2 (size before relaxing) - 0x00000000400d36b4 esp_int_wdt_init - *fill* 0x00000000400d37a2 0x2 + 0x00000000400d3900 esp_int_wdt_init + *fill* 0x00000000400d39ee 0x2 .text.esp_int_wdt_cpu_init - 0x00000000400d37a4 0x2f esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x00000000400d39f0 0x2f esp-idf/esp32/libesp32.a(int_wdt.c.obj) 0x37 (size before relaxing) - 0x00000000400d37a4 esp_int_wdt_cpu_init - *fill* 0x00000000400d37d3 0x1 + 0x00000000400d39f0 esp_int_wdt_cpu_init + *fill* 0x00000000400d3a1f 0x1 .text.insert_vector_desc - 0x00000000400d37d4 0x50 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x00000000400d3a20 0x50 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) .text.find_desc_for_int - 0x00000000400d3824 0x25 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) - *fill* 0x00000000400d3849 0x3 + 0x00000000400d3a70 0x25 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x00000000400d3a95 0x3 .text.int_has_handler - 0x00000000400d384c 0x23 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) - *fill* 0x00000000400d386f 0x1 + 0x00000000400d3a98 0x23 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x00000000400d3abb 0x1 .text.get_desc_for_int - 0x00000000400d3870 0x6c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x00000000400d3abc 0x6c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) 0x74 (size before relaxing) .text.find_desc_for_source - 0x00000000400d38dc 0x6c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x00000000400d3b28 0x6c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) .text.is_vect_desc_usable - 0x00000000400d3948 0xe0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x00000000400d3b94 0xe0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) .text.get_available_int - 0x00000000400d3a28 0x158 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x00000000400d3c74 0x158 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) 0x164 (size before relaxing) .text.esp_intr_alloc_intrstatus - 0x00000000400d3b80 0x281 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x00000000400d3dcc 0x281 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) 0x2a5 (size before relaxing) - 0x00000000400d3b80 esp_intr_alloc_intrstatus - *fill* 0x00000000400d3e01 0x3 + 0x00000000400d3dcc esp_intr_alloc_intrstatus + *fill* 0x00000000400d404d 0x3 .text.esp_intr_alloc - 0x00000000400d3e04 0x18 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x00000000400d4050 0x18 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) 0x1c (size before relaxing) - 0x00000000400d3e04 esp_intr_alloc + 0x00000000400d4050 esp_intr_alloc .text.esp_intr_free - 0x00000000400d3e1c 0xee esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x00000000400d4068 0xee esp-idf/esp32/libesp32.a(intr_alloc.c.obj) 0xfe (size before relaxing) - 0x00000000400d3e1c esp_intr_free - *fill* 0x00000000400d3f0a 0x2 + 0x00000000400d4068 esp_intr_free + *fill* 0x00000000400d4156 0x2 .text.esp_intr_free_cb - 0x00000000400d3f0c 0xa esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x00000000400d4158 0xa esp-idf/esp32/libesp32.a(intr_alloc.c.obj) 0xe (size before relaxing) - *fill* 0x00000000400d3f16 0x2 + *fill* 0x00000000400d4162 0x2 .text.esp_chip_info - 0x00000000400d3f18 0x7b esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + 0x00000000400d4164 0x7b esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) 0x7f (size before relaxing) - 0x00000000400d3f18 esp_chip_info - *fill* 0x00000000400d3f93 0x1 + 0x00000000400d4164 esp_chip_info + *fill* 0x00000000400d41df 0x1 .text.find_task_in_twdt_list - 0x00000000400d3f94 0x2f esp-idf/esp32/libesp32.a(task_wdt.c.obj) - *fill* 0x00000000400d3fc3 0x1 + 0x00000000400d41e0 0x2f esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x00000000400d420f 0x1 .text.reset_hw_timer - 0x00000000400d3fc4 0x35 esp-idf/esp32/libesp32.a(task_wdt.c.obj) - *fill* 0x00000000400d3ff9 0x3 + 0x00000000400d4210 0x35 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x00000000400d4245 0x3 .text.task_wdt_isr - 0x00000000400d3ffc 0x12e esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x00000000400d4248 0x12e esp-idf/esp32/libesp32.a(task_wdt.c.obj) 0x156 (size before relaxing) - *fill* 0x00000000400d412a 0x2 + *fill* 0x00000000400d4376 0x2 .text.esp_task_wdt_init - 0x00000000400d412c 0x1c5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x00000000400d4378 0x1c5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) 0x1d5 (size before relaxing) - 0x00000000400d412c esp_task_wdt_init - *fill* 0x00000000400d42f1 0x3 + 0x00000000400d4378 esp_task_wdt_init + *fill* 0x00000000400d453d 0x3 .text.esp_task_wdt_add - 0x00000000400d42f4 0xb6 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x00000000400d4540 0xb6 esp-idf/esp32/libesp32.a(task_wdt.c.obj) 0xd5 (size before relaxing) - 0x00000000400d42f4 esp_task_wdt_add - *fill* 0x00000000400d43aa 0x2 + 0x00000000400d4540 esp_task_wdt_add + *fill* 0x00000000400d45f6 0x2 .text.esp_task_wdt_reset - 0x00000000400d43ac 0x4f esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x00000000400d45f8 0x4f esp-idf/esp32/libesp32.a(task_wdt.c.obj) 0x61 (size before relaxing) - 0x00000000400d43ac esp_task_wdt_reset - *fill* 0x00000000400d43fb 0x1 + 0x00000000400d45f8 esp_task_wdt_reset + *fill* 0x00000000400d4647 0x1 .text.idle_hook_cb - 0x00000000400d43fc 0xa esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x00000000400d4648 0xa esp-idf/esp32/libesp32.a(task_wdt.c.obj) 0xd (size before relaxing) - *fill* 0x00000000400d4406 0x2 + *fill* 0x00000000400d4652 0x2 .text.rtc_brownout_isr_handler - 0x00000000400d4408 0x29 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x00000000400d4654 0x29 esp-idf/esp_common/libesp_common.a(brownout.c.obj) 0x35 (size before relaxing) - *fill* 0x00000000400d4431 0x3 + *fill* 0x00000000400d467d 0x3 .text.esp_brownout_init - 0x00000000400d4434 0x37 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x00000000400d4680 0x37 esp-idf/esp_common/libesp_common.a(brownout.c.obj) 0x43 (size before relaxing) - 0x00000000400d4434 esp_brownout_init - *fill* 0x00000000400d446b 0x1 + 0x00000000400d4680 esp_brownout_init + *fill* 0x00000000400d46b7 0x1 .text.esp_error_check_failed_print - 0x00000000400d446c 0x56 esp-idf/esp_common/libesp_common.a(esp_err.c.obj) + 0x00000000400d46b8 0x56 esp-idf/esp_common/libesp_common.a(esp_err.c.obj) 0x5e (size before relaxing) - *fill* 0x00000000400d44c2 0x2 + *fill* 0x00000000400d470e 0x2 .text._esp_error_check_failed - 0x00000000400d44c4 0x16 esp-idf/esp_common/libesp_common.a(esp_err.c.obj) + 0x00000000400d4710 0x16 esp-idf/esp_common/libesp_common.a(esp_err.c.obj) 0x1e (size before relaxing) - 0x00000000400d44c4 _esp_error_check_failed - *fill* 0x00000000400d44da 0x2 + 0x00000000400d4710 _esp_error_check_failed + *fill* 0x00000000400d4726 0x2 .text.esp_err_to_name - 0x00000000400d44dc 0x2d esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - 0x00000000400d44dc esp_err_to_name - *fill* 0x00000000400d4509 0x3 + 0x00000000400d4728 0x2d esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x00000000400d4728 esp_err_to_name + *fill* 0x00000000400d4755 0x3 .text.esp_vApplicationIdleHook - 0x00000000400d450c 0x37 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) - 0x00000000400d450c esp_vApplicationIdleHook - *fill* 0x00000000400d4543 0x1 + 0x00000000400d4758 0x37 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x00000000400d4758 esp_vApplicationIdleHook + *fill* 0x00000000400d478f 0x1 .text.esp_register_freertos_idle_hook_for_cpu - 0x00000000400d4544 0x59 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x00000000400d4790 0x59 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) 0x5d (size before relaxing) - 0x00000000400d4544 esp_register_freertos_idle_hook_for_cpu - *fill* 0x00000000400d459d 0x3 + 0x00000000400d4790 esp_register_freertos_idle_hook_for_cpu + *fill* 0x00000000400d47e9 0x3 .text.esp_register_freertos_tick_hook_for_cpu - 0x00000000400d45a0 0x5a esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) - 0x00000000400d45a0 esp_register_freertos_tick_hook_for_cpu - *fill* 0x00000000400d45fa 0x2 + 0x00000000400d47ec 0x5a esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x00000000400d47ec esp_register_freertos_tick_hook_for_cpu + *fill* 0x00000000400d4846 0x2 .text.esp_ipc_call_and_wait - 0x00000000400d45fc 0xb5 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x00000000400d4848 0xb5 esp-idf/esp_common/libesp_common.a(ipc.c.obj) 0xd5 (size before relaxing) - *fill* 0x00000000400d46b1 0x3 + *fill* 0x00000000400d48fd 0x3 .text.esp_ipc_init - 0x00000000400d46b4 0x7d esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x00000000400d4900 0x7d esp-idf/esp_common/libesp_common.a(ipc.c.obj) 0x89 (size before relaxing) - *fill* 0x00000000400d4731 0x3 + *fill* 0x00000000400d497d 0x3 .text.esp_ipc_call - 0x00000000400d4734 0x15 esp-idf/esp_common/libesp_common.a(ipc.c.obj) - 0x00000000400d4734 esp_ipc_call - *fill* 0x00000000400d4749 0x3 + 0x00000000400d4980 0x15 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x00000000400d4980 esp_ipc_call + *fill* 0x00000000400d4995 0x3 .text.esp_ipc_call_blocking - 0x00000000400d474c 0x15 esp-idf/esp_common/libesp_common.a(ipc.c.obj) - 0x00000000400d474c esp_ipc_call_blocking - *fill* 0x00000000400d4761 0x3 + 0x00000000400d4998 0x15 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x00000000400d4998 esp_ipc_call_blocking + *fill* 0x00000000400d49ad 0x3 .text.timer_process_alarm - 0x00000000400d4764 0xba esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x00000000400d49b0 0xba esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) 0xcd (size before relaxing) - *fill* 0x00000000400d481e 0x2 + *fill* 0x00000000400d4a6a 0x2 .text.timer_task - 0x00000000400d4820 0x31 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x00000000400d4a6c 0x31 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) 0x34 (size before relaxing) - *fill* 0x00000000400d4851 0x3 + *fill* 0x00000000400d4a9d 0x3 .text.esp_timer_create - 0x00000000400d4854 0x49 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x00000000400d4aa0 0x49 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) 0x4d (size before relaxing) - 0x00000000400d4854 esp_timer_create - *fill* 0x00000000400d489d 0x3 + 0x00000000400d4aa0 esp_timer_create + *fill* 0x00000000400d4ae9 0x3 .text.esp_timer_init - 0x00000000400d48a0 0x7a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x00000000400d4aec 0x7a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) 0x86 (size before relaxing) - 0x00000000400d48a0 esp_timer_init - *fill* 0x00000000400d491a 0x2 + 0x00000000400d4aec esp_timer_init + *fill* 0x00000000400d4b66 0x2 .text.esp_timer_delete - 0x00000000400d491c 0x41 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x00000000400d4b68 0x41 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) 0x51 (size before relaxing) - 0x00000000400d491c esp_timer_delete - *fill* 0x00000000400d495d 0x3 + 0x00000000400d4b68 esp_timer_delete + *fill* 0x00000000400d4ba9 0x3 .text.esp_timer_impl_lock - 0x00000000400d4960 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x00000000400d4bac 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) 0xe (size before relaxing) - 0x00000000400d4960 esp_timer_private_lock - 0x00000000400d4960 esp_timer_impl_lock - *fill* 0x00000000400d496b 0x1 + 0x00000000400d4bac esp_timer_private_lock + 0x00000000400d4bac esp_timer_impl_lock + *fill* 0x00000000400d4bb7 0x1 .text.esp_timer_impl_unlock - 0x00000000400d496c 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x00000000400d4bb8 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) 0xe (size before relaxing) - 0x00000000400d496c esp_timer_impl_unlock - 0x00000000400d496c esp_timer_private_unlock - *fill* 0x00000000400d4977 0x1 + 0x00000000400d4bb8 esp_timer_impl_unlock + 0x00000000400d4bb8 esp_timer_private_unlock + *fill* 0x00000000400d4bc3 0x1 .text.esp_timer_impl_advance - 0x00000000400d4978 0x4a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x00000000400d4bc4 0x4a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) 0x52 (size before relaxing) - 0x00000000400d4978 esp_timer_impl_advance - 0x00000000400d4978 esp_timer_private_advance - *fill* 0x00000000400d49c2 0x2 + 0x00000000400d4bc4 esp_timer_impl_advance + 0x00000000400d4bc4 esp_timer_private_advance + *fill* 0x00000000400d4c0e 0x2 .text.esp_timer_impl_init - 0x00000000400d49c4 0xf2 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x00000000400d4c10 0xf2 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) 0x10a (size before relaxing) - 0x00000000400d49c4 esp_timer_impl_init - *fill* 0x00000000400d4ab6 0x2 + 0x00000000400d4c10 esp_timer_impl_init + *fill* 0x00000000400d4d02 0x2 .text.get_vfs_for_fd - 0x00000000400d4ab8 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) - *fill* 0x00000000400d4af6 0x2 + 0x00000000400d4d04 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000400d4d42 0x2 .text.call_end_selects - 0x00000000400d4af8 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) - *fill* 0x00000000400d4b47 0x1 + 0x00000000400d4d44 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000400d4d93 0x1 .text.set_global_fd_sets - 0x00000000400d4b48 0x114 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d4d94 0x114 esp-idf/vfs/libvfs.a(vfs.c.obj) .text.esp_vfs_register_common - 0x00000000400d4c5c 0xf6 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d4ea8 0xf6 esp-idf/vfs/libvfs.a(vfs.c.obj) 0xfa (size before relaxing) - *fill* 0x00000000400d4d52 0x2 + *fill* 0x00000000400d4f9e 0x2 .text.get_vfs_for_path - 0x00000000400d4d54 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d4fa0 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) .text.translate_path - 0x00000000400d4dc4 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) - *fill* 0x00000000400d4e02 0x2 + 0x00000000400d5010 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000400d504e 0x2 .text.esp_vfs_register - 0x00000000400d4e04 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5050 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) 0x20 (size before relaxing) - 0x00000000400d4e04 esp_vfs_register + 0x00000000400d5050 esp_vfs_register .text.esp_vfs_register_fd_range - 0x00000000400d4e20 0x10a esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d506c 0x10a esp-idf/vfs/libvfs.a(vfs.c.obj) 0x112 (size before relaxing) - 0x00000000400d4e20 esp_vfs_register_fd_range - *fill* 0x00000000400d4f2a 0x2 + 0x00000000400d506c esp_vfs_register_fd_range + *fill* 0x00000000400d5176 0x2 .text.esp_vfs_unregister - 0x00000000400d4f2c 0xa8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5178 0xa8 esp-idf/vfs/libvfs.a(vfs.c.obj) 0xb0 (size before relaxing) - 0x00000000400d4f2c esp_vfs_unregister + 0x00000000400d5178 esp_vfs_unregister .text.esp_vfs_open - 0x00000000400d4fd4 0xd4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5220 0xd4 esp-idf/vfs/libvfs.a(vfs.c.obj) 0xd8 (size before relaxing) - 0x00000000400d4fd4 esp_vfs_open - 0x00000000400d4fd4 _open_r + 0x00000000400d5220 esp_vfs_open + 0x00000000400d5220 _open_r .text.esp_vfs_write - 0x00000000400d50a8 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d52f4 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x78 (size before relaxing) - 0x00000000400d50a8 esp_vfs_write - 0x00000000400d50a8 _write_r + 0x00000000400d52f4 esp_vfs_write + 0x00000000400d52f4 _write_r .text.esp_vfs_lseek - 0x00000000400d511c 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5368 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x78 (size before relaxing) - 0x00000000400d511c _lseek_r - 0x00000000400d511c esp_vfs_lseek + 0x00000000400d5368 _lseek_r + 0x00000000400d5368 esp_vfs_lseek .text.esp_vfs_read - 0x00000000400d5190 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d53dc 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x78 (size before relaxing) - 0x00000000400d5190 esp_vfs_read - 0x00000000400d5190 _read_r + 0x00000000400d53dc esp_vfs_read + 0x00000000400d53dc _read_r .text.esp_vfs_close - 0x00000000400d5204 0xa0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5450 0xa0 esp-idf/vfs/libvfs.a(vfs.c.obj) 0xab (size before relaxing) - 0x00000000400d5204 _close_r - 0x00000000400d5204 esp_vfs_close - *fill* 0x00000000400d52a4 0x0 + 0x00000000400d5450 _close_r + 0x00000000400d5450 esp_vfs_close + *fill* 0x00000000400d54f0 0x0 .text.esp_vfs_fstat - 0x00000000400d52a4 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d54f0 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x74 (size before relaxing) - 0x00000000400d52a4 esp_vfs_fstat - 0x00000000400d52a4 _fstat_r + 0x00000000400d54f0 esp_vfs_fstat + 0x00000000400d54f0 _fstat_r .text.esp_vfs_stat - 0x00000000400d5314 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5560 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x4b (size before relaxing) - 0x00000000400d5314 esp_vfs_stat - 0x00000000400d5314 _stat_r - *fill* 0x00000000400d535b 0x1 + 0x00000000400d5560 esp_vfs_stat + 0x00000000400d5560 _stat_r + *fill* 0x00000000400d55a7 0x1 .text.esp_vfs_link - 0x00000000400d535c 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d55a8 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x70 (size before relaxing) - 0x00000000400d535c _link_r - 0x00000000400d535c esp_vfs_link + 0x00000000400d55a8 _link_r + 0x00000000400d55a8 esp_vfs_link .text.esp_vfs_unlink - 0x00000000400d53c4 0x44 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5610 0x44 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x48 (size before relaxing) - 0x00000000400d53c4 _unlink_r - 0x00000000400d53c4 esp_vfs_unlink + 0x00000000400d5610 _unlink_r + 0x00000000400d5610 esp_vfs_unlink .text.esp_vfs_rename - 0x00000000400d5408 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5654 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x70 (size before relaxing) - 0x00000000400d5408 _rename_r - 0x00000000400d5408 esp_vfs_rename + 0x00000000400d5654 _rename_r + 0x00000000400d5654 esp_vfs_rename .text._fcntl_r - 0x00000000400d5470 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d56bc 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x7a (size before relaxing) - 0x00000000400d5470 _fcntl_r - *fill* 0x00000000400d54e6 0x2 - .text.fsync 0x00000000400d54e8 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d56bc _fcntl_r + *fill* 0x00000000400d5732 0x2 + .text.fsync 0x00000000400d5734 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x77 (size before relaxing) - 0x00000000400d54e8 fsync - *fill* 0x00000000400d555b 0x1 + 0x00000000400d5734 fsync + *fill* 0x00000000400d57a7 0x1 .text.esp_vfs_select - 0x00000000400d555c 0x42a esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d57a8 0x42a esp-idf/vfs/libvfs.a(vfs.c.obj) 0x45a (size before relaxing) - 0x00000000400d555c esp_vfs_select - *fill* 0x00000000400d5986 0x2 + 0x00000000400d57a8 esp_vfs_select + *fill* 0x00000000400d5bd2 0x2 .text.esp_vfs_select_triggered - 0x00000000400d5988 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5bd4 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x4d (size before relaxing) - 0x00000000400d5988 esp_vfs_select_triggered - *fill* 0x00000000400d59d1 0x3 + 0x00000000400d5bd4 esp_vfs_select_triggered + *fill* 0x00000000400d5c1d 0x3 .text.esp_vfs_select_triggered_isr - 0x00000000400d59d4 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400d5c20 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) 0x49 (size before relaxing) - 0x00000000400d59d4 esp_vfs_select_triggered_isr - *fill* 0x00000000400d5a19 0x3 + 0x00000000400d5c20 esp_vfs_select_triggered_isr + *fill* 0x00000000400d5c65 0x3 .text.uart_tx_char - 0x00000000400d5a1c 0x29 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x00000000400d5a45 0x3 + 0x00000000400d5c68 0x29 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d5c91 0x3 .text.uart_rx_char - 0x00000000400d5a48 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x00000000400d5a6e 0x2 + 0x00000000400d5c94 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d5cba 0x2 .text.uart_read_char - 0x00000000400d5a70 0x24 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d5cbc 0x24 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) .text.unregister_select - 0x00000000400d5a94 0x68 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d5ce0 0x68 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0x6c (size before relaxing) .text.uart_end_select - 0x00000000400d5afc 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d5d48 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0x48 (size before relaxing) .text.register_select - 0x00000000400d5b30 0x49 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d5d7c 0x49 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0x4d (size before relaxing) - *fill* 0x00000000400d5b79 0x3 + *fill* 0x00000000400d5dc5 0x3 .text.uart_start_select - 0x00000000400d5b7c 0x179 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d5dc8 0x179 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0x199 (size before relaxing) - *fill* 0x00000000400d5cf5 0x3 + *fill* 0x00000000400d5f41 0x3 .text.select_notif_callback_isr - 0x00000000400d5cf8 0xde esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d5f44 0xde esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0xe2 (size before relaxing) - *fill* 0x00000000400d5dd6 0x2 + *fill* 0x00000000400d6022 0x2 .text.uart_tcflush - 0x00000000400d5dd8 0x41 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x00000000400d5e19 0x3 + 0x00000000400d6024 0x41 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6065 0x3 .text.uart_tcdrain - 0x00000000400d5e1c 0x35 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x00000000400d5e51 0x3 + 0x00000000400d6068 0x35 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d609d 0x3 .text.uart_tcgetattr - 0x00000000400d5e54 0x384 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d60a0 0x384 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) .text.uart_tcsetattr - 0x00000000400d61d8 0x27d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x00000000400d6455 0x3 + 0x00000000400d6424 0x27d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d66a1 0x3 .text.uart_access - 0x00000000400d6458 0x5a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x00000000400d64b2 0x2 + 0x00000000400d66a4 0x5a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d66fe 0x2 .text.uart_open - 0x00000000400d64b4 0x64 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d6700 0x64 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) .text.uart_fcntl - 0x00000000400d6518 0x65 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x00000000400d657d 0x3 + 0x00000000400d6764 0x65 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d67c9 0x3 .text.uart_fstat - 0x00000000400d6580 0x21 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x00000000400d65a1 0x3 + 0x00000000400d67cc 0x21 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d67ed 0x3 .text.uart_close - 0x00000000400d65a4 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d67f0 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) .text.uart_return_char - 0x00000000400d65c0 0x28 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d680c 0x28 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) .text.uart_fsync - 0x00000000400d65e8 0x82 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d6834 0x82 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0x86 (size before relaxing) - *fill* 0x00000000400d666a 0x2 + *fill* 0x00000000400d68b6 0x2 .text.uart_read - 0x00000000400d666c 0xb2 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d68b8 0xb2 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0xbe (size before relaxing) - *fill* 0x00000000400d671e 0x2 + *fill* 0x00000000400d696a 0x2 .text.uart_write - 0x00000000400d6720 0x8c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d696c 0x8c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0x90 (size before relaxing) .text.uart_rx_char_via_driver - 0x00000000400d67ac 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x00000000400d67de 0x2 + 0x00000000400d69f8 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6a2a 0x2 .text.uart_tx_char_via_driver - 0x00000000400d67e0 0x14 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d6a2c 0x14 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) .text.esp_vfs_dev_uart_register - 0x00000000400d67f4 0x7e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d6a40 0x7e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0x82 (size before relaxing) - 0x00000000400d67f4 esp_vfs_dev_uart_register - *fill* 0x00000000400d6872 0x2 + 0x00000000400d6a40 esp_vfs_dev_uart_register + *fill* 0x00000000400d6abe 0x2 .text.esp_vfs_dev_uart_set_rx_line_endings - 0x00000000400d6874 0x1b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - 0x00000000400d6874 esp_vfs_dev_uart_set_rx_line_endings - *fill* 0x00000000400d688f 0x1 + 0x00000000400d6ac0 0x1b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d6ac0 esp_vfs_dev_uart_set_rx_line_endings + *fill* 0x00000000400d6adb 0x1 .text.esp_vfs_dev_uart_set_tx_line_endings - 0x00000000400d6890 0x1b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - 0x00000000400d6890 esp_vfs_dev_uart_set_tx_line_endings - *fill* 0x00000000400d68ab 0x1 + 0x00000000400d6adc 0x1b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d6adc esp_vfs_dev_uart_set_tx_line_endings + *fill* 0x00000000400d6af7 0x1 .text.esp_vfs_dev_uart_use_driver - 0x00000000400d68ac 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d6af8 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0x40 (size before relaxing) - 0x00000000400d68ac esp_vfs_dev_uart_use_driver + 0x00000000400d6af8 esp_vfs_dev_uart_use_driver .text.raise_r_stub - 0x00000000400d68e0 0xf esp-idf/newlib/libnewlib.a(syscall_table.c.obj) - *fill* 0x00000000400d68ef 0x1 + 0x00000000400d6b2c 0xf esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + *fill* 0x00000000400d6b3b 0x1 .text.esp_setup_syscall_table - 0x00000000400d68f0 0x2b esp-idf/newlib/libnewlib.a(syscall_table.c.obj) - 0x00000000400d68f0 esp_setup_syscall_table - *fill* 0x00000000400d691b 0x1 + 0x00000000400d6b3c 0x2b esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + 0x00000000400d6b3c esp_setup_syscall_table + *fill* 0x00000000400d6b67 0x1 .text._raise_r - 0x00000000400d691c 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x00000000400d6b68 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) 0x9 (size before relaxing) - 0x00000000400d691c _raise_r - *fill* 0x00000000400d6922 0x2 - .text._sbrk_r 0x00000000400d6924 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x00000000400d6b68 _raise_r + *fill* 0x00000000400d6b6e 0x2 + .text._sbrk_r 0x00000000400d6b70 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) 0x9 (size before relaxing) - 0x00000000400d6924 _sbrk_r - *fill* 0x00000000400d692a 0x2 - .text.fcntl 0x00000000400d692c 0x32 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x00000000400d6b70 _sbrk_r + *fill* 0x00000000400d6b76 0x2 + .text.fcntl 0x00000000400d6b78 0x32 esp-idf/newlib/libnewlib.a(syscalls.c.obj) 0x36 (size before relaxing) - 0x00000000400d692c fcntl - *fill* 0x00000000400d695e 0x2 + 0x00000000400d6b78 fcntl + *fill* 0x00000000400d6baa 0x2 .text.get_boot_time - 0x00000000400d6960 0x23 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000400d6bac 0x23 esp-idf/newlib/libnewlib.a(time.c.obj) 0x27 (size before relaxing) - *fill* 0x00000000400d6983 0x1 + *fill* 0x00000000400d6bcf 0x1 .text.set_boot_time - 0x00000000400d6984 0x24 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000400d6bd0 0x24 esp-idf/newlib/libnewlib.a(time.c.obj) 0x28 (size before relaxing) .text.get_time_since_boot - 0x00000000400d69a8 0x1f esp-idf/newlib/libnewlib.a(time.c.obj) - *fill* 0x00000000400d69c7 0x1 + 0x00000000400d6bf4 0x1f esp-idf/newlib/libnewlib.a(time.c.obj) + *fill* 0x00000000400d6c13 0x1 .text.adjust_boot_time - 0x00000000400d69c8 0x146 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000400d6c14 0x146 esp-idf/newlib/libnewlib.a(time.c.obj) 0x14a (size before relaxing) - *fill* 0x00000000400d6b0e 0x2 + *fill* 0x00000000400d6d5a 0x2 .text.get_adjusted_boot_time - 0x00000000400d6b10 0x1e esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000400d6d5c 0x1e esp-idf/newlib/libnewlib.a(time.c.obj) 0x26 (size before relaxing) - *fill* 0x00000000400d6b2e 0x2 - .text.adjtime_corr_stop - 0x00000000400d6b30 0x2d esp-idf/newlib/libnewlib.a(time.c.obj) - 0x38 (size before relaxing) - *fill* 0x00000000400d6b5d 0x3 - .text.esp_clk_slowclk_cal_set - 0x00000000400d6b60 0x6a esp-idf/newlib/libnewlib.a(time.c.obj) - 0x6e (size before relaxing) - 0x00000000400d6b60 esp_clk_slowclk_cal_set - *fill* 0x00000000400d6bca 0x2 - .text.esp_clk_slowclk_cal_get - 0x00000000400d6bcc 0xd esp-idf/newlib/libnewlib.a(time.c.obj) - 0x00000000400d6bcc esp_clk_slowclk_cal_get - *fill* 0x00000000400d6bd9 0x3 - .text.get_rtc_time_us - 0x00000000400d6bdc 0x43 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x47 (size before relaxing) - *fill* 0x00000000400d6c1f 0x1 - .text.esp_set_time_from_rtc - 0x00000000400d6c20 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x2f (size before relaxing) - 0x00000000400d6c20 esp_set_time_from_rtc - *fill* 0x00000000400d6c47 0x1 - .text.usleep 0x00000000400d6c48 0x2c esp-idf/newlib/libnewlib.a(time.c.obj) - 0x00000000400d6c48 usleep - .text.sleep 0x00000000400d6c74 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x13 (size before relaxing) - 0x00000000400d6c74 sleep - *fill* 0x00000000400d6c84 0x0 - .text.esp_sync_counters_rtc_and_frc - 0x00000000400d6c84 0x58 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x60 (size before relaxing) - 0x00000000400d6c84 esp_sync_counters_rtc_and_frc - .text.__cxx_fatal_exception - 0x00000000400d6cdc 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - 0x9 (size before relaxing) - 0x00000000400d6cdc __cxa_end_catch - 0x00000000400d6cdc __cxa_allocate_exception - 0x00000000400d6cdc __cxa_get_exception_ptr - 0x00000000400d6cdc __cxa_call_terminate - 0x00000000400d6cdc __cxa_free_dependent_exception - 0x00000000400d6cdc __cxx_fatal_exception - 0x00000000400d6cdc __cxa_begin_catch - 0x00000000400d6cdc __cxa_rethrow - 0x00000000400d6cdc __cxa_throw - 0x00000000400d6cdc __cxa_allocate_dependent_exception - 0x00000000400d6cdc __cxa_free_exception - *fill* 0x00000000400d6ce2 0x2 - .text.initialize_nvs - 0x00000000400d6ce4 0x53 esp-idf/main/libmain.a(main.c.obj) - 0x5f (size before relaxing) - *fill* 0x00000000400d6d37 0x1 - .text.initialize_filesystem - 0x00000000400d6d38 0x42 esp-idf/main/libmain.a(main.c.obj) - 0x4e (size before relaxing) *fill* 0x00000000400d6d7a 0x2 + .text.adjtime_corr_stop + 0x00000000400d6d7c 0x2d esp-idf/newlib/libnewlib.a(time.c.obj) + 0x38 (size before relaxing) + *fill* 0x00000000400d6da9 0x3 + .text.esp_clk_slowclk_cal_set + 0x00000000400d6dac 0x6a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x6e (size before relaxing) + 0x00000000400d6dac esp_clk_slowclk_cal_set + *fill* 0x00000000400d6e16 0x2 + .text.esp_clk_slowclk_cal_get + 0x00000000400d6e18 0xd esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000400d6e18 esp_clk_slowclk_cal_get + *fill* 0x00000000400d6e25 0x3 + .text.get_rtc_time_us + 0x00000000400d6e28 0x43 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x47 (size before relaxing) + *fill* 0x00000000400d6e6b 0x1 + .text.esp_set_time_from_rtc + 0x00000000400d6e6c 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2f (size before relaxing) + 0x00000000400d6e6c esp_set_time_from_rtc + *fill* 0x00000000400d6e93 0x1 + .text.usleep 0x00000000400d6e94 0x2c esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000400d6e94 usleep + .text.sleep 0x00000000400d6ec0 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x13 (size before relaxing) + 0x00000000400d6ec0 sleep + *fill* 0x00000000400d6ed0 0x0 + .text.esp_sync_counters_rtc_and_frc + 0x00000000400d6ed0 0x58 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x60 (size before relaxing) + 0x00000000400d6ed0 esp_sync_counters_rtc_and_frc + .text.__cxx_fatal_exception + 0x00000000400d6f28 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x00000000400d6f28 __cxa_end_catch + 0x00000000400d6f28 __cxa_allocate_exception + 0x00000000400d6f28 __cxa_get_exception_ptr + 0x00000000400d6f28 __cxa_call_terminate + 0x00000000400d6f28 __cxa_free_dependent_exception + 0x00000000400d6f28 __cxx_fatal_exception + 0x00000000400d6f28 __cxa_begin_catch + 0x00000000400d6f28 __cxa_rethrow + 0x00000000400d6f28 __cxa_throw + 0x00000000400d6f28 __cxa_allocate_dependent_exception + 0x00000000400d6f28 __cxa_free_exception + *fill* 0x00000000400d6f2e 0x2 + .text.initialize_nvs + 0x00000000400d6f30 0x53 esp-idf/main/libmain.a(main.c.obj) + 0x5f (size before relaxing) + *fill* 0x00000000400d6f83 0x1 + .text.initialize_filesystem + 0x00000000400d6f84 0x42 esp-idf/main/libmain.a(main.c.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400d6fc6 0x2 .text.initialize_console - 0x00000000400d6d7c 0xda esp-idf/main/libmain.a(main.c.obj) + 0x00000000400d6fc8 0xda esp-idf/main/libmain.a(main.c.obj) 0x112 (size before relaxing) - *fill* 0x00000000400d6e56 0x2 + *fill* 0x00000000400d70a2 0x2 .text.app_main - 0x00000000400d6e58 0xfd esp-idf/main/libmain.a(main.c.obj) - 0x147 (size before relaxing) - 0x00000000400d6e58 app_main - *fill* 0x00000000400d6f55 0x3 + 0x00000000400d70a4 0x115 esp-idf/main/libmain.a(main.c.obj) + 0x163 (size before relaxing) + 0x00000000400d70a4 app_main + *fill* 0x00000000400d71b9 0x3 .text.init_memory - 0x00000000400d6f58 0xcc esp-idf/files/libfiles.a(file.c.obj) + 0x00000000400d71bc 0xcc esp-idf/files/libfiles.a(file.c.obj) 0xfc (size before relaxing) - 0x00000000400d6f58 init_memory + 0x00000000400d71bc init_memory .text.create_file - 0x00000000400d7024 0x62 esp-idf/files/libfiles.a(file.c.obj) + 0x00000000400d7288 0x62 esp-idf/files/libfiles.a(file.c.obj) 0x76 (size before relaxing) - 0x00000000400d7024 create_file - *fill* 0x00000000400d7086 0x2 + 0x00000000400d7288 create_file + *fill* 0x00000000400d72ea 0x2 .text.read_file - 0x00000000400d7088 0x7a esp-idf/files/libfiles.a(file.c.obj) + 0x00000000400d72ec 0x7a esp-idf/files/libfiles.a(file.c.obj) 0x8e (size before relaxing) - 0x00000000400d7088 read_file - *fill* 0x00000000400d7102 0x2 + 0x00000000400d72ec read_file + *fill* 0x00000000400d7366 0x2 .text.task_create_ca - 0x00000000400d7104 0x62 esp-idf/ca/libca.a(ca.c.obj) + 0x00000000400d7368 0x62 esp-idf/ca/libca.a(ca.c.obj) 0x6e (size before relaxing) - 0x00000000400d7104 task_create_ca - *fill* 0x00000000400d7166 0x2 + 0x00000000400d7368 task_create_ca + *fill* 0x00000000400d73ca 0x2 .text.write_certificate - 0x00000000400d7168 0x74 esp-idf/ca/libca.a(ca.c.obj) + 0x00000000400d73cc 0x74 esp-idf/ca/libca.a(ca.c.obj) 0x7c (size before relaxing) - 0x00000000400d7168 write_certificate - .text.connect 0x00000000400d71dc 0xd66 esp-idf/ca/libca.a(ca.c.obj) + 0x00000000400d73cc write_certificate + .text.connect 0x00000000400d7440 0xd66 esp-idf/ca/libca.a(ca.c.obj) 0xe2a (size before relaxing) - *fill* 0x00000000400d7f42 0x2 + *fill* 0x00000000400d81a6 0x2 .text.task_run - 0x00000000400d7f44 0x13 esp-idf/ca/libca.a(ca.c.obj) + 0x00000000400d81a8 0x13 esp-idf/ca/libca.a(ca.c.obj) 0x17 (size before relaxing) - *fill* 0x00000000400d7f57 0x1 + *fill* 0x00000000400d81bb 0x1 .text.register_ca - 0x00000000400d7f58 0x2a esp-idf/ca/libca.a(ca.c.obj) + 0x00000000400d81bc 0x2a esp-idf/ca/libca.a(ca.c.obj) 0x2e (size before relaxing) - 0x00000000400d7f58 register_ca - *fill* 0x00000000400d7f82 0x2 + 0x00000000400d81bc register_ca + *fill* 0x00000000400d81e6 0x2 .text.dev_random_entropy_poll - 0x00000000400d7f84 0x6a esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d81e8 0x6a esp-idf/ca/libca.a(gen_key.c.obj) 0x6e (size before relaxing) - 0x00000000400d7f84 dev_random_entropy_poll - *fill* 0x00000000400d7fee 0x2 + 0x00000000400d81e8 dev_random_entropy_poll + *fill* 0x00000000400d8252 0x2 .text.write_private_key - 0x00000000400d7ff0 0x8c esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d8254 0x8c esp-idf/ca/libca.a(gen_key.c.obj) 0x94 (size before relaxing) .text.task_create - 0x00000000400d807c 0x62 esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d82e0 0x62 esp-idf/ca/libca.a(gen_key.c.obj) 0x6e (size before relaxing) - *fill* 0x00000000400d80de 0x2 - .text.connect 0x00000000400d80e0 0x50a esp-idf/ca/libca.a(gen_key.c.obj) + *fill* 0x00000000400d8342 0x2 + .text.connect 0x00000000400d8344 0x50a esp-idf/ca/libca.a(gen_key.c.obj) 0x586 (size before relaxing) - 0x00000000400d80e0 connect - *fill* 0x00000000400d85ea 0x2 + 0x00000000400d8344 connect + *fill* 0x00000000400d884e 0x2 .text.task_run - 0x00000000400d85ec 0x13 esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d8850 0x13 esp-idf/ca/libca.a(gen_key.c.obj) 0x17 (size before relaxing) - *fill* 0x00000000400d85ff 0x1 + *fill* 0x00000000400d8863 0x1 .text.register_gen_key - 0x00000000400d8600 0x2a esp-idf/ca/libca.a(gen_key.c.obj) + 0x00000000400d8864 0x2a esp-idf/ca/libca.a(gen_key.c.obj) 0x2e (size before relaxing) - 0x00000000400d8600 register_gen_key - *fill* 0x00000000400d862a 0x2 + 0x00000000400d8864 register_gen_key + *fill* 0x00000000400d888e 0x2 .text.type_to_str - 0x00000000400d862c 0x2c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d8890 0x2c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .text.str_to_type - 0x00000000400d8658 0x35 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - *fill* 0x00000000400d868d 0x3 - .text.list 0x00000000400d8690 0x59 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d88bc 0x35 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x00000000400d88f1 0x3 + .text.list 0x00000000400d88f4 0x59 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x6d (size before relaxing) - *fill* 0x00000000400d86e9 0x3 + *fill* 0x00000000400d894d 0x3 .text.list_entries - 0x00000000400d86ec 0x5c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d8950 0x5c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x60 (size before relaxing) .text.set_namespace - 0x00000000400d8748 0x58 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d89ac 0x58 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x60 (size before relaxing) .text.erase_all - 0x00000000400d87a0 0x51 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d8a04 0x51 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x61 (size before relaxing) - *fill* 0x00000000400d87f1 0x3 + *fill* 0x00000000400d8a55 0x3 .text.erase_namespace - 0x00000000400d87f4 0x5c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d8a58 0x5c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x6c (size before relaxing) - .text.erase 0x00000000400d8850 0x43 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .text.erase 0x00000000400d8ab4 0x43 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x56 (size before relaxing) - *fill* 0x00000000400d8893 0x1 + *fill* 0x00000000400d8af7 0x1 .text.erase_value - 0x00000000400d8894 0x5c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d8af8 0x5c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x6c (size before relaxing) .text.print_blob - 0x00000000400d88f0 0x26 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - *fill* 0x00000000400d8916 0x2 + 0x00000000400d8b54 0x26 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x00000000400d8b7a 0x2 .text.get_value_from_nvs - 0x00000000400d8918 0x1de esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d8b7c 0x1de esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x20e (size before relaxing) - *fill* 0x00000000400d8af6 0x2 + *fill* 0x00000000400d8d5a 0x2 .text.get_value - 0x00000000400d8af8 0x60 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d8d5c 0x60 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x70 (size before relaxing) .text.store_blob - 0x00000000400d8b58 0xe0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d8dbc 0xe0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0xf4 (size before relaxing) .text.set_value_in_nvs - 0x00000000400d8c38 0x26d esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d8e9c 0x26d esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x298 (size before relaxing) - *fill* 0x00000000400d8ea5 0x3 + *fill* 0x00000000400d9109 0x3 .text.set_value - 0x00000000400d8ea8 0x68 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d910c 0x68 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x78 (size before relaxing) .text.register_nvs - 0x00000000400d8f10 0x1cb esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x00000000400d9174 0x1cb esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x227 (size before relaxing) - 0x00000000400d8f10 register_nvs - *fill* 0x00000000400d90db 0x1 + 0x00000000400d9174 register_nvs + *fill* 0x00000000400d933f 0x1 .text.register_free - 0x00000000400d90dc 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d9340 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x36 (size before relaxing) - *fill* 0x00000000400d910e 0x2 + *fill* 0x00000000400d9372 0x2 .text.register_heap - 0x00000000400d9110 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d9374 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x36 (size before relaxing) - *fill* 0x00000000400d9142 0x2 + *fill* 0x00000000400d93a6 0x2 .text.register_version - 0x00000000400d9144 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d93a8 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x36 (size before relaxing) - *fill* 0x00000000400d9176 0x2 + *fill* 0x00000000400d93da 0x2 .text.register_restart - 0x00000000400d9178 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d93dc 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x36 (size before relaxing) - *fill* 0x00000000400d91aa 0x2 + *fill* 0x00000000400d940e 0x2 .text.register_tasks - 0x00000000400d91ac 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d9410 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x36 (size before relaxing) - *fill* 0x00000000400d91de 0x2 + *fill* 0x00000000400d9442 0x2 .text.free_mem - 0x00000000400d91e0 0x18 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d9444 0x18 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .text.heap_size - 0x00000000400d91f8 0x24 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d945c 0x24 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x2c (size before relaxing) .text.get_version - 0x00000000400d921c 0xa8 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d9480 0xa8 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0xac (size before relaxing) - .text.restart 0x00000000400d92c4 0x1a esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .text.restart 0x00000000400d9528 0x1a esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x22 (size before relaxing) - *fill* 0x00000000400d92de 0x2 + *fill* 0x00000000400d9542 0x2 .text.register_deep_sleep - 0x00000000400d92e0 0x63 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d9544 0x63 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x77 (size before relaxing) - *fill* 0x00000000400d9343 0x1 + *fill* 0x00000000400d95a7 0x1 .text.deep_sleep - 0x00000000400d9344 0x13b esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d95a8 0x13b esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x16b (size before relaxing) - *fill* 0x00000000400d947f 0x1 + *fill* 0x00000000400d96e3 0x1 .text.register_light_sleep - 0x00000000400d9480 0x6e esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d96e4 0x6e esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x82 (size before relaxing) - *fill* 0x00000000400d94ee 0x2 + *fill* 0x00000000400d9752 0x2 .text.light_sleep - 0x00000000400d94f0 0x1df esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d9754 0x1df esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x22f (size before relaxing) - *fill* 0x00000000400d96cf 0x1 + *fill* 0x00000000400d9933 0x1 .text.tasks_info - 0x00000000400d96d0 0x6d esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d9934 0x6d esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x85 (size before relaxing) - *fill* 0x00000000400d973d 0x3 + *fill* 0x00000000400d99a1 0x3 .text.register_system - 0x00000000400d9740 0x1b esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x00000000400d99a4 0x1b esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x2f (size before relaxing) - 0x00000000400d9740 register_system - *fill* 0x00000000400d975b 0x1 + 0x00000000400d99a4 register_system + *fill* 0x00000000400d99bf 0x1 + .text.guiTask 0x00000000400d99c0 0xab esp-idf/display/libdisplay.a(display.c.obj) + 0xd7 (size before relaxing) + 0x00000000400d99c0 guiTask + *fill* 0x00000000400d9a6b 0x1 .text.initialise_wifi - 0x00000000400d975c 0x157 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x00000000400d9a6c 0x157 esp-idf/wifi/libwifi.a(wifi.c.obj) 0x17b (size before relaxing) - *fill* 0x00000000400d98b3 0x1 + *fill* 0x00000000400d9bc3 0x1 .text.wifi_join - 0x00000000400d98b4 0x8d esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x00000000400d9bc4 0x8d esp-idf/wifi/libwifi.a(wifi.c.obj) 0xa5 (size before relaxing) - *fill* 0x00000000400d9941 0x3 - .text.connect 0x00000000400d9944 0xa2 esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x00000000400d9c51 0x3 + .text.connect 0x00000000400d9c54 0xa2 esp-idf/wifi/libwifi.a(wifi.c.obj) 0xb6 (size before relaxing) - *fill* 0x00000000400d99e6 0x2 + *fill* 0x00000000400d9cf6 0x2 .text.event_handler - 0x00000000400d99e8 0x3a esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x00000000400d9cf8 0x3a esp-idf/wifi/libwifi.a(wifi.c.obj) 0x3e (size before relaxing) - *fill* 0x00000000400d9a22 0x2 + *fill* 0x00000000400d9d32 0x2 .text.register_wifi - 0x00000000400d9a24 0x63 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x00000000400d9d34 0x63 esp-idf/wifi/libwifi.a(wifi.c.obj) 0x73 (size before relaxing) - 0x00000000400d9a24 register_wifi - *fill* 0x00000000400d9a87 0x1 + 0x00000000400d9d34 register_wifi + *fill* 0x00000000400d9d97 0x1 .text.server_off - 0x00000000400d9a88 0xd esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d9d98 0xd esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x10 (size before relaxing) - *fill* 0x00000000400d9a95 0x3 - .text.connect 0x00000000400d9a98 0x4f esp-idf/https_server/libhttps_server.a(https_server.c.obj) + *fill* 0x00000000400d9da5 0x3 + .text.connect 0x00000000400d9da8 0x4f esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x53 (size before relaxing) - *fill* 0x00000000400d9ae7 0x1 + *fill* 0x00000000400d9df7 0x1 .text.stop_webserver - 0x00000000400d9ae8 0xa esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d9df8 0xa esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0xe (size before relaxing) - *fill* 0x00000000400d9af2 0x2 + *fill* 0x00000000400d9e02 0x2 .text.disconnect_handler - 0x00000000400d9af4 0x13 esp-idf/https_server/libhttps_server.a(https_server.c.obj) - *fill* 0x00000000400d9b07 0x1 + 0x00000000400d9e04 0x13 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + *fill* 0x00000000400d9e17 0x1 .text.start_webserver - 0x00000000400d9b08 0x90 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d9e18 0x90 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0xb0 (size before relaxing) .text.connect_handler - 0x00000000400d9b98 0xf esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d9ea8 0xf esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x12 (size before relaxing) - *fill* 0x00000000400d9ba7 0x1 + *fill* 0x00000000400d9eb7 0x1 .text.echo_post_handler - 0x00000000400d9ba8 0x3a2 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400d9eb8 0x3a2 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x3ce (size before relaxing) - *fill* 0x00000000400d9f4a 0x2 + *fill* 0x00000000400da25a 0x2 .text.root_get_handler - 0x00000000400d9f4c 0x1c esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400da25c 0x1c esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x20 (size before relaxing) .text.register_server - 0x00000000400d9f68 0x4f esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x00000000400da278 0x4f esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x5b (size before relaxing) - 0x00000000400d9f68 register_server - *fill* 0x00000000400d9fb7 0x1 - .text.decode 0x00000000400d9fb8 0xb3 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) - 0x00000000400d9fb8 decode - *fill* 0x00000000400da06b 0x1 + 0x00000000400da278 register_server + *fill* 0x00000000400da2c7 0x1 + .text.decode 0x00000000400da2c8 0xb3 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + 0x00000000400da2c8 decode + *fill* 0x00000000400da37b 0x1 .text.esp_efuse_get_chip_ver - 0x00000000400da06c 0x52 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x00000000400da37c 0x52 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) 0x56 (size before relaxing) - 0x00000000400da06c esp_efuse_get_chip_ver - *fill* 0x00000000400da0be 0x2 + 0x00000000400da37c esp_efuse_get_chip_ver + *fill* 0x00000000400da3ce 0x2 .text.esp_efuse_read_field_blob - 0x00000000400da0c0 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x00000000400da3d0 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) 0x66 (size before relaxing) - 0x00000000400da0c0 esp_efuse_read_field_blob - *fill* 0x00000000400da11f 0x1 + 0x00000000400da3d0 esp_efuse_read_field_blob + *fill* 0x00000000400da42f 0x1 .text.check_range_of_bits - 0x00000000400da120 0x5a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000400da430 0x5a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) 0x5e (size before relaxing) - *fill* 0x00000000400da17a 0x2 + *fill* 0x00000000400da48a 0x2 .text.esp_efuse_utility_process - 0x00000000400da17c 0x116 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000400da48c 0x116 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) 0x11e (size before relaxing) - 0x00000000400da17c esp_efuse_utility_process - *fill* 0x00000000400da292 0x2 + 0x00000000400da48c esp_efuse_utility_process + *fill* 0x00000000400da5a2 0x2 .text.esp_efuse_utility_read_reg - 0x00000000400da294 0x6b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x00000000400da294 esp_efuse_utility_read_reg - *fill* 0x00000000400da2ff 0x1 + 0x00000000400da5a4 0x6b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000400da5a4 esp_efuse_utility_read_reg + *fill* 0x00000000400da60f 0x1 .text.esp_efuse_utility_fill_buff - 0x00000000400da300 0xc7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x00000000400da300 esp_efuse_utility_fill_buff - *fill* 0x00000000400da3c7 0x1 + 0x00000000400da610 0xc7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000400da610 esp_efuse_utility_fill_buff + *fill* 0x00000000400da6d7 0x1 .text.esp_efuse_get_coding_scheme - 0x00000000400da3c8 0x41 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x00000000400da3c8 esp_efuse_get_coding_scheme - *fill* 0x00000000400da409 0x3 + 0x00000000400da6d8 0x41 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x00000000400da6d8 esp_efuse_get_coding_scheme + *fill* 0x00000000400da719 0x3 .text.bootloader_init_mem - 0x00000000400da40c 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - 0x00000000400da40c bootloader_init_mem - *fill* 0x00000000400da446 0x2 + 0x00000000400da71c 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x00000000400da71c bootloader_init_mem + *fill* 0x00000000400da756 0x2 .text.bootloader_flash_update_id - 0x00000000400da448 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x00000000400da758 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) 0x10 (size before relaxing) - 0x00000000400da448 bootloader_flash_update_id - *fill* 0x00000000400da455 0x3 + 0x00000000400da758 bootloader_flash_update_id + *fill* 0x00000000400da765 0x3 .text.execute_flash_command - 0x00000000400da458 0x18c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x00000000400da768 0x18c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) .text.bootloader_read_flash_id - 0x00000000400da5e4 0x2a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x00000000400da8f4 0x2a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) 0x2e (size before relaxing) - 0x00000000400da5e4 bootloader_read_flash_id - *fill* 0x00000000400da60e 0x2 + 0x00000000400da8f4 bootloader_read_flash_id + *fill* 0x00000000400da91e 0x2 .text.spi_flash_init_lock - 0x00000000400da610 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x00000000400da920 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) 0x26 (size before relaxing) - 0x00000000400da610 spi_flash_init_lock - *fill* 0x00000000400da632 0x2 + 0x00000000400da920 spi_flash_init_lock + *fill* 0x00000000400da942 0x2 .text.spi_flash_op_lock - 0x00000000400da634 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x00000000400da634 spi_flash_op_lock - *fill* 0x00000000400da646 0x2 + 0x00000000400da944 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x00000000400da944 spi_flash_op_lock + *fill* 0x00000000400da956 0x2 .text.spi_flash_op_unlock - 0x00000000400da648 0xd esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x00000000400da958 0xd esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) 0x10 (size before relaxing) - 0x00000000400da648 spi_flash_op_unlock - *fill* 0x00000000400da655 0x3 + 0x00000000400da958 spi_flash_op_unlock + *fill* 0x00000000400da965 0x3 .text.is_safe_write_address - 0x00000000400da658 0x15 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x00000000400da968 0x15 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) 0x19 (size before relaxing) - *fill* 0x00000000400da66d 0x3 + *fill* 0x00000000400da97d 0x3 .text.spi_flash_init - 0x00000000400da670 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x00000000400da980 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) 0xb (size before relaxing) - 0x00000000400da670 spi_flash_init - *fill* 0x00000000400da678 0x0 + 0x00000000400da980 spi_flash_init + *fill* 0x00000000400da988 0x0 .text.esp_flash_init_default_chip - 0x00000000400da678 0x9a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x00000000400da988 0x9a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) 0xa2 (size before relaxing) - 0x00000000400da678 esp_flash_init_default_chip - *fill* 0x00000000400da712 0x2 + 0x00000000400da988 esp_flash_init_default_chip + *fill* 0x00000000400daa22 0x2 .text.esp_flash_app_init - 0x00000000400da714 0xd esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x00000000400daa24 0xd esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) 0x10 (size before relaxing) - 0x00000000400da714 esp_flash_app_init - *fill* 0x00000000400da721 0x3 + 0x00000000400daa24 esp_flash_app_init + *fill* 0x00000000400daa31 0x3 .text.esp_flash_app_init_os_functions - 0x00000000400da724 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - 0x00000000400da724 esp_flash_app_init_os_functions - *fill* 0x00000000400da735 0x3 + 0x00000000400daa34 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x00000000400daa34 esp_flash_app_init_os_functions + *fill* 0x00000000400daa45 0x3 .text.load_partitions - 0x00000000400da738 0xf7 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400daa48 0xf7 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0xfa (size before relaxing) - *fill* 0x00000000400da82f 0x1 + *fill* 0x00000000400dab3f 0x1 .text.ensure_partitions_loaded - 0x00000000400da830 0x4c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dab40 0x4c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x58 (size before relaxing) .text.iterator_create - 0x00000000400da87c 0x1d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dab8c 0x1d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x21 (size before relaxing) - *fill* 0x00000000400da899 0x3 + *fill* 0x00000000400daba9 0x3 .text.esp_partition_iterator_release - 0x00000000400da89c 0xa esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dabac 0xa esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0xe (size before relaxing) - 0x00000000400da89c esp_partition_iterator_release - *fill* 0x00000000400da8a6 0x2 + 0x00000000400dabac esp_partition_iterator_release + *fill* 0x00000000400dabb6 0x2 .text.esp_partition_next - 0x00000000400da8a8 0x80 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dabb8 0x80 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x84 (size before relaxing) - 0x00000000400da8a8 esp_partition_next + 0x00000000400dabb8 esp_partition_next .text.esp_partition_find - 0x00000000400da928 0x20 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dac38 0x20 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x28 (size before relaxing) - 0x00000000400da928 esp_partition_find + 0x00000000400dac38 esp_partition_find .text.esp_partition_get - 0x00000000400da948 0x1c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - 0x00000000400da948 esp_partition_get + 0x00000000400dac58 0x1c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dac58 esp_partition_get .text.esp_partition_find_first - 0x00000000400da964 0x24 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dac74 0x24 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x2c (size before relaxing) - 0x00000000400da964 esp_partition_find_first + 0x00000000400dac74 esp_partition_find_first .text.esp_partition_read - 0x00000000400da988 0x4d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dac98 0x4d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x51 (size before relaxing) - 0x00000000400da988 esp_partition_read - *fill* 0x00000000400da9d5 0x3 + 0x00000000400dac98 esp_partition_read + *fill* 0x00000000400dace5 0x3 .text.esp_partition_write - 0x00000000400da9d8 0x4d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dace8 0x4d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x51 (size before relaxing) - 0x00000000400da9d8 esp_partition_write - *fill* 0x00000000400daa25 0x3 + 0x00000000400dace8 esp_partition_write + *fill* 0x00000000400dad35 0x3 .text.esp_partition_erase_range - 0x00000000400daa28 0x59 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - 0x00000000400daa28 esp_partition_erase_range - *fill* 0x00000000400daa81 0x3 + 0x00000000400dad38 0x59 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dad38 esp_partition_erase_range + *fill* 0x00000000400dad91 0x3 .text.esp_partition_main_flash_region_safe - 0x00000000400daa84 0x39 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400dad94 0x39 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x3d (size before relaxing) - 0x00000000400daa84 esp_partition_main_flash_region_safe - *fill* 0x00000000400daabd 0x3 + 0x00000000400dad94 esp_partition_main_flash_region_safe + *fill* 0x00000000400dadcd 0x3 .text.spi_flash_cache2phys - 0x00000000400daac0 0x69 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x00000000400daac0 spi_flash_cache2phys - *fill* 0x00000000400dab29 0x3 + 0x00000000400dadd0 0x69 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x00000000400dadd0 spi_flash_cache2phys + *fill* 0x00000000400dae39 0x3 .text.spi_flash_hal_init - 0x00000000400dab2c 0xbe esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x00000000400dae3c 0xbe esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) 0xc2 (size before relaxing) - 0x00000000400dab2c spi_flash_hal_init - *fill* 0x00000000400dabea 0x2 + 0x00000000400dae3c spi_flash_hal_init + *fill* 0x00000000400daefa 0x2 .text.spi_flash_hal_supports_direct_write - 0x00000000400dabec 0x26 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) - 0x00000000400dabec spi_flash_hal_supports_direct_write - *fill* 0x00000000400dac12 0x2 + 0x00000000400daefc 0x26 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x00000000400daefc spi_flash_hal_supports_direct_write + *fill* 0x00000000400daf22 0x2 .text.spi_flash_hal_supports_direct_read - 0x00000000400dac14 0x26 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) - 0x00000000400dac14 spi_flash_hal_supports_direct_read - *fill* 0x00000000400dac3a 0x2 + 0x00000000400daf24 0x26 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x00000000400daf24 spi_flash_hal_supports_direct_read + *fill* 0x00000000400daf4a 0x2 .text.brownout_hal_config - 0x00000000400dac3c 0xb6 esp-idf/soc/libsoc.a(brownout_hal.c.obj) - 0x00000000400dac3c brownout_hal_config - *fill* 0x00000000400dacf2 0x2 + 0x00000000400daf4c 0xb6 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400daf4c brownout_hal_config + *fill* 0x00000000400db002 0x2 .text.brownout_hal_intr_enable - 0x00000000400dacf4 0x21 esp-idf/soc/libsoc.a(brownout_hal.c.obj) - 0x00000000400dacf4 brownout_hal_intr_enable - *fill* 0x00000000400dad15 0x3 + 0x00000000400db004 0x21 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400db004 brownout_hal_intr_enable + *fill* 0x00000000400db025 0x3 .text.brownout_hal_intr_clear - 0x00000000400dad18 0x1a esp-idf/soc/libsoc.a(brownout_hal.c.obj) - 0x00000000400dad18 brownout_hal_intr_clear - *fill* 0x00000000400dad32 0x2 + 0x00000000400db028 0x1a esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400db028 brownout_hal_intr_clear + *fill* 0x00000000400db042 0x2 .text.esp_netif_list_lock - 0x00000000400dad34 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400db044 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x39 (size before relaxing) - 0x00000000400dad34 esp_netif_list_lock - *fill* 0x00000000400dad69 0x3 + 0x00000000400db044 esp_netif_list_lock + *fill* 0x00000000400db079 0x3 .text.esp_netif_list_unlock - 0x00000000400dad6c 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400db07c 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x40 (size before relaxing) - 0x00000000400dad6c esp_netif_list_unlock + 0x00000000400db07c esp_netif_list_unlock .text.esp_netif_add_to_list - 0x00000000400dada8 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400db0b8 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x3e (size before relaxing) - 0x00000000400dada8 esp_netif_add_to_list - *fill* 0x00000000400dadde 0x2 + 0x00000000400db0b8 esp_netif_add_to_list + *fill* 0x00000000400db0ee 0x2 .text.esp_netif_remove_from_list - 0x00000000400dade0 0x6d esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400db0f0 0x6d esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x78 (size before relaxing) - 0x00000000400dade0 esp_netif_remove_from_list - *fill* 0x00000000400dae4d 0x3 + 0x00000000400db0f0 esp_netif_remove_from_list + *fill* 0x00000000400db15d 0x3 .text.esp_netif_next_unsafe - 0x00000000400dae50 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - 0x00000000400dae50 esp_netif_next_unsafe - *fill* 0x00000000400dae86 0x2 + 0x00000000400db160 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400db160 esp_netif_next_unsafe + *fill* 0x00000000400db196 0x2 .text.esp_netif_is_netif_listed - 0x00000000400dae88 0x5c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400db198 0x5c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x6e (size before relaxing) - 0x00000000400dae88 esp_netif_is_netif_listed - *fill* 0x00000000400daee4 0x0 + 0x00000000400db198 esp_netif_is_netif_listed + *fill* 0x00000000400db1f4 0x0 .text.esp_netif_get_handle_from_ifkey - 0x00000000400daee4 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400db1f4 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x70 (size before relaxing) - 0x00000000400daee4 esp_netif_get_handle_from_ifkey + 0x00000000400db1f4 esp_netif_get_handle_from_ifkey .text.esp_netif_config_sanity_check - 0x00000000400daf44 0x5a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db254 0x5a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x6a (size before relaxing) - *fill* 0x00000000400daf9e 0x2 + *fill* 0x00000000400db2ae 0x2 .text.esp_netif_set_ip_old_info_api - 0x00000000400dafa0 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x00000000400dafd5 0x3 + 0x00000000400db2b0 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x00000000400db2e5 0x3 .text.esp_netif_init_configuration - 0x00000000400dafd8 0x100 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db2e8 0x100 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) .text.esp_netif_lwip_remove - 0x00000000400db0d8 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db3e8 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x1e (size before relaxing) - *fill* 0x00000000400db0f0 0x0 + *fill* 0x00000000400db400 0x0 .text.esp_netif_dhcps_cb - 0x00000000400db0f0 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db400 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x7a (size before relaxing) - *fill* 0x00000000400db15a 0x2 + *fill* 0x00000000400db46a 0x2 .text.esp_netif_lwip_add - 0x00000000400db15c 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db46c 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x86 (size before relaxing) - *fill* 0x00000000400db1d2 0x2 + *fill* 0x00000000400db4e2 0x2 .text.esp_netif_is_active - 0x00000000400db1d4 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db4e4 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x12 (size before relaxing) - *fill* 0x00000000400db1e2 0x2 + *fill* 0x00000000400db4f2 0x2 .text.esp_netif_ip_lost_timer - 0x00000000400db1e4 0x82 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db4f4 0x82 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x92 (size before relaxing) - *fill* 0x00000000400db266 0x2 + *fill* 0x00000000400db576 0x2 .text.esp_netif_set_default_netif - 0x00000000400db268 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db578 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x1d (size before relaxing) - *fill* 0x00000000400db282 0x2 + *fill* 0x00000000400db592 0x2 .text.esp_netif_api_cb - 0x00000000400db284 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x00000000400db29f 0x1 + 0x00000000400db594 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x00000000400db5af 0x1 .text.esp_netif_start_ip_lost_timer - 0x00000000400db2a0 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x00000000400db2c9 0x3 + 0x00000000400db5b0 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x00000000400db5d9 0x3 .text.esp_netif_dhcpc_start_api - 0x00000000400db2cc 0xc1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db5dc 0xc1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0xc9 (size before relaxing) - *fill* 0x00000000400db38d 0x3 + *fill* 0x00000000400db69d 0x3 .text.esp_netif_update_default_netif - 0x00000000400db390 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db6a0 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x55 (size before relaxing) - *fill* 0x00000000400db3d9 0x3 + *fill* 0x00000000400db6e9 0x3 .text.esp_netif_start_api - 0x00000000400db3dc 0xb1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db6ec 0xb1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0xcd (size before relaxing) - *fill* 0x00000000400db48d 0x3 + *fill* 0x00000000400db79d 0x3 .text.esp_netif_stop_api - 0x00000000400db490 0x75 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db7a0 0x75 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x85 (size before relaxing) - *fill* 0x00000000400db505 0x3 + *fill* 0x00000000400db815 0x3 .text.esp_netif_up_api - 0x00000000400db508 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db818 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x35 (size before relaxing) - *fill* 0x00000000400db535 0x3 + *fill* 0x00000000400db845 0x3 .text.esp_netif_down_api - 0x00000000400db538 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db848 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x82 (size before relaxing) - *fill* 0x00000000400db5ae 0x2 + *fill* 0x00000000400db8be 0x2 .text.esp_netif_init - 0x00000000400db5b0 0x85 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db8c0 0x85 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x95 (size before relaxing) - 0x00000000400db5b0 esp_netif_init - *fill* 0x00000000400db635 0x3 + 0x00000000400db8c0 esp_netif_init + *fill* 0x00000000400db945 0x3 .text.esp_netif_destroy - 0x00000000400db638 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db948 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x6f (size before relaxing) - 0x00000000400db638 esp_netif_destroy - *fill* 0x00000000400db68c 0x0 + 0x00000000400db948 esp_netif_destroy + *fill* 0x00000000400db99c 0x0 .text.esp_netif_new - 0x00000000400db68c 0x144 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400db99c 0x144 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x18c (size before relaxing) - 0x00000000400db68c esp_netif_new + 0x00000000400db99c esp_netif_new .text.esp_netif_attach - 0x00000000400db7d0 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbae0 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x3e (size before relaxing) - 0x00000000400db7d0 esp_netif_attach - *fill* 0x00000000400db806 0x2 + 0x00000000400dbae0 esp_netif_attach + *fill* 0x00000000400dbb16 0x2 .text.esp_netif_set_driver_config - 0x00000000400db808 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x00000000400db808 esp_netif_set_driver_config - *fill* 0x00000000400db839 0x3 + 0x00000000400dbb18 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbb18 esp_netif_set_driver_config + *fill* 0x00000000400dbb49 0x3 .text.esp_netif_set_mac - 0x00000000400db83c 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x00000000400db83c esp_netif_set_mac - *fill* 0x00000000400db881 0x3 + 0x00000000400dbb4c 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbb4c esp_netif_set_mac + *fill* 0x00000000400dbb91 0x3 .text.esp_netif_start - 0x00000000400db884 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbb94 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x7a (size before relaxing) - 0x00000000400db884 esp_netif_start - *fill* 0x00000000400db8ee 0x2 + 0x00000000400dbb94 esp_netif_start + *fill* 0x00000000400dbbfe 0x2 .text.esp_netif_stop - 0x00000000400db8f0 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbc00 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x7a (size before relaxing) - 0x00000000400db8f0 esp_netif_stop - *fill* 0x00000000400db95a 0x2 + 0x00000000400dbc00 esp_netif_stop + *fill* 0x00000000400dbc6a 0x2 .text.esp_netif_dhcpc_start - 0x00000000400db95c 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbc6c 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x61 (size before relaxing) - 0x00000000400db95c esp_netif_dhcpc_start - *fill* 0x00000000400db9ad 0x3 + 0x00000000400dbc6c esp_netif_dhcpc_start + *fill* 0x00000000400dbcbd 0x3 .text.esp_netif_get_hostname - 0x00000000400db9b0 0x39 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x00000000400db9b0 esp_netif_get_hostname - *fill* 0x00000000400db9e9 0x3 + 0x00000000400dbcc0 0x39 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbcc0 esp_netif_get_hostname + *fill* 0x00000000400dbcf9 0x3 .text.esp_netif_up - 0x00000000400db9ec 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbcfc 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x55 (size before relaxing) - 0x00000000400db9ec esp_netif_up - *fill* 0x00000000400dba35 0x3 + 0x00000000400dbcfc esp_netif_up + *fill* 0x00000000400dbd45 0x3 .text.esp_netif_down - 0x00000000400dba38 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbd48 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x55 (size before relaxing) - 0x00000000400dba38 esp_netif_down - *fill* 0x00000000400dba81 0x3 + 0x00000000400dbd48 esp_netif_down + *fill* 0x00000000400dbd91 0x3 .text.esp_netif_update_default_netif_lwip - 0x00000000400dba84 0xbe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbd94 0xbe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0xce (size before relaxing) - *fill* 0x00000000400dbb42 0x2 + *fill* 0x00000000400dbe52 0x2 .text.esp_netif_get_old_ip_info - 0x00000000400dbb44 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x00000000400dbb44 esp_netif_get_old_ip_info - *fill* 0x00000000400dbb76 0x2 + 0x00000000400dbe54 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbe54 esp_netif_get_old_ip_info + *fill* 0x00000000400dbe86 0x2 .text.esp_netif_get_ip_info - 0x00000000400dbb78 0x6d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x00000000400dbb78 esp_netif_get_ip_info - *fill* 0x00000000400dbbe5 0x3 + 0x00000000400dbe88 0x6d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbe88 esp_netif_get_ip_info + *fill* 0x00000000400dbef5 0x3 .text.esp_netif_set_old_ip_info - 0x00000000400dbbe8 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbef8 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x61 (size before relaxing) - 0x00000000400dbbe8 esp_netif_set_old_ip_info - *fill* 0x00000000400dbc39 0x3 + 0x00000000400dbef8 esp_netif_set_old_ip_info + *fill* 0x00000000400dbf49 0x3 .text.esp_netif_dhcpc_cb - 0x00000000400dbc3c 0xdf esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400dbf4c 0xdf esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0xea (size before relaxing) - *fill* 0x00000000400dbd1b 0x1 + *fill* 0x00000000400dc02b 0x1 .text.esp_netif_ppp_set_default_netif - 0x00000000400dbd1c 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000400dc02c 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x20 (size before relaxing) - 0x00000000400dbd1c esp_netif_ppp_set_default_netif + 0x00000000400dc02c esp_netif_ppp_set_default_netif .text.esp_netif_new_ppp - 0x00000000400dbd38 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000400dc048 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x22 (size before relaxing) - 0x00000000400dbd38 esp_netif_new_ppp - *fill* 0x00000000400dbd56 0x2 + 0x00000000400dc048 esp_netif_new_ppp + *fill* 0x00000000400dc066 0x2 .text.esp_netif_start_ppp - 0x00000000400dbd58 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000400dc068 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x25 (size before relaxing) - 0x00000000400dbd58 esp_netif_start_ppp - *fill* 0x00000000400dbd75 0x3 + 0x00000000400dc068 esp_netif_start_ppp + *fill* 0x00000000400dc085 0x3 .text.esp_netif_stop_ppp - 0x00000000400dbd78 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000400dc088 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x25 (size before relaxing) - 0x00000000400dbd78 esp_netif_stop_ppp - *fill* 0x00000000400dbd95 0x3 + 0x00000000400dc088 esp_netif_stop_ppp + *fill* 0x00000000400dc0a5 0x3 .text.esp_netif_destroy_ppp - 0x00000000400dbd98 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000400dc0a8 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x20 (size before relaxing) - 0x00000000400dbd98 esp_netif_destroy_ppp + 0x00000000400dc0a8 esp_netif_destroy_ppp .text.esp_event_legacy_wifi_event_id - 0x00000000400dbdb4 0x85 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x00000000400dc0c4 0x85 esp-idf/esp_event/libesp_event.a(event_send.c.obj) 0x89 (size before relaxing) - *fill* 0x00000000400dbe39 0x3 + *fill* 0x00000000400dc149 0x3 .text.esp_event_legacy_ip_event_id - 0x00000000400dbe3c 0x47 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x00000000400dc14c 0x47 esp-idf/esp_event/libesp_event.a(event_send.c.obj) 0x4b (size before relaxing) - *fill* 0x00000000400dbe83 0x1 + *fill* 0x00000000400dc193 0x1 .text.esp_event_legacy_event_id - 0x00000000400dbe84 0x46 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x00000000400dc194 0x46 esp-idf/esp_event/libesp_event.a(event_send.c.obj) 0x4e (size before relaxing) - *fill* 0x00000000400dbeca 0x2 + *fill* 0x00000000400dc1da 0x2 .text.esp_event_send_internal - 0x00000000400dbecc 0x38 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x00000000400dc1dc 0x38 esp-idf/esp_event/libesp_event.a(event_send.c.obj) 0x3c (size before relaxing) - 0x00000000400dbecc esp_event_send_internal + 0x00000000400dc1dc esp_event_send_internal .text.MD5Transform - 0x00000000400dbf04 0x6e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) - *fill* 0x00000000400dc5e7 0x1 - .text.MD5Init 0x00000000400dc5e8 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) - 0x00000000400dc5e8 MD5Init - *fill* 0x00000000400dc607 0x1 + 0x00000000400dc214 0x6e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + *fill* 0x00000000400dc8f7 0x1 + .text.MD5Init 0x00000000400dc8f8 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x00000000400dc8f8 MD5Init + *fill* 0x00000000400dc917 0x1 .text.MD5Update - 0x00000000400dc608 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x00000000400dc918 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) 0x96 (size before relaxing) - 0x00000000400dc608 MD5Update - *fill* 0x00000000400dc69a 0x2 + 0x00000000400dc918 MD5Update + *fill* 0x00000000400dc9aa 0x2 .text.MD5Final - 0x00000000400dc69c 0x77 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x00000000400dc9ac 0x77 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) 0x7b (size before relaxing) - 0x00000000400dc69c MD5Final - *fill* 0x00000000400dc713 0x1 + 0x00000000400dc9ac MD5Final + *fill* 0x00000000400dca23 0x1 .text.md5_vector - 0x00000000400dc714 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x00000000400dca24 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) 0x38 (size before relaxing) - 0x00000000400dc714 md5_vector + 0x00000000400dca24 md5_vector .text.hmac_md5_vector - 0x00000000400dc744 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + 0x00000000400dca54 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) 0x110 (size before relaxing) - 0x00000000400dc744 hmac_md5_vector + 0x00000000400dca54 hmac_md5_vector .text.hmac_md5 - 0x00000000400dc850 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) - 0x00000000400dc850 hmac_md5 - *fill* 0x00000000400dc86d 0x3 + 0x00000000400dcb60 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + 0x00000000400dcb60 hmac_md5 + *fill* 0x00000000400dcb7d 0x3 .text.sha1_vector - 0x00000000400dc870 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + 0x00000000400dcb80 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) 0x58 (size before relaxing) - 0x00000000400dc870 sha1_vector + 0x00000000400dcb80 sha1_vector .text.pbkdf2_sha1 - 0x00000000400dc8bc 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + 0x00000000400dcbcc 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) 0x67 (size before relaxing) - 0x00000000400dc8bc pbkdf2_sha1 - *fill* 0x00000000400dc918 0x0 + 0x00000000400dcbcc pbkdf2_sha1 + *fill* 0x00000000400dcc28 0x0 .text.hmac_sha1_vector - 0x00000000400dc918 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x00000000400dcc28 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) 0x110 (size before relaxing) - 0x00000000400dc918 hmac_sha1_vector + 0x00000000400dcc28 hmac_sha1_vector .text.hmac_sha1 - 0x00000000400dca24 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) - 0x00000000400dca24 hmac_sha1 - *fill* 0x00000000400dca41 0x3 + 0x00000000400dcd34 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x00000000400dcd34 hmac_sha1 + *fill* 0x00000000400dcd51 0x3 .text.sha1_prf - 0x00000000400dca44 0x99 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) - 0x00000000400dca44 sha1_prf - *fill* 0x00000000400dcadd 0x3 + 0x00000000400dcd54 0x99 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x00000000400dcd54 sha1_prf + *fill* 0x00000000400dcded 0x3 .text.hmac_sha256_vector - 0x00000000400dcae0 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400dcdf0 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) 0x110 (size before relaxing) - 0x00000000400dcae0 hmac_sha256_vector + 0x00000000400dcdf0 hmac_sha256_vector .text.hmac_sha256 - 0x00000000400dcbec 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) - 0x00000000400dcbec hmac_sha256 - *fill* 0x00000000400dcc07 0x1 + 0x00000000400dcefc 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400dcefc hmac_sha256 + *fill* 0x00000000400dcf17 0x1 .text.sha256_prf_bits - 0x00000000400dcc08 0xe2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) - 0x00000000400dcc08 sha256_prf_bits - *fill* 0x00000000400dccea 0x2 + 0x00000000400dcf18 0xe2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400dcf18 sha256_prf_bits + *fill* 0x00000000400dcffa 0x2 .text.sha256_prf - 0x00000000400dccec 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) - 0x00000000400dccec sha256_prf + 0x00000000400dcffc 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400dcffc sha256_prf .text.rijndaelDecrypt - 0x00000000400dcd0c 0x419 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) - *fill* 0x00000000400dd125 0x3 + 0x00000000400dd01c 0x419 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + *fill* 0x00000000400dd435 0x3 .text.rijndaelKeySetupDec - 0x00000000400dd128 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x00000000400dd438 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) 0x108 (size before relaxing) .text.aes_decrypt_init - 0x00000000400dd22c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x00000000400dd53c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) 0x38 (size before relaxing) - 0x00000000400dd22c aes_decrypt_init + 0x00000000400dd53c aes_decrypt_init .text.aes_decrypt - 0x00000000400dd25c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) - 0x00000000400dd25c aes_decrypt + 0x00000000400dd56c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x00000000400dd56c aes_decrypt .text.aes_decrypt_deinit - 0x00000000400dd270 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x00000000400dd580 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) 0xe (size before relaxing) - 0x00000000400dd270 aes_decrypt_deinit - *fill* 0x00000000400dd27a 0x2 + 0x00000000400dd580 aes_decrypt_deinit + *fill* 0x00000000400dd58a 0x2 .text.rijndaelEncrypt - 0x00000000400dd27c 0x44e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) - 0x00000000400dd27c rijndaelEncrypt - *fill* 0x00000000400dd6ca 0x2 + 0x00000000400dd58c 0x44e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x00000000400dd58c rijndaelEncrypt + *fill* 0x00000000400dd9da 0x2 .text.aes_encrypt_init - 0x00000000400dd6cc 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x00000000400dd9dc 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) 0x38 (size before relaxing) - 0x00000000400dd6cc aes_encrypt_init + 0x00000000400dd9dc aes_encrypt_init .text.aes_encrypt - 0x00000000400dd6fc 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) - 0x00000000400dd6fc aes_encrypt + 0x00000000400dda0c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x00000000400dda0c aes_encrypt .text.aes_encrypt_deinit - 0x00000000400dd710 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x00000000400dda20 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) 0xe (size before relaxing) - 0x00000000400dd710 aes_encrypt_deinit - *fill* 0x00000000400dd71a 0x2 + 0x00000000400dda20 aes_encrypt_deinit + *fill* 0x00000000400dda2a 0x2 .text.rijndaelKeySetupEnc - 0x00000000400dd71c 0x344 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - 0x00000000400dd71c rijndaelKeySetupEnc + 0x00000000400dda2c 0x344 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x00000000400dda2c rijndaelKeySetupEnc .text.omac1_aes_vector - 0x00000000400dda60 0x169 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x00000000400ddd70 0x169 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) 0x171 (size before relaxing) - 0x00000000400dda60 omac1_aes_vector - *fill* 0x00000000400ddbc9 0x3 + 0x00000000400ddd70 omac1_aes_vector + *fill* 0x00000000400dded9 0x3 .text.omac1_aes_128_vector - 0x00000000400ddbcc 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) - 0x00000000400ddbcc omac1_aes_128_vector - *fill* 0x00000000400ddbe5 0x3 + 0x00000000400ddedc 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x00000000400ddedc omac1_aes_128_vector + *fill* 0x00000000400ddef5 0x3 .text.omac1_aes_128 - 0x00000000400ddbe8 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x00000000400ddef8 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) 0x1c (size before relaxing) - 0x00000000400ddbe8 omac1_aes_128 + 0x00000000400ddef8 omac1_aes_128 .text.aes_unwrap - 0x00000000400ddc00 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x00000000400ddf10 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) 0xd6 (size before relaxing) - 0x00000000400ddc00 aes_unwrap - *fill* 0x00000000400ddcca 0x2 + 0x00000000400ddf10 aes_unwrap + *fill* 0x00000000400ddfda 0x2 .text.aes_wrap - 0x00000000400ddccc 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x00000000400ddfdc 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) 0xc8 (size before relaxing) - 0x00000000400ddccc aes_wrap + 0x00000000400ddfdc aes_wrap .text.ccmp_aad_nonce - 0x00000000400ddd88 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - *fill* 0x00000000400ddea2 0x2 + 0x00000000400de098 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + *fill* 0x00000000400de1b2 0x2 .text.ccmp_decrypt - 0x00000000400ddea4 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x00000000400de1b4 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) 0x8c (size before relaxing) - 0x00000000400ddea4 ccmp_decrypt + 0x00000000400de1b4 ccmp_decrypt .text.ccmp_encrypt - 0x00000000400ddf20 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x00000000400de230 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) 0x108 (size before relaxing) - 0x00000000400ddf20 ccmp_encrypt + 0x00000000400de230 ccmp_encrypt .text.sha256_vector - 0x00000000400de018 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + 0x00000000400de328 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) 0x5e (size before relaxing) - 0x00000000400de018 sha256_vector - *fill* 0x00000000400de06b 0x1 + 0x00000000400de328 sha256_vector + *fill* 0x00000000400de37b 0x1 .text.aes_ccm_encr_start - 0x00000000400de06c 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - *fill* 0x00000000400de086 0x2 + 0x00000000400de37c 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x00000000400de396 0x2 .text.aes_ccm_auth - 0x00000000400de088 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400de398 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x5e (size before relaxing) - *fill* 0x00000000400de0de 0x2 + *fill* 0x00000000400de3ee 0x2 .text.aes_ccm_encr - 0x00000000400de0e0 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400de3f0 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x7a (size before relaxing) - *fill* 0x00000000400de156 0x2 + *fill* 0x00000000400de466 0x2 .text.aes_ccm_encr_auth - 0x00000000400de158 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400de468 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x36 (size before relaxing) - *fill* 0x00000000400de18a 0x2 + *fill* 0x00000000400de49a 0x2 .text.aes_ccm_decr_auth - 0x00000000400de18c 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400de49c 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x36 (size before relaxing) - *fill* 0x00000000400de1be 0x2 + *fill* 0x00000000400de4ce 0x2 .text.aes_ccm_auth_start - 0x00000000400de1c0 0xbb esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400de4d0 0xbb esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0xc3 (size before relaxing) - *fill* 0x00000000400de27b 0x1 + *fill* 0x00000000400de58b 0x1 .text.aes_ccm_ae - 0x00000000400de27c 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400de58c 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0xa6 (size before relaxing) - 0x00000000400de27c aes_ccm_ae - *fill* 0x00000000400de30e 0x2 + 0x00000000400de58c aes_ccm_ae + *fill* 0x00000000400de61e 0x2 .text.aes_ccm_ad - 0x00000000400de310 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x00000000400de620 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0xc2 (size before relaxing) - 0x00000000400de310 aes_ccm_ad - *fill* 0x00000000400de3ba 0x2 + 0x00000000400de620 aes_ccm_ad + *fill* 0x00000000400de6ca 0x2 .text._ZL18nvs_find_ns_handlejPPN3nvs15NVSHandleSimpleE - 0x00000000400de3bc 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - *fill* 0x00000000400de3e5 0x3 + 0x00000000400de6cc 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x00000000400de6f5 0x3 .text._ZL24lookup_storage_from_namePKc - 0x00000000400de3e8 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de6f8 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x15 (size before relaxing) - *fill* 0x00000000400de3f9 0x3 + *fill* 0x00000000400de709 0x3 .text._ZL19nvs_get_str_or_blobjN3nvs8ItemTypeEPKcPvPj - 0x00000000400de3fc 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de70c 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x86 (size before relaxing) - *fill* 0x00000000400de47a 0x2 + *fill* 0x00000000400de78a 0x2 .text._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t - 0x00000000400de47c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de78c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x18 (size before relaxing) .text.nvs_flash_init_partition - 0x00000000400de490 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de7a0 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x52 (size before relaxing) - 0x00000000400de490 nvs_flash_init_partition - *fill* 0x00000000400de4d2 0x2 + 0x00000000400de7a0 nvs_flash_init_partition + *fill* 0x00000000400de7e2 0x2 .text.nvs_flash_init - 0x00000000400de4d4 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de7e4 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x10 (size before relaxing) - 0x00000000400de4d4 nvs_flash_init - *fill* 0x00000000400de4e1 0x3 + 0x00000000400de7e4 nvs_flash_init + *fill* 0x00000000400de7f1 0x3 .text.nvs_flash_erase_partition - 0x00000000400de4e4 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de7f4 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x3d (size before relaxing) - 0x00000000400de4e4 nvs_flash_erase_partition - *fill* 0x00000000400de515 0x3 + 0x00000000400de7f4 nvs_flash_erase_partition + *fill* 0x00000000400de825 0x3 .text.nvs_flash_erase - 0x00000000400de518 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de828 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x10 (size before relaxing) - 0x00000000400de518 nvs_flash_erase - *fill* 0x00000000400de525 0x3 + 0x00000000400de828 nvs_flash_erase + *fill* 0x00000000400de835 0x3 .text.nvs_open_from_partition - 0x00000000400de528 0xa2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de838 0xa2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0xae (size before relaxing) - 0x00000000400de528 nvs_open_from_partition - *fill* 0x00000000400de5ca 0x2 + 0x00000000400de838 nvs_open_from_partition + *fill* 0x00000000400de8da 0x2 .text.nvs_open - 0x00000000400de5cc 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000400de5cc nvs_open - *fill* 0x00000000400de5e2 0x2 + 0x00000000400de8dc 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de8dc nvs_open + *fill* 0x00000000400de8f2 0x2 .text.nvs_close - 0x00000000400de5e4 0x92 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de8f4 0x92 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x9a (size before relaxing) - 0x00000000400de5e4 nvs_close - *fill* 0x00000000400de676 0x2 + 0x00000000400de8f4 nvs_close + *fill* 0x00000000400de986 0x2 .text.nvs_erase_key - 0x00000000400de678 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de988 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - 0x00000000400de678 nvs_erase_key - *fill* 0x00000000400de6b6 0x2 + 0x00000000400de988 nvs_erase_key + *fill* 0x00000000400de9c6 0x2 .text.nvs_erase_all - 0x00000000400de6b8 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de9c8 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - 0x00000000400de6b8 nvs_erase_all - *fill* 0x00000000400de6f6 0x2 + 0x00000000400de9c8 nvs_erase_all + *fill* 0x00000000400dea06 0x2 .text.nvs_commit - 0x00000000400de6f8 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dea08 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - 0x00000000400de6f8 nvs_commit - *fill* 0x00000000400de736 0x2 + 0x00000000400dea08 nvs_commit + *fill* 0x00000000400dea46 0x2 .text.nvs_set_str - 0x00000000400de738 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dea48 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4e (size before relaxing) - 0x00000000400de738 nvs_set_str - *fill* 0x00000000400de77a 0x2 + 0x00000000400dea48 nvs_set_str + *fill* 0x00000000400dea8a 0x2 .text.nvs_set_blob - 0x00000000400de77c 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dea8c 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4e (size before relaxing) - 0x00000000400de77c nvs_set_blob - *fill* 0x00000000400de7be 0x2 + 0x00000000400dea8c nvs_set_blob + *fill* 0x00000000400deace 0x2 .text.nvs_get_str - 0x00000000400de7c0 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dead0 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x18 (size before relaxing) - 0x00000000400de7c0 nvs_get_str + 0x00000000400dead0 nvs_get_str .text.nvs_get_blob - 0x00000000400de7d4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400deae4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x18 (size before relaxing) - 0x00000000400de7d4 nvs_get_blob + 0x00000000400deae4 nvs_get_blob .text.nvs_entry_find - 0x00000000400de7e8 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400deaf8 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x60 (size before relaxing) - 0x00000000400de7e8 nvs_entry_find + 0x00000000400deaf8 nvs_entry_find .text.nvs_entry_next - 0x00000000400de83c 0x4f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400deb4c 0x4f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x57 (size before relaxing) - 0x00000000400de83c nvs_entry_next - *fill* 0x00000000400de88b 0x1 + 0x00000000400deb4c nvs_entry_next + *fill* 0x00000000400deb9b 0x1 .text.nvs_entry_info - 0x00000000400de88c 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000400de88c nvs_entry_info - *fill* 0x00000000400de89e 0x2 + 0x00000000400deb9c 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400deb9c nvs_entry_info + *fill* 0x00000000400debae 0x2 .text._Z7nvs_setIaEijPKcT_ - 0x00000000400de8a0 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400debb0 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4f (size before relaxing) - *fill* 0x00000000400de8e3 0x1 + *fill* 0x00000000400debf3 0x1 .text.nvs_set_i8 - 0x00000000400de8e4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000400de8e4 nvs_set_i8 + 0x00000000400debf4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400debf4 nvs_set_i8 .text._Z7nvs_setIhEijPKcT_ - 0x00000000400de8f8 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dec08 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400de936 0x2 + *fill* 0x00000000400dec46 0x2 .text.nvs_set_u8 - 0x00000000400de938 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000400de938 nvs_set_u8 + 0x00000000400dec48 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dec48 nvs_set_u8 .text._Z7nvs_setIsEijPKcT_ - 0x00000000400de94c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dec5c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400de98a 0x2 + *fill* 0x00000000400dec9a 0x2 .text.nvs_set_i16 - 0x00000000400de98c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000400de98c nvs_set_i16 + 0x00000000400dec9c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dec9c nvs_set_i16 .text._Z7nvs_setItEijPKcT_ - 0x00000000400de9a0 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400decb0 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400de9de 0x2 + *fill* 0x00000000400decee 0x2 .text.nvs_set_u16 - 0x00000000400de9e0 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000400de9e0 nvs_set_u16 + 0x00000000400decf0 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400decf0 nvs_set_u16 .text._Z7nvs_setIiEijPKcT_ - 0x00000000400de9f4 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400ded04 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400dea32 0x2 + *fill* 0x00000000400ded42 0x2 .text.nvs_set_i32 - 0x00000000400dea34 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400ded44 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - 0x00000000400dea34 nvs_set_i32 + 0x00000000400ded44 nvs_set_i32 .text._Z7nvs_setIjEijPKcT_ - 0x00000000400dea44 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400ded54 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400dea82 0x2 + *fill* 0x00000000400ded92 0x2 .text.nvs_set_u32 - 0x00000000400dea84 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400ded94 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - 0x00000000400dea84 nvs_set_u32 + 0x00000000400ded94 nvs_set_u32 .text._Z7nvs_setIxEijPKcT_ - 0x00000000400dea94 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400deda4 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4e (size before relaxing) - *fill* 0x00000000400dead6 0x2 + *fill* 0x00000000400dede6 0x2 .text.nvs_set_i64 - 0x00000000400dead8 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000400dead8 nvs_set_i64 - *fill* 0x00000000400deaed 0x3 + 0x00000000400dede8 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dede8 nvs_set_i64 + *fill* 0x00000000400dedfd 0x3 .text._Z7nvs_setIyEijPKcT_ - 0x00000000400deaf0 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dee00 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4e (size before relaxing) - *fill* 0x00000000400deb32 0x2 + *fill* 0x00000000400dee42 0x2 .text.nvs_set_u64 - 0x00000000400deb34 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000400deb34 nvs_set_u64 - *fill* 0x00000000400deb49 0x3 + 0x00000000400dee44 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dee44 nvs_set_u64 + *fill* 0x00000000400dee59 0x3 .text._Z7nvs_getIaEijPKcPT_ - 0x00000000400deb4c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dee5c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400deb8a 0x2 + *fill* 0x00000000400dee9a 0x2 .text.nvs_get_i8 - 0x00000000400deb8c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400dee9c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - 0x00000000400deb8c nvs_get_i8 + 0x00000000400dee9c nvs_get_i8 .text._Z7nvs_getIhEijPKcPT_ - 0x00000000400deb9c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400deeac 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400debda 0x2 + *fill* 0x00000000400deeea 0x2 .text.nvs_get_u8 - 0x00000000400debdc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400deeec 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - 0x00000000400debdc nvs_get_u8 + 0x00000000400deeec nvs_get_u8 .text._Z7nvs_getIsEijPKcPT_ - 0x00000000400debec 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400deefc 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400dec2a 0x2 + *fill* 0x00000000400def3a 0x2 .text.nvs_get_i16 - 0x00000000400dec2c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400def3c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - 0x00000000400dec2c nvs_get_i16 + 0x00000000400def3c nvs_get_i16 .text._Z7nvs_getItEijPKcPT_ - 0x00000000400dec3c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400def4c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400dec7a 0x2 + *fill* 0x00000000400def8a 0x2 .text.nvs_get_u16 - 0x00000000400dec7c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400def8c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - 0x00000000400dec7c nvs_get_u16 + 0x00000000400def8c nvs_get_u16 .text._Z7nvs_getIiEijPKcPT_ - 0x00000000400dec8c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400def9c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400decca 0x2 + *fill* 0x00000000400defda 0x2 .text.nvs_get_i32 - 0x00000000400deccc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400defdc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - 0x00000000400deccc nvs_get_i32 + 0x00000000400defdc nvs_get_i32 .text._Z7nvs_getIjEijPKcPT_ - 0x00000000400decdc 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400defec 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400ded1a 0x2 + *fill* 0x00000000400df02a 0x2 .text.nvs_get_u32 - 0x00000000400ded1c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400df02c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - 0x00000000400ded1c nvs_get_u32 + 0x00000000400df02c nvs_get_u32 .text._Z7nvs_getIxEijPKcPT_ - 0x00000000400ded2c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400df03c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400ded6a 0x2 + *fill* 0x00000000400df07a 0x2 .text.nvs_get_i64 - 0x00000000400ded6c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400df07c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - 0x00000000400ded6c nvs_get_i64 + 0x00000000400df07c nvs_get_i64 .text._Z7nvs_getIyEijPKcPT_ - 0x00000000400ded7c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400df08c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x4a (size before relaxing) - *fill* 0x00000000400dedba 0x2 + *fill* 0x00000000400df0ca 0x2 .text.nvs_get_u64 - 0x00000000400dedbc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400df0cc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x14 (size before relaxing) - 0x00000000400dedbc nvs_get_u64 + 0x00000000400df0cc nvs_get_u64 .text._ZN3nvs7Storage15clearNamespacesEv - 0x00000000400dedcc 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x00000000400dedcc _ZN3nvs7Storage15clearNamespacesEv - *fill* 0x00000000400dedfe 0x2 + 0x00000000400df0dc 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df0dc _ZN3nvs7Storage15clearNamespacesEv + *fill* 0x00000000400df10e 0x2 .text._ZN3nvs7StorageD2Ev - 0x00000000400dee00 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df110 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x3f (size before relaxing) - 0x00000000400dee00 _ZN3nvs7StorageD2Ev - 0x00000000400dee00 _ZN3nvs7StorageD1Ev - *fill* 0x00000000400dee3b 0x1 + 0x00000000400df110 _ZN3nvs7StorageD2Ev + 0x00000000400df110 _ZN3nvs7StorageD1Ev + *fill* 0x00000000400df14b 0x1 .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE - 0x00000000400dee3c 0x99 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df14c 0x99 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x9d (size before relaxing) - 0x00000000400dee3c _ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE - *fill* 0x00000000400deed5 0x3 + 0x00000000400df14c _ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + *fill* 0x00000000400df1e5 0x3 .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE - 0x00000000400deed8 0x122 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df1e8 0x122 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x12a (size before relaxing) - 0x00000000400deed8 _ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE - *fill* 0x00000000400deffa 0x2 + 0x00000000400df1e8 _ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + *fill* 0x00000000400df30a 0x2 .text._ZN3nvs7Storage4initEjj - 0x00000000400deffc 0x190 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df30c 0x190 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x194 (size before relaxing) - 0x00000000400deffc _ZN3nvs7Storage4initEjj + 0x00000000400df30c _ZN3nvs7Storage4initEjj .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE - 0x00000000400df18c 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x00000000400df18c _ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE - *fill* 0x00000000400df1d7 0x1 + 0x00000000400df49c 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df49c _ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + *fill* 0x00000000400df4e7 0x1 .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE - 0x00000000400df1d8 0x23a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df4e8 0x23a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x24a (size before relaxing) - 0x00000000400df1d8 _ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE - *fill* 0x00000000400df412 0x2 + 0x00000000400df4e8 _ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + *fill* 0x00000000400df722 0x2 .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj - 0x00000000400df414 0xe1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df724 0xe1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0xe9 (size before relaxing) - 0x00000000400df414 _ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj - *fill* 0x00000000400df4f5 0x3 + 0x00000000400df724 _ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + *fill* 0x00000000400df805 0x3 .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE - 0x00000000400df4f8 0xf1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df808 0xf1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0xf9 (size before relaxing) - 0x00000000400df4f8 _ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE - *fill* 0x00000000400df5e9 0x3 + 0x00000000400df808 _ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + *fill* 0x00000000400df8f9 0x3 .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj - 0x00000000400df5ec 0x110 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df8fc 0x110 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x114 (size before relaxing) - 0x00000000400df5ec _ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x00000000400df8fc _ZN3nvs7Storage17readMultiPageBlobEhPKcPvj .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj - 0x00000000400df6fc 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dfa0c 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x70 (size before relaxing) - 0x00000000400df6fc _ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x00000000400dfa0c _ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj - 0x00000000400df764 0x27e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dfa74 0x27e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x2aa (size before relaxing) - 0x00000000400df764 _ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj - *fill* 0x00000000400df9e2 0x2 + 0x00000000400dfa74 _ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + *fill* 0x00000000400dfcf2 0x2 .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh - 0x00000000400df9e4 0x12c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dfcf4 0x12c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x130 (size before relaxing) - 0x00000000400df9e4 _ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x00000000400dfcf4 _ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc - 0x00000000400dfb10 0x94 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dfe20 0x94 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x9c (size before relaxing) - 0x00000000400dfb10 _ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x00000000400dfe20 _ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc .text._ZN3nvs7Storage14eraseNamespaceEh - 0x00000000400dfba4 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x00000000400dfba4 _ZN3nvs7Storage14eraseNamespaceEh - *fill* 0x00000000400dfbe5 0x3 + 0x00000000400dfeb4 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dfeb4 _ZN3nvs7Storage14eraseNamespaceEh + *fill* 0x00000000400dfef5 0x3 .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj - 0x00000000400dfbe8 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dfef8 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x68 (size before relaxing) - 0x00000000400dfbe8 _ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x00000000400dfef8 _ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj .text._ZN3nvs7Storage22calcEntriesInNamespaceEhRj - 0x00000000400dfc4c 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x00000000400dfc4c _ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x00000000400dff5c 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dff5c _ZN3nvs7Storage22calcEntriesInNamespaceEhRj .text._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t - 0x00000000400dfcac 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x00000000400dfcac _ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t - *fill* 0x00000000400dfce6 0x2 - .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t - 0x00000000400dfce8 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x7c (size before relaxing) - 0x00000000400dfce8 _ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t - .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc - 0x00000000400dfd5c 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x00000000400dfd5c _ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc - *fill* 0x00000000400dfd91 0x3 - .text._ZN3nvs19NVSPartitionManagerD0Ev - 0x00000000400dfd94 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x00000000400dfd94 _ZN3nvs19NVSPartitionManagerD0Ev - *fill* 0x00000000400dfda2 0x2 - .text._ZN3nvs19NVSPartitionManager12get_instanceEv - 0x00000000400dfda4 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x00000000400dfda4 _ZN3nvs19NVSPartitionManager12get_instanceEv - .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE - 0x00000000400dfddc 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x00000000400dfddc _ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE - *fill* 0x00000000400dfe12 0x2 - .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc - 0x00000000400dfe14 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x00000000400dfe14 _ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc - *fill* 0x00000000400dfe33 0x1 - .text._ZN3nvs19NVSPartitionManager11init_customEPKcjj - 0x00000000400dfe34 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0xbc (size before relaxing) - 0x00000000400dfe34 _ZN3nvs19NVSPartitionManager11init_customEPKcjj - .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc - 0x00000000400dfeec 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42 (size before relaxing) - 0x00000000400dfeec _ZN3nvs19NVSPartitionManager14init_partitionEPKc - *fill* 0x00000000400dff26 0x2 - .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE - 0x00000000400dff28 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x9c (size before relaxing) - 0x00000000400dff28 _ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE - .text._ZN3nvs8HashList5clearEv - 0x00000000400dffc0 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x00000000400dffc0 _ZN3nvs8HashList5clearEv + 0x00000000400dffbc 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dffbc _ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t *fill* 0x00000000400dfff6 0x2 + .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000400dfff8 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x7c (size before relaxing) + 0x00000000400dfff8 _ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000400e006c 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400e006c _ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + *fill* 0x00000000400e00a1 0x3 + .text._ZN3nvs19NVSPartitionManagerD0Ev + 0x00000000400e00a4 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400e00a4 _ZN3nvs19NVSPartitionManagerD0Ev + *fill* 0x00000000400e00b2 0x2 + .text._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x00000000400e00b4 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400e00b4 _ZN3nvs19NVSPartitionManager12get_instanceEv + .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x00000000400e00ec 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400e00ec _ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + *fill* 0x00000000400e0122 0x2 + .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x00000000400e0124 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400e0124 _ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + *fill* 0x00000000400e0143 0x1 + .text._ZN3nvs19NVSPartitionManager11init_customEPKcjj + 0x00000000400e0144 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xbc (size before relaxing) + 0x00000000400e0144 _ZN3nvs19NVSPartitionManager11init_customEPKcjj + .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x00000000400e01fc 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x42 (size before relaxing) + 0x00000000400e01fc _ZN3nvs19NVSPartitionManager14init_partitionEPKc + *fill* 0x00000000400e0236 0x2 + .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x00000000400e0238 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x9c (size before relaxing) + 0x00000000400e0238 _ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + .text._ZN3nvs8HashList5clearEv + 0x00000000400e02d0 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400e02d0 _ZN3nvs8HashList5clearEv + *fill* 0x00000000400e0306 0x2 .text._ZN3nvs8HashListD2Ev - 0x00000000400dfff8 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400e0308 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) 0xe (size before relaxing) - 0x00000000400dfff8 _ZN3nvs8HashListD2Ev - 0x00000000400dfff8 _ZN3nvs8HashListD1Ev - *fill* 0x00000000400e0002 0x2 + 0x00000000400e0308 _ZN3nvs8HashListD2Ev + 0x00000000400e0308 _ZN3nvs8HashListD1Ev + *fill* 0x00000000400e0312 0x2 .text._ZN3nvs8HashList6insertERKNS_4ItemEj - 0x00000000400e0004 0x81 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400e0314 0x81 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) 0x85 (size before relaxing) - 0x00000000400e0004 _ZN3nvs8HashList6insertERKNS_4ItemEj - *fill* 0x00000000400e0085 0x3 + 0x00000000400e0314 _ZN3nvs8HashList6insertERKNS_4ItemEj + *fill* 0x00000000400e0395 0x3 .text._ZN3nvs8HashList5eraseEjb - 0x00000000400e0088 0x92 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x00000000400e0088 _ZN3nvs8HashList5eraseEjb - *fill* 0x00000000400e011a 0x2 + 0x00000000400e0398 0x92 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400e0398 _ZN3nvs8HashList5eraseEjb + *fill* 0x00000000400e042a 0x2 .text._ZN3nvs8HashList4findEjRKNS_4ItemE - 0x00000000400e011c 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400e042c 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) 0x4c (size before relaxing) - 0x00000000400e011c _ZN3nvs8HashList4findEjRKNS_4ItemE + 0x00000000400e042c _ZN3nvs8HashList4findEjRKNS_4ItemE .text._ZN3nvs4Page6Header14calculateCrc32Ev - 0x00000000400e0164 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e0164 _ZN3nvs4Page6Header14calculateCrc32Ev + 0x00000000400e0474 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0474 _ZN3nvs4Page6Header14calculateCrc32Ev .text._ZN3nvs4Page20updateFirstUsedEntryEjj - 0x00000000400e0178 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e0178 _ZN3nvs4Page20updateFirstUsedEntryEjj + 0x00000000400e0488 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0488 _ZN3nvs4Page20updateFirstUsedEntryEjj .text._ZN3nvs4Page10initializeEv - 0x00000000400e01e8 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e04f8 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x78 (size before relaxing) - 0x00000000400e01e8 _ZN3nvs4Page10initializeEv + 0x00000000400e04f8 _ZN3nvs4Page10initializeEv .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE - 0x00000000400e025c 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e025c _ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x00000000400e056c 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e056c _ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE .text._ZN3nvs4Page10writeEntryERKNS_4ItemE - 0x00000000400e02e0 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e02e0 _ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x00000000400e05f0 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e05f0 _ZN3nvs4Page10writeEntryERKNS_4ItemE .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE - 0x00000000400e0344 0xba esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e0344 _ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE - *fill* 0x00000000400e03fe 0x2 + 0x00000000400e0654 0xba esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0654 _ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + *fill* 0x00000000400e070e 0x2 .text._ZN3nvs4Page14writeEntryDataEPKhj - 0x00000000400e0400 0xd8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0710 0xd8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0xe4 (size before relaxing) - 0x00000000400e0400 _ZN3nvs4Page14writeEntryDataEPKhj + 0x00000000400e0710 _ZN3nvs4Page14writeEntryDataEPKhj .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh - 0x00000000400e04d8 0x1f0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e07e8 0x1f0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x204 (size before relaxing) - 0x00000000400e04d8 _ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x00000000400e07e8 _ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE - 0x00000000400e06c8 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e06c8 _ZN3nvs4Page14alterPageStateENS0_9PageStateE + 0x00000000400e09d8 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e09d8 _ZN3nvs4Page14alterPageStateENS0_9PageStateE .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE - 0x00000000400e06e8 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e09f8 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x34 (size before relaxing) - 0x00000000400e06e8 _ZNK3nvs4Page9readEntryEjRNS_4ItemE + 0x00000000400e09f8 _ZNK3nvs4Page9readEntryEjRNS_4ItemE .text._ZN3nvs4Page17eraseEntryAndSpanEj - 0x00000000400e0718 0x14a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0a28 0x14a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x162 (size before relaxing) - 0x00000000400e0718 _ZN3nvs4Page17eraseEntryAndSpanEj - *fill* 0x00000000400e0862 0x2 + 0x00000000400e0a28 _ZN3nvs4Page17eraseEntryAndSpanEj + *fill* 0x00000000400e0b72 0x2 .text._ZN3nvs4Page9copyItemsERS0_ - 0x00000000400e0864 0xe6 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0b74 0xe6 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0xfa (size before relaxing) - 0x00000000400e0864 _ZN3nvs4Page9copyItemsERS0_ - *fill* 0x00000000400e094a 0x2 + 0x00000000400e0b74 _ZN3nvs4Page9copyItemsERS0_ + *fill* 0x00000000400e0c5a 0x2 .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE - 0x00000000400e094c 0x29d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0c5c 0x29d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x2a5 (size before relaxing) - 0x00000000400e094c _ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE - *fill* 0x00000000400e0be9 0x3 + 0x00000000400e0c5c _ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + *fill* 0x00000000400e0ef9 0x3 .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE - 0x00000000400e0bec 0x101 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0efc 0x101 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x109 (size before relaxing) - 0x00000000400e0bec _ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE - *fill* 0x00000000400e0ced 0x3 + 0x00000000400e0efc _ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + *fill* 0x00000000400e0ffd 0x3 .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE - 0x00000000400e0cf0 0xfd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1000 0xfd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x101 (size before relaxing) - 0x00000000400e0cf0 _ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE - *fill* 0x00000000400e0ded 0x3 + 0x00000000400e1000 _ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + *fill* 0x00000000400e10fd 0x3 .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE - 0x00000000400e0df0 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1100 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x38 (size before relaxing) - 0x00000000400e0df0 _ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000400e1100 _ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE .text._ZN3nvs4Page15mLoadEntryTableEv - 0x00000000400e0e24 0x460 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1134 0x460 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x47c (size before relaxing) - 0x00000000400e0e24 _ZN3nvs4Page15mLoadEntryTableEv + 0x00000000400e1134 _ZN3nvs4Page15mLoadEntryTableEv .text._ZN3nvs4Page4loadEj - 0x00000000400e1284 0x114 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1594 0x114 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x118 (size before relaxing) - 0x00000000400e1284 _ZN3nvs4Page4loadEj + 0x00000000400e1594 _ZN3nvs4Page4loadEj .text._ZNK3nvs4Page12getSeqNumberERj - 0x00000000400e1398 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e1398 _ZNK3nvs4Page12getSeqNumberERj - *fill* 0x00000000400e13c5 0x3 + 0x00000000400e16a8 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e16a8 _ZNK3nvs4Page12getSeqNumberERj + *fill* 0x00000000400e16d5 0x3 .text._ZN3nvs4Page12setSeqNumberEj - 0x00000000400e13c8 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e13c8 _ZN3nvs4Page12setSeqNumberEj - *fill* 0x00000000400e13dd 0x3 + 0x00000000400e16d8 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e16d8 _ZN3nvs4Page12setSeqNumberEj + *fill* 0x00000000400e16ed 0x3 .text._ZN3nvs4Page5eraseEv - 0x00000000400e13e0 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e13e0 _ZN3nvs4Page5eraseEv - *fill* 0x00000000400e1416 0x2 + 0x00000000400e16f0 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e16f0 _ZN3nvs4Page5eraseEv + *fill* 0x00000000400e1726 0x2 .text._ZN3nvs4Page11markFreeingEv - 0x00000000400e1418 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e1418 _ZN3nvs4Page11markFreeingEv - *fill* 0x00000000400e1445 0x3 + 0x00000000400e1728 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1728 _ZN3nvs4Page11markFreeingEv + *fill* 0x00000000400e1755 0x3 .text._ZN3nvs4Page8markFullEv - 0x00000000400e1448 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e1448 _ZN3nvs4Page8markFullEv - *fill* 0x00000000400e1466 0x2 + 0x00000000400e1758 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1758 _ZN3nvs4Page8markFullEv + *fill* 0x00000000400e1776 0x2 .text._ZNK3nvs4Page18getVarDataTailroomEv - 0x00000000400e1468 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x00000000400e1468 _ZNK3nvs4Page18getVarDataTailroomEv + 0x00000000400e1778 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1778 _ZNK3nvs4Page18getVarDataTailroomEv .text._ZN3nvs11PageManager12activatePageEv - 0x00000000400e14a0 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x00000000400e14a0 _ZN3nvs11PageManager12activatePageEv + 0x00000000400e17b0 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x00000000400e17b0 _ZN3nvs11PageManager12activatePageEv .text._ZN3nvs11PageManager14requestNewPageEv - 0x00000000400e1514 0xdc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x00000000400e1824 0xdc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) 0xf0 (size before relaxing) - 0x00000000400e1514 _ZN3nvs11PageManager14requestNewPageEv + 0x00000000400e1824 _ZN3nvs11PageManager14requestNewPageEv .text._ZN3nvs11PageManager4loadEjj - 0x00000000400e15f0 0x3be esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x00000000400e1900 0x3be esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) 0x3da (size before relaxing) - 0x00000000400e15f0 _ZN3nvs11PageManager4loadEjj - *fill* 0x00000000400e19ae 0x2 + 0x00000000400e1900 _ZN3nvs11PageManager4loadEjj + *fill* 0x00000000400e1cbe 0x2 .text._ZN3nvs15NVSHandleSimple6commitEv - 0x00000000400e19b0 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x00000000400e19b0 _ZN3nvs15NVSHandleSimple6commitEv - *fill* 0x00000000400e19c2 0x2 + 0x00000000400e1cc0 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1cc0 _ZN3nvs15NVSHandleSimple6commitEv + *fill* 0x00000000400e1cd2 0x2 .text._ZN3nvs15NVSHandleSimpleD2Ev - 0x00000000400e19c4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1cd4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x18 (size before relaxing) - 0x00000000400e19c4 _ZN3nvs15NVSHandleSimpleD2Ev - 0x00000000400e19c4 _ZN3nvs15NVSHandleSimpleD1Ev + 0x00000000400e1cd4 _ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000400e1cd4 _ZN3nvs15NVSHandleSimpleD1Ev .text._ZN3nvs15NVSHandleSimpleD0Ev - 0x00000000400e19d8 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1ce8 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x16 (size before relaxing) - 0x00000000400e19d8 _ZN3nvs15NVSHandleSimpleD0Ev - *fill* 0x00000000400e19ea 0x2 + 0x00000000400e1ce8 _ZN3nvs15NVSHandleSimpleD0Ev + *fill* 0x00000000400e1cfa 0x2 .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj - 0x00000000400e19ec 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x00000000400e19ec _ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj - *fill* 0x00000000400e1a21 0x3 + 0x00000000400e1cfc 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1cfc _ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + *fill* 0x00000000400e1d31 0x3 .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj - 0x00000000400e1a24 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x00000000400e1a24 _ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj - *fill* 0x00000000400e1a55 0x3 + 0x00000000400e1d34 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1d34 _ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + *fill* 0x00000000400e1d65 0x3 .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj - 0x00000000400e1a58 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x00000000400e1a58 _ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj - *fill* 0x00000000400e1a7e 0x2 + 0x00000000400e1d68 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1d68 _ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + *fill* 0x00000000400e1d8e 0x2 .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj - 0x00000000400e1a80 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1d90 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x26 (size before relaxing) - 0x00000000400e1a80 _ZN3nvs15NVSHandleSimple10get_stringEPKcPcj - *fill* 0x00000000400e1aa2 0x2 + 0x00000000400e1d90 _ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + *fill* 0x00000000400e1db2 0x2 .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj - 0x00000000400e1aa4 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1db4 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x26 (size before relaxing) - 0x00000000400e1aa4 _ZN3nvs15NVSHandleSimple8get_blobEPKcPvj - *fill* 0x00000000400e1ac6 0x2 + 0x00000000400e1db4 _ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + *fill* 0x00000000400e1dd6 0x2 .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ - 0x00000000400e1ac8 0x3d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x00000000400e1ac8 _ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ - *fill* 0x00000000400e1b05 0x3 + 0x00000000400e1dd8 0x3d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1dd8 _ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + *fill* 0x00000000400e1e15 0x3 .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj - 0x00000000400e1b08 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x00000000400e1b08 _ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj - *fill* 0x00000000400e1b2d 0x3 + 0x00000000400e1e18 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1e18 _ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + *fill* 0x00000000400e1e3d 0x3 .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc - 0x00000000400e1b30 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x00000000400e1b30 _ZN3nvs15NVSHandleSimple10erase_itemEPKc - *fill* 0x00000000400e1b5d 0x3 + 0x00000000400e1e40 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1e40 _ZN3nvs15NVSHandleSimple10erase_itemEPKc + *fill* 0x00000000400e1e6d 0x3 .text._ZN3nvs15NVSHandleSimple9erase_allEv - 0x00000000400e1b60 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x00000000400e1b60 _ZN3nvs15NVSHandleSimple9erase_allEv - *fill* 0x00000000400e1b89 0x3 + 0x00000000400e1e70 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1e70 _ZN3nvs15NVSHandleSimple9erase_allEv + *fill* 0x00000000400e1e99 0x3 .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj - 0x00000000400e1b8c 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - 0x00000000400e1b8c _ZN3nvs15NVSHandleSimple20get_used_entry_countERj - *fill* 0x00000000400e1bb6 0x2 + 0x00000000400e1e9c 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1e9c _ZN3nvs15NVSHandleSimple20get_used_entry_countERj + *fill* 0x00000000400e1ec6 0x2 .text._ZNK3nvs4Item14calculateCrc32Ev - 0x00000000400e1bb8 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - 0x00000000400e1bb8 _ZNK3nvs4Item14calculateCrc32Ev + 0x00000000400e1ec8 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000400e1ec8 _ZNK3nvs4Item14calculateCrc32Ev .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv - 0x00000000400e1be4 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - 0x00000000400e1be4 _ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x00000000400e1ef4 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000400e1ef4 _ZNK3nvs4Item26calculateCrc32WithoutValueEv .text._ZN3nvs4Item14calculateCrc32EPKhj - 0x00000000400e1c0c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - 0x00000000400e1c0c _ZN3nvs4Item14calculateCrc32EPKhj + 0x00000000400e1f1c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000400e1f1c _ZN3nvs4Item14calculateCrc32EPKhj .text._ZN3nvs15nvs_flash_writeEjPKvj - 0x00000000400e1c20 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + 0x00000000400e1f30 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) 0x14 (size before relaxing) - 0x00000000400e1c20 _ZN3nvs15nvs_flash_writeEjPKvj + 0x00000000400e1f30 _ZN3nvs15nvs_flash_writeEjPKvj .text._ZN3nvs14nvs_flash_readEjPvj - 0x00000000400e1c30 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + 0x00000000400e1f40 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) 0x14 (size before relaxing) - 0x00000000400e1c30 _ZN3nvs14nvs_flash_readEjPvj + 0x00000000400e1f40 _ZN3nvs14nvs_flash_readEjPvj .text.s_set_default_wifi_log_level - 0x00000000400e1c40 0x1b esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - *fill* 0x00000000400e1c5b 0x1 + 0x00000000400e1f50 0x1b esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x00000000400e1f6b 0x1 .text.esp_wifi_deinit - 0x00000000400e1c5c 0x29 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x00000000400e1f6c 0x29 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) 0x38 (size before relaxing) - 0x00000000400e1c5c esp_wifi_deinit - *fill* 0x00000000400e1c85 0x3 + 0x00000000400e1f6c esp_wifi_deinit + *fill* 0x00000000400e1f95 0x3 .text.esp_wifi_init - 0x00000000400e1c88 0x6e esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x00000000400e1f98 0x6e esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) 0x8a (size before relaxing) - 0x00000000400e1c88 esp_wifi_init - *fill* 0x00000000400e1cf6 0x2 + 0x00000000400e1f98 esp_wifi_init + *fill* 0x00000000400e2006 0x2 .text.wifi_default_action_sta_got_ip - 0x00000000400e1cf8 0x3b esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2008 0x3b esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x43 (size before relaxing) - *fill* 0x00000000400e1d33 0x1 + *fill* 0x00000000400e2043 0x1 .text.wifi_default_action_ap_stop - 0x00000000400e1d34 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2044 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) .text.wifi_default_action_sta_stop - 0x00000000400e1d4c 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e205c 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) .text.wifi_start - 0x00000000400e1d64 0x7c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2074 0x7c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x98 (size before relaxing) .text.wifi_default_action_ap_start - 0x00000000400e1de0 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e20f0 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) .text.wifi_default_action_sta_start - 0x00000000400e1df8 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2108 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) .text.wifi_default_action_sta_disconnected - 0x00000000400e1e10 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2120 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) .text.wifi_default_action_sta_connected - 0x00000000400e1e28 0x5b esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2138 0x5b esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x67 (size before relaxing) - *fill* 0x00000000400e1e83 0x1 + *fill* 0x00000000400e2193 0x1 .text.create_and_attach - 0x00000000400e1e84 0x32 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2194 0x32 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x3a (size before relaxing) - *fill* 0x00000000400e1eb6 0x2 + *fill* 0x00000000400e21c6 0x2 .text._esp_wifi_clear_default_wifi_handlers - 0x00000000400e1eb8 0x7e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x00000000400e1eb8 _esp_wifi_clear_default_wifi_handlers - *fill* 0x00000000400e1f36 0x2 + 0x00000000400e21c8 0x7e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e21c8 _esp_wifi_clear_default_wifi_handlers + *fill* 0x00000000400e2246 0x2 .text._esp_wifi_set_default_wifi_handlers - 0x00000000400e1f38 0xed esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x00000000400e1f38 _esp_wifi_set_default_wifi_handlers - *fill* 0x00000000400e2025 0x3 + 0x00000000400e2248 0xed esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2248 _esp_wifi_set_default_wifi_handlers + *fill* 0x00000000400e2335 0x3 .text.esp_wifi_set_default_wifi_sta_handlers - 0x00000000400e2028 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2338 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0xd (size before relaxing) - 0x00000000400e2028 esp_wifi_set_default_wifi_sta_handlers - *fill* 0x00000000400e2032 0x2 + 0x00000000400e2338 esp_wifi_set_default_wifi_sta_handlers + *fill* 0x00000000400e2342 0x2 .text.esp_wifi_set_default_wifi_ap_handlers - 0x00000000400e2034 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2344 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0xd (size before relaxing) - 0x00000000400e2034 esp_wifi_set_default_wifi_ap_handlers - *fill* 0x00000000400e203e 0x2 + 0x00000000400e2344 esp_wifi_set_default_wifi_ap_handlers + *fill* 0x00000000400e234e 0x2 .text.esp_netif_attach_wifi_station - 0x00000000400e2040 0x1e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x00000000400e2040 esp_netif_attach_wifi_station - *fill* 0x00000000400e205e 0x2 + 0x00000000400e2350 0x1e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2350 esp_netif_attach_wifi_station + *fill* 0x00000000400e236e 0x2 .text.esp_netif_attach_wifi_ap - 0x00000000400e2060 0x1e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - 0x00000000400e2060 esp_netif_attach_wifi_ap - *fill* 0x00000000400e207e 0x2 + 0x00000000400e2370 0x1e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2370 esp_netif_attach_wifi_ap + *fill* 0x00000000400e238e 0x2 .text.esp_netif_create_default_wifi_ap - 0x00000000400e2080 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e2390 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x42 (size before relaxing) - 0x00000000400e2080 esp_netif_create_default_wifi_ap - *fill* 0x00000000400e20b8 0x0 + 0x00000000400e2390 esp_netif_create_default_wifi_ap + *fill* 0x00000000400e23c8 0x0 .text.esp_netif_create_default_wifi_sta - 0x00000000400e20b8 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e23c8 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x42 (size before relaxing) - 0x00000000400e20b8 esp_netif_create_default_wifi_sta - *fill* 0x00000000400e20f0 0x0 + 0x00000000400e23c8 esp_netif_create_default_wifi_sta + *fill* 0x00000000400e2400 0x0 .text.wifi_sta_receive - 0x00000000400e20f0 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400e2400 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) .text.wifi_ap_receive - 0x00000000400e210c 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400e241c 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) .text.wifi_driver_start - 0x00000000400e2128 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400e2438 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) 0x20 (size before relaxing) .text.wifi_free - 0x00000000400e2144 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - 0xe (size before relaxing) - *fill* 0x00000000400e214e 0x2 + 0x00000000400e2454 0xe esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *fill* 0x00000000400e2462 0x2 .text.wifi_transmit - 0x00000000400e2150 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400e2464 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) .text.esp_wifi_create_if_driver - 0x00000000400e2164 0x31 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400e2478 0x31 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) 0x3d (size before relaxing) - 0x00000000400e2164 esp_wifi_create_if_driver - *fill* 0x00000000400e2195 0x3 + 0x00000000400e2478 esp_wifi_create_if_driver + *fill* 0x00000000400e24a9 0x3 .text.esp_wifi_get_if_mac - 0x00000000400e2198 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - 0x00000000400e2198 esp_wifi_get_if_mac - *fill* 0x00000000400e21a9 0x3 + 0x00000000400e24ac 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400e24ac esp_wifi_get_if_mac + *fill* 0x00000000400e24bd 0x3 .text.esp_wifi_register_if_rxcb - 0x00000000400e21ac 0x8e esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400e24c0 0x8e esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) 0xa6 (size before relaxing) - 0x00000000400e21ac esp_wifi_register_if_rxcb - *fill* 0x00000000400e223a 0x2 + 0x00000000400e24c0 esp_wifi_register_if_rxcb + *fill* 0x00000000400e254e 0x2 .text.queue_create_wrapper - 0x00000000400e223c 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e2550 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x14 (size before relaxing) .text.mutex_delete_wrapper - 0x00000000400e224c 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e2560 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0xe (size before relaxing) - *fill* 0x00000000400e2256 0x2 + *fill* 0x00000000400e256a 0x2 .text.wifi_thread_semphr_free - 0x00000000400e2258 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e256c 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0xf (size before relaxing) - *fill* 0x00000000400e2264 0x0 + *fill* 0x00000000400e2578 0x0 .text.semphr_delete_wrapper - 0x00000000400e2264 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e2578 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0xe (size before relaxing) - *fill* 0x00000000400e226e 0x2 + *fill* 0x00000000400e2582 0x2 .text.get_time_wrapper - 0x00000000400e2270 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e2584 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x10 (size before relaxing) .text.wifi_clock_disable_wrapper - 0x00000000400e227c 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e2590 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0xe (size before relaxing) - *fill* 0x00000000400e2286 0x2 + *fill* 0x00000000400e259a 0x2 .text.wifi_clock_enable_wrapper - 0x00000000400e2288 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e259c 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0xe (size before relaxing) - *fill* 0x00000000400e2292 0x2 + *fill* 0x00000000400e25a6 0x2 .text.wifi_reset_mac_wrapper - 0x00000000400e2294 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e25a8 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x2c (size before relaxing) .text.timer_setfn_wrapper - 0x00000000400e22bc 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e25d0 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x12 (size before relaxing) - *fill* 0x00000000400e22ca 0x2 + *fill* 0x00000000400e25de 0x2 .text.timer_done_wrapper - 0x00000000400e22cc 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e25e0 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0xe (size before relaxing) - *fill* 0x00000000400e22d6 0x2 + *fill* 0x00000000400e25ea 0x2 .text.esp_event_post_wrapper - 0x00000000400e22d8 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e25ec 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) .text.task_create_wrapper - 0x00000000400e2300 0x1e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400e231e 0x2 + 0x00000000400e2614 0x1e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e2632 0x2 .text.task_create_pinned_to_core_wrapper - 0x00000000400e2320 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e2634 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) .text.event_group_wait_bits_wrapper - 0x00000000400e2344 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e2658 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x28 (size before relaxing) .text.queue_recv_wrapper - 0x00000000400e2368 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400e238e 0x2 + 0x00000000400e267c 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e26a2 0x2 .text.semphr_take_wrapper - 0x00000000400e2390 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e26a4 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) .text.queue_send_to_front_wrapper - 0x00000000400e23b8 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400e23cd 0x3 + 0x00000000400e26cc 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e26e1 0x3 .text.queue_send_to_back_wrapper - 0x00000000400e23d0 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400e23e5 0x3 + 0x00000000400e26e4 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e26f9 0x3 .text.queue_send_wrapper - 0x00000000400e23e8 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400e240e 0x2 + 0x00000000400e26fc 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e2722 0x2 .text.semphr_give_wrapper - 0x00000000400e2410 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400e2425 0x3 + 0x00000000400e2724 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e2739 0x3 .text.recursive_mutex_create_wrapper - 0x00000000400e2428 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e273c 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x10 (size before relaxing) .text.mutex_create_wrapper - 0x00000000400e2434 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e2748 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x10 (size before relaxing) .text.semphr_create_wrapper - 0x00000000400e2440 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400e2451 0x3 + 0x00000000400e2754 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e2765 0x3 .text.wifi_thread_semphr_get_wrapper - 0x00000000400e2454 0x48 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e2768 0x48 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x58 (size before relaxing) .text.spin_lock_create_wrapper - 0x00000000400e249c 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e27b0 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) .text.set_isr_wrapper - 0x00000000400e24c0 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e27d4 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x12 (size before relaxing) - *fill* 0x00000000400e24ce 0x2 + *fill* 0x00000000400e27e2 0x2 .text.wifi_create_queue - 0x00000000400e24d0 0x20 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e27e4 0x20 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x24 (size before relaxing) - 0x00000000400e24d0 wifi_create_queue + 0x00000000400e27e4 wifi_create_queue .text.wifi_create_queue_wrapper - 0x00000000400e24f0 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x00000000400e2501 0x3 + 0x00000000400e2804 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e2815 0x3 .text.wifi_delete_queue - 0x00000000400e2504 0x13 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e2818 0x13 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x17 (size before relaxing) - 0x00000000400e2504 wifi_delete_queue - *fill* 0x00000000400e2517 0x1 + 0x00000000400e2818 wifi_delete_queue + *fill* 0x00000000400e282b 0x1 .text.wifi_delete_queue_wrapper - 0x00000000400e2518 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000400e282c 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0xe (size before relaxing) - *fill* 0x00000000400e2522 0x2 + *fill* 0x00000000400e2836 0x2 .text.load_cal_data_from_nvs_handle - 0x00000000400e2524 0x104 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2838 0x108 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x124 (size before relaxing) .text.store_cal_data_to_nvs_handle - 0x00000000400e2628 0xbe esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2940 0xc2 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0xe6 (size before relaxing) - *fill* 0x00000000400e26e6 0x2 + *fill* 0x00000000400e2a02 0x2 .text.esp_phy_rf_deinit - 0x00000000400e26e8 0xf7 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2a04 0xfb esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x10e (size before relaxing) - 0x00000000400e26e8 esp_phy_rf_deinit - *fill* 0x00000000400e27df 0x1 + 0x00000000400e2a04 esp_phy_rf_deinit + *fill* 0x00000000400e2aff 0x1 .text.esp_modem_sleep_enter - 0x00000000400e27e0 0x9d esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2b00 0x9d esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0xad (size before relaxing) - 0x00000000400e27e0 esp_modem_sleep_enter - *fill* 0x00000000400e287d 0x3 + 0x00000000400e2b00 esp_modem_sleep_enter + *fill* 0x00000000400e2b9d 0x3 .text.esp_modem_sleep_register - 0x00000000400e2880 0x84 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2ba0 0x84 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x90 (size before relaxing) - 0x00000000400e2880 esp_modem_sleep_register + 0x00000000400e2ba0 esp_modem_sleep_register .text.esp_phy_get_init_data - 0x00000000400e2904 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - 0x00000000400e2904 esp_phy_get_init_data + 0x00000000400e2c24 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2c24 esp_phy_get_init_data .text.esp_phy_load_cal_data_from_nvs - 0x00000000400e290c 0x44 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2c2c 0x44 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x50 (size before relaxing) - 0x00000000400e290c esp_phy_load_cal_data_from_nvs + 0x00000000400e2c2c esp_phy_load_cal_data_from_nvs .text.esp_phy_store_cal_data_to_nvs - 0x00000000400e2950 0x24 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2c70 0x24 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x2c (size before relaxing) - 0x00000000400e2950 esp_phy_store_cal_data_to_nvs + 0x00000000400e2c70 esp_phy_store_cal_data_to_nvs .text.esp_phy_rf_init - 0x00000000400e2974 0x110 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2c94 0x118 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x12f (size before relaxing) - 0x00000000400e2974 esp_phy_rf_init - *fill* 0x00000000400e2a84 0x0 + 0x00000000400e2c94 esp_phy_rf_init + *fill* 0x00000000400e2dac 0x0 .text.esp_modem_sleep_exit - 0x00000000400e2a84 0xa1 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2dac 0xa1 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0xb1 (size before relaxing) - 0x00000000400e2a84 esp_modem_sleep_exit - *fill* 0x00000000400e2b25 0x3 + 0x00000000400e2dac esp_modem_sleep_exit + *fill* 0x00000000400e2e4d 0x3 .text.esp_modem_sleep_deregister - 0x00000000400e2b28 0xae esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2e50 0xae esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0xc1 (size before relaxing) - 0x00000000400e2b28 esp_modem_sleep_deregister - *fill* 0x00000000400e2bd6 0x2 + 0x00000000400e2e50 esp_modem_sleep_deregister + *fill* 0x00000000400e2efe 0x2 .text.esp_phy_load_cal_and_init - 0x00000000400e2bd8 0xfa esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e2f00 0xfa esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x13a (size before relaxing) - 0x00000000400e2bd8 esp_phy_load_cal_and_init - *fill* 0x00000000400e2cd2 0x2 + 0x00000000400e2f00 esp_phy_load_cal_and_init + *fill* 0x00000000400e2ffa 0x2 .text.kill_oldest_dhcps_pool - 0x00000000400e2cd4 0x3a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e2ffc 0x3a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x3e (size before relaxing) - *fill* 0x00000000400e2d0e 0x2 + *fill* 0x00000000400e3036 0x2 .text.parse_options - 0x00000000400e2d10 0x99 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - *fill* 0x00000000400e2da9 0x3 + 0x00000000400e3038 0x99 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x00000000400e30d1 0x3 .text.create_msg - 0x00000000400e2dac 0xb1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - *fill* 0x00000000400e2e5d 0x3 + 0x00000000400e30d4 0xb1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x00000000400e3185 0x3 .text.add_offer_options - 0x00000000400e2e60 0x15f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e3188 0x15f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x163 (size before relaxing) - *fill* 0x00000000400e2fbf 0x1 + *fill* 0x00000000400e32e7 0x1 .text.dhcps_poll_set - 0x00000000400e2fc0 0xb2 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e32e8 0xb2 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0xbe (size before relaxing) - *fill* 0x00000000400e3072 0x2 + *fill* 0x00000000400e339a 0x2 .text.parse_msg - 0x00000000400e3074 0x1ca esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e339c 0x1ca esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x1ea (size before relaxing) - *fill* 0x00000000400e323e 0x2 + *fill* 0x00000000400e3566 0x2 .text.dhcps_pbuf_alloc - 0x00000000400e3240 0x1d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x00000000400e3240 dhcps_pbuf_alloc - *fill* 0x00000000400e325d 0x3 + 0x00000000400e3568 0x1d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e3568 dhcps_pbuf_alloc + *fill* 0x00000000400e3585 0x3 .text.send_offer - 0x00000000400e3260 0x8f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e3588 0x8f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x9b (size before relaxing) - *fill* 0x00000000400e32ef 0x1 + *fill* 0x00000000400e3617 0x1 .text.send_ack - 0x00000000400e32f0 0xa0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e3618 0xa0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0xab (size before relaxing) - *fill* 0x00000000400e3390 0x0 + *fill* 0x00000000400e36b8 0x0 .text.send_nak - 0x00000000400e3390 0x8b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e36b8 0x8b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x97 (size before relaxing) - *fill* 0x00000000400e341b 0x1 + *fill* 0x00000000400e3743 0x1 .text.handle_dhcp - 0x00000000400e341c 0xc6 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e3744 0xc6 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0xda (size before relaxing) - *fill* 0x00000000400e34e2 0x2 + *fill* 0x00000000400e380a 0x2 .text.dhcps_set_new_lease_cb - 0x00000000400e34e4 0xa esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x00000000400e34e4 dhcps_set_new_lease_cb - *fill* 0x00000000400e34ee 0x2 + 0x00000000400e380c 0xa esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e380c dhcps_set_new_lease_cb + *fill* 0x00000000400e3816 0x2 .text.dhcps_start - 0x00000000400e34f0 0x6b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e3818 0x6b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x77 (size before relaxing) - 0x00000000400e34f0 dhcps_start - *fill* 0x00000000400e355b 0x1 + 0x00000000400e3818 dhcps_start + *fill* 0x00000000400e3883 0x1 .text.dhcps_stop - 0x00000000400e355c 0x4f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e3884 0x4f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x57 (size before relaxing) - 0x00000000400e355c dhcps_stop - *fill* 0x00000000400e35ab 0x1 + 0x00000000400e3884 dhcps_stop + *fill* 0x00000000400e38d3 0x1 .text.dhcps_coarse_tmr - 0x00000000400e35ac 0x4c esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e38d4 0x4c esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x50 (size before relaxing) - 0x00000000400e35ac dhcps_coarse_tmr + 0x00000000400e38d4 dhcps_coarse_tmr .text.tcpip_timeouts_mbox_fetch - 0x00000000400e35f8 0x36 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400e3920 0x36 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x42 (size before relaxing) - *fill* 0x00000000400e362e 0x2 + *fill* 0x00000000400e3956 0x2 .text.tcpip_thread_handle_msg - 0x00000000400e3630 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400e3958 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) .text.tcpip_thread - 0x00000000400e36c0 0x36 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400e39e8 0x36 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x3d (size before relaxing) - *fill* 0x00000000400e36f6 0x2 + *fill* 0x00000000400e3a1e 0x2 .text.tcpip_inpkt - 0x00000000400e36f8 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400e3a20 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x5a (size before relaxing) - 0x00000000400e36f8 tcpip_inpkt - *fill* 0x00000000400e374a 0x2 + 0x00000000400e3a20 tcpip_inpkt + *fill* 0x00000000400e3a72 0x2 .text.tcpip_input - 0x00000000400e374c 0x2e esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400e3a74 0x2e esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x31 (size before relaxing) - 0x00000000400e374c tcpip_input - *fill* 0x00000000400e377a 0x2 + 0x00000000400e3a74 tcpip_input + *fill* 0x00000000400e3aa2 0x2 .text.tcpip_callback - 0x00000000400e377c 0x41 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400e3aa4 0x41 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x45 (size before relaxing) - 0x00000000400e377c tcpip_callback - *fill* 0x00000000400e37bd 0x3 + 0x00000000400e3aa4 tcpip_callback + *fill* 0x00000000400e3ae5 0x3 .text.tcpip_try_callback - 0x00000000400e37c0 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400e3ae8 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x5a (size before relaxing) - 0x00000000400e37c0 tcpip_try_callback - *fill* 0x00000000400e3812 0x2 + 0x00000000400e3ae8 tcpip_try_callback + *fill* 0x00000000400e3b3a 0x2 .text.tcpip_send_msg_wait_sem - 0x00000000400e3814 0x50 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400e3b3c 0x50 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x54 (size before relaxing) - 0x00000000400e3814 tcpip_send_msg_wait_sem + 0x00000000400e3b3c tcpip_send_msg_wait_sem .text.tcpip_init - 0x00000000400e3864 0x4b esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x00000000400e3b8c 0x4b esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x53 (size before relaxing) - 0x00000000400e3864 tcpip_init - *fill* 0x00000000400e38af 0x1 + 0x00000000400e3b8c tcpip_init + *fill* 0x00000000400e3bd7 0x1 .text.lwip_htonl - 0x00000000400e38b0 0x26 esp-idf/lwip/liblwip.a(def.c.obj) - 0x00000000400e38b0 lwip_htonl - *fill* 0x00000000400e38d6 0x2 + 0x00000000400e3bd8 0x26 esp-idf/lwip/liblwip.a(def.c.obj) + 0x00000000400e3bd8 lwip_htonl + *fill* 0x00000000400e3bfe 0x2 .text.dns_backupserver_available - 0x00000000400e38d8 0x8d esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x00000000400e3965 0x3 + 0x00000000400e3c00 0x8d esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x00000000400e3c8d 0x3 .text.dns_create_txid - 0x00000000400e3968 0x3e esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x00000000400e39a6 0x2 + 0x00000000400e3c90 0x3e esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x00000000400e3cce 0x2 .text.dns_call_found - 0x00000000400e39a8 0x1d7 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400e3cd0 0x1d7 esp-idf/lwip/liblwip.a(dns.c.obj) 0x1db (size before relaxing) - *fill* 0x00000000400e3b7f 0x1 + *fill* 0x00000000400e3ea7 0x1 .text.dns_send - 0x00000000400e3b80 0x2d5 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400e3ea8 0x2d5 esp-idf/lwip/liblwip.a(dns.c.obj) 0x2e5 (size before relaxing) - *fill* 0x00000000400e3e55 0x3 + *fill* 0x00000000400e417d 0x3 .text.dns_check_entry - 0x00000000400e3e58 0x2ea esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x00000000400e4142 0x2 + 0x00000000400e4180 0x2ea esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x00000000400e446a 0x2 .text.dns_check_entries - 0x00000000400e4144 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) - *fill* 0x00000000400e415e 0x2 + 0x00000000400e446c 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x00000000400e4486 0x2 .text.dns_setserver - 0x00000000400e4160 0x43 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x00000000400e4160 dns_setserver - *fill* 0x00000000400e41a3 0x1 + 0x00000000400e4488 0x43 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400e4488 dns_setserver + *fill* 0x00000000400e44cb 0x1 .text.dns_clear_servers - 0x00000000400e41a4 0x2e esp-idf/lwip/liblwip.a(dns.c.obj) - 0x00000000400e41a4 dns_clear_servers - *fill* 0x00000000400e41d2 0x2 - .text.dns_tmr 0x00000000400e41d4 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400e44cc 0x2e esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400e44cc dns_clear_servers + *fill* 0x00000000400e44fa 0x2 + .text.dns_tmr 0x00000000400e44fc 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) 0xb (size before relaxing) - 0x00000000400e41d4 dns_tmr - *fill* 0x00000000400e41dc 0x0 + 0x00000000400e44fc dns_tmr + *fill* 0x00000000400e4504 0x0 .text.lwip_init - 0x00000000400e41dc 0x29 esp-idf/lwip/liblwip.a(init.c.obj) + 0x00000000400e4504 0x29 esp-idf/lwip/liblwip.a(init.c.obj) 0x3b (size before relaxing) - 0x00000000400e41dc lwip_init - *fill* 0x00000000400e4205 0x3 + 0x00000000400e4504 lwip_init + *fill* 0x00000000400e452d 0x3 .text.ip_input - 0x00000000400e4208 0x31 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x00000000400e4530 0x31 esp-idf/lwip/liblwip.a(ip.c.obj) 0x39 (size before relaxing) - 0x00000000400e4208 ip_input - *fill* 0x00000000400e4239 0x3 + 0x00000000400e4530 ip_input + *fill* 0x00000000400e4561 0x3 .text.mem_malloc - 0x00000000400e423c 0x37 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x00000000400e4564 0x37 esp-idf/lwip/liblwip.a(mem.c.obj) 0x3f (size before relaxing) - 0x00000000400e423c mem_malloc - *fill* 0x00000000400e4273 0x1 + 0x00000000400e4564 mem_malloc + *fill* 0x00000000400e459b 0x1 .text.mem_free - 0x00000000400e4274 0x3b esp-idf/lwip/liblwip.a(mem.c.obj) + 0x00000000400e459c 0x3b esp-idf/lwip/liblwip.a(mem.c.obj) 0x3e (size before relaxing) - 0x00000000400e4274 mem_free - *fill* 0x00000000400e42af 0x1 + 0x00000000400e459c mem_free + *fill* 0x00000000400e45d7 0x1 .text.do_memp_malloc_pool - 0x00000000400e42b0 0x3f esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000400e45d8 0x3f esp-idf/lwip/liblwip.a(memp.c.obj) 0x4a (size before relaxing) - *fill* 0x00000000400e42ef 0x1 + *fill* 0x00000000400e4617 0x1 .text.do_memp_free_pool - 0x00000000400e42f0 0x28 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000400e4618 0x28 esp-idf/lwip/liblwip.a(memp.c.obj) 0x30 (size before relaxing) .text.memp_malloc - 0x00000000400e4318 0x2c esp-idf/lwip/liblwip.a(memp.c.obj) - 0x00000000400e4318 memp_malloc + 0x00000000400e4640 0x2c esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000400e4640 memp_malloc .text.memp_free - 0x00000000400e4344 0x2a esp-idf/lwip/liblwip.a(memp.c.obj) - 0x00000000400e4344 memp_free - *fill* 0x00000000400e436e 0x2 + 0x00000000400e466c 0x2a esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000400e466c memp_free + *fill* 0x00000000400e4696 0x2 .text.netif_loopif_init - 0x00000000400e4370 0x34 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4698 0x34 esp-idf/lwip/liblwip.a(netif.c.obj) .text.netif_do_ip_addr_changed - 0x00000000400e43a4 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e46cc 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) 0x24 (size before relaxing) .text.netif_issue_reports - 0x00000000400e43c0 0x4b esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e46e8 0x4b esp-idf/lwip/liblwip.a(netif.c.obj) 0x53 (size before relaxing) - *fill* 0x00000000400e440b 0x1 + *fill* 0x00000000400e4733 0x1 .text.netif_do_set_ipaddr - 0x00000000400e440c 0x91 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4734 0x91 esp-idf/lwip/liblwip.a(netif.c.obj) 0x95 (size before relaxing) - *fill* 0x00000000400e449d 0x3 + *fill* 0x00000000400e47c5 0x3 .text.netif_poll - 0x00000000400e44a0 0xc3 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e47c8 0xc3 esp-idf/lwip/liblwip.a(netif.c.obj) 0xd5 (size before relaxing) - 0x00000000400e44a0 netif_poll - *fill* 0x00000000400e4563 0x1 + 0x00000000400e47c8 netif_poll + *fill* 0x00000000400e488b 0x1 .text.netif_set_addr - 0x00000000400e4564 0x54 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x00000000400e4564 netif_set_addr + 0x00000000400e488c 0x54 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e488c netif_set_addr .text.netif_add - 0x00000000400e45b8 0x213 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e48e0 0x213 esp-idf/lwip/liblwip.a(netif.c.obj) 0x217 (size before relaxing) - 0x00000000400e45b8 netif_add - *fill* 0x00000000400e47cb 0x1 + 0x00000000400e48e0 netif_add + *fill* 0x00000000400e4af3 0x1 .text.netif_set_default - 0x00000000400e47cc 0xa esp-idf/lwip/liblwip.a(netif.c.obj) - 0x00000000400e47cc netif_set_default - *fill* 0x00000000400e47d6 0x2 + 0x00000000400e4af4 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4af4 netif_set_default + *fill* 0x00000000400e4afe 0x2 .text.netif_set_up - 0x00000000400e47d8 0x33 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x00000000400e47d8 netif_set_up - *fill* 0x00000000400e480b 0x1 + 0x00000000400e4b00 0x33 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4b00 netif_set_up + *fill* 0x00000000400e4b33 0x1 .text.netif_set_down - 0x00000000400e480c 0x34 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x00000000400e480c netif_set_down + 0x00000000400e4b34 0x34 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4b34 netif_set_down .text.netif_remove - 0x00000000400e4840 0x99 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4b68 0x99 esp-idf/lwip/liblwip.a(netif.c.obj) 0xa1 (size before relaxing) - 0x00000000400e4840 netif_remove - *fill* 0x00000000400e48d9 0x3 + 0x00000000400e4b68 netif_remove + *fill* 0x00000000400e4c01 0x3 .text.netif_set_link_up - 0x00000000400e48dc 0x38 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4c04 0x38 esp-idf/lwip/liblwip.a(netif.c.obj) 0x3c (size before relaxing) - 0x00000000400e48dc netif_set_link_up + 0x00000000400e4c04 netif_set_link_up .text.netif_init - 0x00000000400e4914 0x56 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4c3c 0x56 esp-idf/lwip/liblwip.a(netif.c.obj) 0x5e (size before relaxing) - 0x00000000400e4914 netif_init - *fill* 0x00000000400e496a 0x2 + 0x00000000400e4c3c netif_init + *fill* 0x00000000400e4c92 0x2 .text.netif_loop_output - 0x00000000400e496c 0xd4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4c94 0xd4 esp-idf/lwip/liblwip.a(netif.c.obj) 0xe0 (size before relaxing) - 0x00000000400e496c netif_loop_output + 0x00000000400e4c94 netif_loop_output .text.netif_loop_output_ipv6 - 0x00000000400e4a40 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x00000000400e4a52 0x2 - .text.netif_loop_output_ipv4 - 0x00000000400e4a54 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x00000000400e4a66 0x2 - .text.netif_ip6_addr_set_parts - 0x00000000400e4a68 0x106 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x10a (size before relaxing) - 0x00000000400e4a68 netif_ip6_addr_set_parts - *fill* 0x00000000400e4b6e 0x2 - .text.netif_ip6_addr_set - 0x00000000400e4b70 0x43 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x00000000400e4b70 netif_ip6_addr_set - *fill* 0x00000000400e4bb3 0x1 - .text.netif_ip6_addr_set_state - 0x00000000400e4bb4 0xab esp-idf/lwip/liblwip.a(netif.c.obj) - 0x00000000400e4bb4 netif_ip6_addr_set_state - *fill* 0x00000000400e4c5f 0x1 - .text.netif_get_ip6_addr_match - 0x00000000400e4c60 0xb4 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x00000000400e4c60 netif_get_ip6_addr_match - .text.netif_get_by_index - 0x00000000400e4d14 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x00000000400e4d14 netif_get_by_index - .text.netif_find - 0x00000000400e4d3c 0x3e esp-idf/lwip/liblwip.a(netif.c.obj) - 0x00000000400e4d3c netif_find + 0x00000000400e4d68 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) *fill* 0x00000000400e4d7a 0x2 + .text.netif_loop_output_ipv4 + 0x00000000400e4d7c 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x00000000400e4d8e 0x2 + .text.netif_ip6_addr_set_parts + 0x00000000400e4d90 0x106 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10a (size before relaxing) + 0x00000000400e4d90 netif_ip6_addr_set_parts + *fill* 0x00000000400e4e96 0x2 + .text.netif_ip6_addr_set + 0x00000000400e4e98 0x43 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4e98 netif_ip6_addr_set + *fill* 0x00000000400e4edb 0x1 + .text.netif_ip6_addr_set_state + 0x00000000400e4edc 0xab esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4edc netif_ip6_addr_set_state + *fill* 0x00000000400e4f87 0x1 + .text.netif_get_ip6_addr_match + 0x00000000400e4f88 0xb4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4f88 netif_get_ip6_addr_match + .text.netif_get_by_index + 0x00000000400e503c 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e503c netif_get_by_index + .text.netif_find + 0x00000000400e5064 0x3e esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e5064 netif_find + *fill* 0x00000000400e50a2 0x2 .text.pbuf_add_header_impl - 0x00000000400e4d7c 0x84 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e50a4 0x84 esp-idf/lwip/liblwip.a(pbuf.c.obj) .text.pbuf_pool_is_empty - 0x00000000400e4e00 0x3f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5128 0x3f esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x4b (size before relaxing) - *fill* 0x00000000400e4e3f 0x1 + *fill* 0x00000000400e5167 0x1 .text.pbuf_free_ooseq - 0x00000000400e4e40 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5168 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x3b (size before relaxing) - *fill* 0x00000000400e4e73 0x1 + *fill* 0x00000000400e519b 0x1 .text.pbuf_free_ooseq_callback - 0x00000000400e4e74 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e519c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0xb (size before relaxing) - *fill* 0x00000000400e4e7c 0x0 + *fill* 0x00000000400e51a4 0x0 .text.pbuf_alloc_reference - 0x00000000400e4e7c 0x52 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x00000000400e4e7c pbuf_alloc_reference - *fill* 0x00000000400e4ece 0x2 + 0x00000000400e51a4 0x52 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e51a4 pbuf_alloc_reference + *fill* 0x00000000400e51f6 0x2 .text.pbuf_add_header - 0x00000000400e4ed0 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e51f8 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x14 (size before relaxing) - 0x00000000400e4ed0 pbuf_add_header + 0x00000000400e51f8 pbuf_add_header .text.pbuf_add_header_force - 0x00000000400e4ee0 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5208 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x14 (size before relaxing) - 0x00000000400e4ee0 pbuf_add_header_force + 0x00000000400e5208 pbuf_add_header_force .text.pbuf_remove_header - 0x00000000400e4ef0 0x64 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x00000000400e4ef0 pbuf_remove_header + 0x00000000400e5218 0x64 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5218 pbuf_remove_header .text.pbuf_header_impl - 0x00000000400e4f54 0x22 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x00000000400e4f76 0x2 + 0x00000000400e527c 0x22 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x00000000400e529e 0x2 .text.pbuf_header_force - 0x00000000400e4f78 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x00000000400e4f78 pbuf_header_force + 0x00000000400e52a0 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e52a0 pbuf_header_force .text.pbuf_free - 0x00000000400e4f8c 0xd1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e52b4 0xd1 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0xe1 (size before relaxing) - 0x00000000400e4f8c pbuf_free - *fill* 0x00000000400e505d 0x3 + 0x00000000400e52b4 pbuf_free + *fill* 0x00000000400e5385 0x3 .text.pbuf_alloc - 0x00000000400e5060 0x160 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5388 0x160 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x16c (size before relaxing) - 0x00000000400e5060 pbuf_alloc + 0x00000000400e5388 pbuf_alloc .text.pbuf_realloc - 0x00000000400e51c0 0x9b esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e54e8 0x9b esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x9e (size before relaxing) - 0x00000000400e51c0 pbuf_realloc - *fill* 0x00000000400e525b 0x1 + 0x00000000400e54e8 pbuf_realloc + *fill* 0x00000000400e5583 0x1 .text.pbuf_free_header - 0x00000000400e525c 0x46 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5584 0x46 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x4a (size before relaxing) - 0x00000000400e525c pbuf_free_header - *fill* 0x00000000400e52a2 0x2 + 0x00000000400e5584 pbuf_free_header + *fill* 0x00000000400e55ca 0x2 .text.pbuf_ref - 0x00000000400e52a4 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e55cc 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x32 (size before relaxing) - 0x00000000400e52a4 pbuf_ref - *fill* 0x00000000400e52d2 0x2 + 0x00000000400e55cc pbuf_ref + *fill* 0x00000000400e55fa 0x2 .text.pbuf_cat - 0x00000000400e52d4 0x61 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x00000000400e52d4 pbuf_cat - *fill* 0x00000000400e5335 0x3 + 0x00000000400e55fc 0x61 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e55fc pbuf_cat + *fill* 0x00000000400e565d 0x3 .text.pbuf_chain - 0x00000000400e5338 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5660 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x17 (size before relaxing) - 0x00000000400e5338 pbuf_chain - *fill* 0x00000000400e534b 0x1 + 0x00000000400e5660 pbuf_chain + *fill* 0x00000000400e5673 0x1 .text.pbuf_copy - 0x00000000400e534c 0x107 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x00000000400e534c pbuf_copy - *fill* 0x00000000400e5453 0x1 + 0x00000000400e5674 0x107 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5674 pbuf_copy + *fill* 0x00000000400e577b 0x1 .text.pbuf_copy_partial - 0x00000000400e5454 0x87 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x00000000400e5454 pbuf_copy_partial - *fill* 0x00000000400e54db 0x1 + 0x00000000400e577c 0x87 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e577c pbuf_copy_partial + *fill* 0x00000000400e5803 0x1 .text.pbuf_skip - 0x00000000400e54dc 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x00000000400e54dc pbuf_skip + 0x00000000400e5804 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5804 pbuf_skip .text.pbuf_take - 0x00000000400e54f0 0x94 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x00000000400e54f0 pbuf_take + 0x00000000400e5818 0x94 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5818 pbuf_take .text.pbuf_take_at - 0x00000000400e5584 0x7e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e58ac 0x7e esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x86 (size before relaxing) - 0x00000000400e5584 pbuf_take_at - *fill* 0x00000000400e5602 0x2 + 0x00000000400e58ac pbuf_take_at + *fill* 0x00000000400e592a 0x2 .text.pbuf_clone - 0x00000000400e5604 0x32 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e592c 0x32 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x36 (size before relaxing) - 0x00000000400e5604 pbuf_clone - *fill* 0x00000000400e5636 0x2 + 0x00000000400e592c pbuf_clone + *fill* 0x00000000400e595e 0x2 .text.pbuf_try_get_at - 0x00000000400e5638 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x00000000400e5638 pbuf_try_get_at - *fill* 0x00000000400e5666 0x2 + 0x00000000400e5960 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5960 pbuf_try_get_at + *fill* 0x00000000400e598e 0x2 .text.pbuf_get_at - 0x00000000400e5668 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5990 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x1c (size before relaxing) - 0x00000000400e5668 pbuf_get_at + 0x00000000400e5990 pbuf_get_at .text.pbuf_put_at - 0x00000000400e5680 0x24 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e59a8 0x24 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x28 (size before relaxing) - 0x00000000400e5680 pbuf_put_at + 0x00000000400e59a8 pbuf_put_at .text.raw_input_local_match - 0x00000000400e56a4 0x12e esp-idf/lwip/liblwip.a(raw.c.obj) - *fill* 0x00000000400e57d2 0x2 + 0x00000000400e59cc 0x12e esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x00000000400e5afa 0x2 .text.raw_input - 0x00000000400e57d4 0x125 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x00000000400e57d4 raw_input - *fill* 0x00000000400e58f9 0x3 + 0x00000000400e5afc 0x125 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e5afc raw_input + *fill* 0x00000000400e5c21 0x3 .text.raw_bind - 0x00000000400e58fc 0x144 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x00000000400e58fc raw_bind + 0x00000000400e5c24 0x144 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e5c24 raw_bind .text.raw_sendto_if_src - 0x00000000400e5a40 0x25e esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e5d68 0x25e esp-idf/lwip/liblwip.a(raw.c.obj) 0x276 (size before relaxing) - 0x00000000400e5a40 raw_sendto_if_src - *fill* 0x00000000400e5c9e 0x2 + 0x00000000400e5d68 raw_sendto_if_src + *fill* 0x00000000400e5fc6 0x2 .text.raw_sendto - 0x00000000400e5ca0 0x169 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x00000000400e5ca0 raw_sendto - *fill* 0x00000000400e5e09 0x3 + 0x00000000400e5fc8 0x169 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e5fc8 raw_sendto + *fill* 0x00000000400e6131 0x3 .text.raw_send - 0x00000000400e5e0c 0x15 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x00000000400e5e0c raw_send - *fill* 0x00000000400e5e21 0x3 + 0x00000000400e6134 0x15 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e6134 raw_send + *fill* 0x00000000400e6149 0x3 .text.raw_remove - 0x00000000400e5e24 0x36 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e614c 0x36 esp-idf/lwip/liblwip.a(raw.c.obj) 0x3a (size before relaxing) - 0x00000000400e5e24 raw_remove - *fill* 0x00000000400e5e5a 0x2 - .text.raw_new 0x00000000400e5e5c 0x32 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x00000000400e5e5c raw_new - *fill* 0x00000000400e5e8e 0x2 + 0x00000000400e614c raw_remove + *fill* 0x00000000400e6182 0x2 + .text.raw_new 0x00000000400e6184 0x32 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e6184 raw_new + *fill* 0x00000000400e61b6 0x2 .text.raw_new_ip_type - 0x00000000400e5e90 0x19 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e61b8 0x19 esp-idf/lwip/liblwip.a(raw.c.obj) 0x1c (size before relaxing) - 0x00000000400e5e90 raw_new_ip_type - *fill* 0x00000000400e5ea9 0x3 + 0x00000000400e61b8 raw_new_ip_type + *fill* 0x00000000400e61d1 0x3 .text.raw_netif_ip_addr_changed - 0x00000000400e5eac 0x143 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x00000000400e5eac raw_netif_ip_addr_changed - *fill* 0x00000000400e5fef 0x1 + 0x00000000400e61d4 0x143 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e61d4 raw_netif_ip_addr_changed + *fill* 0x00000000400e6317 0x1 .text.tcp_new_port - 0x00000000400e5ff0 0x6f esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x00000000400e605f 0x1 + 0x00000000400e6318 0x6f esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e6387 0x1 .text.tcp_remove_listener - 0x00000000400e6060 0x2b esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x00000000400e608b 0x1 + 0x00000000400e6388 0x2b esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e63b3 0x1 .text.tcp_listen_closed - 0x00000000400e608c 0x4c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e63b4 0x4c esp-idf/lwip/liblwip.a(tcp.c.obj) 0x50 (size before relaxing) .text.tcp_free_listen - 0x00000000400e60d8 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x00000000400e60fe 0x2 + 0x00000000400e6400 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e6426 0x2 .text.tcp_init - 0x00000000400e6100 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6428 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x17 (size before relaxing) - 0x00000000400e6100 tcp_init - *fill* 0x00000000400e6114 0x0 + 0x00000000400e6428 tcp_init + *fill* 0x00000000400e643c 0x0 .text.tcp_free - 0x00000000400e6114 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e6114 tcp_free - *fill* 0x00000000400e613a 0x2 + 0x00000000400e643c 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e643c tcp_free + *fill* 0x00000000400e6462 0x2 .text.tcp_backlog_delayed - 0x00000000400e613c 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e613c tcp_backlog_delayed - *fill* 0x00000000400e618f 0x1 + 0x00000000400e6464 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6464 tcp_backlog_delayed + *fill* 0x00000000400e64b7 0x1 .text.tcp_backlog_accepted - 0x00000000400e6190 0x4d esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e6190 tcp_backlog_accepted - *fill* 0x00000000400e61dd 0x3 + 0x00000000400e64b8 0x4d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e64b8 tcp_backlog_accepted + *fill* 0x00000000400e6505 0x3 .text.tcp_close_shutdown_fin - 0x00000000400e61e0 0x88 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6508 0x88 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x90 (size before relaxing) .text.tcp_handle_closepend - 0x00000000400e6268 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x00000000400e6291 0x3 + 0x00000000400e6590 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e65b9 0x3 .text.tcp_bind - 0x00000000400e6294 0x369 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e65bc 0x369 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x36d (size before relaxing) - 0x00000000400e6294 tcp_bind - *fill* 0x00000000400e65fd 0x3 + 0x00000000400e65bc tcp_bind + *fill* 0x00000000400e6925 0x3 .text.tcp_listen_with_backlog_and_err - 0x00000000400e6600 0x1b4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6928 0x1b4 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x1b8 (size before relaxing) - 0x00000000400e6600 tcp_listen_with_backlog_and_err + 0x00000000400e6928 tcp_listen_with_backlog_and_err .text.tcp_update_rcv_ann_wnd - 0x00000000400e67b4 0x70 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e67b4 tcp_update_rcv_ann_wnd + 0x00000000400e6adc 0x70 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6adc tcp_update_rcv_ann_wnd .text.tcp_recved - 0x00000000400e6824 0x6b esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6b4c 0x6b esp-idf/lwip/liblwip.a(tcp.c.obj) 0x6f (size before relaxing) - 0x00000000400e6824 tcp_recved - *fill* 0x00000000400e688f 0x1 + 0x00000000400e6b4c tcp_recved + *fill* 0x00000000400e6bb7 0x1 .text.tcp_seg_free - 0x00000000400e6890 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6bb8 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x1c (size before relaxing) - 0x00000000400e6890 tcp_seg_free + 0x00000000400e6bb8 tcp_seg_free .text.tcp_segs_free - 0x00000000400e68a8 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e68a8 tcp_segs_free - *fill* 0x00000000400e68bf 0x1 + 0x00000000400e6bd0 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6bd0 tcp_segs_free + *fill* 0x00000000400e6be7 0x1 .text.tcp_seg_copy - 0x00000000400e68c0 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6be8 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x3a (size before relaxing) - 0x00000000400e68c0 tcp_seg_copy - *fill* 0x00000000400e68f6 0x2 + 0x00000000400e6be8 tcp_seg_copy + *fill* 0x00000000400e6c1e 0x2 .text.tcp_pcb_num_cal - 0x00000000400e68f8 0xcb esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e68f8 tcp_pcb_num_cal - *fill* 0x00000000400e69c3 0x1 + 0x00000000400e6c20 0xcb esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6c20 tcp_pcb_num_cal + *fill* 0x00000000400e6ceb 0x1 .text.tcp_recv - 0x00000000400e69c4 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e69c4 tcp_recv - *fill* 0x00000000400e69e6 0x2 + 0x00000000400e6cec 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6cec tcp_recv + *fill* 0x00000000400e6d0e 0x2 .text.tcp_sent - 0x00000000400e69e8 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e69e8 tcp_sent - *fill* 0x00000000400e6a0a 0x2 - .text.tcp_err 0x00000000400e6a0c 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e6a0c tcp_err - *fill* 0x00000000400e6a2e 0x2 + 0x00000000400e6d10 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6d10 tcp_sent + *fill* 0x00000000400e6d32 0x2 + .text.tcp_err 0x00000000400e6d34 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6d34 tcp_err + *fill* 0x00000000400e6d56 0x2 .text.tcp_poll - 0x00000000400e6a30 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e6a30 tcp_poll + 0x00000000400e6d58 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6d58 tcp_poll .text.tcp_next_iss - 0x00000000400e6a64 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e6a64 tcp_next_iss + 0x00000000400e6d8c 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6d8c tcp_next_iss .text.tcp_eff_send_mss_netif - 0x00000000400e6a8c 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6db4 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x57 (size before relaxing) - 0x00000000400e6a8c tcp_eff_send_mss_netif - *fill* 0x00000000400e6adf 0x1 + 0x00000000400e6db4 tcp_eff_send_mss_netif + *fill* 0x00000000400e6e07 0x1 .text.tcp_free_ooseq - 0x00000000400e6ae0 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6e08 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x16 (size before relaxing) - 0x00000000400e6ae0 tcp_free_ooseq - *fill* 0x00000000400e6af2 0x2 + 0x00000000400e6e08 tcp_free_ooseq + *fill* 0x00000000400e6e1a 0x2 .text.tcp_pcb_purge - 0x00000000400e6af4 0x6a esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6e1c 0x6a esp-idf/lwip/liblwip.a(tcp.c.obj) 0x72 (size before relaxing) - 0x00000000400e6af4 tcp_pcb_purge - *fill* 0x00000000400e6b5e 0x2 + 0x00000000400e6e1c tcp_pcb_purge + *fill* 0x00000000400e6e86 0x2 .text.tcp_pcb_remove - 0x00000000400e6b60 0xd1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6e88 0xd1 esp-idf/lwip/liblwip.a(tcp.c.obj) 0xd9 (size before relaxing) - 0x00000000400e6b60 tcp_pcb_remove - *fill* 0x00000000400e6c31 0x3 + 0x00000000400e6e88 tcp_pcb_remove + *fill* 0x00000000400e6f59 0x3 .text.tcp_abandon - 0x00000000400e6c34 0xe2 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6f5c 0xe2 esp-idf/lwip/liblwip.a(tcp.c.obj) 0xf6 (size before relaxing) - 0x00000000400e6c34 tcp_abandon - *fill* 0x00000000400e6d16 0x2 + 0x00000000400e6f5c tcp_abandon + *fill* 0x00000000400e703e 0x2 .text.tcp_abort - 0x00000000400e6d18 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e6d18 tcp_abort - *fill* 0x00000000400e6d27 0x1 + 0x00000000400e7040 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7040 tcp_abort + *fill* 0x00000000400e704f 0x1 .text.tcp_accept_null - 0x00000000400e6d28 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7050 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x25 (size before relaxing) - *fill* 0x00000000400e6d4a 0x2 + *fill* 0x00000000400e7072 0x2 .text.tcp_kill_timewait - 0x00000000400e6d4c 0x2f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7074 0x2f esp-idf/lwip/liblwip.a(tcp.c.obj) 0x32 (size before relaxing) - *fill* 0x00000000400e6d7b 0x1 + *fill* 0x00000000400e70a3 0x1 .text.tcp_kill_prio - 0x00000000400e6d7c 0x58 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e70a4 0x58 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x5b (size before relaxing) - *fill* 0x00000000400e6dd4 0x0 + *fill* 0x00000000400e70fc 0x0 .text.tcp_netif_ip_addr_changed_pcblist - 0x00000000400e6dd4 0x95 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x00000000400e6e69 0x3 + 0x00000000400e70fc 0x95 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e7191 0x3 .text.tcp_netif_ip_addr_changed - 0x00000000400e6e6c 0x158 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7194 0x158 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x15c (size before relaxing) - 0x00000000400e6e6c tcp_netif_ip_addr_changed + 0x00000000400e7194 tcp_netif_ip_addr_changed .text.tcp_kill_state - 0x00000000400e6fc4 0x52 esp-idf/lwip/liblwip.a(tcp.c.obj) - *fill* 0x00000000400e7016 0x2 + 0x00000000400e72ec 0x52 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e733e 0x2 .text.tcp_alloc - 0x00000000400e7018 0x122 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7340 0x122 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x152 (size before relaxing) - 0x00000000400e7018 tcp_alloc - *fill* 0x00000000400e713a 0x2 + 0x00000000400e7340 tcp_alloc + *fill* 0x00000000400e7462 0x2 .text.tcp_new_ip_type - 0x00000000400e713c 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e713c tcp_new_ip_type - *fill* 0x00000000400e7156 0x2 + 0x00000000400e7464 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7464 tcp_new_ip_type + *fill* 0x00000000400e747e 0x2 .text.tcp_close_shutdown - 0x00000000400e7158 0x157 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7480 0x157 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x16a (size before relaxing) - *fill* 0x00000000400e72af 0x1 + *fill* 0x00000000400e75d7 0x1 .text.tcp_close - 0x00000000400e72b0 0x35 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e72b0 tcp_close - *fill* 0x00000000400e72e5 0x3 + 0x00000000400e75d8 0x35 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e75d8 tcp_close + *fill* 0x00000000400e760d 0x3 .text.tcp_recv_null - 0x00000000400e72e8 0x42 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7610 0x42 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x46 (size before relaxing) - 0x00000000400e72e8 tcp_recv_null - *fill* 0x00000000400e732a 0x2 + 0x00000000400e7610 tcp_recv_null + *fill* 0x00000000400e7652 0x2 .text.tcp_process_refused_data - 0x00000000400e732c 0x92 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e732c tcp_process_refused_data - *fill* 0x00000000400e73be 0x2 + 0x00000000400e7654 0x92 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7654 tcp_process_refused_data + *fill* 0x00000000400e76e6 0x2 .text.tcp_fasttmr - 0x00000000400e73c0 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x00000000400e73c0 tcp_fasttmr - *fill* 0x00000000400e7447 0x1 + 0x00000000400e76e8 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e76e8 tcp_fasttmr + *fill* 0x00000000400e776f 0x1 .text.tcp_shutdown - 0x00000000400e7448 0x7f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7770 0x7f esp-idf/lwip/liblwip.a(tcp.c.obj) 0x83 (size before relaxing) - 0x00000000400e7448 tcp_shutdown - *fill* 0x00000000400e74c7 0x1 + 0x00000000400e7770 tcp_shutdown + *fill* 0x00000000400e77ef 0x1 .text.tcp_slowtmr - 0x00000000400e74c8 0x49d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e77f0 0x49d esp-idf/lwip/liblwip.a(tcp.c.obj) 0x4b5 (size before relaxing) - 0x00000000400e74c8 tcp_slowtmr - *fill* 0x00000000400e7965 0x3 - .text.tcp_tmr 0x00000000400e7968 0x1c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e77f0 tcp_slowtmr + *fill* 0x00000000400e7c8d 0x3 + .text.tcp_tmr 0x00000000400e7c90 0x1c esp-idf/lwip/liblwip.a(tcp.c.obj) 0x22 (size before relaxing) - 0x00000000400e7968 tcp_tmr - *fill* 0x00000000400e7984 0x0 + 0x00000000400e7c90 tcp_tmr + *fill* 0x00000000400e7cac 0x0 .text.tcp_get_next_optbyte - 0x00000000400e7984 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e7cac 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .text.tcp_parseopt - 0x00000000400e79c4 0xa8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e7cec 0xa8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0xb4 (size before relaxing) .text.tcp_input_delayed_close - 0x00000000400e7a6c 0x4d esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e7d94 0x4d esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x51 (size before relaxing) - *fill* 0x00000000400e7ab9 0x3 + *fill* 0x00000000400e7de1 0x3 .text.tcp_timewait_input - 0x00000000400e7abc 0xa6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e7de4 0xa6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0xaa (size before relaxing) - *fill* 0x00000000400e7b62 0x2 + *fill* 0x00000000400e7e8a 0x2 .text.tcp_listen_input - 0x00000000400e7b64 0x1fb esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e7e8c 0x1fb esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x21e (size before relaxing) - *fill* 0x00000000400e7d5f 0x1 + *fill* 0x00000000400e8087 0x1 .text.tcp_free_acked_segments - 0x00000000400e7d60 0xdc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e8088 0xdc esp-idf/lwip/liblwip.a(tcp_in.c.obj) .text.tcp_oos_insert_segment - 0x00000000400e7e3c 0xfc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e8164 0xfc esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x104 (size before relaxing) .text.tcp_receive - 0x00000000400e7f38 0xbe6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e8260 0xbe6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0xc2a (size before relaxing) - *fill* 0x00000000400e8b1e 0x2 + *fill* 0x00000000400e8e46 0x2 .text.tcp_process - 0x00000000400e8b20 0x61e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e8e48 0x61e esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x63a (size before relaxing) - *fill* 0x00000000400e913e 0x2 + *fill* 0x00000000400e9466 0x2 .text.tcp_input - 0x00000000400e9140 0x954 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e9468 0x954 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x997 (size before relaxing) - 0x00000000400e9140 tcp_input - *fill* 0x00000000400e9a94 0x0 + 0x00000000400e9468 tcp_input + *fill* 0x00000000400e9dbc 0x0 .text.tcp_trigger_input_pcb_close - 0x00000000400e9a94 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - 0x00000000400e9a94 tcp_trigger_input_pcb_close - *fill* 0x00000000400e9aa7 0x1 + 0x00000000400e9dbc 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e9dbc tcp_trigger_input_pcb_close + *fill* 0x00000000400e9dcf 0x1 .text.tcp_write_checks - 0x00000000400e9aa8 0xc0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400e9dd0 0xc0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .text.tcp_output_segment_busy - 0x00000000400e9b68 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x00000000400e9b91 0x3 + 0x00000000400e9e90 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x00000000400e9eb9 0x3 .text.tcp_output_fill_options - 0x00000000400e9b94 0x42 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - *fill* 0x00000000400e9bd6 0x2 + 0x00000000400e9ebc 0x42 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x00000000400e9efe 0x2 .text.tcp_pbuf_prealloc - 0x00000000400e9bd8 0x64 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400e9f00 0x64 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .text.tcp_create_segment - 0x00000000400e9c3c 0x10b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400e9f64 0x10b esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x117 (size before relaxing) - *fill* 0x00000000400e9d47 0x1 + *fill* 0x00000000400ea06f 0x1 .text.tcp_output_alloc_header_common - 0x00000000400e9d48 0xd8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400ea070 0xd8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0xe0 (size before relaxing) .text.tcp_output_alloc_header - 0x00000000400e9e20 0x44 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400ea148 0x44 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x48 (size before relaxing) .text.tcp_route - 0x00000000400e9e64 0x3c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400ea18c 0x3c esp-idf/lwip/liblwip.a(tcp_out.c.obj) .text.tcp_output_segment - 0x00000000400e9ea0 0x19c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400ea1c8 0x19c esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x1b0 (size before relaxing) .text.tcp_output_control_segment - 0x00000000400ea03c 0x93 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400ea364 0x93 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x9a (size before relaxing) - *fill* 0x00000000400ea0cf 0x1 + *fill* 0x00000000400ea3f7 0x1 .text.tcp_write - 0x00000000400ea0d0 0x362 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400ea3f8 0x362 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x36e (size before relaxing) - 0x00000000400ea0d0 tcp_write - *fill* 0x00000000400ea432 0x2 + 0x00000000400ea3f8 tcp_write + *fill* 0x00000000400ea75a 0x2 .text.tcp_split_unsent_seg - 0x00000000400ea434 0x1d9 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400ea75c 0x1d9 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x1ed (size before relaxing) - 0x00000000400ea434 tcp_split_unsent_seg - *fill* 0x00000000400ea60d 0x3 + 0x00000000400ea75c tcp_split_unsent_seg + *fill* 0x00000000400ea935 0x3 .text.tcp_enqueue_flags - 0x00000000400ea610 0x140 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - 0x00000000400ea610 tcp_enqueue_flags + 0x00000000400ea938 0x140 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400ea938 tcp_enqueue_flags .text.tcp_send_fin - 0x00000000400ea750 0x85 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400eaa78 0x85 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x89 (size before relaxing) - 0x00000000400ea750 tcp_send_fin - *fill* 0x00000000400ea7d5 0x3 + 0x00000000400eaa78 tcp_send_fin + *fill* 0x00000000400eaafd 0x3 .text.tcp_rexmit_rto_prepare - 0x00000000400ea7d8 0xcd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400eab00 0xcd esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0xd5 (size before relaxing) - 0x00000000400ea7d8 tcp_rexmit_rto_prepare - *fill* 0x00000000400ea8a5 0x3 + 0x00000000400eab00 tcp_rexmit_rto_prepare + *fill* 0x00000000400eabcd 0x3 .text.tcp_rexmit - 0x00000000400ea8a8 0xc1 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400eabd0 0xc1 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0xc5 (size before relaxing) - 0x00000000400ea8a8 tcp_rexmit - *fill* 0x00000000400ea969 0x3 + 0x00000000400eabd0 tcp_rexmit + *fill* 0x00000000400eac91 0x3 .text.tcp_rexmit_fast - 0x00000000400ea96c 0x68 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400eac94 0x68 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x6b (size before relaxing) - 0x00000000400ea96c tcp_rexmit_fast - *fill* 0x00000000400ea9d4 0x0 - .text.tcp_rst 0x00000000400ea9d4 0x6c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400eac94 tcp_rexmit_fast + *fill* 0x00000000400eacfc 0x0 + .text.tcp_rst 0x00000000400eacfc 0x6c esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x78 (size before relaxing) - 0x00000000400ea9d4 tcp_rst + 0x00000000400eacfc tcp_rst .text.tcp_send_empty_ack - 0x00000000400eaa40 0x7f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400ead68 0x7f esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x87 (size before relaxing) - 0x00000000400eaa40 tcp_send_empty_ack - *fill* 0x00000000400eaabf 0x1 + 0x00000000400ead68 tcp_send_empty_ack + *fill* 0x00000000400eade7 0x1 .text.tcp_output - 0x00000000400eaac0 0x417 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400eade8 0x417 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x433 (size before relaxing) - 0x00000000400eaac0 tcp_output - *fill* 0x00000000400eaed7 0x1 + 0x00000000400eade8 tcp_output + *fill* 0x00000000400eb1ff 0x1 .text.tcp_rexmit_rto_commit - 0x00000000400eaed8 0x2d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400eb200 0x2d esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x30 (size before relaxing) - 0x00000000400eaed8 tcp_rexmit_rto_commit - *fill* 0x00000000400eaf05 0x3 + 0x00000000400eb200 tcp_rexmit_rto_commit + *fill* 0x00000000400eb22d 0x3 .text.tcp_rexmit_rto - 0x00000000400eaf08 0x2b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400eb230 0x2b esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x2f (size before relaxing) - 0x00000000400eaf08 tcp_rexmit_rto - *fill* 0x00000000400eaf33 0x1 + 0x00000000400eb230 tcp_rexmit_rto + *fill* 0x00000000400eb25b 0x1 .text.tcp_keepalive - 0x00000000400eaf34 0x53 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400eb25c 0x53 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x5f (size before relaxing) - 0x00000000400eaf34 tcp_keepalive - *fill* 0x00000000400eaf87 0x1 + 0x00000000400eb25c tcp_keepalive + *fill* 0x00000000400eb2af 0x1 .text.tcp_zero_window_probe - 0x00000000400eaf88 0x135 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400eb2b0 0x135 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x141 (size before relaxing) - 0x00000000400eaf88 tcp_zero_window_probe - *fill* 0x00000000400eb0bd 0x3 + 0x00000000400eb2b0 tcp_zero_window_probe + *fill* 0x00000000400eb3e5 0x3 .text.sys_timeout_abs - 0x00000000400eb0c0 0x61 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eb3e8 0x61 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x65 (size before relaxing) - *fill* 0x00000000400eb121 0x3 + *fill* 0x00000000400eb449 0x3 .text.lwip_cyclic_timer - 0x00000000400eb124 0x37 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eb44c 0x37 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x3f (size before relaxing) - *fill* 0x00000000400eb15b 0x1 + *fill* 0x00000000400eb483 0x1 .text.sys_timeout - 0x00000000400eb15c 0x2b esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eb484 0x2b esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x2f (size before relaxing) - 0x00000000400eb15c sys_timeout - *fill* 0x00000000400eb187 0x1 + 0x00000000400eb484 sys_timeout + *fill* 0x00000000400eb4af 0x1 .text.tcp_timer_needed - 0x00000000400eb188 0x2f esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x00000000400eb188 tcp_timer_needed - *fill* 0x00000000400eb1b7 0x1 + 0x00000000400eb4b0 0x2f esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eb4b0 tcp_timer_needed + *fill* 0x00000000400eb4df 0x1 .text.tcpip_tcp_timer - 0x00000000400eb1b8 0x2d esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eb4e0 0x2d esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x35 (size before relaxing) - *fill* 0x00000000400eb1e5 0x3 + *fill* 0x00000000400eb50d 0x3 .text.sys_timeouts_init - 0x00000000400eb1e8 0x26 esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x00000000400eb1e8 sys_timeouts_init - *fill* 0x00000000400eb20e 0x2 + 0x00000000400eb510 0x26 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eb510 sys_timeouts_init + *fill* 0x00000000400eb536 0x2 .text.sys_untimeout - 0x00000000400eb210 0x3e esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eb538 0x3e esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x42 (size before relaxing) - 0x00000000400eb210 sys_untimeout - *fill* 0x00000000400eb24e 0x2 + 0x00000000400eb538 sys_untimeout + *fill* 0x00000000400eb576 0x2 .text.sys_check_timeouts - 0x00000000400eb250 0x3a esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eb578 0x3a esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x42 (size before relaxing) - 0x00000000400eb250 sys_check_timeouts - *fill* 0x00000000400eb28a 0x2 + 0x00000000400eb578 sys_check_timeouts + *fill* 0x00000000400eb5b2 0x2 .text.sys_timeouts_sleeptime - 0x00000000400eb28c 0x3c esp-idf/lwip/liblwip.a(timeouts.c.obj) - 0x00000000400eb28c sys_timeouts_sleeptime + 0x00000000400eb5b4 0x3c esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eb5b4 sys_timeouts_sleeptime .text.udp_new_port - 0x00000000400eb2c8 0x57 esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x00000000400eb31f 0x1 + 0x00000000400eb5f0 0x57 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x00000000400eb647 0x1 .text.udp_input_local_match - 0x00000000400eb320 0x176 esp-idf/lwip/liblwip.a(udp.c.obj) - *fill* 0x00000000400eb496 0x2 + 0x00000000400eb648 0x176 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x00000000400eb7be 0x2 .text.udp_init - 0x00000000400eb498 0x14 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400eb7c0 0x14 esp-idf/lwip/liblwip.a(udp.c.obj) 0x17 (size before relaxing) - 0x00000000400eb498 udp_init - *fill* 0x00000000400eb4ac 0x0 + 0x00000000400eb7c0 udp_init + *fill* 0x00000000400eb7d4 0x0 .text.udp_input - 0x00000000400eb4ac 0x390 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400eb7d4 0x390 esp-idf/lwip/liblwip.a(udp.c.obj) 0x3a7 (size before relaxing) - 0x00000000400eb4ac udp_input - *fill* 0x00000000400eb83c 0x0 + 0x00000000400eb7d4 udp_input + *fill* 0x00000000400ebb64 0x0 .text.udp_bind - 0x00000000400eb83c 0x319 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ebb64 0x319 esp-idf/lwip/liblwip.a(udp.c.obj) 0x31d (size before relaxing) - 0x00000000400eb83c udp_bind - *fill* 0x00000000400ebb55 0x3 + 0x00000000400ebb64 udp_bind + *fill* 0x00000000400ebe7d 0x3 .text.udp_sendto_if_src - 0x00000000400ebb58 0x231 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ebe80 0x231 esp-idf/lwip/liblwip.a(udp.c.obj) 0x24d (size before relaxing) - 0x00000000400ebb58 udp_sendto_if_src - *fill* 0x00000000400ebd89 0x3 + 0x00000000400ebe80 udp_sendto_if_src + *fill* 0x00000000400ec0b1 0x3 .text.udp_sendto_if - 0x00000000400ebd8c 0xf9 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x00000000400ebd8c udp_sendto_if - *fill* 0x00000000400ebe85 0x3 + 0x00000000400ec0b4 0xf9 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ec0b4 udp_sendto_if + *fill* 0x00000000400ec1ad 0x3 .text.udp_sendto - 0x00000000400ebe88 0x14d esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ec1b0 0x14d esp-idf/lwip/liblwip.a(udp.c.obj) 0x159 (size before relaxing) - 0x00000000400ebe88 udp_sendto - *fill* 0x00000000400ebfd5 0x3 + 0x00000000400ec1b0 udp_sendto + *fill* 0x00000000400ec2fd 0x3 .text.udp_send - 0x00000000400ebfd8 0x4d esp-idf/lwip/liblwip.a(udp.c.obj) - 0x00000000400ebfd8 udp_send - *fill* 0x00000000400ec025 0x3 + 0x00000000400ec300 0x4d esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ec300 udp_send + *fill* 0x00000000400ec34d 0x3 .text.udp_connect - 0x00000000400ec028 0x16e esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ec350 0x16e esp-idf/lwip/liblwip.a(udp.c.obj) 0x172 (size before relaxing) - 0x00000000400ec028 udp_connect - *fill* 0x00000000400ec196 0x2 + 0x00000000400ec350 udp_connect + *fill* 0x00000000400ec4be 0x2 .text.udp_disconnect - 0x00000000400ec198 0xa6 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x00000000400ec198 udp_disconnect - *fill* 0x00000000400ec23e 0x2 + 0x00000000400ec4c0 0xa6 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ec4c0 udp_disconnect + *fill* 0x00000000400ec566 0x2 .text.udp_recv - 0x00000000400ec240 0x19 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x00000000400ec240 udp_recv - *fill* 0x00000000400ec259 0x3 + 0x00000000400ec568 0x19 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ec568 udp_recv + *fill* 0x00000000400ec581 0x3 .text.udp_remove - 0x00000000400ec25c 0x44 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x00000000400ec25c udp_remove - .text.udp_new 0x00000000400ec2a0 0x20 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ec584 0x44 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ec584 udp_remove + .text.udp_new 0x00000000400ec5c8 0x20 esp-idf/lwip/liblwip.a(udp.c.obj) 0x24 (size before relaxing) - 0x00000000400ec2a0 udp_new + 0x00000000400ec5c8 udp_new .text.udp_new_ip_type - 0x00000000400ec2c0 0x15 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ec5e8 0x15 esp-idf/lwip/liblwip.a(udp.c.obj) 0x18 (size before relaxing) - 0x00000000400ec2c0 udp_new_ip_type - *fill* 0x00000000400ec2d5 0x3 + 0x00000000400ec5e8 udp_new_ip_type + *fill* 0x00000000400ec5fd 0x3 .text.udp_netif_ip_addr_changed - 0x00000000400ec2d8 0x143 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x00000000400ec2d8 udp_netif_ip_addr_changed - *fill* 0x00000000400ec41b 0x1 + 0x00000000400ec600 0x143 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ec600 udp_netif_ip_addr_changed + *fill* 0x00000000400ec743 0x1 .text.dhcp_option_short - 0x00000000400ec41c 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x00000000400ec451 0x3 + 0x00000000400ec744 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ec779 0x3 .text.dhcp_option - 0x00000000400ec454 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ec77c 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) .text.dhcp_option_byte - 0x00000000400ec488 0x26 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x00000000400ec4ae 0x2 + 0x00000000400ec7b0 0x26 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ec7d6 0x2 .text.dhcp_option_long - 0x00000000400ec4b0 0x4f esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x00000000400ec4ff 0x1 + 0x00000000400ec7d8 0x4f esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ec827 0x1 .text.dhcp_create_msg - 0x00000000400ec500 0x13d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ec828 0x13d esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x149 (size before relaxing) - *fill* 0x00000000400ec63d 0x3 + *fill* 0x00000000400ec965 0x3 .text.dhcp_option_hostname - 0x00000000400ec640 0x7a esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x00000000400ec6ba 0x2 + 0x00000000400ec968 0x7a esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ec9e2 0x2 .text.dhcp_option_trailer - 0x00000000400ec6bc 0x3f esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x00000000400ec6fb 0x1 + 0x00000000400ec9e4 0x3f esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400eca23 0x1 .text.dhcp_rebind - 0x00000000400ec6fc 0xed esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400eca24 0xed esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x105 (size before relaxing) - *fill* 0x00000000400ec7e9 0x3 + *fill* 0x00000000400ecb11 0x3 .text.dhcp_t2_timeout - 0x00000000400ec7ec 0x3e esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x00000000400ec82a 0x2 + 0x00000000400ecb14 0x3e esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ecb52 0x2 .text.dhcp_reboot - 0x00000000400ec82c 0x10d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ecb54 0x10d esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x12d (size before relaxing) - *fill* 0x00000000400ec939 0x3 + *fill* 0x00000000400ecc61 0x3 .text.dhcp_select - 0x00000000400ec93c 0x154 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ecc64 0x154 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x184 (size before relaxing) .text.dhcp_handle_offer - 0x00000000400eca90 0x5b esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ecdb8 0x5b esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x62 (size before relaxing) - *fill* 0x00000000400ecaeb 0x1 + *fill* 0x00000000400ece13 0x1 .text.dhcp_discover - 0x00000000400ecaec 0xe6 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ece14 0xe6 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x102 (size before relaxing) - *fill* 0x00000000400ecbd2 0x2 + *fill* 0x00000000400ecefa 0x2 .text.dhcp_decline - 0x00000000400ecbd4 0x87 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ecefc 0x87 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x9f (size before relaxing) - *fill* 0x00000000400ecc5b 0x1 + *fill* 0x00000000400ecf83 0x1 .text.dhcp_check - 0x00000000400ecc5c 0x2f esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ecf84 0x2f esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x33 (size before relaxing) - *fill* 0x00000000400ecc8b 0x1 + *fill* 0x00000000400ecfb3 0x1 .text.dhcp_bind - 0x00000000400ecc8c 0xe4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ecfb4 0xe4 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0xe8 (size before relaxing) .text.dhcp_handle_nak - 0x00000000400ecd70 0x2d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed098 0x2d esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x34 (size before relaxing) - *fill* 0x00000000400ecd9d 0x3 + *fill* 0x00000000400ed0c5 0x3 .text.dhcp_dec_pcb_refcount - 0x00000000400ecda0 0x3b esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x00000000400ecddb 0x1 + 0x00000000400ed0c8 0x3b esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ed103 0x1 .text.dhcp_inc_pcb_refcount - 0x00000000400ecddc 0x72 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed104 0x72 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x7e (size before relaxing) - *fill* 0x00000000400ece4e 0x2 + *fill* 0x00000000400ed176 0x2 .text.dhcp_parse_reply - 0x00000000400ece50 0x3bf esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed178 0x3bf esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x3c7 (size before relaxing) - *fill* 0x00000000400ed20f 0x1 + *fill* 0x00000000400ed537 0x1 .text.dhcp_handle_ack - 0x00000000400ed210 0x102 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed538 0x102 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x10a (size before relaxing) - *fill* 0x00000000400ed312 0x2 + *fill* 0x00000000400ed63a 0x2 .text.dhcp_recv - 0x00000000400ed314 0x135 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed63c 0x135 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x148 (size before relaxing) - *fill* 0x00000000400ed449 0x3 + *fill* 0x00000000400ed771 0x3 .text.dhcp_cleanup - 0x00000000400ed44c 0x28 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed774 0x28 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x2b (size before relaxing) - 0x00000000400ed44c dhcp_cleanup - *fill* 0x00000000400ed474 0x0 + 0x00000000400ed774 dhcp_cleanup + *fill* 0x00000000400ed79c 0x0 .text.dhcp_set_cb - 0x00000000400ed474 0x22 esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x00000000400ed474 dhcp_set_cb - *fill* 0x00000000400ed496 0x2 + 0x00000000400ed79c 0x22 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed79c dhcp_set_cb + *fill* 0x00000000400ed7be 0x2 .text.dhcp_network_changed - 0x00000000400ed498 0x4c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed7c0 0x4c esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x53 (size before relaxing) - 0x00000000400ed498 dhcp_network_changed - *fill* 0x00000000400ed4e4 0x0 + 0x00000000400ed7c0 dhcp_network_changed + *fill* 0x00000000400ed80c 0x0 .text.dhcp_arp_reply - 0x00000000400ed4e4 0x2a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed80c 0x2a esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x2e (size before relaxing) - 0x00000000400ed4e4 dhcp_arp_reply - *fill* 0x00000000400ed50e 0x2 + 0x00000000400ed80c dhcp_arp_reply + *fill* 0x00000000400ed836 0x2 .text.dhcp_renew - 0x00000000400ed510 0xed esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed838 0xed esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x105 (size before relaxing) - 0x00000000400ed510 dhcp_renew - *fill* 0x00000000400ed5fd 0x3 + 0x00000000400ed838 dhcp_renew + *fill* 0x00000000400ed925 0x3 .text.dhcp_t1_timeout - 0x00000000400ed600 0x3b esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x00000000400ed63b 0x1 + 0x00000000400ed928 0x3b esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ed963 0x1 .text.dhcp_release_and_stop - 0x00000000400ed63c 0x103 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed964 0x103 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x123 (size before relaxing) - 0x00000000400ed63c dhcp_release_and_stop - *fill* 0x00000000400ed73f 0x1 + 0x00000000400ed964 dhcp_release_and_stop + *fill* 0x00000000400eda67 0x1 .text.dhcp_start - 0x00000000400ed740 0xb4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400eda68 0xb4 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0xbc (size before relaxing) - 0x00000000400ed740 dhcp_start + 0x00000000400eda68 dhcp_start .text.dhcp_coarse_tmr - 0x00000000400ed7f4 0x63 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400edb1c 0x63 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x6b (size before relaxing) - 0x00000000400ed7f4 dhcp_coarse_tmr - *fill* 0x00000000400ed857 0x1 + 0x00000000400edb1c dhcp_coarse_tmr + *fill* 0x00000000400edb7f 0x1 .text.dhcp_timeout - 0x00000000400ed858 0x87 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400edb80 0x87 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x92 (size before relaxing) - *fill* 0x00000000400ed8df 0x1 + *fill* 0x00000000400edc07 0x1 .text.dhcp_fine_tmr - 0x00000000400ed8e0 0x33 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400edc08 0x33 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x37 (size before relaxing) - 0x00000000400ed8e0 dhcp_fine_tmr - *fill* 0x00000000400ed913 0x1 + 0x00000000400edc08 dhcp_fine_tmr + *fill* 0x00000000400edc3b 0x1 .text.dhcp_release - 0x00000000400ed914 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400edc3c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x10 (size before relaxing) - 0x00000000400ed914 dhcp_release + 0x00000000400edc3c dhcp_release .text.dhcp_stop - 0x00000000400ed920 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400edc48 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) 0xe (size before relaxing) - 0x00000000400ed920 dhcp_stop - *fill* 0x00000000400ed92a 0x2 + 0x00000000400edc48 dhcp_stop + *fill* 0x00000000400edc52 0x2 .text.free_etharp_q - 0x00000000400ed92c 0x41 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400edc54 0x41 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x49 (size before relaxing) - *fill* 0x00000000400ed96d 0x3 + *fill* 0x00000000400edc95 0x3 .text.etharp_free_entry - 0x00000000400ed970 0x5e esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400edc98 0x5e esp-idf/lwip/liblwip.a(etharp.c.obj) 0x62 (size before relaxing) - *fill* 0x00000000400ed9ce 0x2 + *fill* 0x00000000400edcf6 0x2 .text.etharp_find_entry - 0x00000000400ed9d0 0x1e6 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400edcf8 0x1e6 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x1ea (size before relaxing) - *fill* 0x00000000400edbb6 0x2 + *fill* 0x00000000400edede 0x2 .text.etharp_update_arp_entry - 0x00000000400edbb8 0xc6 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400edee0 0xc6 esp-idf/lwip/liblwip.a(etharp.c.obj) 0xce (size before relaxing) - *fill* 0x00000000400edc7e 0x2 + *fill* 0x00000000400edfa6 0x2 .text.etharp_raw - 0x00000000400edc80 0x105 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400edfa8 0x105 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x10d (size before relaxing) - *fill* 0x00000000400edd85 0x3 + *fill* 0x00000000400ee0ad 0x3 .text.etharp_request_dst - 0x00000000400edd88 0x21 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400ee0b0 0x21 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x25 (size before relaxing) - *fill* 0x00000000400edda9 0x3 + *fill* 0x00000000400ee0d1 0x3 .text.etharp_cleanup_netif - 0x00000000400eddac 0x35 esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x00000000400eddac etharp_cleanup_netif - *fill* 0x00000000400edde1 0x3 + 0x00000000400ee0d4 0x35 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400ee0d4 etharp_cleanup_netif + *fill* 0x00000000400ee109 0x3 .text.etharp_input - 0x00000000400edde4 0xf8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400ee10c 0xf8 esp-idf/lwip/liblwip.a(etharp.c.obj) 0xfe (size before relaxing) - 0x00000000400edde4 etharp_input - *fill* 0x00000000400ededc 0x0 + 0x00000000400ee10c etharp_input + *fill* 0x00000000400ee204 0x0 .text.etharp_request - 0x00000000400ededc 0x15 esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x00000000400ededc etharp_request - *fill* 0x00000000400edef1 0x3 + 0x00000000400ee204 0x15 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400ee204 etharp_request + *fill* 0x00000000400ee219 0x3 .text.garp_tmr - 0x00000000400edef4 0x33 esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x00000000400edef4 garp_tmr - *fill* 0x00000000400edf27 0x1 + 0x00000000400ee21c 0x33 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400ee21c garp_tmr + *fill* 0x00000000400ee24f 0x1 .text.etharp_tmr - 0x00000000400edf28 0x9e esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400ee250 0x9e esp-idf/lwip/liblwip.a(etharp.c.obj) 0xa2 (size before relaxing) - 0x00000000400edf28 etharp_tmr - *fill* 0x00000000400edfc6 0x2 + 0x00000000400ee250 etharp_tmr + *fill* 0x00000000400ee2ee 0x2 .text.etharp_output_to_arp_index - 0x00000000400edfc8 0xd2 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400ee2f0 0xd2 esp-idf/lwip/liblwip.a(etharp.c.obj) 0xd6 (size before relaxing) - *fill* 0x00000000400ee09a 0x2 + *fill* 0x00000000400ee3c2 0x2 .text.etharp_query - 0x00000000400ee09c 0x22f esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400ee3c4 0x22f esp-idf/lwip/liblwip.a(etharp.c.obj) 0x23f (size before relaxing) - 0x00000000400ee09c etharp_query - *fill* 0x00000000400ee2cb 0x1 + 0x00000000400ee3c4 etharp_query + *fill* 0x00000000400ee5f3 0x1 .text.etharp_output - 0x00000000400ee2cc 0x171 esp-idf/lwip/liblwip.a(etharp.c.obj) - 0x00000000400ee2cc etharp_output - *fill* 0x00000000400ee43d 0x3 + 0x00000000400ee5f4 0x171 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400ee5f4 etharp_output + *fill* 0x00000000400ee765 0x3 .text.icmp_send_response - 0x00000000400ee440 0xd3 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x00000000400ee768 0xd3 esp-idf/lwip/liblwip.a(icmp.c.obj) 0xe6 (size before relaxing) - *fill* 0x00000000400ee513 0x1 + *fill* 0x00000000400ee83b 0x1 .text.icmp_input - 0x00000000400ee514 0x1cf esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x00000000400ee83c 0x1cf esp-idf/lwip/liblwip.a(icmp.c.obj) 0x1f6 (size before relaxing) - 0x00000000400ee514 icmp_input - *fill* 0x00000000400ee6e3 0x1 + 0x00000000400ee83c icmp_input + *fill* 0x00000000400eea0b 0x1 .text.icmp_dest_unreach - 0x00000000400ee6e4 0x12 esp-idf/lwip/liblwip.a(icmp.c.obj) - 0x00000000400ee6e4 icmp_dest_unreach - *fill* 0x00000000400ee6f6 0x2 + 0x00000000400eea0c 0x12 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x00000000400eea0c icmp_dest_unreach + *fill* 0x00000000400eea1e 0x2 .text.igmp_start_timer - 0x00000000400ee6f8 0x3e esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eea20 0x3e esp-idf/lwip/liblwip.a(igmp.c.obj) 0x42 (size before relaxing) - *fill* 0x00000000400ee736 0x2 + *fill* 0x00000000400eea5e 0x2 .text.igmp_delaying_member - 0x00000000400ee738 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eea60 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x2a (size before relaxing) - *fill* 0x00000000400ee75e 0x2 + *fill* 0x00000000400eea86 0x2 .text.igmp_ip_output_if - 0x00000000400ee760 0x2d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eea88 0x2d esp-idf/lwip/liblwip.a(igmp.c.obj) 0x31 (size before relaxing) - *fill* 0x00000000400ee78d 0x3 + *fill* 0x00000000400eeab5 0x3 .text.igmp_send - 0x00000000400ee790 0xbf esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eeab8 0xbf esp-idf/lwip/liblwip.a(igmp.c.obj) 0xca (size before relaxing) - *fill* 0x00000000400ee84f 0x1 + *fill* 0x00000000400eeb77 0x1 .text.igmp_timeout - 0x00000000400ee850 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x00000000400ee876 0x2 + 0x00000000400eeb78 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x00000000400eeb9e 0x2 .text.igmp_init - 0x00000000400ee878 0x15 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x00000000400ee878 igmp_init - *fill* 0x00000000400ee88d 0x3 + 0x00000000400eeba0 0x15 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eeba0 igmp_init + *fill* 0x00000000400eebb5 0x3 .text.igmp_stop - 0x00000000400ee890 0x31 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x00000000400ee890 igmp_stop - *fill* 0x00000000400ee8c1 0x3 + 0x00000000400eebb8 0x31 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eebb8 igmp_stop + *fill* 0x00000000400eebe9 0x3 .text.igmp_report_groups - 0x00000000400ee8c4 0x1f esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x00000000400ee8c4 igmp_report_groups - *fill* 0x00000000400ee8e3 0x1 + 0x00000000400eebec 0x1f esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eebec igmp_report_groups + *fill* 0x00000000400eec0b 0x1 .text.igmp_lookup_group - 0x00000000400ee8e4 0x82 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eec0c 0x82 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x86 (size before relaxing) - *fill* 0x00000000400ee966 0x2 + *fill* 0x00000000400eec8e 0x2 .text.igmp_start - 0x00000000400ee968 0x36 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x00000000400ee968 igmp_start - *fill* 0x00000000400ee99e 0x2 + 0x00000000400eec90 0x36 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eec90 igmp_start + *fill* 0x00000000400eecc6 0x2 .text.igmp_input - 0x00000000400ee9a0 0x10b esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eecc8 0x10b esp-idf/lwip/liblwip.a(igmp.c.obj) 0x116 (size before relaxing) - 0x00000000400ee9a0 igmp_input - *fill* 0x00000000400eeaab 0x1 + 0x00000000400eecc8 igmp_input + *fill* 0x00000000400eedd3 0x1 .text.igmp_joingroup_netif - 0x00000000400eeaac 0x9d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eedd4 0x9d esp-idf/lwip/liblwip.a(igmp.c.obj) 0xa5 (size before relaxing) - 0x00000000400eeaac igmp_joingroup_netif - *fill* 0x00000000400eeb49 0x3 + 0x00000000400eedd4 igmp_joingroup_netif + *fill* 0x00000000400eee71 0x3 .text.igmp_joingroup - 0x00000000400eeb4c 0x6e esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x00000000400eeb4c igmp_joingroup - *fill* 0x00000000400eebba 0x2 + 0x00000000400eee74 0x6e esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eee74 igmp_joingroup + *fill* 0x00000000400eeee2 0x2 .text.igmp_leavegroup_netif - 0x00000000400eebbc 0xa5 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eeee4 0xa5 esp-idf/lwip/liblwip.a(igmp.c.obj) 0xad (size before relaxing) - 0x00000000400eebbc igmp_leavegroup_netif - *fill* 0x00000000400eec61 0x3 + 0x00000000400eeee4 igmp_leavegroup_netif + *fill* 0x00000000400eef89 0x3 .text.igmp_leavegroup - 0x00000000400eec64 0x6d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eef8c 0x6d esp-idf/lwip/liblwip.a(igmp.c.obj) 0x71 (size before relaxing) - 0x00000000400eec64 igmp_leavegroup - *fill* 0x00000000400eecd1 0x3 + 0x00000000400eef8c igmp_leavegroup + *fill* 0x00000000400eeff9 0x3 .text.igmp_tmr - 0x00000000400eecd4 0x64 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x00000000400eecd4 igmp_tmr + 0x00000000400eeffc 0x64 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400eeffc igmp_tmr .text.igmp_timeout_cb - 0x00000000400eed38 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400ef060 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) 0xb (size before relaxing) - *fill* 0x00000000400eed40 0x0 + *fill* 0x00000000400ef068 0x0 .text.ip4_input_accept - 0x00000000400eed40 0x34 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef068 0x34 esp-idf/lwip/liblwip.a(ip4.c.obj) .text.ip4_netif_exist - 0x00000000400eed74 0x38 esp-idf/lwip/liblwip.a(ip4.c.obj) - 0x00000000400eed74 ip4_netif_exist + 0x00000000400ef09c 0x38 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef09c ip4_netif_exist .text.ip4_route_src_hook - 0x00000000400eedac 0x32 esp-idf/lwip/liblwip.a(ip4.c.obj) - 0x00000000400eedac ip4_route_src_hook - *fill* 0x00000000400eedde 0x2 + 0x00000000400ef0d4 0x32 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef0d4 ip4_route_src_hook + *fill* 0x00000000400ef106 0x2 .text.ip4_route - 0x00000000400eede0 0x70 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef108 0x70 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x74 (size before relaxing) - 0x00000000400eede0 ip4_route + 0x00000000400ef108 ip4_route .text.ip4_route_src - 0x00000000400eee50 0x2c esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef178 0x2c esp-idf/lwip/liblwip.a(ip4.c.obj) 0x34 (size before relaxing) - 0x00000000400eee50 ip4_route_src + 0x00000000400ef178 ip4_route_src .text.ip4_input - 0x00000000400eee7c 0x29f esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef1a4 0x29f esp-idf/lwip/liblwip.a(ip4.c.obj) 0x2c6 (size before relaxing) - 0x00000000400eee7c ip4_input - *fill* 0x00000000400ef11b 0x1 + 0x00000000400ef1a4 ip4_input + *fill* 0x00000000400ef443 0x1 .text.ip4_output_if_opt_src - 0x00000000400ef11c 0x291 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef444 0x291 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x299 (size before relaxing) - 0x00000000400ef11c ip4_output_if_opt_src - *fill* 0x00000000400ef3ad 0x3 + 0x00000000400ef444 ip4_output_if_opt_src + *fill* 0x00000000400ef6d5 0x3 .text.ip4_output_if_opt - 0x00000000400ef3b0 0x35 esp-idf/lwip/liblwip.a(ip4.c.obj) - 0x00000000400ef3b0 ip4_output_if_opt - *fill* 0x00000000400ef3e5 0x3 + 0x00000000400ef6d8 0x35 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef6d8 ip4_output_if_opt + *fill* 0x00000000400ef70d 0x3 .text.ip4_output_if - 0x00000000400ef3e8 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef710 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x29 (size before relaxing) - 0x00000000400ef3e8 ip4_output_if - *fill* 0x00000000400ef40d 0x3 + 0x00000000400ef710 ip4_output_if + *fill* 0x00000000400ef735 0x3 .text.ip4_output_if_src - 0x00000000400ef410 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef738 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x29 (size before relaxing) - 0x00000000400ef410 ip4_output_if_src - *fill* 0x00000000400ef435 0x3 + 0x00000000400ef738 ip4_output_if_src + *fill* 0x00000000400ef75d 0x3 .text.ip4addr_aton - 0x00000000400ef438 0x1e3 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x00000000400ef760 0x1e3 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) 0x1e7 (size before relaxing) - 0x00000000400ef438 ip4addr_aton - *fill* 0x00000000400ef61b 0x1 + 0x00000000400ef760 ip4addr_aton + *fill* 0x00000000400ef943 0x1 .text.ip4_frag - 0x00000000400ef61c 0x191 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x00000000400ef944 0x191 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) 0x1a1 (size before relaxing) - 0x00000000400ef61c ip4_frag - *fill* 0x00000000400ef7ad 0x3 + 0x00000000400ef944 ip4_frag + *fill* 0x00000000400efad5 0x3 .text.icmp6_send_response_with_addrs_and_netif - 0x00000000400ef7b0 0x9f esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400efad8 0x9f esp-idf/lwip/liblwip.a(icmp6.c.obj) 0xaf (size before relaxing) - *fill* 0x00000000400ef84f 0x1 + *fill* 0x00000000400efb77 0x1 .text.icmp6_send_response - 0x00000000400ef850 0x3e esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400efb78 0x3e esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x42 (size before relaxing) - *fill* 0x00000000400ef88e 0x2 + *fill* 0x00000000400efbb6 0x2 .text.icmp6_send_response_with_addrs - 0x00000000400ef890 0x4a esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400efbb8 0x4a esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x4e (size before relaxing) - *fill* 0x00000000400ef8da 0x2 + *fill* 0x00000000400efc02 0x2 .text.icmp6_input - 0x00000000400ef8dc 0x101 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400efc04 0x101 esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x12c (size before relaxing) - 0x00000000400ef8dc icmp6_input - *fill* 0x00000000400ef9dd 0x3 + 0x00000000400efc04 icmp6_input + *fill* 0x00000000400efd05 0x3 .text.icmp6_dest_unreach - 0x00000000400ef9e0 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) - 0x00000000400ef9e0 icmp6_dest_unreach + 0x00000000400efd08 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400efd08 icmp6_dest_unreach .text.icmp6_time_exceeded_with_addrs - 0x00000000400ef9f4 0x18 esp-idf/lwip/liblwip.a(icmp6.c.obj) - 0x00000000400ef9f4 icmp6_time_exceeded_with_addrs + 0x00000000400efd1c 0x18 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400efd1c icmp6_time_exceeded_with_addrs .text.icmp6_param_problem - 0x00000000400efa0c 0x1a esp-idf/lwip/liblwip.a(icmp6.c.obj) - 0x00000000400efa0c icmp6_param_problem - *fill* 0x00000000400efa26 0x2 + 0x00000000400efd34 0x1a esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400efd34 icmp6_param_problem + *fill* 0x00000000400efd4e 0x2 .text.ip6_input_accept - 0x00000000400efa28 0x96 esp-idf/lwip/liblwip.a(ip6.c.obj) - *fill* 0x00000000400efabe 0x2 + 0x00000000400efd50 0x96 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x00000000400efde6 0x2 .text.ip6_route - 0x00000000400efac0 0x2c0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400efde8 0x2c0 esp-idf/lwip/liblwip.a(ip6.c.obj) 0x2c4 (size before relaxing) - 0x00000000400efac0 ip6_route + 0x00000000400efde8 ip6_route .text.ip6_select_source_address - 0x00000000400efd80 0x1d7 esp-idf/lwip/liblwip.a(ip6.c.obj) - 0x00000000400efd80 ip6_select_source_address - *fill* 0x00000000400eff57 0x1 + 0x00000000400f00a8 0x1d7 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400f00a8 ip6_select_source_address + *fill* 0x00000000400f027f 0x1 .text.ip6_input - 0x00000000400eff58 0x711 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400f0280 0x711 esp-idf/lwip/liblwip.a(ip6.c.obj) 0x779 (size before relaxing) - 0x00000000400eff58 ip6_input - *fill* 0x00000000400f0669 0x3 + 0x00000000400f0280 ip6_input + *fill* 0x00000000400f0991 0x3 .text.ip6_output_if_src - 0x00000000400f066c 0x389 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400f0994 0x389 esp-idf/lwip/liblwip.a(ip6.c.obj) 0x399 (size before relaxing) - 0x00000000400f066c ip6_output_if_src - *fill* 0x00000000400f09f5 0x3 + 0x00000000400f0994 ip6_output_if_src + *fill* 0x00000000400f0d1d 0x3 .text.ip6_output_if - 0x00000000400f09f8 0x65 esp-idf/lwip/liblwip.a(ip6.c.obj) - 0x00000000400f09f8 ip6_output_if - *fill* 0x00000000400f0a5d 0x3 + 0x00000000400f0d20 0x65 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400f0d20 ip6_output_if + *fill* 0x00000000400f0d85 0x3 .text.ip6_options_add_hbh_ra - 0x00000000400f0a60 0x3e esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400f0d88 0x3e esp-idf/lwip/liblwip.a(ip6.c.obj) 0x42 (size before relaxing) - 0x00000000400f0a60 ip6_options_add_hbh_ra - *fill* 0x00000000400f0a9e 0x2 + 0x00000000400f0d88 ip6_options_add_hbh_ra + *fill* 0x00000000400f0dc6 0x2 .text.ip6_reass_free_complete_datagram - 0x00000000400f0aa0 0x24b esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400f0dc8 0x24b esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0x25f (size before relaxing) - *fill* 0x00000000400f0ceb 0x1 + *fill* 0x00000000400f1013 0x1 .text.ip6_reass_remove_oldest_datagram - 0x00000000400f0cec 0x40 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400f1014 0x40 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0x43 (size before relaxing) - *fill* 0x00000000400f0d2c 0x0 + *fill* 0x00000000400f1054 0x0 .text.ip6_reass_tmr - 0x00000000400f0d2c 0x2b esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - 0x00000000400f0d2c ip6_reass_tmr - *fill* 0x00000000400f0d57 0x1 + 0x00000000400f1054 0x2b esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400f1054 ip6_reass_tmr + *fill* 0x00000000400f107f 0x1 .text.ip6_reass - 0x00000000400f0d58 0x63e esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400f1080 0x63e esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0x652 (size before relaxing) - 0x00000000400f0d58 ip6_reass - *fill* 0x00000000400f1396 0x2 + 0x00000000400f1080 ip6_reass + *fill* 0x00000000400f16be 0x2 .text.ip6_frag - 0x00000000400f1398 0x171 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400f16c0 0x171 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0x181 (size before relaxing) - 0x00000000400f1398 ip6_frag - *fill* 0x00000000400f1509 0x3 + 0x00000000400f16c0 ip6_frag + *fill* 0x00000000400f1831 0x3 .text.mld6_delayed_report - 0x00000000400f150c 0x58 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1834 0x58 esp-idf/lwip/liblwip.a(mld6.c.obj) .text.mld6_new_group - 0x00000000400f1564 0x61 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f188c 0x61 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x65 (size before relaxing) - *fill* 0x00000000400f15c5 0x3 + *fill* 0x00000000400f18ed 0x3 .text.mld6_send - 0x00000000400f15c8 0x110 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f18f0 0x110 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x124 (size before relaxing) .text.mld6_stop - 0x00000000400f16d8 0x31 esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x00000000400f16d8 mld6_stop - *fill* 0x00000000400f1709 0x3 + 0x00000000400f1a00 0x31 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1a00 mld6_stop + *fill* 0x00000000400f1a31 0x3 .text.mld6_report_groups - 0x00000000400f170c 0x1b esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x00000000400f170c mld6_report_groups - *fill* 0x00000000400f1727 0x1 + 0x00000000400f1a34 0x1b esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1a34 mld6_report_groups + *fill* 0x00000000400f1a4f 0x1 .text.mld6_input - 0x00000000400f1728 0x16c esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1a50 0x16c esp-idf/lwip/liblwip.a(mld6.c.obj) 0x17b (size before relaxing) - 0x00000000400f1728 mld6_input - *fill* 0x00000000400f1894 0x0 + 0x00000000400f1a50 mld6_input + *fill* 0x00000000400f1bbc 0x0 .text.mld6_joingroup_netif - 0x00000000400f1894 0x11a esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1bbc 0x11a esp-idf/lwip/liblwip.a(mld6.c.obj) 0x122 (size before relaxing) - 0x00000000400f1894 mld6_joingroup_netif - *fill* 0x00000000400f19ae 0x2 + 0x00000000400f1bbc mld6_joingroup_netif + *fill* 0x00000000400f1cd6 0x2 .text.mld6_joingroup - 0x00000000400f19b0 0x42 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1cd8 0x42 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x49 (size before relaxing) - 0x00000000400f19b0 mld6_joingroup - *fill* 0x00000000400f19f2 0x2 + 0x00000000400f1cd8 mld6_joingroup + *fill* 0x00000000400f1d1a 0x2 .text.mld6_leavegroup_netif - 0x00000000400f19f4 0x109 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1d1c 0x109 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x111 (size before relaxing) - 0x00000000400f19f4 mld6_leavegroup_netif - *fill* 0x00000000400f1afd 0x3 + 0x00000000400f1d1c mld6_leavegroup_netif + *fill* 0x00000000400f1e25 0x3 .text.mld6_leavegroup - 0x00000000400f1b00 0x45 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1e28 0x45 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x4d (size before relaxing) - 0x00000000400f1b00 mld6_leavegroup - *fill* 0x00000000400f1b45 0x3 + 0x00000000400f1e28 mld6_leavegroup + *fill* 0x00000000400f1e6d 0x3 .text.mld6_tmr - 0x00000000400f1b48 0x72 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1e70 0x72 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x76 (size before relaxing) - 0x00000000400f1b48 mld6_tmr - *fill* 0x00000000400f1bba 0x2 + 0x00000000400f1e70 mld6_tmr + *fill* 0x00000000400f1ee2 0x2 .text.mld6_timeout_cb - 0x00000000400f1bbc 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1ee4 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) 0xb (size before relaxing) - *fill* 0x00000000400f1bc4 0x0 + *fill* 0x00000000400f1eec 0x0 .text.nd6_find_neighbor_cache_entry - 0x00000000400f1bc4 0x6a esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x00000000400f1c2e 0x2 + 0x00000000400f1eec 0x6a esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f1f56 0x2 .text.nd6_find_destination_cache_entry - 0x00000000400f1c30 0x5e esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x00000000400f1c8e 0x2 + 0x00000000400f1f58 0x5e esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f1fb6 0x2 .text.nd6_new_destination_cache_entry - 0x00000000400f1c90 0x64 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f1fb8 0x64 esp-idf/lwip/liblwip.a(nd6.c.obj) .text.nd6_is_prefix_in_netif - 0x00000000400f1cf4 0xc6 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x00000000400f1dba 0x2 + 0x00000000400f201c 0xc6 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f20e2 0x2 .text.nd6_select_router - 0x00000000400f1dbc 0x102 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x00000000400f1ebe 0x2 + 0x00000000400f20e4 0x102 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f21e6 0x2 .text.nd6_get_router - 0x00000000400f1ec0 0x5c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f21e8 0x5c esp-idf/lwip/liblwip.a(nd6.c.obj) .text.nd6_get_onlink_prefix - 0x00000000400f1f1c 0x72 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x00000000400f1f8e 0x2 + 0x00000000400f2244 0x72 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f22b6 0x2 .text.nd6_new_onlink_prefix - 0x00000000400f1f90 0xd1 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x00000000400f2061 0x3 + 0x00000000400f22b8 0xd1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f2389 0x3 .text.nd6_send_q - 0x00000000400f2064 0x150 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f238c 0x150 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x154 (size before relaxing) .text.nd6_duplicate_addr_detected - 0x00000000400f21b4 0x46 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f24dc 0x46 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x4e (size before relaxing) - *fill* 0x00000000400f21fa 0x2 + *fill* 0x00000000400f2522 0x2 .text.nd6_process_autoconfig_prefix - 0x00000000400f21fc 0x27b esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f2524 0x27b esp-idf/lwip/liblwip.a(nd6.c.obj) 0x286 (size before relaxing) - *fill* 0x00000000400f2477 0x1 + *fill* 0x00000000400f279f 0x1 .text.nd6_free_q - 0x00000000400f2478 0x55 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f27a0 0x59 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x61 (size before relaxing) - *fill* 0x00000000400f24cd 0x3 + *fill* 0x00000000400f27f9 0x3 .text.nd6_free_neighbor_cache_entry - 0x00000000400f24d0 0x82 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f27fc 0x82 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x86 (size before relaxing) - *fill* 0x00000000400f2552 0x2 + *fill* 0x00000000400f287e 0x2 .text.nd6_new_neighbor_cache_entry - 0x00000000400f2554 0x216 esp-idf/lwip/liblwip.a(nd6.c.obj) - *fill* 0x00000000400f276a 0x2 + 0x00000000400f2880 0x216 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f2a96 0x2 .text.nd6_send_na - 0x00000000400f276c 0x15a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f2a98 0x15e esp-idf/lwip/liblwip.a(nd6.c.obj) 0x166 (size before relaxing) - *fill* 0x00000000400f28c6 0x2 + *fill* 0x00000000400f2bf6 0x2 .text.nd6_send_rs - 0x00000000400f28c8 0xe9 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f2bf8 0xe9 esp-idf/lwip/liblwip.a(nd6.c.obj) 0xf5 (size before relaxing) - *fill* 0x00000000400f29b1 0x3 + *fill* 0x00000000400f2ce1 0x3 .text.nd6_send_ns - 0x00000000400f29b4 0x158 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f2ce4 0x158 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x164 (size before relaxing) .text.nd6_send_neighbor_cache_probe - 0x00000000400f2b0c 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f2e3c 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) 0x12 (size before relaxing) - *fill* 0x00000000400f2b1a 0x2 + *fill* 0x00000000400f2e4a 0x2 .text.nd6_new_router - 0x00000000400f2b1c 0x17a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f2e4c 0x17a esp-idf/lwip/liblwip.a(nd6.c.obj) 0x17e (size before relaxing) - *fill* 0x00000000400f2c96 0x2 + *fill* 0x00000000400f2fc6 0x2 .text.nd6_get_next_hop_entry - 0x00000000400f2c98 0x3a1 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f2fc8 0x3a1 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x3a5 (size before relaxing) - *fill* 0x00000000400f3039 0x3 + *fill* 0x00000000400f3369 0x3 .text.nd6_queue_packet - 0x00000000400f303c 0x13d esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f336c 0x13d esp-idf/lwip/liblwip.a(nd6.c.obj) 0x14d (size before relaxing) - *fill* 0x00000000400f3179 0x3 + *fill* 0x00000000400f34a9 0x3 .text.nd6_input - 0x00000000400f317c 0xdcb esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f34ac 0xdcb esp-idf/lwip/liblwip.a(nd6.c.obj) 0xe26 (size before relaxing) - 0x00000000400f317c nd6_input - *fill* 0x00000000400f3f47 0x1 - .text.nd6_tmr 0x00000000400f3f48 0x53b esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f34ac nd6_input + *fill* 0x00000000400f4277 0x1 + .text.nd6_tmr 0x00000000400f4278 0x53b esp-idf/lwip/liblwip.a(nd6.c.obj) 0x54f (size before relaxing) - 0x00000000400f3f48 nd6_tmr - *fill* 0x00000000400f4483 0x1 + 0x00000000400f4278 nd6_tmr + *fill* 0x00000000400f47b3 0x1 .text.nd6_clear_destination_cache - 0x00000000400f4484 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x00000000400f4484 nd6_clear_destination_cache - *fill* 0x00000000400f44af 0x1 + 0x00000000400f47b4 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f47b4 nd6_clear_destination_cache + *fill* 0x00000000400f47df 0x1 .text.nd6_find_route - 0x00000000400f44b0 0x98 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x9c (size before relaxing) - 0x00000000400f44b0 nd6_find_route + 0x00000000400f47e0 0x9c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f47e0 nd6_find_route .text.nd6_get_next_hop_addr_or_queue - 0x00000000400f4548 0x99 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f487c 0x99 esp-idf/lwip/liblwip.a(nd6.c.obj) 0xa1 (size before relaxing) - 0x00000000400f4548 nd6_get_next_hop_addr_or_queue - *fill* 0x00000000400f45e1 0x3 + 0x00000000400f487c nd6_get_next_hop_addr_or_queue + *fill* 0x00000000400f4915 0x3 .text.nd6_get_destination_mtu - 0x00000000400f45e4 0x2a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f4918 0x2a esp-idf/lwip/liblwip.a(nd6.c.obj) 0x2e (size before relaxing) - 0x00000000400f45e4 nd6_get_destination_mtu - *fill* 0x00000000400f460e 0x2 + 0x00000000400f4918 nd6_get_destination_mtu + *fill* 0x00000000400f4942 0x2 .text.nd6_reachability_hint - 0x00000000400f4610 0x146 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f4944 0x146 esp-idf/lwip/liblwip.a(nd6.c.obj) 0x14a (size before relaxing) - 0x00000000400f4610 nd6_reachability_hint - *fill* 0x00000000400f4756 0x2 + 0x00000000400f4944 nd6_reachability_hint + *fill* 0x00000000400f4a8a 0x2 .text.nd6_cleanup_netif - 0x00000000400f4758 0xca esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f4a8c 0xca esp-idf/lwip/liblwip.a(nd6.c.obj) 0xce (size before relaxing) - 0x00000000400f4758 nd6_cleanup_netif - *fill* 0x00000000400f4822 0x2 + 0x00000000400f4a8c nd6_cleanup_netif + *fill* 0x00000000400f4b56 0x2 .text.nd6_adjust_mld_membership - 0x00000000400f4824 0xb0 esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x00000000400f4824 nd6_adjust_mld_membership + 0x00000000400f4b58 0xb0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f4b58 nd6_adjust_mld_membership .text.ethernet_input - 0x00000000400f48d4 0xf8 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x00000000400f4c08 0xf8 esp-idf/lwip/liblwip.a(ethernet.c.obj) 0x104 (size before relaxing) - 0x00000000400f48d4 ethernet_input + 0x00000000400f4c08 ethernet_input .text.ethernet_output - 0x00000000400f49cc 0x6d esp-idf/lwip/liblwip.a(ethernet.c.obj) - 0x71 (size before relaxing) - 0x00000000400f49cc ethernet_output - *fill* 0x00000000400f4a39 0x3 + 0x00000000400f4d00 0x71 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x00000000400f4d00 ethernet_output + *fill* 0x00000000400f4d71 0x3 .text.sys_thread_sem_free - 0x00000000400f4a3c 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4d74 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x1c (size before relaxing) .text.sys_mutex_new - 0x00000000400f4a54 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4d8c 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x1a (size before relaxing) - 0x00000000400f4a54 sys_mutex_new - *fill* 0x00000000400f4a6a 0x2 + 0x00000000400f4d8c sys_mutex_new + *fill* 0x00000000400f4da2 0x2 .text.sys_mutex_lock - 0x00000000400f4a6c 0x23 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x27 (size before relaxing) - 0x00000000400f4a6c sys_mutex_lock - *fill* 0x00000000400f4a8f 0x1 + 0x00000000400f4da4 0x27 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4da4 sys_mutex_lock + *fill* 0x00000000400f4dcb 0x1 .text.sys_mutex_unlock - 0x00000000400f4a90 0x24 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x28 (size before relaxing) - 0x00000000400f4a90 sys_mutex_unlock + 0x00000000400f4dcc 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4dcc sys_mutex_unlock .text.sys_sem_new - 0x00000000400f4ab4 0x55 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4df4 0x59 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x61 (size before relaxing) - 0x00000000400f4ab4 sys_sem_new - *fill* 0x00000000400f4b09 0x3 + 0x00000000400f4df4 sys_sem_new + *fill* 0x00000000400f4e4d 0x3 .text.sys_sem_signal - 0x00000000400f4b0c 0x24 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x28 (size before relaxing) - 0x00000000400f4b0c sys_sem_signal + 0x00000000400f4e50 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4e50 sys_sem_signal .text.sys_sem_signal_isr - 0x00000000400f4b30 0x1e esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x00000000400f4b30 sys_sem_signal_isr - *fill* 0x00000000400f4b4e 0x2 + 0x00000000400f4e78 0x1e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4e78 sys_sem_signal_isr + *fill* 0x00000000400f4e96 0x2 .text.sys_arch_sem_wait - 0x00000000400f4b50 0x54 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4e98 0x5c esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x60 (size before relaxing) - 0x00000000400f4b50 sys_arch_sem_wait + 0x00000000400f4e98 sys_arch_sem_wait .text.sys_mbox_new - 0x00000000400f4ba4 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4ef4 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x3e (size before relaxing) - 0x00000000400f4ba4 sys_mbox_new - *fill* 0x00000000400f4bda 0x2 + 0x00000000400f4ef4 sys_mbox_new + *fill* 0x00000000400f4f2a 0x2 .text.sys_mbox_post - 0x00000000400f4bdc 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x2c (size before relaxing) - 0x00000000400f4bdc sys_mbox_post + 0x00000000400f4f2c 0x2c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4f2c sys_mbox_post .text.sys_mbox_trypost - 0x00000000400f4c04 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x00000000400f4c04 sys_mbox_trypost - *fill* 0x00000000400f4c26 0x2 + 0x00000000400f4f58 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4f58 sys_mbox_trypost + *fill* 0x00000000400f4f7a 0x2 .text.sys_arch_mbox_fetch - 0x00000000400f4c28 0x65 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4f7c 0x68 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x70 (size before relaxing) - 0x00000000400f4c28 sys_arch_mbox_fetch - *fill* 0x00000000400f4c8d 0x3 + 0x00000000400f4f7c sys_arch_mbox_fetch .text.sys_arch_mbox_tryfetch - 0x00000000400f4c90 0x3a esp-idf/lwip/liblwip.a(sys_arch.c.obj) - 0x3d (size before relaxing) - 0x00000000400f4c90 sys_arch_mbox_tryfetch - *fill* 0x00000000400f4cca 0x2 + 0x00000000400f4fe4 0x3d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4fe4 sys_arch_mbox_tryfetch + *fill* 0x00000000400f5021 0x3 .text.sys_mbox_free - 0x00000000400f4ccc 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f5024 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x3e (size before relaxing) - 0x00000000400f4ccc sys_mbox_free - *fill* 0x00000000400f4d02 0x2 + 0x00000000400f5024 sys_mbox_free + *fill* 0x00000000400f505a 0x2 .text.sys_thread_new - 0x00000000400f4d04 0x24 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f505c 0x24 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x28 (size before relaxing) - 0x00000000400f4d04 sys_thread_new + 0x00000000400f505c sys_thread_new .text.sys_init - 0x00000000400f4d28 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f5080 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x48 (size before relaxing) - 0x00000000400f4d28 sys_init - *fill* 0x00000000400f4d5e 0x2 - .text.sys_now 0x00000000400f4d60 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f5080 sys_init + *fill* 0x00000000400f50b6 0x2 + .text.sys_now 0x00000000400f50b8 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x13 (size before relaxing) - 0x00000000400f4d60 sys_now - *fill* 0x00000000400f4d70 0x0 + 0x00000000400f50b8 sys_now + *fill* 0x00000000400f50c8 0x0 .text.sys_arch_protect - 0x00000000400f4d70 0x1b esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f50c8 0x1b esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x21 (size before relaxing) - 0x00000000400f4d70 sys_arch_protect - *fill* 0x00000000400f4d8b 0x1 + 0x00000000400f50c8 sys_arch_protect + *fill* 0x00000000400f50e3 0x1 .text.sys_arch_unprotect - 0x00000000400f4d8c 0xb esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f50e4 0xb esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0xe (size before relaxing) - 0x00000000400f4d8c sys_arch_unprotect - *fill* 0x00000000400f4d97 0x1 + 0x00000000400f50e4 sys_arch_unprotect + *fill* 0x00000000400f50ef 0x1 .text.sys_thread_sem_init - 0x00000000400f4d98 0x5c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f50f0 0x5c esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x74 (size before relaxing) - 0x00000000400f4d98 sys_thread_sem_init + 0x00000000400f50f0 sys_thread_sem_init .text.sys_thread_sem_get - 0x00000000400f4df4 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f514c 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x1a (size before relaxing) - 0x00000000400f4df4 sys_thread_sem_get - *fill* 0x00000000400f4e0a 0x2 + 0x00000000400f514c sys_thread_sem_get + *fill* 0x00000000400f5162 0x2 .text.inet_cksum_pseudo_base - 0x00000000400f4e0c 0x7c esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400f5164 0x7c esp-idf/lwip/liblwip.a(inet_chksum.c.obj) .text.inet_chksum_pseudo - 0x00000000400f4e88 0x38 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400f51e0 0x38 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) 0x3c (size before relaxing) - 0x00000000400f4e88 inet_chksum_pseudo + 0x00000000400f51e0 inet_chksum_pseudo .text.ip6_chksum_pseudo - 0x00000000400f4ec0 0x55 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x00000000400f4ec0 ip6_chksum_pseudo - *fill* 0x00000000400f4f15 0x3 + 0x00000000400f5218 0x55 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400f5218 ip6_chksum_pseudo + *fill* 0x00000000400f526d 0x3 .text.ip_chksum_pseudo - 0x00000000400f4f18 0x32 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x00000000400f4f18 ip_chksum_pseudo - *fill* 0x00000000400f4f4a 0x2 + 0x00000000400f5270 0x32 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400f5270 ip_chksum_pseudo + *fill* 0x00000000400f52a2 0x2 .text.inet_chksum - 0x00000000400f4f4c 0x18 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x00000000400f4f4c inet_chksum + 0x00000000400f52a4 0x18 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400f52a4 inet_chksum .text.inet_chksum_pbuf - 0x00000000400f4f64 0x5b esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x00000000400f4f64 inet_chksum_pbuf - *fill* 0x00000000400f4fbf 0x1 + 0x00000000400f52bc 0x5b esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400f52bc inet_chksum_pbuf + *fill* 0x00000000400f5317 0x1 .text.lwip_get_socket_select_semaphore - 0x00000000400f4fc0 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400f5318 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0xd (size before relaxing) - *fill* 0x00000000400f4fca 0x2 + *fill* 0x00000000400f5322 0x2 .text.lwip_stop_socket_select_isr - 0x00000000400f4fcc 0x12 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400f5324 0x12 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x16 (size before relaxing) - *fill* 0x00000000400f4fde 0x2 + *fill* 0x00000000400f5336 0x2 .text.lwip_stop_socket_select - 0x00000000400f4fe0 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400f5338 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0xe (size before relaxing) - *fill* 0x00000000400f4fea 0x2 + *fill* 0x00000000400f5342 0x2 .text.lwip_ioctl_r_wrapper - 0x00000000400f4fec 0x34 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400f5344 0x34 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x38 (size before relaxing) .text.lwip_fcntl_r_wrapper - 0x00000000400f5020 0x10 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400f5378 0x10 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x14 (size before relaxing) .text.esp_vfs_lwip_sockets_register - 0x00000000400f5030 0x62 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x00000000400f5388 0x62 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x66 (size before relaxing) - 0x00000000400f5030 esp_vfs_lwip_sockets_register - *fill* 0x00000000400f5092 0x2 + 0x00000000400f5388 esp_vfs_lwip_sockets_register + *fill* 0x00000000400f53ea 0x2 .text.tryget_socket_unconn_nouse - 0x00000000400f5094 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f53ec 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) .text.free_socket_locked - 0x00000000400f50b4 0x4b esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x00000000400f50ff 0x1 + 0x00000000400f540c 0x4b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x00000000400f5457 0x1 .text.lwip_sockopt_to_ipopt - 0x00000000400f5100 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5458 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) .text.lwip_link_select_cb - 0x00000000400f5120 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5478 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) .text.lwip_unlink_select_cb - 0x00000000400f5150 0x67 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x6b (size before relaxing) - *fill* 0x00000000400f51b7 0x1 + 0x00000000400f54a8 0x6b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x00000000400f5513 0x1 .text.sockaddr_to_ipaddr_port - 0x00000000400f51b8 0x83 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x00000000400f523b 0x1 + 0x00000000400f5514 0x83 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x00000000400f5597 0x1 .text.lwip_sock_make_addr - 0x00000000400f523c 0xf6 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x00000000400f5332 0x2 + 0x00000000400f5598 0xf6 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x00000000400f568e 0x2 .text.lwip_recv_tcp_from - 0x00000000400f5334 0x42 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5690 0x42 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x46 (size before relaxing) - *fill* 0x00000000400f5376 0x2 + *fill* 0x00000000400f56d2 0x2 .text.sock_inc_used - 0x00000000400f5378 0x52 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f56d4 0x56 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x5a (size before relaxing) - *fill* 0x00000000400f53ca 0x2 + *fill* 0x00000000400f572a 0x2 .text.tryget_socket_unconn - 0x00000000400f53cc 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f572c 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x2a (size before relaxing) - *fill* 0x00000000400f53f2 0x2 + *fill* 0x00000000400f5752 0x2 .text.sock_inc_used_locked - 0x00000000400f53f4 0x6c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5754 0x74 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x78 (size before relaxing) .text.tryget_socket_unconn_locked - 0x00000000400f5460 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f57c8 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x2a (size before relaxing) - *fill* 0x00000000400f5486 0x2 + *fill* 0x00000000400f57ee 0x2 .text.lwip_select_inc_sockets_used_set - 0x00000000400f5488 0x53 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f57f0 0x53 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x5b (size before relaxing) - *fill* 0x00000000400f54db 0x1 + *fill* 0x00000000400f5843 0x1 .text.lwip_select_inc_sockets_used - 0x00000000400f54dc 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5844 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x3c (size before relaxing) .text.alloc_socket - 0x00000000400f5510 0xdd esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5878 0xe1 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xe5 (size before relaxing) - *fill* 0x00000000400f55ed 0x3 + *fill* 0x00000000400f5959 0x3 .text.free_socket_free_elements - 0x00000000400f55f0 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f595c 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) 0x26 (size before relaxing) - *fill* 0x00000000400f560f 0x1 + *fill* 0x00000000400f597b 0x1 .text.free_socket - 0x00000000400f5610 0x2a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f597c 0x2a esp-idf/lwip/liblwip.a(sockets.c.obj) 0x36 (size before relaxing) - *fill* 0x00000000400f563a 0x2 + *fill* 0x00000000400f59a6 0x2 .text.done_socket - 0x00000000400f563c 0x7e esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f59a8 0x86 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x8e (size before relaxing) - *fill* 0x00000000400f56ba 0x2 + *fill* 0x00000000400f5a2e 0x2 .text.tryget_socket - 0x00000000400f56bc 0x1a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5a30 0x1a esp-idf/lwip/liblwip.a(sockets.c.obj) 0x1e (size before relaxing) - *fill* 0x00000000400f56d6 0x2 + *fill* 0x00000000400f5a4a 0x2 .text.get_socket - 0x00000000400f56d8 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5a4c 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x1c (size before relaxing) .text.lwip_selscan - 0x00000000400f56f0 0x1c9 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5a64 0x1c9 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x1d1 (size before relaxing) - *fill* 0x00000000400f58b9 0x3 + *fill* 0x00000000400f5c2d 0x3 .text.lwip_select_dec_sockets_used - 0x00000000400f58bc 0x3f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5c30 0x43 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x46 (size before relaxing) - *fill* 0x00000000400f58fb 0x1 + *fill* 0x00000000400f5c73 0x1 .text.lwip_socket_register_membership - 0x00000000400f58fc 0x5a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5c74 0x5a esp-idf/lwip/liblwip.a(sockets.c.obj) 0x5e (size before relaxing) - *fill* 0x00000000400f5956 0x2 + *fill* 0x00000000400f5cce 0x2 .text.lwip_socket_unregister_membership - 0x00000000400f5958 0x6c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5cd0 0x6c esp-idf/lwip/liblwip.a(sockets.c.obj) 0x73 (size before relaxing) - *fill* 0x00000000400f59c4 0x0 + *fill* 0x00000000400f5d3c 0x0 .text.lwip_socket_register_mld6_membership - 0x00000000400f59c4 0x69 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5d3c 0x69 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x71 (size before relaxing) - *fill* 0x00000000400f5a2d 0x3 + *fill* 0x00000000400f5da5 0x3 .text.lwip_socket_unregister_mld6_membership - 0x00000000400f5a30 0xd3 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5da8 0xd3 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xda (size before relaxing) - *fill* 0x00000000400f5b03 0x1 + *fill* 0x00000000400f5e7b 0x1 .text.lwip_socket_drop_registered_memberships - 0x00000000400f5b04 0x73 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5e7c 0x73 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x7b (size before relaxing) - *fill* 0x00000000400f5b77 0x1 + *fill* 0x00000000400f5eef 0x1 .text.lwip_socket_drop_registered_mld6_memberships - 0x00000000400f5b78 0x7e esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5ef0 0x7e esp-idf/lwip/liblwip.a(sockets.c.obj) 0x86 (size before relaxing) - *fill* 0x00000000400f5bf6 0x2 + *fill* 0x00000000400f5f6e 0x2 .text.lwip_recv_tcp - 0x00000000400f5bf8 0x158 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f5f70 0x160 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x164 (size before relaxing) .text.lwip_recvfrom_udp_raw - 0x00000000400f5d50 0xe0 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0xe4 (size before relaxing) + 0x00000000400f60d0 0xe4 esp-idf/lwip/liblwip.a(sockets.c.obj) .text.select_check_waiters - 0x00000000400f5e30 0xd3 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f61b4 0xd3 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xe3 (size before relaxing) - *fill* 0x00000000400f5f03 0x1 + *fill* 0x00000000400f6287 0x1 .text.event_callback - 0x00000000400f5f04 0xec esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f6288 0xf0 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xfc (size before relaxing) .text.lwip_setsockopt_impl - 0x00000000400f5ff0 0x7d4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f6378 0x7d8 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x82c (size before relaxing) .text.lwip_setsockopt_callback - 0x00000000400f67c4 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f6b50 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x34 (size before relaxing) .text.lwip_accept - 0x00000000400f67f0 0x1d8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f6b80 0x1e8 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x210 (size before relaxing) - 0x00000000400f67f0 lwip_accept + 0x00000000400f6b80 lwip_accept .text.lwip_bind - 0x00000000400f69c8 0xf6 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f6d68 0x106 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x11e (size before relaxing) - 0x00000000400f69c8 lwip_bind - *fill* 0x00000000400f6abe 0x2 + 0x00000000400f6d68 lwip_bind + *fill* 0x00000000400f6e6e 0x2 .text.lwip_close - 0x00000000400f6ac0 0x81 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f6e70 0x89 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x99 (size before relaxing) - 0x00000000400f6ac0 lwip_close - *fill* 0x00000000400f6b41 0x3 + 0x00000000400f6e70 lwip_close + *fill* 0x00000000400f6ef9 0x3 .text.lwip_listen - 0x00000000400f6b44 0x71 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f6efc 0x79 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x81 (size before relaxing) - 0x00000000400f6b44 lwip_listen - *fill* 0x00000000400f6bb5 0x3 + 0x00000000400f6efc lwip_listen + *fill* 0x00000000400f6f75 0x3 .text.lwip_recvfrom - 0x00000000400f6bb8 0xca esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f6f78 0xce esp-idf/lwip/liblwip.a(sockets.c.obj) 0xe2 (size before relaxing) - 0x00000000400f6bb8 lwip_recvfrom - *fill* 0x00000000400f6c82 0x2 + 0x00000000400f6f78 lwip_recvfrom + *fill* 0x00000000400f7046 0x2 .text.lwip_read - 0x00000000400f6c84 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x00000000400f6c84 lwip_read - *fill* 0x00000000400f6c9d 0x3 + 0x00000000400f7048 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f7048 lwip_read + *fill* 0x00000000400f7061 0x3 .text.lwip_recv - 0x00000000400f6ca0 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x00000000400f6ca0 lwip_recv - *fill* 0x00000000400f6cb9 0x3 + 0x00000000400f7064 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f7064 lwip_recv + *fill* 0x00000000400f707d 0x3 .text.lwip_sendto - 0x00000000400f6cbc 0x186 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f7080 0x196 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x1b2 (size before relaxing) - 0x00000000400f6cbc lwip_sendto - *fill* 0x00000000400f6e42 0x2 + 0x00000000400f7080 lwip_sendto + *fill* 0x00000000400f7216 0x2 .text.lwip_send - 0x00000000400f6e44 0x82 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f7218 0x86 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x96 (size before relaxing) - 0x00000000400f6e44 lwip_send - *fill* 0x00000000400f6ec6 0x2 + 0x00000000400f7218 lwip_send + *fill* 0x00000000400f729e 0x2 .text.lwip_socket - 0x00000000400f6ec8 0xd2 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f72a0 0xd6 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xde (size before relaxing) - 0x00000000400f6ec8 lwip_socket - *fill* 0x00000000400f6f9a 0x2 + 0x00000000400f72a0 lwip_socket + *fill* 0x00000000400f7376 0x2 .text.lwip_write - 0x00000000400f6f9c 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) - 0x00000000400f6f9c lwip_write - *fill* 0x00000000400f6fb1 0x3 + 0x00000000400f7378 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f7378 lwip_write + *fill* 0x00000000400f738d 0x3 .text.lwip_select - 0x00000000400f6fb4 0x33d esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f7390 0x34d esp-idf/lwip/liblwip.a(sockets.c.obj) 0x385 (size before relaxing) - 0x00000000400f6fb4 lwip_select - *fill* 0x00000000400f72f1 0x3 + 0x00000000400f7390 lwip_select + *fill* 0x00000000400f76dd 0x3 .text.lwip_setsockopt - 0x00000000400f72f4 0x80 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f76e0 0x8c esp-idf/lwip/liblwip.a(sockets.c.obj) 0xa0 (size before relaxing) - 0x00000000400f72f4 lwip_setsockopt + 0x00000000400f76e0 lwip_setsockopt .text.lwip_ioctl - 0x00000000400f7374 0x5c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f776c 0x60 esp-idf/lwip/liblwip.a(sockets.c.obj) 0x64 (size before relaxing) - 0x00000000400f7374 lwip_ioctl + 0x00000000400f776c lwip_ioctl .text.lwip_fcntl - 0x00000000400f73d0 0xc0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f77cc 0xc4 esp-idf/lwip/liblwip.a(sockets.c.obj) 0xcc (size before relaxing) - 0x00000000400f73d0 lwip_fcntl + 0x00000000400f77cc lwip_fcntl .text.netconn_apimsg - 0x00000000400f7490 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7890 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x26 (size before relaxing) - *fill* 0x00000000400f74b2 0x2 + *fill* 0x00000000400f78b2 0x2 .text.netconn_tcp_recvd_msg - 0x00000000400f74b4 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x35 (size before relaxing) - *fill* 0x00000000400f74e5 0x3 + 0x00000000400f78b4 0x35 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x00000000400f78e9 0x3 .text.netconn_close_shutdown - 0x00000000400f74e8 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f78ec 0x2e esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x32 (size before relaxing) - *fill* 0x00000000400f7512 0x2 + *fill* 0x00000000400f791a 0x2 .text.netconn_new_with_proto_and_callback - 0x00000000400f7514 0x72 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f791c 0x7e esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x86 (size before relaxing) - 0x00000000400f7514 netconn_new_with_proto_and_callback - *fill* 0x00000000400f7586 0x2 + 0x00000000400f791c netconn_new_with_proto_and_callback + *fill* 0x00000000400f799a 0x2 .text.netconn_prepare_delete - 0x00000000400f7588 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f799c 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x26 (size before relaxing) - 0x00000000400f7588 netconn_prepare_delete - *fill* 0x00000000400f75a6 0x2 + 0x00000000400f799c netconn_prepare_delete + *fill* 0x00000000400f79ba 0x2 .text.netconn_delete - 0x00000000400f75a8 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f79bc 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x32 (size before relaxing) - 0x00000000400f75a8 netconn_delete - *fill* 0x00000000400f75d2 0x2 + 0x00000000400f79bc netconn_delete + *fill* 0x00000000400f79e6 0x2 .text.netconn_getaddr - 0x00000000400f75d4 0x4d esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x55 (size before relaxing) - 0x00000000400f75d4 netconn_getaddr - *fill* 0x00000000400f7621 0x3 + 0x00000000400f79e8 0x55 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f79e8 netconn_getaddr + *fill* 0x00000000400f7a3d 0x3 .text.netconn_bind - 0x00000000400f7624 0xb5 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0xb9 (size before relaxing) - 0x00000000400f7624 netconn_bind - *fill* 0x00000000400f76d9 0x3 + 0x00000000400f7a40 0xb9 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7a40 netconn_bind + *fill* 0x00000000400f7af9 0x3 .text.netconn_listen_with_backlog - 0x00000000400f76dc 0x29 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x2d (size before relaxing) - 0x00000000400f76dc netconn_listen_with_backlog - *fill* 0x00000000400f7705 0x3 + 0x00000000400f7afc 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7afc netconn_listen_with_backlog + *fill* 0x00000000400f7b29 0x3 .text.netconn_tcp_recvd - 0x00000000400f7708 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x31 (size before relaxing) - 0x00000000400f7708 netconn_tcp_recvd - *fill* 0x00000000400f7735 0x3 + 0x00000000400f7b2c 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7b2c netconn_tcp_recvd + *fill* 0x00000000400f7b5d 0x3 .text.netconn_send - 0x00000000400f7738 0x25 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x29 (size before relaxing) - 0x00000000400f7738 netconn_send - *fill* 0x00000000400f775d 0x3 + 0x00000000400f7b60 0x29 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7b60 netconn_send + *fill* 0x00000000400f7b89 0x3 .text.netconn_write_vectors_partly - 0x00000000400f7760 0xfa esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x00000000400f7760 netconn_write_vectors_partly - *fill* 0x00000000400f785a 0x2 + 0x00000000400f7b8c 0xfa esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7b8c netconn_write_vectors_partly + *fill* 0x00000000400f7c86 0x2 .text.netconn_write_partly - 0x00000000400f785c 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x00000000400f785c netconn_write_partly - *fill* 0x00000000400f7879 0x3 + 0x00000000400f7c88 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7c88 netconn_write_partly + *fill* 0x00000000400f7ca5 0x3 .text.netconn_err - 0x00000000400f787c 0x1f esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7ca8 0x1f esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x23 (size before relaxing) - 0x00000000400f787c netconn_err - *fill* 0x00000000400f789b 0x1 + 0x00000000400f7ca8 netconn_err + *fill* 0x00000000400f7cc7 0x1 .text.netconn_accept - 0x00000000400f789c 0xf4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7cc8 0xf4 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0xf8 (size before relaxing) - 0x00000000400f789c netconn_accept + 0x00000000400f7cc8 netconn_accept .text.netconn_recv_data - 0x00000000400f7990 0x138 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7dbc 0x13c esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x148 (size before relaxing) .text.netconn_recv_udp_raw_netbuf_flags - 0x00000000400f7ac8 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x35 (size before relaxing) - 0x00000000400f7ac8 netconn_recv_udp_raw_netbuf_flags - *fill* 0x00000000400f7af9 0x3 + 0x00000000400f7ef8 0x35 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7ef8 netconn_recv_udp_raw_netbuf_flags + *fill* 0x00000000400f7f2d 0x3 .text.netconn_recv_data_tcp - 0x00000000400f7afc 0xad esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7f30 0xad esp-idf/lwip/liblwip.a(api_lib.c.obj) 0xb1 (size before relaxing) - *fill* 0x00000000400f7ba9 0x3 + *fill* 0x00000000400f7fdd 0x3 .text.netconn_recv_tcp_pbuf_flags - 0x00000000400f7bac 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x35 (size before relaxing) - 0x00000000400f7bac netconn_recv_tcp_pbuf_flags - *fill* 0x00000000400f7bdd 0x3 + 0x00000000400f7fe0 0x35 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f7fe0 netconn_recv_tcp_pbuf_flags + *fill* 0x00000000400f8015 0x3 .text.netconn_join_leave_group - 0x00000000400f7be0 0x36 esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x00000000400f7be0 netconn_join_leave_group - *fill* 0x00000000400f7c16 0x2 + 0x00000000400f8018 0x36 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f8018 netconn_join_leave_group + *fill* 0x00000000400f804e 0x2 .text.netconn_join_leave_group_netif - 0x00000000400f7c18 0x3d esp-idf/lwip/liblwip.a(api_lib.c.obj) - 0x41 (size before relaxing) - 0x00000000400f7c18 netconn_join_leave_group_netif - *fill* 0x00000000400f7c55 0x3 + 0x00000000400f8050 0x41 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f8050 netconn_join_leave_group_netif + *fill* 0x00000000400f8091 0x3 .text.lwip_netconn_err_to_msg - 0x00000000400f7c58 0x46 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x4a (size before relaxing) - *fill* 0x00000000400f7c9e 0x2 + 0x00000000400f8094 0x4a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x00000000400f80de 0x2 .text.recv_udp - 0x00000000400f7ca0 0x11b esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f80e0 0x11b esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x12b (size before relaxing) - *fill* 0x00000000400f7dbb 0x1 + *fill* 0x00000000400f81fb 0x1 .text.recv_raw - 0x00000000400f7dbc 0xa5 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f81fc 0xa5 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0xb5 (size before relaxing) - *fill* 0x00000000400f7e61 0x3 + *fill* 0x00000000400f82a1 0x3 .text.setup_tcp - 0x00000000400f7e64 0x36 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f82a4 0x36 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x42 (size before relaxing) - *fill* 0x00000000400f7e9a 0x2 - .text.pcb_new 0x00000000400f7e9c 0xee esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x00000000400f82da 0x2 + .text.pcb_new 0x00000000400f82dc 0xee esp-idf/lwip/liblwip.a(api_msg.c.obj) 0xf2 (size before relaxing) - *fill* 0x00000000400f7f8a 0x2 - .text.err_tcp 0x00000000400f7f8c 0x11c esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x00000000400f83ca 0x2 + .text.err_tcp 0x00000000400f83cc 0x120 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x12c (size before relaxing) .text.netconn_mark_mbox_invalid - 0x00000000400f80a8 0x40 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f84ec 0x40 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x47 (size before relaxing) - *fill* 0x00000000400f80e8 0x0 + *fill* 0x00000000400f852c 0x0 .text.lwip_netconn_do_writemore - 0x00000000400f80e8 0x281 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f852c 0x28d esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x291 (size before relaxing) - *fill* 0x00000000400f8369 0x3 + *fill* 0x00000000400f87b9 0x3 .text.lwip_netconn_do_close_internal - 0x00000000400f836c 0x1ee esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f87bc 0x1ee esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x206 (size before relaxing) - *fill* 0x00000000400f855a 0x2 + *fill* 0x00000000400f89aa 0x2 .text.poll_tcp - 0x00000000400f855c 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f89ac 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x69 (size before relaxing) - *fill* 0x00000000400f85be 0x2 + *fill* 0x00000000400f8a0e 0x2 .text.sent_tcp - 0x00000000400f85c0 0x66 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8a10 0x66 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x6a (size before relaxing) - *fill* 0x00000000400f8626 0x2 + *fill* 0x00000000400f8a76 0x2 .text.recv_tcp - 0x00000000400f8628 0xa6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8a78 0xae esp-idf/lwip/liblwip.a(api_msg.c.obj) 0xb6 (size before relaxing) - *fill* 0x00000000400f86ce 0x2 + *fill* 0x00000000400f8b26 0x2 .text.lwip_netconn_is_deallocated_msg - 0x00000000400f86d0 0x12 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x00000000400f86d0 lwip_netconn_is_deallocated_msg - *fill* 0x00000000400f86e2 0x2 + 0x00000000400f8b28 0x12 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8b28 lwip_netconn_is_deallocated_msg + *fill* 0x00000000400f8b3a 0x2 .text.lwip_netconn_is_err_msg - 0x00000000400f86e4 0x4c esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x00000000400f86e4 lwip_netconn_is_err_msg + 0x00000000400f8b3c 0x4c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8b3c lwip_netconn_is_err_msg .text.lwip_netconn_do_newconn - 0x00000000400f8730 0x1d esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8b88 0x1d esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x20 (size before relaxing) - 0x00000000400f8730 lwip_netconn_do_newconn - *fill* 0x00000000400f874d 0x3 + 0x00000000400f8b88 lwip_netconn_do_newconn + *fill* 0x00000000400f8ba5 0x3 .text.netconn_alloc - 0x00000000400f8750 0x6e esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8ba8 0x72 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x7a (size before relaxing) - 0x00000000400f8750 netconn_alloc - *fill* 0x00000000400f87be 0x2 + 0x00000000400f8ba8 netconn_alloc + *fill* 0x00000000400f8c1a 0x2 .text.netconn_free - 0x00000000400f87c0 0x56 esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x5a (size before relaxing) - 0x00000000400f87c0 netconn_free - *fill* 0x00000000400f8816 0x2 + 0x00000000400f8c1c 0x5a esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8c1c netconn_free + *fill* 0x00000000400f8c76 0x2 .text.netconn_drain - 0x00000000400f8818 0xba esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8c78 0xba esp-idf/lwip/liblwip.a(api_msg.c.obj) 0xde (size before relaxing) - *fill* 0x00000000400f88d2 0x2 + *fill* 0x00000000400f8d32 0x2 .text.accept_function - 0x00000000400f88d4 0x110 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8d34 0x110 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x140 (size before relaxing) .text.lwip_netconn_do_delconn - 0x00000000400f89e4 0xff esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8e44 0x103 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x10b (size before relaxing) - 0x00000000400f89e4 lwip_netconn_do_delconn - *fill* 0x00000000400f8ae3 0x1 + 0x00000000400f8e44 lwip_netconn_do_delconn + *fill* 0x00000000400f8f47 0x1 .text.lwip_netconn_do_bind - 0x00000000400f8ae4 0xf9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8f48 0xf9 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x104 (size before relaxing) - 0x00000000400f8ae4 lwip_netconn_do_bind - *fill* 0x00000000400f8bdd 0x3 + 0x00000000400f8f48 lwip_netconn_do_bind + *fill* 0x00000000400f9041 0x3 .text.lwip_netconn_do_listen - 0x00000000400f8be0 0x17f esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f9044 0x183 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x18f (size before relaxing) - 0x00000000400f8be0 lwip_netconn_do_listen - *fill* 0x00000000400f8d5f 0x1 + 0x00000000400f9044 lwip_netconn_do_listen + *fill* 0x00000000400f91c7 0x1 .text.lwip_netconn_do_send - 0x00000000400f8d60 0x152 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f91c8 0x152 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x166 (size before relaxing) - 0x00000000400f8d60 lwip_netconn_do_send - *fill* 0x00000000400f8eb2 0x2 + 0x00000000400f91c8 lwip_netconn_do_send + *fill* 0x00000000400f931a 0x2 .text.lwip_netconn_do_recv - 0x00000000400f8eb4 0x44 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f931c 0x44 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x48 (size before relaxing) - 0x00000000400f8eb4 lwip_netconn_do_recv + 0x00000000400f931c lwip_netconn_do_recv .text.lwip_netconn_do_accepted - 0x00000000400f8ef8 0x23 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f9360 0x23 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x2a (size before relaxing) - 0x00000000400f8ef8 lwip_netconn_do_accepted - *fill* 0x00000000400f8f1b 0x1 + 0x00000000400f9360 lwip_netconn_do_accepted + *fill* 0x00000000400f9383 0x1 .text.lwip_netconn_do_write - 0x00000000400f8f1c 0x7e esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f9384 0x82 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x8a (size before relaxing) - 0x00000000400f8f1c lwip_netconn_do_write - *fill* 0x00000000400f8f9a 0x2 + 0x00000000400f9384 lwip_netconn_do_write + *fill* 0x00000000400f9406 0x2 .text.lwip_netconn_do_getaddr - 0x00000000400f8f9c 0x17e esp-idf/lwip/liblwip.a(api_msg.c.obj) - 0x182 (size before relaxing) - 0x00000000400f8f9c lwip_netconn_do_getaddr - *fill* 0x00000000400f911a 0x2 + 0x00000000400f9408 0x182 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f9408 lwip_netconn_do_getaddr + *fill* 0x00000000400f958a 0x2 .text.lwip_netconn_do_close - 0x00000000400f911c 0xcc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f958c 0xd0 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0xdb (size before relaxing) - 0x00000000400f911c lwip_netconn_do_close - *fill* 0x00000000400f91e8 0x0 + 0x00000000400f958c lwip_netconn_do_close + *fill* 0x00000000400f965c 0x0 .text.lwip_netconn_do_join_leave_group - 0x00000000400f91e8 0x71 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f965c 0x71 esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x75 (size before relaxing) - 0x00000000400f91e8 lwip_netconn_do_join_leave_group - *fill* 0x00000000400f9259 0x3 + 0x00000000400f965c lwip_netconn_do_join_leave_group + *fill* 0x00000000400f96cd 0x3 .text.lwip_netconn_do_join_leave_group_netif - 0x00000000400f925c 0x7c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f96d0 0x7c esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x7f (size before relaxing) - 0x00000000400f925c lwip_netconn_do_join_leave_group_netif - *fill* 0x00000000400f92d8 0x0 + 0x00000000400f96d0 lwip_netconn_do_join_leave_group_netif + *fill* 0x00000000400f974c 0x0 .text.err_to_errno - 0x00000000400f92d8 0x28 esp-idf/lwip/liblwip.a(err.c.obj) - 0x00000000400f92d8 err_to_errno + 0x00000000400f974c 0x28 esp-idf/lwip/liblwip.a(err.c.obj) + 0x00000000400f974c err_to_errno .text.netbuf_delete - 0x00000000400f9300 0x1b esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x00000000400f9774 0x1b esp-idf/lwip/liblwip.a(netbuf.c.obj) 0x22 (size before relaxing) - 0x00000000400f9300 netbuf_delete - *fill* 0x00000000400f931b 0x1 + 0x00000000400f9774 netbuf_delete + *fill* 0x00000000400f978f 0x1 .text.netbuf_alloc - 0x00000000400f931c 0x48 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x00000000400f9790 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) 0x54 (size before relaxing) - 0x00000000400f931c netbuf_alloc + 0x00000000400f9790 netbuf_alloc .text.netbuf_free - 0x00000000400f9364 0x1d esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x00000000400f97e0 0x21 esp-idf/lwip/liblwip.a(netbuf.c.obj) 0x24 (size before relaxing) - 0x00000000400f9364 netbuf_free - *fill* 0x00000000400f9381 0x3 + 0x00000000400f97e0 netbuf_free + *fill* 0x00000000400f9801 0x3 .text.heap_caps_get_free_size - 0x00000000400f9384 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x00000000400f9384 heap_caps_get_free_size - *fill* 0x00000000400f93b1 0x3 + 0x00000000400f9804 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400f9804 heap_caps_get_free_size + *fill* 0x00000000400f9831 0x3 .text.heap_caps_get_minimum_free_size - 0x00000000400f93b4 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x00000000400f93b4 heap_caps_get_minimum_free_size - *fill* 0x00000000400f93e1 0x3 + 0x00000000400f9834 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400f9834 heap_caps_get_minimum_free_size + *fill* 0x00000000400f9861 0x3 .text.heap_caps_get_info - 0x00000000400f93e4 0x73 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x00000000400f93e4 heap_caps_get_info - *fill* 0x00000000400f9457 0x1 + 0x00000000400f9864 0x73 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400f9864 heap_caps_get_info + *fill* 0x00000000400f98d7 0x1 .text.heap_caps_get_largest_free_block - 0x00000000400f9458 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x00000000400f9458 heap_caps_get_largest_free_block - *fill* 0x00000000400f9469 0x3 + 0x00000000400f98d8 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400f98d8 heap_caps_get_largest_free_block + *fill* 0x00000000400f98e9 0x3 .text.register_heap - 0x00000000400f946c 0x2b esp-idf/heap/libheap.a(heap_caps_init.c.obj) - *fill* 0x00000000400f9497 0x1 + 0x00000000400f98ec 0x2b esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x00000000400f9917 0x1 .text.heap_caps_enable_nonos_stack_heaps - 0x00000000400f9498 0x2c esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x00000000400f9498 heap_caps_enable_nonos_stack_heaps + 0x00000000400f9918 0x2c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x00000000400f9918 heap_caps_enable_nonos_stack_heaps .text.heap_caps_init - 0x00000000400f94c4 0x2b2 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x00000000400f9944 0x2be esp-idf/heap/libheap.a(heap_caps_init.c.obj) 0x2c6 (size before relaxing) - 0x00000000400f94c4 heap_caps_init - *fill* 0x00000000400f9776 0x2 + 0x00000000400f9944 heap_caps_init + *fill* 0x00000000400f9c02 0x2 + .text.gpio_od_enable + 0x00000000400f9c04 0x62 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x00000000400f9c66 0x2 + .text.gpio_od_disable + 0x00000000400f9c68 0x62 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x00000000400f9cca 0x2 + .text.gpio_input_enable + 0x00000000400f9ccc 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_disable + 0x00000000400f9d48 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_disable + 0x00000000400f9dc4 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_enable + 0x00000000400f9e70 0x95 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x00000000400f9f05 0x3 + .text.gpio_set_level + 0x00000000400f9f08 0xc8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x00000000400f9f08 gpio_set_level + .text.gpio_set_direction + 0x00000000400f9fd0 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + 0xb8 (size before relaxing) + 0x00000000400f9fd0 gpio_set_direction .text.gpio_wakeup_enable - 0x00000000400f9778 0xdd esp-idf/driver/libdriver.a(gpio.c.obj) - 0x00000000400f9778 gpio_wakeup_enable - *fill* 0x00000000400f9855 0x3 + 0x00000000400fa07c 0xdd esp-idf/driver/libdriver.a(gpio.c.obj) + 0x00000000400fa07c gpio_wakeup_enable + *fill* 0x00000000400fa159 0x3 + .text.gpio_iomux_in + 0x00000000400fa15c 0x5b esp-idf/driver/libdriver.a(gpio.c.obj) + 0x00000000400fa15c gpio_iomux_in + *fill* 0x00000000400fa1b7 0x1 + .text.gpio_iomux_out + 0x00000000400fa1b8 0x86 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x00000000400fa1b8 gpio_iomux_out + *fill* 0x00000000400fa23e 0x2 .text.periph_module_enable - 0x00000000400f9858 0x287 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) - 0x00000000400f9858 periph_module_enable - *fill* 0x00000000400f9adf 0x1 + 0x00000000400fa240 0x287 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x00000000400fa240 periph_module_enable + *fill* 0x00000000400fa4c7 0x1 .text.periph_module_disable - 0x00000000400f9ae0 0x27f esp-idf/driver/libdriver.a(periph_ctrl.c.obj) - 0x00000000400f9ae0 periph_module_disable - *fill* 0x00000000400f9d5f 0x1 + 0x00000000400fa4c8 0x27f esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x00000000400fa4c8 periph_module_disable + *fill* 0x00000000400fa747 0x1 .text.periph_module_reset - 0x00000000400f9d60 0x1af esp-idf/driver/libdriver.a(periph_ctrl.c.obj) - 0x00000000400f9d60 periph_module_reset - *fill* 0x00000000400f9f0f 0x1 + 0x00000000400fa748 0x1af esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x00000000400fa748 periph_module_reset + *fill* 0x00000000400fa8f7 0x1 .text.rtc_gpio_isolate - 0x00000000400f9f10 0x80 esp-idf/driver/libdriver.a(rtc_io.c.obj) - 0x00000000400f9f10 rtc_gpio_isolate + 0x00000000400fa8f8 0x80 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x00000000400fa8f8 rtc_gpio_isolate .text.rtc_gpio_force_hold_dis_all - 0x00000000400f9f90 0x2d esp-idf/driver/libdriver.a(rtc_io.c.obj) - 0x00000000400f9f90 rtc_gpio_force_hold_dis_all - *fill* 0x00000000400f9fbd 0x3 + 0x00000000400fa978 0x2d esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x00000000400fa978 rtc_gpio_force_hold_dis_all + *fill* 0x00000000400fa9a5 0x3 .text.rtc_gpio_wakeup_enable - 0x00000000400f9fc0 0xb6 esp-idf/driver/libdriver.a(rtc_io.c.obj) - 0x00000000400f9fc0 rtc_gpio_wakeup_enable - *fill* 0x00000000400fa076 0x2 - .text.rtc_isr 0x00000000400fa078 0x56 esp-idf/driver/libdriver.a(rtc_module.c.obj) - *fill* 0x00000000400fa0ce 0x2 + 0x00000000400fa9a8 0xb6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x00000000400fa9a8 rtc_gpio_wakeup_enable + *fill* 0x00000000400faa5e 0x2 + .text.rtc_isr 0x00000000400faa60 0x56 esp-idf/driver/libdriver.a(rtc_module.c.obj) + *fill* 0x00000000400faab6 0x2 .text.rtc_isr_ensure_installed - 0x00000000400fa0d0 0x46 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x00000000400faab8 0x46 esp-idf/driver/libdriver.a(rtc_module.c.obj) 0x4a (size before relaxing) - *fill* 0x00000000400fa116 0x2 + *fill* 0x00000000400faafe 0x2 .text.rtc_isr_register - 0x00000000400fa118 0x46 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x00000000400fab00 0x46 esp-idf/driver/libdriver.a(rtc_module.c.obj) 0x4a (size before relaxing) - 0x00000000400fa118 rtc_isr_register - *fill* 0x00000000400fa15e 0x2 + 0x00000000400fab00 rtc_isr_register + *fill* 0x00000000400fab46 0x2 + .text.bus_uses_iomux_pins + 0x00000000400fab48 0xa0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_claim + 0x00000000400fabe8 0xb2 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x00000000400fabe8 spicommon_periph_claim + *fill* 0x00000000400fac9a 0x2 + .text.spicommon_periph_free + 0x00000000400fac9c 0x86 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x00000000400fac9c spicommon_periph_free + *fill* 0x00000000400fad22 0x2 + .text.spicommon_irqsource_for_host + 0x00000000400fad24 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x00000000400fad24 spicommon_irqsource_for_host + *fill* 0x00000000400fad39 0x3 + .text.spicommon_dma_chan_claim + 0x00000000400fad3c 0x57 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x00000000400fad3c spicommon_dma_chan_claim + *fill* 0x00000000400fad93 0x1 + .text.spicommon_dma_chan_free + 0x00000000400fad94 0x6d esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x71 (size before relaxing) + 0x00000000400fad94 spicommon_dma_chan_free + *fill* 0x00000000400fae01 0x3 + .text.spicommon_bus_initialize_io + 0x00000000400fae04 0x740 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x77c (size before relaxing) + 0x00000000400fae04 spicommon_bus_initialize_io + .text.spicommon_cs_initialize + 0x00000000400fb544 0xfc esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x10c (size before relaxing) + 0x00000000400fb544 spicommon_cs_initialize .text.uart_pattern_queue_update - 0x00000000400fa160 0x46 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x00000000400fa1a6 0x2 + 0x00000000400fb640 0x46 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x00000000400fb686 0x2 .text.uart_pattern_link_free - 0x00000000400fa1a8 0x4d esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x00000000400fa1f5 0x3 + 0x00000000400fb688 0x4d esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x00000000400fb6d5 0x3 .text.uart_module_enable - 0x00000000400fa1f8 0x5b esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fb6d8 0x5b esp-idf/driver/libdriver.a(uart.c.obj) 0x5f (size before relaxing) - *fill* 0x00000000400fa253 0x1 + *fill* 0x00000000400fb733 0x1 .text.uart_pattern_enqueue - 0x00000000400fa254 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fb734 0x4c esp-idf/driver/libdriver.a(uart.c.obj) .text.uart_rx_intr_handler_default - 0x00000000400fa2a0 0x776 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fb780 0x776 esp-idf/driver/libdriver.a(uart.c.obj) 0x77a (size before relaxing) - *fill* 0x00000000400faa16 0x2 + *fill* 0x00000000400fbef6 0x2 .text.uart_module_disable - 0x00000000400faa18 0x48 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fbef8 0x48 esp-idf/driver/libdriver.a(uart.c.obj) .text.uart_set_word_length - 0x00000000400faa60 0x88 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400faa60 uart_set_word_length + 0x00000000400fbf40 0x88 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fbf40 uart_set_word_length .text.uart_get_word_length - 0x00000000400faae8 0x45 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400faae8 uart_get_word_length - *fill* 0x00000000400fab2d 0x3 + 0x00000000400fbfc8 0x45 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fbfc8 uart_get_word_length + *fill* 0x00000000400fc00d 0x3 .text.uart_set_stop_bits - 0x00000000400fab30 0x88 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fab30 uart_set_stop_bits + 0x00000000400fc010 0x88 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc010 uart_set_stop_bits .text.uart_get_stop_bits - 0x00000000400fabb8 0x45 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fabb8 uart_get_stop_bits - *fill* 0x00000000400fabfd 0x3 + 0x00000000400fc098 0x45 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc098 uart_get_stop_bits + *fill* 0x00000000400fc0dd 0x3 .text.uart_set_parity - 0x00000000400fac00 0x5a esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fac00 uart_set_parity - *fill* 0x00000000400fac5a 0x2 + 0x00000000400fc0e0 0x5a esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc0e0 uart_set_parity + *fill* 0x00000000400fc13a 0x2 .text.uart_get_parity - 0x00000000400fac5c 0x45 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fac5c uart_get_parity - *fill* 0x00000000400faca1 0x3 + 0x00000000400fc13c 0x45 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc13c uart_get_parity + *fill* 0x00000000400fc181 0x3 .text.uart_set_baudrate - 0x00000000400faca4 0x68 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc184 0x68 esp-idf/driver/libdriver.a(uart.c.obj) 0x6c (size before relaxing) - 0x00000000400faca4 uart_set_baudrate + 0x00000000400fc184 uart_set_baudrate .text.uart_get_baudrate - 0x00000000400fad0c 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc1ec 0x56 esp-idf/driver/libdriver.a(uart.c.obj) 0x5a (size before relaxing) - 0x00000000400fad0c uart_get_baudrate - *fill* 0x00000000400fad62 0x2 + 0x00000000400fc1ec uart_get_baudrate + *fill* 0x00000000400fc242 0x2 .text.uart_enable_intr_mask - 0x00000000400fad64 0x66 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fad64 uart_enable_intr_mask - *fill* 0x00000000400fadca 0x2 + 0x00000000400fc244 0x66 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc244 uart_enable_intr_mask + *fill* 0x00000000400fc2aa 0x2 .text.uart_disable_intr_mask - 0x00000000400fadcc 0x64 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fadcc uart_disable_intr_mask + 0x00000000400fc2ac 0x64 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc2ac uart_disable_intr_mask .text.uart_pattern_queue_reset - 0x00000000400fae30 0xc0 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fae30 uart_pattern_queue_reset + 0x00000000400fc310 0xc0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc310 uart_pattern_queue_reset .text.uart_enable_rx_intr - 0x00000000400faef0 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400faef0 uart_enable_rx_intr - *fill* 0x00000000400faf02 0x2 + 0x00000000400fc3d0 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc3d0 uart_enable_rx_intr + *fill* 0x00000000400fc3e2 0x2 .text.uart_check_buf_full - 0x00000000400faf04 0x6a esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc3e4 0x6a esp-idf/driver/libdriver.a(uart.c.obj) 0x6e (size before relaxing) - *fill* 0x00000000400faf6e 0x2 + *fill* 0x00000000400fc44e 0x2 .text.uart_disable_rx_intr - 0x00000000400faf70 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400faf70 uart_disable_rx_intr - *fill* 0x00000000400faf82 0x2 + 0x00000000400fc450 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc450 uart_disable_rx_intr + *fill* 0x00000000400fc462 0x2 .text.uart_disable_tx_intr - 0x00000000400faf84 0x11 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400faf84 uart_disable_tx_intr - *fill* 0x00000000400faf95 0x3 + 0x00000000400fc464 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc464 uart_disable_tx_intr + *fill* 0x00000000400fc475 0x3 .text.uart_enable_tx_intr - 0x00000000400faf98 0xa1 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400faf98 uart_enable_tx_intr - *fill* 0x00000000400fb039 0x3 + 0x00000000400fc478 0xa1 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc478 uart_enable_tx_intr + *fill* 0x00000000400fc519 0x3 .text.uart_tx_all - 0x00000000400fb03c 0x1fc esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc51c 0x1fc esp-idf/driver/libdriver.a(uart.c.obj) 0x200 (size before relaxing) .text.uart_isr_register - 0x00000000400fb238 0x6a esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc718 0x6a esp-idf/driver/libdriver.a(uart.c.obj) 0x6e (size before relaxing) - 0x00000000400fb238 uart_isr_register - *fill* 0x00000000400fb2a2 0x2 + 0x00000000400fc718 uart_isr_register + *fill* 0x00000000400fc782 0x2 .text.uart_param_config - 0x00000000400fb2a4 0x15d esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc784 0x15d esp-idf/driver/libdriver.a(uart.c.obj) 0x16d (size before relaxing) - 0x00000000400fb2a4 uart_param_config - *fill* 0x00000000400fb401 0x3 + 0x00000000400fc784 uart_param_config + *fill* 0x00000000400fc8e1 0x3 .text.uart_intr_config - 0x00000000400fb404 0xee esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc8e4 0xee esp-idf/driver/libdriver.a(uart.c.obj) 0xf5 (size before relaxing) - 0x00000000400fb404 uart_intr_config - *fill* 0x00000000400fb4f2 0x2 + 0x00000000400fc8e4 uart_intr_config + *fill* 0x00000000400fc9d2 0x2 .text.uart_wait_tx_done - 0x00000000400fb4f4 0x1c9 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fb4f4 uart_wait_tx_done - *fill* 0x00000000400fb6bd 0x3 + 0x00000000400fc9d4 0x1c9 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fc9d4 uart_wait_tx_done + *fill* 0x00000000400fcb9d 0x3 .text.uart_write_bytes - 0x00000000400fb6c0 0xa9 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fb6c0 uart_write_bytes - *fill* 0x00000000400fb769 0x3 + 0x00000000400fcba0 0xa9 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fcba0 uart_write_bytes + *fill* 0x00000000400fcc49 0x3 .text.uart_read_bytes - 0x00000000400fb76c 0x1c1 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fcc4c 0x1c1 esp-idf/driver/libdriver.a(uart.c.obj) 0x1cd (size before relaxing) - 0x00000000400fb76c uart_read_bytes - *fill* 0x00000000400fb92d 0x3 + 0x00000000400fcc4c uart_read_bytes + *fill* 0x00000000400fce0d 0x3 .text.uart_get_buffered_data_len - 0x00000000400fb930 0x71 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fb930 uart_get_buffered_data_len - *fill* 0x00000000400fb9a1 0x3 + 0x00000000400fce10 0x71 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fce10 uart_get_buffered_data_len + *fill* 0x00000000400fce81 0x3 .text.uart_flush_input - 0x00000000400fb9a4 0x1fd esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fce84 0x1fd esp-idf/driver/libdriver.a(uart.c.obj) 0x20d (size before relaxing) - 0x00000000400fb9a4 uart_flush_input - 0x00000000400fb9a4 uart_flush - *fill* 0x00000000400fbba1 0x3 + 0x00000000400fce84 uart_flush_input + 0x00000000400fce84 uart_flush + *fill* 0x00000000400fd081 0x3 .text.uart_driver_delete - 0x00000000400fbba4 0x1b0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fd084 0x1b0 esp-idf/driver/libdriver.a(uart.c.obj) 0x1bc (size before relaxing) - 0x00000000400fbba4 uart_driver_delete + 0x00000000400fd084 uart_driver_delete .text.uart_driver_install - 0x00000000400fbd54 0x2f5 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fd234 0x2f5 esp-idf/driver/libdriver.a(uart.c.obj) 0x304 (size before relaxing) - 0x00000000400fbd54 uart_driver_install - *fill* 0x00000000400fc049 0x3 + 0x00000000400fd234 uart_driver_install + *fill* 0x00000000400fd529 0x3 .text.uart_is_driver_installed - 0x00000000400fc04c 0x1e esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fc04c uart_is_driver_installed - *fill* 0x00000000400fc06a 0x2 + 0x00000000400fd52c 0x1e esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fd52c uart_is_driver_installed + *fill* 0x00000000400fd54a 0x2 .text.uart_set_select_notif_callback - 0x00000000400fc06c 0x17 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fc06c uart_set_select_notif_callback - *fill* 0x00000000400fc083 0x1 + 0x00000000400fd54c 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fd54c uart_set_select_notif_callback + *fill* 0x00000000400fd563 0x1 .text.uart_get_selectlock - 0x00000000400fc084 0x8 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fc084 uart_get_selectlock + 0x00000000400fd564 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fd564 uart_get_selectlock .text.uart_set_wakeup_threshold - 0x00000000400fc08c 0x94 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fc08c uart_set_wakeup_threshold + 0x00000000400fd56c 0x94 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fd56c uart_set_wakeup_threshold .text.uart_wait_tx_idle_polling - 0x00000000400fc120 0x6f esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000400fc120 uart_wait_tx_idle_polling - *fill* 0x00000000400fc18f 0x1 + 0x00000000400fd600 0x6f esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fd600 uart_wait_tx_idle_polling + *fill* 0x00000000400fd66f 0x1 .text.esp_fill_random - 0x00000000400fc190 0x37 esp-idf/esp32/libesp32.a(hw_random.c.obj) - 0x3b (size before relaxing) - 0x00000000400fc190 esp_fill_random - *fill* 0x00000000400fc1c7 0x1 + 0x00000000400fd670 0x3b esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x00000000400fd670 esp_fill_random + *fill* 0x00000000400fd6ab 0x1 .text.get_power_down_flags - 0x00000000400fc1c8 0x98 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fd6ac 0x98 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) .text.ext0_wakeup_prepare - 0x00000000400fc260 0xbe esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0xc2 (size before relaxing) - *fill* 0x00000000400fc31e 0x2 + 0x00000000400fd744 0xc2 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x00000000400fd806 0x2 .text.ext1_wakeup_prepare - 0x00000000400fc320 0x16d esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x00000000400fc48d 0x3 + 0x00000000400fd808 0x16d esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x00000000400fd975 0x3 .text.timer_wakeup_prepare - 0x00000000400fc490 0x52 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - *fill* 0x00000000400fc4e2 0x2 + 0x00000000400fd978 0x52 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x00000000400fd9ca 0x2 .text.esp_get_deep_sleep_wake_stub - 0x00000000400fc4e4 0x9e esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x00000000400fc4e4 esp_get_deep_sleep_wake_stub - *fill* 0x00000000400fc582 0x2 + 0x00000000400fd9cc 0x9e esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fd9cc esp_get_deep_sleep_wake_stub + *fill* 0x00000000400fda6a 0x2 .text.esp_set_deep_sleep_wake_stub - 0x00000000400fc584 0x26 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x00000000400fc584 esp_set_deep_sleep_wake_stub - *fill* 0x00000000400fc5aa 0x2 + 0x00000000400fda6c 0x26 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fda6c esp_set_deep_sleep_wake_stub + *fill* 0x00000000400fda92 0x2 .text.esp_light_sleep_start - 0x00000000400fc5ac 0x152 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fda94 0x152 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x15e (size before relaxing) - 0x00000000400fc5ac esp_light_sleep_start - *fill* 0x00000000400fc6fe 0x2 + 0x00000000400fda94 esp_light_sleep_start + *fill* 0x00000000400fdbe6 0x2 .text.esp_sleep_disable_wakeup_source - 0x00000000400fc700 0x131 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x00000000400fc700 esp_sleep_disable_wakeup_source - *fill* 0x00000000400fc831 0x3 + 0x00000000400fdbe8 0x131 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fdbe8 esp_sleep_disable_wakeup_source + *fill* 0x00000000400fdd19 0x3 .text.esp_sleep_enable_timer_wakeup - 0x00000000400fc834 0x17 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x00000000400fc834 esp_sleep_enable_timer_wakeup - *fill* 0x00000000400fc84b 0x1 + 0x00000000400fdd1c 0x17 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fdd1c esp_sleep_enable_timer_wakeup + *fill* 0x00000000400fdd33 0x1 .text.esp_sleep_enable_ext1_wakeup - 0x00000000400fc84c 0xb9 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x00000000400fc84c esp_sleep_enable_ext1_wakeup - *fill* 0x00000000400fc905 0x3 + 0x00000000400fdd34 0xb9 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fdd34 esp_sleep_enable_ext1_wakeup + *fill* 0x00000000400fdded 0x3 .text.esp_sleep_enable_gpio_wakeup - 0x00000000400fc908 0x4d esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x00000000400fc908 esp_sleep_enable_gpio_wakeup - *fill* 0x00000000400fc955 0x3 + 0x00000000400fddf0 0x4d esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fddf0 esp_sleep_enable_gpio_wakeup + *fill* 0x00000000400fde3d 0x3 .text.esp_sleep_enable_uart_wakeup - 0x00000000400fc958 0x32 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x00000000400fc958 esp_sleep_enable_uart_wakeup - *fill* 0x00000000400fc98a 0x2 + 0x00000000400fde40 0x32 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fde40 esp_sleep_enable_uart_wakeup + *fill* 0x00000000400fde72 0x2 .text.esp_sleep_get_wakeup_cause - 0x00000000400fc98c 0x65 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - 0x00000000400fc98c esp_sleep_get_wakeup_cause - *fill* 0x00000000400fc9f1 0x3 + 0x00000000400fde74 0x65 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fde74 esp_sleep_get_wakeup_cause + *fill* 0x00000000400fded9 0x3 .text.esp_base_mac_addr_set - 0x00000000400fc9f4 0x60 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - 0x00000000400fc9f4 esp_base_mac_addr_set + 0x00000000400fdedc 0x60 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000400fdedc esp_base_mac_addr_set .text.esp_base_mac_addr_get - 0x00000000400fca54 0x4c esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - 0x00000000400fca54 esp_base_mac_addr_get + 0x00000000400fdf3c 0x4c esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000400fdf3c esp_base_mac_addr_get .text.esp_efuse_mac_get_default - 0x00000000400fcaa0 0x6b esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000400fdf88 0x6b esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) 0x6f (size before relaxing) - 0x00000000400fcaa0 esp_efuse_mac_get_default - *fill* 0x00000000400fcb0b 0x1 + 0x00000000400fdf88 esp_efuse_mac_get_default + *fill* 0x00000000400fdff3 0x1 .text.esp_read_mac - 0x00000000400fcb0c 0xfe esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000400fdff4 0xfe esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) 0x106 (size before relaxing) - 0x00000000400fcb0c esp_read_mac - *fill* 0x00000000400fcc0a 0x2 + 0x00000000400fdff4 esp_read_mac + *fill* 0x00000000400fe0f2 0x2 .text.ets_timer_setfn - 0x00000000400fcc0c 0x4e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x00000000400fe0f4 0x4e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) 0x52 (size before relaxing) - 0x00000000400fcc0c os_timer_setfn - 0x00000000400fcc0c ets_timer_setfn - *fill* 0x00000000400fcc5a 0x2 + 0x00000000400fe0f4 os_timer_setfn + 0x00000000400fe0f4 ets_timer_setfn + *fill* 0x00000000400fe142 0x2 .text.ets_timer_done - 0x00000000400fcc5c 0x1a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x00000000400fe144 0x1a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) 0x1e (size before relaxing) - 0x00000000400fcc5c ets_timer_done - 0x00000000400fcc5c os_timer_done - *fill* 0x00000000400fcc76 0x2 + 0x00000000400fe144 ets_timer_done + 0x00000000400fe144 os_timer_done + *fill* 0x00000000400fe15e 0x2 .text.find_command_by_name - 0x00000000400fcc78 0x3b esp-idf/console/libconsole.a(commands.c.obj) - *fill* 0x00000000400fccb3 0x1 + 0x00000000400fe160 0x3b esp-idf/console/libconsole.a(commands.c.obj) + *fill* 0x00000000400fe19b 0x1 .text.help_command - 0x00000000400fccb4 0x5c esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fe19c 0x64 esp-idf/console/libconsole.a(commands.c.obj) 0x68 (size before relaxing) .text.esp_console_init - 0x00000000400fcd10 0x55 esp-idf/console/libconsole.a(commands.c.obj) - 0x00000000400fcd10 esp_console_init - *fill* 0x00000000400fcd65 0x3 + 0x00000000400fe200 0x55 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fe200 esp_console_init + *fill* 0x00000000400fe255 0x3 .text.esp_console_cmd_register - 0x00000000400fcd68 0xe3 esp-idf/console/libconsole.a(commands.c.obj) - 0xeb (size before relaxing) - 0x00000000400fcd68 esp_console_cmd_register - *fill* 0x00000000400fce4b 0x1 + 0x00000000400fe258 0xeb esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fe258 esp_console_cmd_register + *fill* 0x00000000400fe343 0x1 .text.esp_console_get_completion - 0x00000000400fce4c 0x39 esp-idf/console/libconsole.a(commands.c.obj) - 0x00000000400fce4c esp_console_get_completion - *fill* 0x00000000400fce85 0x3 + 0x00000000400fe344 0x39 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fe344 esp_console_get_completion + *fill* 0x00000000400fe37d 0x3 .text.esp_console_get_hint - 0x00000000400fce88 0x4b esp-idf/console/libconsole.a(commands.c.obj) - 0x00000000400fce88 esp_console_get_hint - *fill* 0x00000000400fced3 0x1 + 0x00000000400fe380 0x4b esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fe380 esp_console_get_hint + *fill* 0x00000000400fe3cb 0x1 .text.esp_console_run - 0x00000000400fced4 0x89 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fe3cc 0x89 esp-idf/console/libconsole.a(commands.c.obj) 0x8d (size before relaxing) - 0x00000000400fced4 esp_console_run - *fill* 0x00000000400fcf5d 0x3 + 0x00000000400fe3cc esp_console_run + *fill* 0x00000000400fe455 0x3 .text.esp_console_register_help_command - 0x00000000400fcf60 0x24 esp-idf/console/libconsole.a(commands.c.obj) - 0x00000000400fcf60 esp_console_register_help_command + 0x00000000400fe458 0x24 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fe458 esp_console_register_help_command .text.esp_console_split_argv - 0x00000000400fcf84 0x101 esp-idf/console/libconsole.a(split_argv.c.obj) - 0x00000000400fcf84 esp_console_split_argv - *fill* 0x00000000400fd085 0x3 + 0x00000000400fe47c 0x101 esp-idf/console/libconsole.a(split_argv.c.obj) + 0x00000000400fe47c esp_console_split_argv + *fill* 0x00000000400fe57d 0x3 .text.arg_register_error - 0x00000000400fd088 0x63 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x00000000400fd0eb 0x1 + 0x00000000400fe580 0x63 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400fe5e3 0x1 .text.arg_parse_untagged - 0x00000000400fd0ec 0xb2 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x00000000400fd19e 0x2 + 0x00000000400fe5e4 0xb2 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400fe696 0x2 .text.arg_parse_check - 0x00000000400fd1a0 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fe698 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) 0x34 (size before relaxing) .text.detectsuffix - 0x00000000400fd1d0 0x71 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x79 (size before relaxing) - *fill* 0x00000000400fd241 0x3 + 0x00000000400fe6c8 0x79 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400fe741 0x3 .text.alloc_shortoptions - 0x00000000400fd244 0x90 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fe744 0x90 esp-idf/console/libconsole.a(argtable3.c.obj) .text.arg_end_errorfn - 0x00000000400fd2d4 0x96 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x9e (size before relaxing) - *fill* 0x00000000400fd36a 0x2 + 0x00000000400fe7d4 0x9e esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400fe872 0x2 .text.strtol0X - 0x00000000400fd36c 0xa1 esp-idf/console/libconsole.a(argtable3.c.obj) - 0xa5 (size before relaxing) - *fill* 0x00000000400fd40d 0x3 + 0x00000000400fe874 0xa5 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400fe919 0x3 .text.arg_int_scanfn - 0x00000000400fd410 0x100 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fe91c 0x100 esp-idf/console/libconsole.a(argtable3.c.obj) 0x108 (size before relaxing) .text.alloc_longoptions - 0x00000000400fd510 0x119 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x00000000400fd629 0x3 + 0x00000000400fea1c 0x119 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400feb35 0x3 .text.find_shortoption - 0x00000000400fd62c 0x2b esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x00000000400fd657 0x1 + 0x00000000400feb38 0x2b esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400feb63 0x1 .text.arg_parse_tagged - 0x00000000400fd658 0x192 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400feb64 0x196 esp-idf/console/libconsole.a(argtable3.c.obj) 0x1aa (size before relaxing) - *fill* 0x00000000400fd7ea 0x2 + *fill* 0x00000000400fecfa 0x2 .text.arg_cat_optionv - 0x00000000400fd7ec 0x140 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fecfc 0x140 esp-idf/console/libconsole.a(argtable3.c.obj) .text.arg_cat_option - 0x00000000400fd92c 0x140 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fee3c 0x140 esp-idf/console/libconsole.a(argtable3.c.obj) .text.arg_print_gnuswitch - 0x00000000400fda6c 0x83 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x86 (size before relaxing) - *fill* 0x00000000400fdaef 0x1 - .text.arg_end 0x00000000400fdaf0 0x50 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x00000000400fdaf0 arg_end + 0x00000000400fef7c 0x86 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400ff002 0x2 + .text.arg_end 0x00000000400ff004 0x50 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff004 arg_end .text.arg_intn - 0x00000000400fdb40 0x4c esp-idf/console/libconsole.a(argtable3.c.obj) - 0x00000000400fdb40 arg_intn + 0x00000000400ff054 0x4c esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff054 arg_intn .text.arg_int0 - 0x00000000400fdb8c 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x00000000400fdb8c arg_int0 - *fill* 0x00000000400fdba5 0x3 + 0x00000000400ff0a0 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff0a0 arg_int0 + *fill* 0x00000000400ff0b9 0x3 .text.arg_strn - 0x00000000400fdba8 0x61 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x00000000400fdba8 arg_strn - *fill* 0x00000000400fdc09 0x3 + 0x00000000400ff0bc 0x61 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff0bc arg_strn + *fill* 0x00000000400ff11d 0x3 .text.arg_str0 - 0x00000000400fdc0c 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x00000000400fdc0c arg_str0 - *fill* 0x00000000400fdc25 0x3 + 0x00000000400ff120 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff120 arg_str0 + *fill* 0x00000000400ff139 0x3 .text.arg_str1 - 0x00000000400fdc28 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x00000000400fdc28 arg_str1 - *fill* 0x00000000400fdc41 0x3 + 0x00000000400ff13c 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff13c arg_str1 + *fill* 0x00000000400ff155 0x3 .text.arg_parse - 0x00000000400fdc44 0x99 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff158 0x99 esp-idf/console/libconsole.a(argtable3.c.obj) 0xa5 (size before relaxing) - 0x00000000400fdc44 arg_parse - *fill* 0x00000000400fdcdd 0x3 + 0x00000000400ff158 arg_parse + *fill* 0x00000000400ff1f1 0x3 .text.arg_print_option - 0x00000000400fdce0 0x40 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff1f4 0x48 esp-idf/console/libconsole.a(argtable3.c.obj) 0x4c (size before relaxing) - 0x00000000400fdce0 arg_print_option + 0x00000000400ff1f4 arg_print_option .text.arg_int_errorfn - 0x00000000400fdd20 0xb8 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff23c 0xc8 esp-idf/console/libconsole.a(argtable3.c.obj) 0xd0 (size before relaxing) .text.arg_str_errorfn - 0x00000000400fddd8 0x63 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x6b (size before relaxing) - *fill* 0x00000000400fde3b 0x1 + 0x00000000400ff304 0x6b esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400ff36f 0x1 .text.arg_print_syntax - 0x00000000400fde3c 0xc7 esp-idf/console/libconsole.a(argtable3.c.obj) - 0xcb (size before relaxing) - 0x00000000400fde3c arg_print_syntax - *fill* 0x00000000400fdf03 0x1 + 0x00000000400ff370 0xcb esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff370 arg_print_syntax + *fill* 0x00000000400ff43b 0x1 .text.arg_print_glossary - 0x00000000400fdf04 0x61 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x65 (size before relaxing) - 0x00000000400fdf04 arg_print_glossary - *fill* 0x00000000400fdf65 0x3 + 0x00000000400ff43c 0x65 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff43c arg_print_glossary + *fill* 0x00000000400ff4a1 0x3 .text.arg_print_formatted - 0x00000000400fdf68 0xa6 esp-idf/console/libconsole.a(argtable3.c.obj) - 0xaa (size before relaxing) - 0x00000000400fdf68 arg_print_formatted - *fill* 0x00000000400fe00e 0x2 + 0x00000000400ff4a4 0xaa esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400ff4a4 arg_print_formatted + *fill* 0x00000000400ff54e 0x2 .text.abAppend - 0x00000000400fe010 0x2c esp-idf/console/libconsole.a(linenoise.c.obj) - .text.abFree 0x00000000400fe03c 0xe esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x00000000400fe04a 0x2 + 0x00000000400ff550 0x2c esp-idf/console/libconsole.a(linenoise.c.obj) + .text.abFree 0x00000000400ff57c 0xe esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x00000000400ff58a 0x2 .text.freeCompletions - 0x00000000400fe04c 0x2b esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x00000000400fe077 0x1 + 0x00000000400ff58c 0x2b esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x00000000400ff5b7 0x1 .text.getCursorPosition - 0x00000000400fe078 0x84 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ff5b8 0x84 esp-idf/console/libconsole.a(linenoise.c.obj) .text.getColumns - 0x00000000400fe0fc 0x66 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ff63c 0x6e esp-idf/console/libconsole.a(linenoise.c.obj) 0x76 (size before relaxing) - *fill* 0x00000000400fe162 0x2 + *fill* 0x00000000400ff6aa 0x2 .text.linenoiseBeep - 0x00000000400fe164 0x12 esp-idf/console/libconsole.a(linenoise.c.obj) - 0x16 (size before relaxing) - *fill* 0x00000000400fe176 0x2 + 0x00000000400ff6ac 0x16 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x00000000400ff6c2 0x2 .text.linenoiseDumb - 0x00000000400fe178 0xa3 esp-idf/console/libconsole.a(linenoise.c.obj) - 0xa7 (size before relaxing) - *fill* 0x00000000400fe21b 0x1 + 0x00000000400ff6c4 0xa7 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x00000000400ff76b 0x1 .text.sanitize - 0x00000000400fe21c 0x31 esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x00000000400fe24d 0x3 + 0x00000000400ff76c 0x31 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x00000000400ff79d 0x3 .text.linenoiseSetMultiLine - 0x00000000400fe250 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fe250 linenoiseSetMultiLine - *fill* 0x00000000400fe25a 0x2 + 0x00000000400ff7a0 0xa esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ff7a0 linenoiseSetMultiLine + *fill* 0x00000000400ff7aa 0x2 .text.linenoiseSetDumbMode - 0x00000000400fe25c 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fe25c linenoiseSetDumbMode - *fill* 0x00000000400fe266 0x2 + 0x00000000400ff7ac 0xa esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ff7ac linenoiseSetDumbMode + *fill* 0x00000000400ff7b6 0x2 .text.linenoiseClearScreen - 0x00000000400fe268 0x1a esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fe268 linenoiseClearScreen - *fill* 0x00000000400fe282 0x2 + 0x00000000400ff7b8 0x1a esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ff7b8 linenoiseClearScreen + *fill* 0x00000000400ff7d2 0x2 .text.linenoiseSetCompletionCallback - 0x00000000400fe284 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fe284 linenoiseSetCompletionCallback - *fill* 0x00000000400fe28e 0x2 + 0x00000000400ff7d4 0xa esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ff7d4 linenoiseSetCompletionCallback + *fill* 0x00000000400ff7de 0x2 .text.linenoiseSetHintsCallback - 0x00000000400fe290 0xa esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fe290 linenoiseSetHintsCallback - *fill* 0x00000000400fe29a 0x2 + 0x00000000400ff7e0 0xa esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ff7e0 linenoiseSetHintsCallback + *fill* 0x00000000400ff7ea 0x2 .text.linenoiseAddCompletion - 0x00000000400fe29c 0x56 esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fe29c linenoiseAddCompletion - *fill* 0x00000000400fe2f2 0x2 + 0x00000000400ff7ec 0x56 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ff7ec linenoiseAddCompletion + *fill* 0x00000000400ff842 0x2 .text.refreshShowHints - 0x00000000400fe2f4 0xaf esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ff844 0xaf esp-idf/console/libconsole.a(linenoise.c.obj) 0xb7 (size before relaxing) - 0x00000000400fe2f4 refreshShowHints - *fill* 0x00000000400fe3a3 0x1 + 0x00000000400ff844 refreshShowHints + *fill* 0x00000000400ff8f3 0x1 .text.refreshMultiLine - 0x00000000400fe3a4 0x193 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ff8f4 0x19b esp-idf/console/libconsole.a(linenoise.c.obj) 0x1b7 (size before relaxing) - *fill* 0x00000000400fe537 0x1 + *fill* 0x00000000400ffa8f 0x1 .text.refreshSingleLine - 0x00000000400fe538 0xcb esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffa90 0xcf esp-idf/console/libconsole.a(linenoise.c.obj) 0xeb (size before relaxing) - *fill* 0x00000000400fe603 0x1 + *fill* 0x00000000400ffb5f 0x1 .text.refreshLine - 0x00000000400fe604 0x19 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffb60 0x19 esp-idf/console/libconsole.a(linenoise.c.obj) 0x20 (size before relaxing) - *fill* 0x00000000400fe61d 0x3 + *fill* 0x00000000400ffb79 0x3 .text.completeLine - 0x00000000400fe620 0xf3 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffb7c 0xfb esp-idf/console/libconsole.a(linenoise.c.obj) 0x106 (size before relaxing) - *fill* 0x00000000400fe713 0x1 + *fill* 0x00000000400ffc77 0x1 .text.linenoiseEditInsert - 0x00000000400fe714 0xbc esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffc78 0xc0 esp-idf/console/libconsole.a(linenoise.c.obj) 0xc4 (size before relaxing) - 0x00000000400fe714 linenoiseEditInsert + 0x00000000400ffc78 linenoiseEditInsert .text.linenoiseEditMoveLeft - 0x00000000400fe7d0 0x12 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffd38 0x12 esp-idf/console/libconsole.a(linenoise.c.obj) 0x16 (size before relaxing) - 0x00000000400fe7d0 linenoiseEditMoveLeft - *fill* 0x00000000400fe7e2 0x2 + 0x00000000400ffd38 linenoiseEditMoveLeft + *fill* 0x00000000400ffd4a 0x2 .text.linenoiseEditMoveRight - 0x00000000400fe7e4 0x18 esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fe7e4 linenoiseEditMoveRight + 0x00000000400ffd4c 0x18 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffd4c linenoiseEditMoveRight .text.linenoiseEditMoveHome - 0x00000000400fe7fc 0x12 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffd64 0x12 esp-idf/console/libconsole.a(linenoise.c.obj) 0x16 (size before relaxing) - 0x00000000400fe7fc linenoiseEditMoveHome - *fill* 0x00000000400fe80e 0x2 + 0x00000000400ffd64 linenoiseEditMoveHome + *fill* 0x00000000400ffd76 0x2 .text.linenoiseEditMoveEnd - 0x00000000400fe810 0x16 esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fe810 linenoiseEditMoveEnd - *fill* 0x00000000400fe826 0x2 + 0x00000000400ffd78 0x16 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffd78 linenoiseEditMoveEnd + *fill* 0x00000000400ffd8e 0x2 .text.linenoiseEditHistoryNext - 0x00000000400fe828 0x93 esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fe828 linenoiseEditHistoryNext - *fill* 0x00000000400fe8bb 0x1 + 0x00000000400ffd90 0x93 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffd90 linenoiseEditHistoryNext + *fill* 0x00000000400ffe23 0x1 .text.linenoiseEditDelete - 0x00000000400fe8bc 0x36 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffe24 0x36 esp-idf/console/libconsole.a(linenoise.c.obj) 0x3a (size before relaxing) - 0x00000000400fe8bc linenoiseEditDelete - *fill* 0x00000000400fe8f2 0x2 + 0x00000000400ffe24 linenoiseEditDelete + *fill* 0x00000000400ffe5a 0x2 .text.linenoiseEditBackspace - 0x00000000400fe8f4 0x3b esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fe8f4 linenoiseEditBackspace - *fill* 0x00000000400fe92f 0x1 + 0x00000000400ffe5c 0x3b esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffe5c linenoiseEditBackspace + *fill* 0x00000000400ffe97 0x1 .text.linenoiseEditDeletePrevWord - 0x00000000400fe930 0x53 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffe98 0x53 esp-idf/console/libconsole.a(linenoise.c.obj) 0x57 (size before relaxing) - 0x00000000400fe930 linenoiseEditDeletePrevWord - *fill* 0x00000000400fe983 0x1 + 0x00000000400ffe98 linenoiseEditDeletePrevWord + *fill* 0x00000000400ffeeb 0x1 .text.linenoiseProbe - 0x00000000400fe984 0x92 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400ffeec 0x9a esp-idf/console/libconsole.a(linenoise.c.obj) 0xa2 (size before relaxing) - 0x00000000400fe984 linenoiseProbe - *fill* 0x00000000400fea16 0x2 + 0x00000000400ffeec linenoiseProbe + *fill* 0x00000000400fff86 0x2 .text.linenoiseFree - 0x00000000400fea18 0xe esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fea18 linenoiseFree - *fill* 0x00000000400fea26 0x2 + 0x00000000400fff88 0xe esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fff88 linenoiseFree + *fill* 0x00000000400fff96 0x2 .text.linenoiseHistoryAdd - 0x00000000400fea28 0xb6 esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fea28 linenoiseHistoryAdd - *fill* 0x00000000400feade 0x2 + 0x00000000400fff98 0xb6 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fff98 linenoiseHistoryAdd + *fill* 0x000000004010004e 0x2 .text.linenoiseEdit - 0x00000000400feae0 0x328 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x0000000040100050 0x334 esp-idf/console/libconsole.a(linenoise.c.obj) 0x37c (size before relaxing) .text.linenoiseRaw - 0x00000000400fee08 0x30 esp-idf/console/libconsole.a(linenoise.c.obj) - 0x34 (size before relaxing) + 0x0000000040100384 0x34 esp-idf/console/libconsole.a(linenoise.c.obj) .text.linenoise - 0x00000000400fee38 0x54 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000401003b8 0x54 esp-idf/console/libconsole.a(linenoise.c.obj) 0x58 (size before relaxing) - 0x00000000400fee38 linenoise + 0x00000000401003b8 linenoise .text.linenoiseHistorySetMaxLen - 0x00000000400fee8c 0x9e esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fee8c linenoiseHistorySetMaxLen - *fill* 0x00000000400fef2a 0x2 + 0x000000004010040c 0x9e esp-idf/console/libconsole.a(linenoise.c.obj) + 0x000000004010040c linenoiseHistorySetMaxLen + *fill* 0x00000000401004aa 0x2 .text.linenoiseHistorySave - 0x00000000400fef2c 0x4b esp-idf/console/libconsole.a(linenoise.c.obj) - 0x00000000400fef2c linenoiseHistorySave - *fill* 0x00000000400fef77 0x1 + 0x00000000401004ac 0x4b esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000401004ac linenoiseHistorySave + *fill* 0x00000000401004f7 0x1 .text.linenoiseHistoryLoad - 0x00000000400fef78 0x59 esp-idf/console/libconsole.a(linenoise.c.obj) - 0x5d (size before relaxing) - 0x00000000400fef78 linenoiseHistoryLoad - *fill* 0x00000000400fefd1 0x3 + 0x00000000401004f8 0x5d esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000401004f8 linenoiseHistoryLoad + *fill* 0x0000000040100555 0x3 .text.httpd_recv_pending - 0x00000000400fefd4 0x31 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - *fill* 0x00000000400ff005 0x3 + 0x0000000040100558 0x31 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x0000000040100589 0x3 .text.httpd_sock_err - 0x00000000400ff008 0x79 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x7d (size before relaxing) - *fill* 0x00000000400ff081 0x3 + 0x000000004010058c 0x7d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x0000000040100609 0x3 .text.httpd_sess_set_send_override - 0x00000000400ff084 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x00000000400ff084 httpd_sess_set_send_override - *fill* 0x00000000400ff0a1 0x3 + 0x000000004010060c 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000004010060c httpd_sess_set_send_override + *fill* 0x0000000040100629 0x3 .text.httpd_sess_set_recv_override - 0x00000000400ff0a4 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x00000000400ff0a4 httpd_sess_set_recv_override - *fill* 0x00000000400ff0c1 0x3 + 0x000000004010062c 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000004010062c httpd_sess_set_recv_override + *fill* 0x0000000040100649 0x3 .text.httpd_sess_set_pending_override - 0x00000000400ff0c4 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x00000000400ff0c4 httpd_sess_set_pending_override - *fill* 0x00000000400ff0e1 0x3 + 0x000000004010064c 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000004010064c httpd_sess_set_pending_override + *fill* 0x0000000040100669 0x3 .text.httpd_recv_with_opt - 0x00000000400ff0e4 0x6b esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x00000000400ff0e4 httpd_recv_with_opt - *fill* 0x00000000400ff14f 0x1 + 0x000000004010066c 0x6b esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000004010066c httpd_recv_with_opt + *fill* 0x00000000401006d7 0x1 .text.httpd_recv - 0x00000000400ff150 0x15 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x00000000400ff150 httpd_recv - *fill* 0x00000000400ff165 0x3 + 0x00000000401006d8 0x15 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000401006d8 httpd_recv + *fill* 0x00000000401006ed 0x3 .text.httpd_unrecv - 0x00000000400ff168 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x00000000400ff168 httpd_unrecv - *fill* 0x00000000400ff195 0x3 + 0x00000000401006f0 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000401006f0 httpd_unrecv + *fill* 0x000000004010071d 0x3 .text.httpd_resp_send - 0x00000000400ff198 0x145 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x149 (size before relaxing) - 0x00000000400ff198 httpd_resp_send - *fill* 0x00000000400ff2dd 0x3 + 0x0000000040100720 0x149 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x0000000040100720 httpd_resp_send + *fill* 0x0000000040100869 0x3 .text.httpd_resp_send_chunk - 0x00000000400ff2e0 0x186 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x18e (size before relaxing) - 0x00000000400ff2e0 httpd_resp_send_chunk - *fill* 0x00000000400ff466 0x2 + 0x000000004010086c 0x18e esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000004010086c httpd_resp_send_chunk + *fill* 0x00000000401009fa 0x2 .text.httpd_resp_send_err - 0x00000000400ff468 0x13e esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000401009fc 0x146 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x152 (size before relaxing) - 0x00000000400ff468 httpd_resp_send_err - *fill* 0x00000000400ff5a6 0x2 + 0x00000000401009fc httpd_resp_send_err + *fill* 0x0000000040100b42 0x2 .text.httpd_req_handle_err - 0x00000000400ff5a8 0x37 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x00000000400ff5a8 httpd_req_handle_err - *fill* 0x00000000400ff5df 0x1 + 0x0000000040100b44 0x37 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x0000000040100b44 httpd_req_handle_err + *fill* 0x0000000040100b7b 0x1 .text.httpd_req_recv - 0x00000000400ff5e0 0x50 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x00000000400ff5e0 httpd_req_recv + 0x0000000040100b7c 0x50 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x0000000040100b7c httpd_req_recv .text.httpd_default_send - 0x00000000400ff630 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x0000000040100bcc 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x2c (size before relaxing) - 0x00000000400ff630 httpd_default_send + 0x0000000040100bcc httpd_default_send .text.httpd_default_recv - 0x00000000400ff658 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x0000000040100bf4 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x2c (size before relaxing) - 0x00000000400ff658 httpd_default_recv + 0x0000000040100bf4 httpd_default_recv .text.httpd_uri_match_simple - 0x00000000400ff680 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - *fill* 0x00000000400ff6ad 0x3 + 0x0000000040100c1c 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x0000000040100c49 0x3 .text.httpd_find_uri_handler - 0x00000000400ff6b0 0x72 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - *fill* 0x00000000400ff722 0x2 + 0x0000000040100c4c 0x72 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x0000000040100cbe 0x2 .text.httpd_register_uri_handler - 0x00000000400ff724 0x101 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x0000000040100cc0 0x101 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) 0x105 (size before relaxing) - 0x00000000400ff724 httpd_register_uri_handler - *fill* 0x00000000400ff825 0x3 + 0x0000000040100cc0 httpd_register_uri_handler + *fill* 0x0000000040100dc1 0x3 .text.httpd_unregister_all_uri_handlers - 0x00000000400ff828 0x3c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - 0x00000000400ff828 httpd_unregister_all_uri_handlers + 0x0000000040100dc4 0x3c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x0000000040100dc4 httpd_unregister_all_uri_handlers .text.httpd_uri - 0x00000000400ff864 0xce esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x0000000040100e00 0xce esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) 0xd6 (size before relaxing) - 0x00000000400ff864 httpd_uri - *fill* 0x00000000400ff932 0x2 + 0x0000000040100e00 httpd_uri + *fill* 0x0000000040100ece 0x2 .text.fd_is_valid - 0x00000000400ff934 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x2c (size before relaxing) + 0x0000000040100ed0 0x2c esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) .text.httpd_sess_free_ctx - 0x00000000400ff95c 0x19 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x00000000400ff95c httpd_sess_free_ctx - *fill* 0x00000000400ff975 0x3 + 0x0000000040100efc 0x19 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x0000000040100efc httpd_sess_free_ctx + *fill* 0x0000000040100f15 0x3 .text.httpd_sess_get_transport_ctx - 0x00000000400ff978 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x00000000400ff978 httpd_sess_get_transport_ctx + 0x0000000040100f18 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x0000000040100f18 httpd_sess_get_transport_ctx .text.httpd_sess_set_transport_ctx - 0x00000000400ff990 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x00000000400ff990 httpd_sess_set_transport_ctx + 0x0000000040100f30 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x0000000040100f30 httpd_sess_set_transport_ctx .text.httpd_sess_delete - 0x00000000400ff9b4 0xa8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x00000000400ff9b4 httpd_sess_delete + 0x0000000040100f54 0xa8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x0000000040100f54 httpd_sess_delete .text.httpd_sess_new - 0x00000000400ffa5c 0xbb esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x0000000040100ffc 0xbb esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0xbf (size before relaxing) - 0x00000000400ffa5c httpd_sess_new - *fill* 0x00000000400ffb17 0x1 + 0x0000000040100ffc httpd_sess_new + *fill* 0x00000000401010b7 0x1 .text.httpd_sess_delete_invalid - 0x00000000400ffb18 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000401010b8 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x66 (size before relaxing) - 0x00000000400ffb18 httpd_sess_delete_invalid - *fill* 0x00000000400ffb7a 0x2 + 0x00000000401010b8 httpd_sess_delete_invalid + *fill* 0x000000004010111a 0x2 .text.httpd_sess_close - 0x00000000400ffb7c 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x000000004010111c 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) .text.httpd_sess_pending - 0x00000000400ffba0 0x39 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x00000000400ffba0 httpd_sess_pending - *fill* 0x00000000400ffbd9 0x3 + 0x0000000040101140 0x39 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x0000000040101140 httpd_sess_pending + *fill* 0x0000000040101179 0x3 .text.httpd_sess_process - 0x00000000400ffbdc 0x52 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x000000004010117c 0x52 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x56 (size before relaxing) - 0x00000000400ffbdc httpd_sess_process - *fill* 0x00000000400ffc2e 0x2 + 0x000000004010117c httpd_sess_process + *fill* 0x00000000401011ce 0x2 .text.httpd_sess_trigger_close - 0x00000000400ffc30 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x00000000400ffc30 httpd_sess_trigger_close - *fill* 0x00000000400ffc56 0x2 + 0x00000000401011d0 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000401011d0 httpd_sess_trigger_close + *fill* 0x00000000401011f6 0x2 .text.httpd_sess_close_lru - 0x00000000400ffc58 0x55 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x00000000400ffc58 httpd_sess_close_lru - *fill* 0x00000000400ffcad 0x3 + 0x00000000401011f8 0x55 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000401011f8 httpd_sess_close_lru + *fill* 0x000000004010124d 0x3 .text.httpd_close_all_sessions - 0x00000000400ffcb0 0x2b esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x00000000400ffcdb 0x1 + 0x0000000040101250 0x2b esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000004010127b 0x1 .text.httpd_process_ctrl_msg - 0x00000000400ffcdc 0x7b esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x000000004010127c 0x7f esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x83 (size before relaxing) - *fill* 0x00000000400ffd57 0x1 + *fill* 0x00000000401012fb 0x1 .text.httpd_accept_conn - 0x00000000400ffd58 0xc2 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000401012fc 0xc6 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0xd2 (size before relaxing) - *fill* 0x00000000400ffe1a 0x2 + *fill* 0x00000000401013c2 0x2 .text.httpd_server - 0x00000000400ffe1c 0x18c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000401013c4 0x18c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x1a0 (size before relaxing) .text.httpd_thread - 0x00000000400fffa8 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x0000000040101550 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x48 (size before relaxing) .text.httpd_create - 0x00000000400fffe8 0x16f esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - *fill* 0x0000000040100157 0x1 + 0x0000000040101590 0x16f esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x00000000401016ff 0x1 .text.httpd_server_init - 0x0000000040100158 0x1c1 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x0000000040101700 0x1d5 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x1e5 (size before relaxing) - *fill* 0x0000000040100319 0x3 + *fill* 0x00000000401018d5 0x3 .text.httpd_delete - 0x000000004010031c 0x3c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000401018d8 0x3c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) .text.httpd_queue_work - 0x0000000040100358 0x5e esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x0000000040101914 0x5e esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x62 (size before relaxing) - 0x0000000040100358 httpd_queue_work - *fill* 0x00000000401003b6 0x2 + 0x0000000040101914 httpd_queue_work + *fill* 0x0000000040101972 0x2 .text.httpd_start - 0x00000000401003b8 0xa7 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x0000000040101974 0xa7 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0xb3 (size before relaxing) - 0x00000000401003b8 httpd_start - *fill* 0x000000004010045f 0x1 + 0x0000000040101974 httpd_start + *fill* 0x0000000040101a1b 0x1 .text.httpd_stop - 0x0000000040100460 0x6d esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x0000000040101a1c 0x6d esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x75 (size before relaxing) - 0x0000000040100460 httpd_stop - *fill* 0x00000000401004cd 0x3 + 0x0000000040101a1c httpd_stop + *fill* 0x0000000040101a89 0x3 .text.init_req - 0x00000000401004d0 0x2f esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x00000000401004ff 0x1 + 0x0000000040101a8c 0x2f esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x0000000040101abb 0x1 .text.init_req_aux - 0x0000000040100500 0x36 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x0000000040100536 0x2 + 0x0000000040101abc 0x36 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x0000000040101af2 0x2 .text.parse_init - 0x0000000040100538 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x0000000040101af4 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x48 (size before relaxing) .text.cb_header_value - 0x0000000040100578 0x66 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x00000000401005de 0x2 - .text.cb_url 0x00000000401005e0 0x88 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x0000000040101b34 0x66 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x0000000040101b9a 0x2 + .text.cb_url 0x0000000040101b9c 0x88 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) .text.verify_url - 0x0000000040100668 0xe9 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x0000000040101c24 0xe9 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0xed (size before relaxing) - *fill* 0x0000000040100751 0x3 + *fill* 0x0000000040101d0d 0x3 .text.cb_headers_complete - 0x0000000040100754 0x115 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x0000000040101d10 0x115 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x119 (size before relaxing) - *fill* 0x0000000040100869 0x3 + *fill* 0x0000000040101e25 0x3 .text.pause_parsing - 0x000000004010086c 0x87 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x0000000040101e28 0x87 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x8b (size before relaxing) - *fill* 0x00000000401008f3 0x1 + *fill* 0x0000000040101eaf 0x1 .text.cb_no_body - 0x00000000401008f4 0x71 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x0000000040100965 0x3 + 0x0000000040101eb0 0x71 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x0000000040101f21 0x3 .text.cb_on_body - 0x0000000040100968 0x59 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - *fill* 0x00000000401009c1 0x3 + 0x0000000040101f24 0x59 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x0000000040101f7d 0x3 .text.cb_header_field - 0x00000000401009c4 0xa6 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x0000000040101f80 0xa6 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0xaa (size before relaxing) - *fill* 0x0000000040100a6a 0x2 + *fill* 0x0000000040102026 0x2 .text.continue_parsing - 0x0000000040100a6c 0x1f esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x0000000040102028 0x1f esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x23 (size before relaxing) - *fill* 0x0000000040100a8b 0x1 + *fill* 0x0000000040102047 0x1 .text.read_block - 0x0000000040100a8c 0x4d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x0000000040102048 0x4d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x51 (size before relaxing) - *fill* 0x0000000040100ad9 0x3 + *fill* 0x0000000040102095 0x3 .text.parse_block - 0x0000000040100adc 0x110 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x0000000040102098 0x110 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) .text.httpd_parse_req - 0x0000000040100bec 0x5e esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000401021a8 0x5e esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x6a (size before relaxing) - *fill* 0x0000000040100c4a 0x2 + *fill* 0x0000000040102206 0x2 .text.httpd_req_cleanup - 0x0000000040100c4c 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x0000000040102208 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) .text.httpd_req_new - 0x0000000040100c90 0x57 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x000000004010224c 0x57 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x63 (size before relaxing) - 0x0000000040100c90 httpd_req_new - *fill* 0x0000000040100ce7 0x1 + 0x000000004010224c httpd_req_new + *fill* 0x00000000401022a3 0x1 .text.httpd_req_delete - 0x0000000040100ce8 0x3d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000401022a4 0x3d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x41 (size before relaxing) - 0x0000000040100ce8 httpd_req_delete - *fill* 0x0000000040100d25 0x3 + 0x00000000401022a4 httpd_req_delete + *fill* 0x00000000401022e1 0x3 .text.cs_create_ctrl_sock - 0x0000000040100d28 0x56 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x00000000401022e4 0x56 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) 0x62 (size before relaxing) - 0x0000000040100d28 cs_create_ctrl_sock - *fill* 0x0000000040100d7e 0x2 + 0x00000000401022e4 cs_create_ctrl_sock + *fill* 0x000000004010233a 0x2 .text.cs_free_ctrl_sock - 0x0000000040100d80 0xe esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - 0x0000000040100d80 cs_free_ctrl_sock - *fill* 0x0000000040100d8e 0x2 + 0x000000004010233c 0xe esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x000000004010233c cs_free_ctrl_sock + *fill* 0x000000004010234a 0x2 .text.cs_send_to_ctrl_sock - 0x0000000040100d90 0x35 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x000000004010234c 0x35 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) 0x3d (size before relaxing) - 0x0000000040100d90 cs_send_to_ctrl_sock - *fill* 0x0000000040100dc5 0x3 + 0x000000004010234c cs_send_to_ctrl_sock + *fill* 0x0000000040102381 0x3 .text.httpd_ssl_close - 0x0000000040100dc8 0x1d esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x0000000040102384 0x1d esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x20 (size before relaxing) - *fill* 0x0000000040100de5 0x3 + *fill* 0x00000000401023a1 0x3 .text.httpd_ssl_open - 0x0000000040100de8 0xc5 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000401023a4 0xc5 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0xd5 (size before relaxing) - *fill* 0x0000000040100ead 0x3 + *fill* 0x0000000040102469 0x3 .text.httpd_ssl_recv - 0x0000000040100eb0 0x2d esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - 0x31 (size before relaxing) - *fill* 0x0000000040100edd 0x3 + 0x000000004010246c 0x31 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000004010249d 0x3 .text.httpd_ssl_send - 0x0000000040100ee0 0x2d esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - 0x31 (size before relaxing) - *fill* 0x0000000040100f0d 0x3 + 0x00000000401024a0 0x31 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x00000000401024d1 0x3 .text.httpd_ssl_pending - 0x0000000040100f10 0x23 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000401024d4 0x27 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x2a (size before relaxing) - *fill* 0x0000000040100f33 0x1 + *fill* 0x00000000401024fb 0x1 .text.free_secure_context - 0x0000000040100f34 0x58 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000401024fc 0x58 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) .text.create_secure_context - 0x0000000040100f8c 0x100 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x0000000040102554 0x100 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) .text.httpd_ssl_start - 0x000000004010108c 0xa2 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x0000000040102654 0xa6 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0xaa (size before relaxing) - 0x000000004010108c httpd_ssl_start - *fill* 0x000000004010112e 0x2 + 0x0000000040102654 httpd_ssl_start + *fill* 0x00000000401026fa 0x2 .text.httpd_ssl_stop - 0x0000000040101130 0xa esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000401026fc 0xa esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0xe (size before relaxing) - 0x0000000040101130 httpd_ssl_stop - *fill* 0x000000004010113a 0x2 + 0x00000000401026fc httpd_ssl_stop + *fill* 0x0000000040102706 0x2 .text.esp_vfs_fat_spiflash_mount - 0x000000004010113c 0x212 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + 0x0000000040102708 0x212 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) 0x22a (size before relaxing) - 0x000000004010113c esp_vfs_fat_spiflash_mount - *fill* 0x000000004010134e 0x2 + 0x0000000040102708 esp_vfs_fat_spiflash_mount + *fill* 0x000000004010291a 0x2 .text.ff_diskio_get_drive - 0x0000000040101350 0x29 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - 0x0000000040101350 ff_diskio_get_drive - *fill* 0x0000000040101379 0x3 + 0x000000004010291c 0x29 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x000000004010291c ff_diskio_get_drive + *fill* 0x0000000040102945 0x3 .text.ff_diskio_register - 0x000000004010137c 0x64 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - 0x6c (size before relaxing) - 0x000000004010137c ff_diskio_register + 0x0000000040102948 0x6c esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040102948 ff_diskio_register .text.ff_disk_initialize - 0x00000000401013e0 0x19 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - 0x00000000401013e0 ff_disk_initialize - *fill* 0x00000000401013f9 0x3 + 0x00000000401029b4 0x19 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000401029b4 ff_disk_initialize + *fill* 0x00000000401029cd 0x3 .text.ff_disk_status - 0x00000000401013fc 0x19 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - 0x00000000401013fc ff_disk_status - *fill* 0x0000000040101415 0x3 + 0x00000000401029d0 0x19 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000401029d0 ff_disk_status + *fill* 0x00000000401029e9 0x3 .text.ff_disk_read - 0x0000000040101418 0x20 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - 0x0000000040101418 ff_disk_read + 0x00000000401029ec 0x20 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000401029ec ff_disk_read .text.ff_disk_write - 0x0000000040101438 0x20 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - 0x0000000040101438 ff_disk_write + 0x0000000040102a0c 0x20 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040102a0c ff_disk_write .text.ff_disk_ioctl - 0x0000000040101458 0x1e esp-idf/fatfs/libfatfs.a(diskio.c.obj) - 0x0000000040101458 ff_disk_ioctl - *fill* 0x0000000040101476 0x2 + 0x0000000040102a2c 0x1e esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040102a2c ff_disk_ioctl + *fill* 0x0000000040102a4a 0x2 .text.get_fattime - 0x0000000040101478 0x57 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - 0x0000000040101478 get_fattime - *fill* 0x00000000401014cf 0x1 + 0x0000000040102a4c 0x57 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040102a4c get_fattime + *fill* 0x0000000040102aa3 0x1 .text.ff_wl_read - 0x00000000401014d0 0x61 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x0000000040102aa4 0x65 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) 0x71 (size before relaxing) - 0x00000000401014d0 ff_wl_read - *fill* 0x0000000040101531 0x3 + 0x0000000040102aa4 ff_wl_read + *fill* 0x0000000040102b09 0x3 .text.ff_wl_write - 0x0000000040101534 0x9d esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x0000000040102b0c 0xa1 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) 0xb5 (size before relaxing) - 0x0000000040101534 ff_wl_write - *fill* 0x00000000401015d1 0x3 + 0x0000000040102b0c ff_wl_write + *fill* 0x0000000040102bad 0x3 .text.ff_wl_ioctl - 0x00000000401015d4 0x62 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x0000000040102bb0 0x66 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) 0x6a (size before relaxing) - 0x00000000401015d4 ff_wl_ioctl - *fill* 0x0000000040101636 0x2 + 0x0000000040102bb0 ff_wl_ioctl + *fill* 0x0000000040102c16 0x2 .text.ff_diskio_register_wl_partition - 0x0000000040101638 0x26 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - 0x0000000040101638 ff_diskio_register_wl_partition - *fill* 0x000000004010165e 0x2 + 0x0000000040102c18 0x26 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x0000000040102c18 ff_diskio_register_wl_partition + *fill* 0x0000000040102c3e 0x2 .text.ld_clust - 0x0000000040101660 0x27 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x0000000040101687 0x1 + 0x0000000040102c40 0x27 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040102c67 0x1 .text.st_clust - 0x0000000040101688 0x23 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x00000000401016ab 0x1 + 0x0000000040102c68 0x23 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040102c8b 0x1 .text.get_fileinfo - 0x00000000401016ac 0x83 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x000000004010172f 0x1 + 0x0000000040102c8c 0x83 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040102d0f 0x1 .text.create_name - 0x0000000040101730 0x175 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x00000000401018a5 0x3 - .text.lock_fs 0x00000000401018a8 0xc esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040102d10 0x175 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040102e85 0x3 + .text.lock_fs 0x0000000040102e88 0xc esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x10 (size before relaxing) .text.sync_window - 0x00000000401018b4 0x58 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040102e94 0x58 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x5c (size before relaxing) .text.move_window - 0x000000004010190c 0x32 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040102eec 0x32 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x36 (size before relaxing) - *fill* 0x000000004010193e 0x2 + *fill* 0x0000000040102f1e 0x2 .text.check_fs - 0x0000000040101940 0x90 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040102f20 0x90 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x94 (size before relaxing) .text.find_volume - 0x00000000401019d0 0x3a0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040102fb0 0x3a0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x3b0 (size before relaxing) - .text.put_fat 0x0000000040101d70 0x154 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text.put_fat 0x0000000040103350 0x154 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x158 (size before relaxing) - .text.get_fat 0x0000000040101ec4 0x105 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text.get_fat 0x00000000401034a4 0x105 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x109 (size before relaxing) - *fill* 0x0000000040101fc9 0x3 - .text.dir_sdi 0x0000000040101fcc 0xac esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x00000000401035a9 0x3 + .text.dir_sdi 0x00000000401035ac 0xac esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xb0 (size before relaxing) .text.create_chain - 0x0000000040102078 0x13a esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103658 0x13a esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x13e (size before relaxing) - *fill* 0x00000000401021b2 0x2 + *fill* 0x0000000040103792 0x2 .text.remove_chain - 0x00000000401021b4 0x77 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103794 0x77 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x7f (size before relaxing) - *fill* 0x000000004010222b 0x1 + *fill* 0x000000004010380b 0x1 .text.dir_remove - 0x000000004010222c 0x1e esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x000000004010380c 0x1e esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x22 (size before relaxing) - *fill* 0x000000004010224a 0x2 + *fill* 0x000000004010382a 0x2 .text.dir_clear - 0x000000004010224c 0x5c esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x000000004010382c 0x5c esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x60 (size before relaxing) .text.dir_next - 0x00000000401022a8 0xca esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103888 0xca esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xce (size before relaxing) - *fill* 0x0000000040102372 0x2 + *fill* 0x0000000040103952 0x2 .text.dir_find - 0x0000000040102374 0x58 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103954 0x58 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x60 (size before relaxing) .text.follow_path - 0x00000000401023cc 0x9a esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000401039ac 0x9a esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x9e (size before relaxing) - *fill* 0x0000000040102466 0x2 + *fill* 0x0000000040103a46 0x2 .text.dir_alloc - 0x0000000040102468 0x5a esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103a48 0x5a esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x5e (size before relaxing) - *fill* 0x00000000401024c2 0x2 + *fill* 0x0000000040103aa2 0x2 .text.dir_register - 0x00000000401024c4 0x40 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103aa4 0x40 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x44 (size before relaxing) .text.dir_read - 0x0000000040102504 0x76 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x000000004010257a 0x2 - .text.sync_fs 0x000000004010257c 0x96 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103ae4 0x76 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040103b5a 0x2 + .text.sync_fs 0x0000000040103b5c 0x96 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x9e (size before relaxing) - *fill* 0x0000000040102612 0x2 + *fill* 0x0000000040103bf2 0x2 .text.unlock_fs - 0x0000000040102614 0x3f esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x0000000040102653 0x1 + 0x0000000040103bf4 0x3f esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040103c33 0x1 .text.validate - 0x0000000040102654 0x68 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103c34 0x68 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x6c (size before relaxing) - .text.f_mount 0x00000000401026bc 0x88 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text.f_mount 0x0000000040103c9c 0x88 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x90 (size before relaxing) - 0x00000000401026bc f_mount - .text.f_open 0x0000000040102744 0x1e0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103c9c f_mount + .text.f_open 0x0000000040103d24 0x1e0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x200 (size before relaxing) - 0x0000000040102744 f_open - .text.f_read 0x0000000040102924 0x1f0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103d24 f_open + .text.f_read 0x0000000040103f04 0x1f0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x214 (size before relaxing) - 0x0000000040102924 f_read - .text.f_write 0x0000000040102b14 0x231 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040103f04 f_read + .text.f_write 0x00000000401040f4 0x231 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x249 (size before relaxing) - 0x0000000040102b14 f_write - *fill* 0x0000000040102d45 0x3 - .text.f_sync 0x0000000040102d48 0xba esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000401040f4 f_write + *fill* 0x0000000040104325 0x3 + .text.f_sync 0x0000000040104328 0xba esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xd2 (size before relaxing) - 0x0000000040102d48 f_sync - *fill* 0x0000000040102e02 0x2 - .text.f_close 0x0000000040102e04 0x26 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040104328 f_sync + *fill* 0x00000000401043e2 0x2 + .text.f_close 0x00000000401043e4 0x26 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x2e (size before relaxing) - 0x0000000040102e04 f_close - *fill* 0x0000000040102e2a 0x2 - .text.f_lseek 0x0000000040102e2c 0x1e6 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000401043e4 f_close + *fill* 0x000000004010440a 0x2 + .text.f_lseek 0x000000004010440c 0x1e6 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x1fa (size before relaxing) - 0x0000000040102e2c f_lseek - *fill* 0x0000000040103012 0x2 + 0x000000004010440c f_lseek + *fill* 0x00000000401045f2 0x2 .text.f_opendir - 0x0000000040103014 0x7c esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000401045f4 0x7c esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x8c (size before relaxing) - 0x0000000040103014 f_opendir + 0x00000000401045f4 f_opendir .text.f_closedir - 0x0000000040103090 0x1e esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040104670 0x1e esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x22 (size before relaxing) - 0x0000000040103090 f_closedir - *fill* 0x00000000401030ae 0x2 + 0x0000000040104670 f_closedir + *fill* 0x000000004010468e 0x2 .text.f_readdir - 0x00000000401030b0 0x52 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040104690 0x52 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x62 (size before relaxing) - 0x00000000401030b0 f_readdir - *fill* 0x0000000040103102 0x2 - .text.f_stat 0x0000000040103104 0x42 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040104690 f_readdir + *fill* 0x00000000401046e2 0x2 + .text.f_stat 0x00000000401046e4 0x42 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x4a (size before relaxing) - 0x0000000040103104 f_stat - *fill* 0x0000000040103146 0x2 + 0x00000000401046e4 f_stat + *fill* 0x0000000040104726 0x2 .text.f_truncate - 0x0000000040103148 0xd8 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040104728 0xd8 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xe4 (size before relaxing) - 0x0000000040103148 f_truncate + 0x0000000040104728 f_truncate .text.f_unlink - 0x0000000040103220 0xbc esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040104800 0xbc esp-idf/fatfs/libfatfs.a(ff.c.obj) 0xd3 (size before relaxing) - 0x0000000040103220 f_unlink - *fill* 0x00000000401032dc 0x0 - .text.f_mkdir 0x00000000401032dc 0x110 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040104800 f_unlink + *fill* 0x00000000401048bc 0x0 + .text.f_mkdir 0x00000000401048bc 0x110 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x12c (size before relaxing) - 0x00000000401032dc f_mkdir + 0x00000000401048bc f_mkdir .text.f_rename - 0x00000000401033ec 0x13f esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000401049cc 0x13f esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x156 (size before relaxing) - 0x00000000401033ec f_rename - *fill* 0x000000004010352b 0x1 - .text.f_utime 0x000000004010352c 0x68 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x00000000401049cc f_rename + *fill* 0x0000000040104b0b 0x1 + .text.f_utime 0x0000000040104b0c 0x68 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x70 (size before relaxing) - 0x000000004010352c f_utime - .text.f_mkfs 0x0000000040103594 0x761 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000040104b0c f_utime + .text.f_mkfs 0x0000000040104b74 0x761 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x791 (size before relaxing) - 0x0000000040103594 f_mkfs - *fill* 0x0000000040103cf5 0x3 + 0x0000000040104b74 f_mkfs + *fill* 0x00000000401052d5 0x3 .text.ff_memalloc - 0x0000000040103cf8 0x10 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - 0x0000000040103cf8 ff_memalloc + 0x00000000401052d8 0x10 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x00000000401052d8 ff_memalloc .text.ff_cre_syncobj - 0x0000000040103d08 0x17 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - 0x0000000040103d08 ff_cre_syncobj - *fill* 0x0000000040103d1f 0x1 + 0x00000000401052e8 0x17 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x00000000401052e8 ff_cre_syncobj + *fill* 0x00000000401052ff 0x1 .text.ff_del_syncobj - 0x0000000040103d20 0x10 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - 0x0000000040103d20 ff_del_syncobj + 0x0000000040105300 0x10 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x0000000040105300 ff_del_syncobj .text.ff_req_grant - 0x0000000040103d30 0x1d esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - 0x0000000040103d30 ff_req_grant - *fill* 0x0000000040103d4d 0x3 + 0x0000000040105310 0x1d esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x0000000040105310 ff_req_grant + *fill* 0x000000004010532d 0x3 .text.ff_rel_grant - 0x0000000040103d50 0x13 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - 0x0000000040103d50 ff_rel_grant - *fill* 0x0000000040103d63 0x1 + 0x0000000040105330 0x13 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x0000000040105330 ff_rel_grant + *fill* 0x0000000040105343 0x1 .text.find_unused_context_index - 0x0000000040103d64 0x1e esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x0000000040103d82 0x2 + 0x0000000040105344 0x1e esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x0000000040105362 0x2 .text.get_next_fd - 0x0000000040103d84 0x30 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105364 0x30 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .text.fat_mode_conv - 0x0000000040103db4 0x4f esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x0000000040103e03 0x1 + 0x0000000040105394 0x4f esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x00000000401053e3 0x1 .text.vfs_fat_fstat - 0x0000000040103e04 0x2c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000401053e4 0x2c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .text.file_cleanup - 0x0000000040103e30 0x26 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x0000000040103e56 0x2 + 0x0000000040105410 0x26 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x0000000040105436 0x2 .text.prepend_drive_to_path - 0x0000000040103e58 0x36 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - 0x3a (size before relaxing) - *fill* 0x0000000040103e8e 0x2 + 0x0000000040105438 0x3a esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x0000000040105472 0x2 .text.fresult_to_errno - 0x0000000040103e90 0x7c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105474 0x7c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .text.vfs_fat_utime - 0x0000000040103f0c 0xc4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000401054f0 0xcc esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0xd4 (size before relaxing) .text.vfs_fat_telldir - 0x0000000040103fd0 0x19 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - 0x1c (size before relaxing) - *fill* 0x0000000040103fe9 0x3 + 0x00000000401055bc 0x1c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .text.vfs_fat_lseek - 0x0000000040103fec 0x88 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000401055d8 0x8c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x90 (size before relaxing) .text.vfs_fat_close - 0x0000000040104074 0x50 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105664 0x54 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x5c (size before relaxing) .text.vfs_fat_truncate - 0x00000000401040c4 0x112 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000401056b8 0x122 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x13a (size before relaxing) - *fill* 0x00000000401041d6 0x2 + *fill* 0x00000000401057da 0x2 .text.vfs_fat_open - 0x00000000401041d8 0xc1 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000401057dc 0xc9 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0xd9 (size before relaxing) - *fill* 0x0000000040104299 0x3 + *fill* 0x00000000401058a5 0x3 .text.vfs_fat_access - 0x000000004010429c 0x5c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000401058a8 0x5c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x64 (size before relaxing) .text.vfs_fat_fsync - 0x00000000401042f8 0x49 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105904 0x4d esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x51 (size before relaxing) - *fill* 0x0000000040104341 0x3 + *fill* 0x0000000040105951 0x3 .text.vfs_fat_rmdir - 0x0000000040104344 0x40 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105954 0x44 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x4c (size before relaxing) .text.vfs_fat_unlink - 0x0000000040104384 0x40 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105998 0x44 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x4c (size before relaxing) .text.vfs_fat_mkdir - 0x00000000401043c4 0x40 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000401059dc 0x44 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x4c (size before relaxing) .text.vfs_fat_closedir - 0x0000000040104404 0x3c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105a20 0x44 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x48 (size before relaxing) .text.vfs_fat_seekdir - 0x0000000040104440 0x67 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105a64 0x73 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x7b (size before relaxing) - *fill* 0x00000000401044a7 0x1 + *fill* 0x0000000040105ad7 0x1 .text.vfs_fat_readdir_r - 0x00000000401044a8 0x69 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105ad8 0x6d esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x71 (size before relaxing) - *fill* 0x0000000040104511 0x3 + *fill* 0x0000000040105b45 0x3 .text.vfs_fat_readdir - 0x0000000040104514 0x24 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - 0x28 (size before relaxing) + 0x0000000040105b48 0x28 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .text.vfs_fat_opendir - 0x0000000040104538 0x72 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105b70 0x76 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x82 (size before relaxing) - *fill* 0x00000000401045aa 0x2 + *fill* 0x0000000040105be6 0x2 .text.vfs_fat_rename - 0x00000000401045ac 0x44 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105be8 0x48 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x50 (size before relaxing) .text.vfs_fat_pread - 0x00000000401045f0 0xa8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105c30 0xb4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0xc0 (size before relaxing) .text.vfs_fat_read - 0x0000000040104698 0x45 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105ce4 0x49 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x4d (size before relaxing) - *fill* 0x00000000401046dd 0x3 + *fill* 0x0000000040105d2d 0x3 .text.vfs_fat_link - 0x00000000401046e0 0x160 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105d30 0x164 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x17c (size before relaxing) .text.vfs_fat_pwrite - 0x0000000040104840 0xa8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105e94 0xb4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0xc0 (size before relaxing) .text.vfs_fat_write - 0x00000000401048e8 0x79 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105f48 0x81 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x89 (size before relaxing) - *fill* 0x0000000040104961 0x3 + *fill* 0x0000000040105fc9 0x3 .text.find_context_index_by_path - 0x0000000040104964 0x2f esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - *fill* 0x0000000040104993 0x1 + 0x0000000040105fcc 0x2f esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x0000000040105ffb 0x1 .text.vfs_fat_stat - 0x0000000040104994 0xce esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040105ffc 0xd2 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0xda (size before relaxing) - *fill* 0x0000000040104a62 0x2 + *fill* 0x00000000401060ce 0x2 .text.esp_vfs_fat_register - 0x0000000040104a64 0x16d esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x00000000401060d0 0x16d esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x179 (size before relaxing) - 0x0000000040104a64 esp_vfs_fat_register - *fill* 0x0000000040104bd1 0x3 + 0x00000000401060d0 esp_vfs_fat_register + *fill* 0x000000004010623d 0x3 .text.esp_vfs_fat_unregister_path - 0x0000000040104bd4 0x52 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000040106240 0x52 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x5a (size before relaxing) - 0x0000000040104bd4 esp_vfs_fat_unregister_path - *fill* 0x0000000040104c26 0x2 + 0x0000000040106240 esp_vfs_fat_unregister_path + *fill* 0x0000000040106292 0x2 .text._ZL12check_handleiPKc - 0x0000000040104c28 0x86 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - *fill* 0x0000000040104cae 0x2 + 0x0000000040106294 0x86 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000004010631a 0x2 .text.wl_mount - 0x0000000040104cb0 0x1aa esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x000000004010631c 0x1aa esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x1ae (size before relaxing) - 0x0000000040104cb0 wl_mount - *fill* 0x0000000040104e5a 0x2 + 0x000000004010631c wl_mount + *fill* 0x00000000401064c6 0x2 .text.wl_erase_range - 0x0000000040104e5c 0x3c esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x00000000401064c8 0x3c esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x40 (size before relaxing) - 0x0000000040104e5c wl_erase_range + 0x00000000401064c8 wl_erase_range .text.wl_write - 0x0000000040104e98 0x40 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x0000000040106504 0x40 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x44 (size before relaxing) - 0x0000000040104e98 wl_write - .text.wl_read 0x0000000040104ed8 0x40 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x0000000040106504 wl_write + .text.wl_read 0x0000000040106544 0x40 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x44 (size before relaxing) - 0x0000000040104ed8 wl_read - .text.wl_size 0x0000000040104f18 0x3c esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x0000000040106544 wl_read + .text.wl_size 0x0000000040106584 0x3c esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x40 (size before relaxing) - 0x0000000040104f18 wl_size + 0x0000000040106584 wl_size .text.wl_sector_size - 0x0000000040104f54 0x3c esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x00000000401065c0 0x3c esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x40 (size before relaxing) - 0x0000000040104f54 wl_sector_size + 0x00000000401065c0 wl_sector_size .text._ZN9Partition12erase_sectorEj - 0x0000000040104f90 0x16 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - 0x0000000040104f90 _ZN9Partition12erase_sectorEj - *fill* 0x0000000040104fa6 0x2 + 0x00000000401065fc 0x16 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x00000000401065fc _ZN9Partition12erase_sectorEj + *fill* 0x0000000040106612 0x2 .text._ZN9Partition11sector_sizeEv - 0x0000000040104fa8 0x8 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - 0x0000000040104fa8 _ZN9Partition11sector_sizeEv + 0x0000000040106614 0x8 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x0000000040106614 _ZN9Partition11sector_sizeEv .text._ZN9Partition11erase_rangeEjj - 0x0000000040104fb0 0x32 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x000000004010661c 0x32 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) 0x36 (size before relaxing) - 0x0000000040104fb0 _ZN9Partition11erase_rangeEjj - *fill* 0x0000000040104fe2 0x2 + 0x000000004010661c _ZN9Partition11erase_rangeEjj + *fill* 0x000000004010664e 0x2 .text._ZN9Partition5writeEjPKvj - 0x0000000040104fe4 0x15 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - 0x0000000040104fe4 _ZN9Partition5writeEjPKvj - *fill* 0x0000000040104ff9 0x3 + 0x0000000040106650 0x15 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x0000000040106650 _ZN9Partition5writeEjPKvj + *fill* 0x0000000040106665 0x3 .text._ZN9Partition4readEjPvj - 0x0000000040104ffc 0x15 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - 0x0000000040104ffc _ZN9Partition4readEjPvj - *fill* 0x0000000040105011 0x3 + 0x0000000040106668 0x15 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x0000000040106668 _ZN9Partition4readEjPvj + *fill* 0x000000004010667d 0x3 .text._ZN9PartitionD0Ev - 0x0000000040105014 0xa esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x0000000040106680 0xa esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) 0xe (size before relaxing) - 0x0000000040105014 _ZN9PartitionD0Ev - *fill* 0x000000004010501e 0x2 + 0x0000000040106680 _ZN9PartitionD0Ev + *fill* 0x000000004010668a 0x2 .text._ZN9PartitionC2EPK15esp_partition_t - 0x0000000040105020 0xc esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - 0x0000000040105020 _ZN9PartitionC1EPK15esp_partition_t - 0x0000000040105020 _ZN9PartitionC2EPK15esp_partition_t + 0x000000004010668c 0xc esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x000000004010668c _ZN9PartitionC1EPK15esp_partition_t + 0x000000004010668c _ZN9PartitionC2EPK15esp_partition_t .text._ZN8WL_FlashD2Ev - 0x000000004010502c 0xe esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x000000004010502c _ZN8WL_FlashD2Ev - 0x000000004010502c _ZN8WL_FlashD1Ev - *fill* 0x000000004010503a 0x2 + 0x0000000040106698 0xe esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040106698 _ZN8WL_FlashD2Ev + 0x0000000040106698 _ZN8WL_FlashD1Ev + *fill* 0x00000000401066a6 0x2 .text._ZN8WL_FlashD0Ev - 0x000000004010503c 0x12 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000401066a8 0x12 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x16 (size before relaxing) - 0x000000004010503c _ZN8WL_FlashD0Ev - *fill* 0x000000004010504e 0x2 + 0x00000000401066a8 _ZN8WL_FlashD0Ev + *fill* 0x00000000401066ba 0x2 .text._ZN8WL_Flash11erase_rangeEjj - 0x0000000040105050 0x60 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x0000000040105050 _ZN8WL_Flash11erase_rangeEjj + 0x00000000401066bc 0x60 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000401066bc _ZN8WL_Flash11erase_rangeEjj .text._ZN8WL_Flash6configEP11WL_Config_sP12Flash_Access - 0x00000000401050b0 0x149 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x000000004010671c 0x149 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x14d (size before relaxing) - 0x00000000401050b0 _ZN8WL_Flash6configEP11WL_Config_sP12Flash_Access - *fill* 0x00000000401051f9 0x3 + 0x000000004010671c _ZN8WL_Flash6configEP11WL_Config_sP12Flash_Access + *fill* 0x0000000040106865 0x3 .text._ZN8WL_FlashC2Ev - 0x00000000401051fc 0x1a esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x00000000401051fc _ZN8WL_FlashC1Ev - 0x00000000401051fc _ZN8WL_FlashC2Ev - *fill* 0x0000000040105216 0x2 + 0x0000000040106868 0x1a esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040106868 _ZN8WL_FlashC1Ev + 0x0000000040106868 _ZN8WL_FlashC2Ev + *fill* 0x0000000040106882 0x2 .text._ZN8WL_Flash12initSectionsEv - 0x0000000040105218 0x1c4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040106884 0x1c4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x1c8 (size before relaxing) - 0x0000000040105218 _ZN8WL_Flash12initSectionsEv + 0x0000000040106884 _ZN8WL_Flash12initSectionsEv .text._ZN8WL_Flash10fillOkBuffEi - 0x00000000401053dc 0x2e esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040106a48 0x2e esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x32 (size before relaxing) - 0x00000000401053dc _ZN8WL_Flash10fillOkBuffEi - *fill* 0x000000004010540a 0x2 + 0x0000000040106a48 _ZN8WL_Flash10fillOkBuffEi + *fill* 0x0000000040106a76 0x2 .text._ZN8WL_Flash11updateV1_V2Ev - 0x000000004010540c 0x370 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040106a78 0x370 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x384 (size before relaxing) - 0x000000004010540c _ZN8WL_Flash11updateV1_V2Ev + 0x0000000040106a78 _ZN8WL_Flash11updateV1_V2Ev .text._ZN8WL_Flash13updateVersionEv - 0x000000004010577c 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040106de8 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x10 (size before relaxing) - 0x000000004010577c _ZN8WL_Flash13updateVersionEv + 0x0000000040106de8 _ZN8WL_Flash13updateVersionEv .text._ZN8WL_Flash9OkBuffSetEi - 0x0000000040105788 0x39 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x0000000040105788 _ZN8WL_Flash9OkBuffSetEi - *fill* 0x00000000401057c1 0x3 + 0x0000000040106df4 0x39 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040106df4 _ZN8WL_Flash9OkBuffSetEi + *fill* 0x0000000040106e2d 0x3 .text._ZN8WL_Flash10recoverPosEv - 0x00000000401057c4 0x78 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x00000000401057c4 _ZN8WL_Flash10recoverPosEv + 0x0000000040106e30 0x78 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040106e30 _ZN8WL_Flash10recoverPosEv .text._ZN8WL_Flash4initEv - 0x000000004010583c 0x63d esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040106ea8 0x63d esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x649 (size before relaxing) - 0x000000004010583c _ZN8WL_Flash4initEv - *fill* 0x0000000040105e79 0x3 + 0x0000000040106ea8 _ZN8WL_Flash4initEv + *fill* 0x00000000401074e5 0x3 .text._ZN8WL_Flash8updateWLEv - 0x0000000040105e7c 0x2f2 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000401074e8 0x2f2 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x2fe (size before relaxing) - 0x0000000040105e7c _ZN8WL_Flash8updateWLEv - *fill* 0x000000004010616e 0x2 + 0x00000000401074e8 _ZN8WL_Flash8updateWLEv + *fill* 0x00000000401077da 0x2 .text._ZN8WL_Flash5flushEv - 0x0000000040106170 0x15 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x0000000040106170 _ZN8WL_Flash5flushEv - *fill* 0x0000000040106185 0x3 + 0x00000000401077dc 0x15 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000401077dc _ZN8WL_Flash5flushEv + *fill* 0x00000000401077f1 0x3 .text._ZN8WL_Flash12erase_sectorEj - 0x0000000040106188 0x8c esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000401077f4 0x8c esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0x90 (size before relaxing) - 0x0000000040106188 _ZN8WL_Flash12erase_sectorEj + 0x00000000401077f4 _ZN8WL_Flash12erase_sectorEj .text._ZN8WL_Flash5writeEjPKvj - 0x0000000040106214 0xd4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x0000000040106214 _ZN8WL_Flash5writeEjPKvj + 0x0000000040107880 0xd4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040107880 _ZN8WL_Flash5writeEjPKvj .text._ZN8WL_Flash4readEjPvj - 0x00000000401062e8 0xd4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x00000000401062e8 _ZN8WL_Flash4readEjPvj + 0x0000000040107954 0xd4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040107954 _ZN8WL_Flash4readEjPvj .text._ZN5crc328crc32_leEjPKhj - 0x00000000401063bc 0x14 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) - 0x00000000401063bc _ZN5crc328crc32_leEjPKhj + 0x0000000040107a28 0x14 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + 0x0000000040107a28 _ZN5crc328crc32_leEjPKhj .text.esp_spiffs_get_empty - 0x00000000401063d0 0x26 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x00000000401063f6 0x2 + 0x0000000040107a3c 0x26 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x0000000040107a62 0x2 .text.spiffs_res_to_errno - 0x00000000401063f8 0xb6 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x00000000401064ae 0x2 + 0x0000000040107a64 0xb6 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x0000000040107b1a 0x2 .text.spiffs_mode_conv - 0x00000000401064b0 0x4c esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040107b1c 0x4c esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .text.esp_spiffs_by_label - 0x00000000401064fc 0x4a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x0000000040106546 0x2 + 0x0000000040107b68 0x4a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x0000000040107bb2 0x2 .text.vfs_spiffs_telldir - 0x0000000040106548 0x1a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040107bb4 0x1a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x1d (size before relaxing) - *fill* 0x0000000040106562 0x2 + *fill* 0x0000000040107bce 0x2 .text.esp_spiffs_free - 0x0000000040106564 0x4a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040107bd0 0x4a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x4e (size before relaxing) - *fill* 0x00000000401065ae 0x2 + *fill* 0x0000000040107c1a 0x2 .text.esp_spiffs_init - 0x00000000401065b0 0x3ab esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040107c1c 0x3ab esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x3df (size before relaxing) - *fill* 0x000000004010695b 0x1 + *fill* 0x0000000040107fc7 0x1 .text.vfs_spiffs_rmdir - 0x000000004010695c 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x000000004010696e 0x2 + 0x0000000040107fc8 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x0000000040107fda 0x2 .text.vfs_spiffs_mkdir - 0x0000000040106970 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x0000000040106982 0x2 + 0x0000000040107fdc 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x0000000040107fee 0x2 .text.vfs_spiffs_link - 0x0000000040106984 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x0000000040106996 0x2 + 0x0000000040107ff0 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x0000000040108002 0x2 .text.vfs_spiffs_update_mtime_value - 0x0000000040106998 0x32 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x00000000401069ca 0x2 + 0x0000000040108004 0x32 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x0000000040108036 0x2 .text.vfs_spiffs_utime - 0x00000000401069cc 0x54 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040108038 0x54 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x60 (size before relaxing) .text.vfs_spiffs_closedir - 0x0000000040106a20 0x4e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000004010808c 0x4e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x5a (size before relaxing) - *fill* 0x0000000040106a6e 0x2 + *fill* 0x00000000401080da 0x2 .text.vfs_spiffs_seekdir - 0x0000000040106a70 0xd0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000401080dc 0xd0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0xe8 (size before relaxing) .text.vfs_spiffs_readdir_r - 0x0000000040106b40 0xc4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000401081ac 0xc8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0xdc (size before relaxing) .text.vfs_spiffs_readdir - 0x0000000040106c04 0x35 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040108274 0x35 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x3d (size before relaxing) - *fill* 0x0000000040106c39 0x3 + *fill* 0x00000000401082a9 0x3 .text.vfs_spiffs_opendir - 0x0000000040106c3c 0x7d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000401082ac 0x7d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x8d (size before relaxing) - *fill* 0x0000000040106cb9 0x3 + *fill* 0x0000000040108329 0x3 .text.vfs_spiffs_rename - 0x0000000040106cbc 0x5a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000004010832c 0x5a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x66 (size before relaxing) - *fill* 0x0000000040106d16 0x2 + *fill* 0x0000000040108386 0x2 .text.vfs_spiffs_unlink - 0x0000000040106d18 0x44 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040108388 0x44 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x50 (size before relaxing) .text.vfs_spiffs_stat - 0x0000000040106d5c 0x90 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000401083cc 0x90 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x9c (size before relaxing) .text.vfs_spiffs_fstat - 0x0000000040106dec 0x65 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x000000004010845c 0x65 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x71 (size before relaxing) - *fill* 0x0000000040106e51 0x3 + *fill* 0x00000000401084c1 0x3 .text.vfs_spiffs_close - 0x0000000040106e54 0x34 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000401084c4 0x34 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x3c (size before relaxing) .text.vfs_spiffs_update_mtime - 0x0000000040106e88 0x3a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000401084f8 0x3a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x3e (size before relaxing) - *fill* 0x0000000040106ec2 0x2 + *fill* 0x0000000040108532 0x2 .text.vfs_spiffs_open - 0x0000000040106ec4 0x62 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040108534 0x62 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x75 (size before relaxing) - *fill* 0x0000000040106f26 0x2 + *fill* 0x0000000040108596 0x2 .text.vfs_spiffs_read - 0x0000000040106f28 0x36 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040108598 0x36 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x42 (size before relaxing) - *fill* 0x0000000040106f5e 0x2 + *fill* 0x00000000401085ce 0x2 .text.vfs_spiffs_lseek - 0x0000000040106f60 0x36 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x00000000401085d0 0x36 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x42 (size before relaxing) - *fill* 0x0000000040106f96 0x2 + *fill* 0x0000000040108606 0x2 .text.vfs_spiffs_write - 0x0000000040106f98 0x36 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040108608 0x36 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x42 (size before relaxing) - *fill* 0x0000000040106fce 0x2 + *fill* 0x000000004010863e 0x2 .text.esp_spiffs_info - 0x0000000040106fd0 0x2d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040108640 0x2d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x31 (size before relaxing) - 0x0000000040106fd0 esp_spiffs_info - *fill* 0x0000000040106ffd 0x3 + 0x0000000040108640 esp_spiffs_info + *fill* 0x000000004010866d 0x3 .text.esp_vfs_spiffs_register - 0x0000000040107000 0xf0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000040108670 0xf0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0xfc (size before relaxing) - 0x0000000040107000 esp_vfs_spiffs_register + 0x0000000040108670 esp_vfs_spiffs_register .text.spiffs_api_lock - 0x00000000401070f0 0x16 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) - 0x00000000401070f0 spiffs_api_lock - *fill* 0x0000000040107106 0x2 + 0x0000000040108760 0x16 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x0000000040108760 spiffs_api_lock + *fill* 0x0000000040108776 0x2 .text.spiffs_api_unlock - 0x0000000040107108 0x16 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) - 0x0000000040107108 spiffs_api_unlock - *fill* 0x000000004010711e 0x2 + 0x0000000040108778 0x16 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x0000000040108778 spiffs_api_unlock + *fill* 0x000000004010878e 0x2 .text.spiffs_api_read - 0x0000000040107120 0x3d esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x0000000040108790 0x3d esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x41 (size before relaxing) - 0x0000000040107120 spiffs_api_read - *fill* 0x000000004010715d 0x3 + 0x0000000040108790 spiffs_api_read + *fill* 0x00000000401087cd 0x3 .text.spiffs_api_write - 0x0000000040107160 0x3d esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x00000000401087d0 0x3d esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x41 (size before relaxing) - 0x0000000040107160 spiffs_api_write - *fill* 0x000000004010719d 0x3 + 0x00000000401087d0 spiffs_api_write + *fill* 0x000000004010880d 0x3 .text.spiffs_api_erase - 0x00000000401071a0 0x3d esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) - 0x00000000401071a0 spiffs_api_erase - *fill* 0x00000000401071dd 0x3 + 0x0000000040108810 0x3d esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x0000000040108810 spiffs_api_erase + *fill* 0x000000004010884d 0x3 .text.spiffs_api_check - 0x00000000401071e0 0x3a esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) - 0x00000000401071e0 spiffs_api_check - *fill* 0x000000004010721a 0x2 + 0x0000000040108850 0x3a esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x0000000040108850 spiffs_api_check + *fill* 0x000000004010888a 0x2 .text.spiffs_hydro_write - 0x000000004010721c 0x56 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - *fill* 0x0000000040107272 0x2 + 0x000000004010888c 0x56 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + *fill* 0x00000000401088e2 0x2 .text.spiffs_fflush_cache - 0x0000000040107274 0x72 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - *fill* 0x00000000401072e6 0x2 + 0x00000000401088e4 0x72 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + *fill* 0x0000000040108956 0x2 .text.spiffs_hydro_read - 0x00000000401072e8 0x108 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040108958 0x108 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x124 (size before relaxing) .text.spiffs_stat_pix - 0x00000000401073f0 0xb4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040108a60 0xb4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) .text.spiffs_read_dir_v - 0x00000000401074a4 0xd2 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040108b14 0xd2 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0xd6 (size before relaxing) - *fill* 0x0000000040107576 0x2 + *fill* 0x0000000040108be6 0x2 .text.SPIFFS_format - 0x0000000040107578 0x6c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040108be8 0x6c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x70 (size before relaxing) - 0x0000000040107578 SPIFFS_format + 0x0000000040108be8 SPIFFS_format .text.SPIFFS_mount - 0x00000000401075e4 0x11e esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040108c54 0x11e esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x126 (size before relaxing) - 0x00000000401075e4 SPIFFS_mount - *fill* 0x0000000040107702 0x2 + 0x0000000040108c54 SPIFFS_mount + *fill* 0x0000000040108d72 0x2 .text.SPIFFS_unmount - 0x0000000040107704 0x53 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040108d74 0x53 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x5b (size before relaxing) - 0x0000000040107704 SPIFFS_unmount - *fill* 0x0000000040107757 0x1 + 0x0000000040108d74 SPIFFS_unmount + *fill* 0x0000000040108dc7 0x1 .text.SPIFFS_open - 0x0000000040107758 0x1c5 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040108dc8 0x1c5 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x201 (size before relaxing) - 0x0000000040107758 SPIFFS_open - *fill* 0x000000004010791d 0x3 + 0x0000000040108dc8 SPIFFS_open + *fill* 0x0000000040108f8d 0x3 .text.SPIFFS_read - 0x0000000040107920 0x1c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040108f90 0x1c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x20 (size before relaxing) - 0x0000000040107920 SPIFFS_read + 0x0000000040108f90 SPIFFS_read .text.SPIFFS_write - 0x000000004010793c 0x206 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040108fac 0x206 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x22e (size before relaxing) - 0x000000004010793c SPIFFS_write - *fill* 0x0000000040107b42 0x2 + 0x0000000040108fac SPIFFS_write + *fill* 0x00000000401091b2 0x2 .text.SPIFFS_lseek - 0x0000000040107b44 0x118 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000401091b4 0x118 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x130 (size before relaxing) - 0x0000000040107b44 SPIFFS_lseek + 0x00000000401091b4 SPIFFS_lseek .text.SPIFFS_remove - 0x0000000040107c5c 0xe9 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000401092cc 0xe9 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x109 (size before relaxing) - 0x0000000040107c5c SPIFFS_remove - *fill* 0x0000000040107d45 0x3 + 0x00000000401092cc SPIFFS_remove + *fill* 0x00000000401093b5 0x3 .text.SPIFFS_stat - 0x0000000040107d48 0x74 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000401093b8 0x74 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x80 (size before relaxing) - 0x0000000040107d48 SPIFFS_stat + 0x00000000401093b8 SPIFFS_stat .text.SPIFFS_fstat - 0x0000000040107dbc 0x6c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x000000004010942c 0x6c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x7c (size before relaxing) - 0x0000000040107dbc SPIFFS_fstat + 0x000000004010942c SPIFFS_fstat .text.SPIFFS_close - 0x0000000040107e28 0x67 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040109498 0x67 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x76 (size before relaxing) - 0x0000000040107e28 SPIFFS_close - *fill* 0x0000000040107e8f 0x1 + 0x0000000040109498 SPIFFS_close + *fill* 0x00000000401094ff 0x1 .text.SPIFFS_rename - 0x0000000040107e90 0x12c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040109500 0x12c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x14f (size before relaxing) - 0x0000000040107e90 SPIFFS_rename - *fill* 0x0000000040107fbc 0x0 + 0x0000000040109500 SPIFFS_rename + *fill* 0x000000004010962c 0x0 .text.SPIFFS_update_meta - 0x0000000040107fbc 0xcf esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x000000004010962c 0xcf esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0xee (size before relaxing) - 0x0000000040107fbc SPIFFS_update_meta - *fill* 0x000000004010808b 0x1 + 0x000000004010962c SPIFFS_update_meta + *fill* 0x00000000401096fb 0x1 .text.SPIFFS_fupdate_meta - 0x000000004010808c 0x93 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000401096fc 0x93 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0xa6 (size before relaxing) - 0x000000004010808c SPIFFS_fupdate_meta - *fill* 0x000000004010811f 0x1 + 0x00000000401096fc SPIFFS_fupdate_meta + *fill* 0x000000004010978f 0x1 .text.SPIFFS_opendir - 0x0000000040108120 0x37 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - 0x0000000040108120 SPIFFS_opendir - *fill* 0x0000000040108157 0x1 + 0x0000000040109790 0x37 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040109790 SPIFFS_opendir + *fill* 0x00000000401097c7 0x1 .text.SPIFFS_readdir - 0x0000000040108158 0x6a esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x00000000401097c8 0x6a esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x6e (size before relaxing) - 0x0000000040108158 SPIFFS_readdir - *fill* 0x00000000401081c2 0x2 + 0x00000000401097c8 SPIFFS_readdir + *fill* 0x0000000040109832 0x2 .text.SPIFFS_closedir - 0x00000000401081c4 0x2a esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - 0x00000000401081c4 SPIFFS_closedir - *fill* 0x00000000401081ee 0x2 + 0x0000000040109834 0x2a esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040109834 SPIFFS_closedir + *fill* 0x000000004010985e 0x2 .text.SPIFFS_info - 0x00000000401081f0 0x72 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - 0x00000000401081f0 SPIFFS_info - *fill* 0x0000000040108262 0x2 + 0x0000000040109860 0x72 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000040109860 SPIFFS_info + *fill* 0x00000000401098d2 0x2 .text.spiffs_obj_lu_scan_v - 0x0000000040108264 0x35 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - *fill* 0x0000000040108299 0x3 + 0x00000000401098d4 0x35 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x0000000040109909 0x3 .text.spiffs_update_ix_map - 0x000000004010829c 0x102 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - *fill* 0x000000004010839e 0x2 + 0x000000004010990c 0x102 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x0000000040109a0e 0x2 .text.spiffs_hash - 0x00000000401083a0 0x26 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - *fill* 0x00000000401083c6 0x2 + 0x0000000040109a10 0x26 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x0000000040109a36 0x2 .text.spiffs_obj_lu_find_id_and_span_v - 0x00000000401083c8 0xa6 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - *fill* 0x000000004010846e 0x2 + 0x0000000040109a38 0xa6 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x0000000040109ade 0x2 .text.spiffs_page_data_check - 0x0000000040108470 0x9f esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - *fill* 0x000000004010850f 0x1 + 0x0000000040109ae0 0x9f esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x0000000040109b7f 0x1 .text.spiffs_page_index_check - 0x0000000040108510 0xab esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - *fill* 0x00000000401085bb 0x1 + 0x0000000040109b80 0xab esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x0000000040109c2b 0x1 .text.spiffs_object_find_object_index_header_by_name_v - 0x00000000401085bc 0x96 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x0000000040109c2c 0x96 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x9a (size before relaxing) - *fill* 0x0000000040108652 0x2 + *fill* 0x0000000040109cc2 0x2 .text.spiffs_obj_lu_find_free_obj_id_compact_v - 0x0000000040108654 0xa9 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - *fill* 0x00000000401086fd 0x3 + 0x0000000040109cc4 0xa9 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x0000000040109d6d 0x3 .text.spiffs_obj_lu_find_free_obj_id_bitmap_v - 0x0000000040108700 0xdc esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x0000000040109d70 0xdc esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) .text.spiffs_phys_cpy - 0x00000000401087dc 0x44 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x0000000040109e4c 0x44 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x4c (size before relaxing) - 0x00000000401087dc spiffs_phys_cpy + 0x0000000040109e4c spiffs_phys_cpy .text.spiffs_obj_lu_find_entry_visitor - 0x0000000040108820 0x1cc esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x0000000040109e90 0x1cc esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x1d0 (size before relaxing) - 0x0000000040108820 spiffs_obj_lu_find_entry_visitor + 0x0000000040109e90 spiffs_obj_lu_find_entry_visitor .text.spiffs_erase_block - 0x00000000401089ec 0xd4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - 0x00000000401089ec spiffs_erase_block + 0x000000004010a05c 0xd4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a05c spiffs_erase_block .text.spiffs_obj_lu_scan - 0x0000000040108ac0 0x154 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a130 0x154 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x158 (size before relaxing) - 0x0000000040108ac0 spiffs_obj_lu_scan + 0x000000004010a130 spiffs_obj_lu_scan .text.spiffs_obj_lu_find_id - 0x0000000040108c14 0x29 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a284 0x29 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x2d (size before relaxing) - 0x0000000040108c14 spiffs_obj_lu_find_id - *fill* 0x0000000040108c3d 0x3 + 0x000000004010a284 spiffs_obj_lu_find_id + *fill* 0x000000004010a2ad 0x3 .text.spiffs_obj_lu_find_free - 0x0000000040108c40 0x60 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a2b0 0x60 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x64 (size before relaxing) - 0x0000000040108c40 spiffs_obj_lu_find_free + 0x000000004010a2b0 spiffs_obj_lu_find_free .text.spiffs_obj_lu_find_id_and_span - 0x0000000040108ca0 0x8e esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - 0x0000000040108ca0 spiffs_obj_lu_find_id_and_span - *fill* 0x0000000040108d2e 0x2 + 0x000000004010a310 0x8e esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a310 spiffs_obj_lu_find_id_and_span + *fill* 0x000000004010a39e 0x2 .text.spiffs_page_allocate_data - 0x0000000040108d30 0x155 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a3a0 0x155 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x161 (size before relaxing) - 0x0000000040108d30 spiffs_page_allocate_data - *fill* 0x0000000040108e85 0x3 + 0x000000004010a3a0 spiffs_page_allocate_data + *fill* 0x000000004010a4f5 0x3 .text.spiffs_page_delete - 0x0000000040108e88 0x7a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a4f8 0x7a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x7e (size before relaxing) - 0x0000000040108e88 spiffs_page_delete - *fill* 0x0000000040108f02 0x2 + 0x000000004010a4f8 spiffs_page_delete + *fill* 0x000000004010a572 0x2 .text.spiffs_page_move - 0x0000000040108f04 0x132 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a574 0x132 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x13a (size before relaxing) - 0x0000000040108f04 spiffs_page_move - *fill* 0x0000000040109036 0x2 + 0x000000004010a574 spiffs_page_move + *fill* 0x000000004010a6a6 0x2 .text.spiffs_cb_object_event - 0x0000000040109038 0x16e esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - 0x0000000040109038 spiffs_cb_object_event - *fill* 0x00000000401091a6 0x2 + 0x000000004010a6a8 0x16e esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a6a8 spiffs_cb_object_event + *fill* 0x000000004010a816 0x2 .text.spiffs_object_create - 0x00000000401091a8 0x17c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a818 0x17c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x184 (size before relaxing) - 0x00000000401091a8 spiffs_object_create + 0x000000004010a818 spiffs_object_create .text.spiffs_object_update_index_hdr - 0x0000000040109324 0x168 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - 0x0000000040109324 spiffs_object_update_index_hdr + 0x000000004010a994 0x168 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010a994 spiffs_object_update_index_hdr .text.spiffs_object_open_by_page - 0x000000004010948c 0xc9 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010aafc 0xc9 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0xcd (size before relaxing) - 0x000000004010948c spiffs_object_open_by_page - *fill* 0x0000000040109555 0x3 + 0x000000004010aafc spiffs_object_open_by_page + *fill* 0x000000004010abc5 0x3 .text.spiffs_object_append - 0x0000000040109558 0x62a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010abc8 0x62a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x66e (size before relaxing) - 0x0000000040109558 spiffs_object_append - *fill* 0x0000000040109b82 0x2 + 0x000000004010abc8 spiffs_object_append + *fill* 0x000000004010b1f2 0x2 .text.spiffs_object_modify - 0x0000000040109b84 0x4d4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010b1f4 0x4d4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x510 (size before relaxing) - 0x0000000040109b84 spiffs_object_modify + 0x000000004010b1f4 spiffs_object_modify .text.spiffs_object_find_object_index_header_by_name - 0x000000004010a058 0x76 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - 0x000000004010a058 spiffs_object_find_object_index_header_by_name - *fill* 0x000000004010a0ce 0x2 + 0x000000004010b6c8 0x76 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010b6c8 spiffs_object_find_object_index_header_by_name + *fill* 0x000000004010b73e 0x2 .text.spiffs_object_truncate - 0x000000004010a0d0 0x52a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010b740 0x52a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x572 (size before relaxing) - 0x000000004010a0d0 spiffs_object_truncate - *fill* 0x000000004010a5fa 0x2 + 0x000000004010b740 spiffs_object_truncate + *fill* 0x000000004010bc6a 0x2 .text.spiffs_object_read - 0x000000004010a5fc 0x1f0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010bc6c 0x1f0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x200 (size before relaxing) - 0x000000004010a5fc spiffs_object_read + 0x000000004010bc6c spiffs_object_read .text.spiffs_obj_lu_find_free_obj_id - 0x000000004010a7ec 0x186 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - 0x000000004010a7ec spiffs_obj_lu_find_free_obj_id - *fill* 0x000000004010a972 0x2 + 0x000000004010be5c 0x186 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010be5c spiffs_obj_lu_find_free_obj_id + *fill* 0x000000004010bfe2 0x2 .text.spiffs_fd_find_new - 0x000000004010a974 0xf2 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010bfe4 0xf2 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0xf6 (size before relaxing) - 0x000000004010a974 spiffs_fd_find_new - *fill* 0x000000004010aa66 0x2 + 0x000000004010bfe4 spiffs_fd_find_new + *fill* 0x000000004010c0d6 0x2 .text.spiffs_fd_return - 0x000000004010aa68 0x43 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - 0x000000004010aa68 spiffs_fd_return - *fill* 0x000000004010aaab 0x1 + 0x000000004010c0d8 0x43 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010c0d8 spiffs_fd_return + *fill* 0x000000004010c11b 0x1 .text.spiffs_fd_get - 0x000000004010aaac 0x41 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - 0x000000004010aaac spiffs_fd_get - *fill* 0x000000004010aaed 0x3 + 0x000000004010c11c 0x41 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010c11c spiffs_fd_get + *fill* 0x000000004010c15d 0x3 .text.spiffs_fd_temporal_cache_rehash - 0x000000004010aaf0 0x3c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x000000004010c160 0x3c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x40 (size before relaxing) - 0x000000004010aaf0 spiffs_fd_temporal_cache_rehash + 0x000000004010c160 spiffs_fd_temporal_cache_rehash .text.spiffs_cache_page_remove_oldest - 0x000000004010ab2c 0x60 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x000000004010c19c 0x60 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) .text.spiffs_cache_drop_page - 0x000000004010ab8c 0x1b esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - 0x1f (size before relaxing) - 0x000000004010ab8c spiffs_cache_drop_page - *fill* 0x000000004010aba7 0x1 + 0x000000004010c1fc 0x1f esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x000000004010c1fc spiffs_cache_drop_page + *fill* 0x000000004010c21b 0x1 .text.spiffs_phys_rd - 0x000000004010aba8 0x104 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x000000004010c21c 0x108 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) 0x10c (size before relaxing) - 0x000000004010aba8 spiffs_phys_rd + 0x000000004010c21c spiffs_phys_rd .text.spiffs_phys_wr - 0x000000004010acac 0xb4 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - 0xb8 (size before relaxing) - 0x000000004010acac spiffs_phys_wr + 0x000000004010c324 0xb8 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x000000004010c324 spiffs_phys_wr .text.spiffs_cache_page_allocate_by_fd - 0x000000004010ad60 0x28 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - 0x2c (size before relaxing) - 0x000000004010ad60 spiffs_cache_page_allocate_by_fd + 0x000000004010c3dc 0x2c esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x000000004010c3dc spiffs_cache_page_allocate_by_fd .text.spiffs_cache_fd_release - 0x000000004010ad88 0x40 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - 0x000000004010ad88 spiffs_cache_fd_release + 0x000000004010c408 0x40 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x000000004010c408 spiffs_cache_fd_release .text.spiffs_cache_init - 0x000000004010adc8 0x92 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - 0x000000004010adc8 spiffs_cache_init - *fill* 0x000000004010ae5a 0x2 + 0x000000004010c448 0x92 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x000000004010c448 spiffs_cache_init + *fill* 0x000000004010c4da 0x2 .text.spiffs_gc_erase_block - 0x000000004010ae5c 0x38 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x000000004010c4dc 0x38 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) .text.spiffs_gc_quick - 0x000000004010ae94 0x151 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) - 0x000000004010ae94 spiffs_gc_quick - *fill* 0x000000004010afe5 0x3 + 0x000000004010c514 0x151 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x000000004010c514 spiffs_gc_quick + *fill* 0x000000004010c665 0x3 .text.spiffs_gc_erase_page_stats - 0x000000004010afe8 0xc0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) - 0x000000004010afe8 spiffs_gc_erase_page_stats + 0x000000004010c668 0xc0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x000000004010c668 spiffs_gc_erase_page_stats .text.spiffs_gc_find_candidate - 0x000000004010b0a8 0x215 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) - 0x000000004010b0a8 spiffs_gc_find_candidate - *fill* 0x000000004010b2bd 0x3 + 0x000000004010c728 0x215 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x000000004010c728 spiffs_gc_find_candidate + *fill* 0x000000004010c93d 0x3 .text.spiffs_gc_clean - 0x000000004010b2c0 0x4ee esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x000000004010c940 0x4ee esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) 0x50a (size before relaxing) - 0x000000004010b2c0 spiffs_gc_clean - *fill* 0x000000004010b7ae 0x2 + 0x000000004010c940 spiffs_gc_clean + *fill* 0x000000004010ce2e 0x2 .text.spiffs_gc_check - 0x000000004010b7b0 0x159 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x000000004010ce30 0x159 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) 0x161 (size before relaxing) - 0x000000004010b7b0 spiffs_gc_check - *fill* 0x000000004010b909 0x3 - .text.select 0x000000004010b90c 0x14 esp-idf/newlib/libnewlib.a(select.c.obj) - 0x18 (size before relaxing) - 0x000000004010b90c select - .text.s_get_num_reserved_regions - 0x000000004010b920 0x11 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - *fill* 0x000000004010b931 0x3 - .text.s_prepare_reserved_regions - 0x000000004010b934 0x9e esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - 0xa2 (size before relaxing) - *fill* 0x000000004010b9d2 0x2 - .text.soc_get_available_memory_region_max_count - 0x000000004010b9d4 0x12 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - 0x000000004010b9d4 soc_get_available_memory_region_max_count - *fill* 0x000000004010b9e6 0x2 - .text.soc_get_available_memory_regions - 0x000000004010b9e8 0x100 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - 0x104 (size before relaxing) - 0x000000004010b9e8 soc_get_available_memory_regions - .text.rtcio_hal_isolate - 0x000000004010bae8 0x12e esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - 0x13a (size before relaxing) - 0x000000004010bae8 rtcio_hal_isolate - *fill* 0x000000004010bc16 0x2 - .text.uart_hal_set_baudrate - 0x000000004010bc18 0x6e esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x000000004010bc18 uart_hal_set_baudrate - *fill* 0x000000004010bc86 0x2 - .text.uart_hal_get_baudrate - 0x000000004010bc88 0x44 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x000000004010bc88 uart_hal_get_baudrate - .text.uart_hal_set_hw_flow_ctrl - 0x000000004010bccc 0x74 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x000000004010bccc uart_hal_set_hw_flow_ctrl - .text.uart_hal_set_rx_timeout - 0x000000004010bd40 0x56 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x000000004010bd40 uart_hal_set_rx_timeout - *fill* 0x000000004010bd96 0x2 - .text.uart_hal_set_tx_idle_num - 0x000000004010bd98 0x22 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x000000004010bd98 uart_hal_set_tx_idle_num - *fill* 0x000000004010bdba 0x2 - .text.uart_hal_set_txfifo_empty_thr - 0x000000004010bdbc 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x000000004010bdbc uart_hal_set_txfifo_empty_thr - .text.uart_hal_init - 0x000000004010bddc 0x108 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x000000004010bddc uart_hal_init - .text.mbedtls_clz - 0x000000004010bee4 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - *fill* 0x000000004010bf01 0x3 - .text.mbedtls_int_div_int - 0x000000004010bf04 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mbedtls_mpi_zeroize - 0x000000004010bf50 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x10 (size before relaxing) - *fill* 0x000000004010bf5d 0x3 - .text.mpi_uint_bigendian_to_host - 0x000000004010bf60 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .text.mpi_bigendian_to_host - 0x000000004010bf70 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010ce30 spiffs_gc_check + *fill* 0x000000004010cf89 0x3 + .text.lvgl_driver_init + 0x000000004010cf8c 0xa esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + 0xe (size before relaxing) + 0x000000004010cf8c lvgl_driver_init + *fill* 0x000000004010cf96 0x2 + .text.win_close_action + 0x000000004010cf98 0x24 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + 0x28 (size before relaxing) + .text.sysmon_task + 0x000000004010cfbc 0x7c esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + 0x94 (size before relaxing) + .text.sysmon_create + 0x000000004010d038 0x10f esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + 0x157 (size before relaxing) + 0x000000004010d038 sysmon_create + *fill* 0x000000004010d147 0x1 + .text.disp_driver_init + 0x000000004010d148 0x12 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + 0x16 (size before relaxing) + 0x000000004010d148 disp_driver_init + *fill* 0x000000004010d15a 0x2 + .text.disp_driver_flush + 0x000000004010d15c 0xe esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + 0x12 (size before relaxing) + 0x000000004010d15c disp_driver_flush + *fill* 0x000000004010d16a 0x2 + .text.disp_spi_add_device_config + 0x000000004010d16c 0x2e esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) 0x32 (size before relaxing) - *fill* 0x000000004010bf9e 0x2 - .text.mbedtls_mpi_free - 0x000000004010bfa0 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010d16c disp_spi_add_device_config + *fill* 0x000000004010d19a 0x2 + .text.disp_spi_add_device + 0x000000004010d19c 0x2e esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + 0x000000004010d19c disp_spi_add_device + *fill* 0x000000004010d1ca 0x2 + .text.disp_spi_init + 0x000000004010d1cc 0x41 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + 0x48 (size before relaxing) + 0x000000004010d1cc disp_spi_init + *fill* 0x000000004010d20d 0x3 + .text.disp_spi_send_data + 0x000000004010d210 0x4e esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + 0x52 (size before relaxing) + 0x000000004010d210 disp_spi_send_data + *fill* 0x000000004010d25e 0x2 + .text.disp_spi_send_colors + 0x000000004010d260 0x4e esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + 0x52 (size before relaxing) + 0x000000004010d260 disp_spi_send_colors + *fill* 0x000000004010d2ae 0x2 + .text.disp_spi_is_busy + 0x000000004010d2b0 0xb esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + 0x000000004010d2b0 disp_spi_is_busy + *fill* 0x000000004010d2bb 0x1 + .text.ili9341_send_cmd + 0x000000004010d2bc 0x1e esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) 0x26 (size before relaxing) - 0x000000004010bfa0 mbedtls_mpi_free - *fill* 0x000000004010bfc2 0x2 - .text.mbedtls_mpi_grow - 0x000000004010bfc4 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x58 (size before relaxing) - 0x000000004010bfc4 mbedtls_mpi_grow - .text.mbedtls_mpi_shrink - 0x000000004010c010 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x7a (size before relaxing) - 0x000000004010c010 mbedtls_mpi_shrink - *fill* 0x000000004010c082 0x2 - .text.mbedtls_mpi_copy - 0x000000004010c084 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c084 mbedtls_mpi_copy - *fill* 0x000000004010c0fa 0x2 - .text.mbedtls_mpi_swap - 0x000000004010c0fc 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c0fc mbedtls_mpi_swap - *fill* 0x000000004010c127 0x1 - .text.mbedtls_mpi_safe_cond_assign - 0x000000004010c128 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c128 mbedtls_mpi_safe_cond_assign - .text.mbedtls_mpi_safe_cond_swap - 0x000000004010c19c 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x8e (size before relaxing) - 0x000000004010c19c mbedtls_mpi_safe_cond_swap - *fill* 0x000000004010c226 0x2 - .text.mbedtls_mpi_lset - 0x000000004010c228 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c228 mbedtls_mpi_lset - .text.mbedtls_mpi_set_bit - 0x000000004010c260 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c260 mbedtls_mpi_set_bit - *fill* 0x000000004010c2c7 0x1 - .text.mbedtls_mpi_bitlen - 0x000000004010c2c8 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c2c8 mbedtls_mpi_bitlen - *fill* 0x000000004010c305 0x3 - .text.mbedtls_mpi_size - 0x000000004010c308 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x13 (size before relaxing) - 0x000000004010c308 mbedtls_mpi_size - *fill* 0x000000004010c317 0x1 - .text.mbedtls_mpi_read_binary - 0x000000004010c318 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x68 (size before relaxing) - 0x000000004010c318 mbedtls_mpi_read_binary - .text.mbedtls_mpi_write_binary - 0x000000004010c374 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c374 mbedtls_mpi_write_binary - .text.mbedtls_mpi_shift_l - 0x000000004010c3f0 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xb9 (size before relaxing) - 0x000000004010c3f0 mbedtls_mpi_shift_l - *fill* 0x000000004010c4a1 0x3 - .text.mbedtls_mpi_shift_r - 0x000000004010c4a4 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c4a4 mbedtls_mpi_shift_r - *fill* 0x000000004010c54a 0x2 - .text.mbedtls_mpi_cmp_abs - 0x000000004010c54c 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c54c mbedtls_mpi_cmp_abs - .text.mbedtls_mpi_cmp_mpi - 0x000000004010c5d0 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c5d0 mbedtls_mpi_cmp_mpi - *fill* 0x000000004010c676 0x2 - .text.mbedtls_mpi_lt_mpi_ct - 0x000000004010c678 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xa4 (size before relaxing) - 0x000000004010c678 mbedtls_mpi_lt_mpi_ct - .text.mbedtls_mpi_cmp_int - 0x000000004010c718 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c718 mbedtls_mpi_cmp_int - *fill* 0x000000004010c742 0x2 - .text.mbedtls_mpi_add_abs - 0x000000004010c744 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xb2 (size before relaxing) - 0x000000004010c744 mbedtls_mpi_add_abs - *fill* 0x000000004010c7f2 0x2 - .text.mbedtls_mpi_sub_abs - 0x000000004010c7f4 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x7a (size before relaxing) - 0x000000004010c7f4 mbedtls_mpi_sub_abs - *fill* 0x000000004010c862 0x2 - .text.mbedtls_mpi_add_mpi - 0x000000004010c864 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x5a (size before relaxing) - 0x000000004010c864 mbedtls_mpi_add_mpi - *fill* 0x000000004010c8b6 0x2 - .text.mbedtls_mpi_sub_mpi - 0x000000004010c8b8 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x5a (size before relaxing) - 0x000000004010c8b8 mbedtls_mpi_sub_mpi - *fill* 0x000000004010c90a 0x2 - .text.mbedtls_mpi_add_int - 0x000000004010c90c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c90c mbedtls_mpi_add_int - .text.mbedtls_mpi_sub_int - 0x000000004010c938 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010c938 mbedtls_mpi_sub_int - .text.mbedtls_mpi_mul_int - 0x000000004010c964 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x20 (size before relaxing) - 0x000000004010c964 mbedtls_mpi_mul_int - .text.mbedtls_mpi_read_string - 0x000000004010c980 0x131 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x145 (size before relaxing) - 0x000000004010c980 mbedtls_mpi_read_string - *fill* 0x000000004010cab1 0x3 - .text.mbedtls_mpi_div_mpi - 0x000000004010cab4 0x380 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x3f0 (size before relaxing) - 0x000000004010cab4 mbedtls_mpi_div_mpi - .text.mbedtls_mpi_div_int - 0x000000004010ce34 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010ce34 mbedtls_mpi_div_int - *fill* 0x000000004010ce62 0x2 - .text.mbedtls_mpi_mod_mpi - 0x000000004010ce64 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x6c (size before relaxing) - 0x000000004010ce64 mbedtls_mpi_mod_mpi - .text.mbedtls_mpi_mod_int - 0x000000004010cec8 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004010cec8 mbedtls_mpi_mod_int - *fill* 0x000000004010cf46 0x2 - .text.mpi_write_hlp - 0x000000004010cf48 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x7e (size before relaxing) - *fill* 0x000000004010cfbe 0x2 - .text.mbedtls_mpi_write_string - 0x000000004010cfc0 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x10c (size before relaxing) - 0x000000004010cfc0 mbedtls_mpi_write_string - .text.mbedtls_mpi_write_file - 0x000000004010d0c0 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xa0 (size before relaxing) - 0x000000004010d0c0 mbedtls_mpi_write_file - .text.mpi_check_small_factors - 0x000000004010d154 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x54 (size before relaxing) - .text.mbedtls_mpi_gcd - 0x000000004010d1a4 0x10b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x14b (size before relaxing) - 0x000000004010d1a4 mbedtls_mpi_gcd - *fill* 0x000000004010d2af 0x1 - .text.mbedtls_mpi_fill_random - 0x000000004010d2b0 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x68 (size before relaxing) - 0x000000004010d2b0 mbedtls_mpi_fill_random - .text.mpi_miller_rabin - 0x000000004010d30c 0x1b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x205 (size before relaxing) - *fill* 0x000000004010d4c1 0x3 - .text.mbedtls_mpi_inv_mod - 0x000000004010d4c4 0x2a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x334 (size before relaxing) - 0x000000004010d4c4 mbedtls_mpi_inv_mod - .text.mbedtls_mpi_is_prime_ext - 0x000000004010d768 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x64 (size before relaxing) - 0x000000004010d768 mbedtls_mpi_is_prime_ext - .text.mbedtls_mpi_gen_prime - 0x000000004010d7c0 0x210 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x23c (size before relaxing) - 0x000000004010d7c0 mbedtls_mpi_gen_prime - .text.block_cipher_df - 0x000000004010d9d0 0x1a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x1ba (size before relaxing) - *fill* 0x000000004010db76 0x2 - .text.ctr_drbg_update_internal - 0x000000004010db78 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .text.mbedtls_ctr_drbg_init - 0x000000004010dc1c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x000000004010dc1c mbedtls_ctr_drbg_init - *fill* 0x000000004010dc2e 0x2 - .text.mbedtls_ctr_drbg_free - 0x000000004010dc30 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x1a (size before relaxing) - 0x000000004010dc30 mbedtls_ctr_drbg_free - *fill* 0x000000004010dc46 0x2 - .text.mbedtls_ctr_drbg_reseed - 0x000000004010dc48 0x8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x97 (size before relaxing) - 0x000000004010dc48 mbedtls_ctr_drbg_reseed - *fill* 0x000000004010dcd7 0x1 - .text.mbedtls_ctr_drbg_seed - 0x000000004010dcd8 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x54 (size before relaxing) - 0x000000004010dcd8 mbedtls_ctr_drbg_seed - .text.mbedtls_ctr_drbg_random_with_add - 0x000000004010dd24 0xf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x103 (size before relaxing) - 0x000000004010dd24 mbedtls_ctr_drbg_random_with_add - *fill* 0x000000004010de17 0x1 - .text.mbedtls_ctr_drbg_random - 0x000000004010de18 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0x18 (size before relaxing) - 0x000000004010de18 mbedtls_ctr_drbg_random - .text.ecp_check_pubkey_mx - 0x000000004010de2c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x21 (size before relaxing) - *fill* 0x000000004010de49 0x3 - .text.ecp_modp - 0x000000004010de4c 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x9b (size before relaxing) - *fill* 0x000000004010dee3 0x1 - .text.ecp_randomize_mxz - 0x000000004010dee4 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xd1 (size before relaxing) - *fill* 0x000000004010df91 0x3 - .text.ecp_randomize_jac - 0x000000004010df94 0x12d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x161 (size before relaxing) - *fill* 0x000000004010e0c1 0x3 - .text.ecp_double_add_mxz - 0x000000004010e0c4 0x38f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x427 (size before relaxing) - *fill* 0x000000004010e453 0x1 - .text.ecp_normalize_mxz - 0x000000004010e454 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x45 (size before relaxing) - *fill* 0x000000004010e48d 0x3 - .text.ecp_normalize_jac - 0x000000004010e490 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xfe (size before relaxing) - *fill* 0x000000004010e55e 0x2 - .text.ecp_double_jac - 0x000000004010e560 0x4b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x55e (size before relaxing) - *fill* 0x000000004010ea12 0x2 - .text.ecp_normalize_jac_many - 0x000000004010ea14 0x235 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x28d (size before relaxing) - *fill* 0x000000004010ec49 0x3 - .text.ecp_safe_invert_jac - 0x000000004010ec4c 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x48 (size before relaxing) - *fill* 0x000000004010ec85 0x3 - .text.ecp_select_comb - 0x000000004010ec88 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x60 (size before relaxing) - .text.ecp_comb_recode_core - 0x000000004010ece0 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x8e (size before relaxing) - *fill* 0x000000004010ed6a 0x2 - .text.ecp_comb_recode_scalar - 0x000000004010ed6c 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x91 (size before relaxing) - *fill* 0x000000004010ede1 0x3 - .text.ecp_check_pubkey_sw - 0x000000004010ede4 0x168 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x19c (size before relaxing) - .text.mbedtls_ecp_curve_list - 0x000000004010ef4c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x000000004010ef4c mbedtls_ecp_curve_list - .text.mbedtls_ecp_grp_id_list - 0x000000004010ef54 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x000000004010ef54 mbedtls_ecp_grp_id_list - *fill* 0x000000004010ef95 0x3 - .text.mbedtls_ecp_curve_info_from_grp_id - 0x000000004010ef98 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x000000004010ef98 mbedtls_ecp_curve_info_from_grp_id - .text.mbedtls_ecp_curve_info_from_tls_id - 0x000000004010efb4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x24 (size before relaxing) - 0x000000004010efb4 mbedtls_ecp_curve_info_from_tls_id - .text.mbedtls_ecp_curve_info_from_name - 0x000000004010efd4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x000000004010efd4 mbedtls_ecp_curve_info_from_name - *fill* 0x000000004010f002 0x2 - .text.mbedtls_ecp_point_init - 0x000000004010f004 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x1f (size before relaxing) - 0x000000004010f004 mbedtls_ecp_point_init - *fill* 0x000000004010f01b 0x1 - .text.mbedtls_ecp_group_init - 0x000000004010f01c 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x51 (size before relaxing) - 0x000000004010f01c mbedtls_ecp_group_init - *fill* 0x000000004010f05d 0x3 - .text.mbedtls_ecp_keypair_init - 0x000000004010f060 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x000000004010d2da 0x2 + .text.ili9341_send_data + 0x000000004010d2dc 0x1a esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) 0x22 (size before relaxing) - 0x000000004010f060 mbedtls_ecp_keypair_init - *fill* 0x000000004010f07a 0x2 - .text.mbedtls_ecp_point_free - 0x000000004010f07c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x20 (size before relaxing) - 0x000000004010f07c mbedtls_ecp_point_free - .text.mbedtls_ecp_group_free - 0x000000004010f094 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x77 (size before relaxing) - 0x000000004010f094 mbedtls_ecp_group_free - *fill* 0x000000004010f0f7 0x1 - .text.mbedtls_ecp_keypair_free - 0x000000004010f0f8 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x23 (size before relaxing) - 0x000000004010f0f8 mbedtls_ecp_keypair_free - *fill* 0x000000004010f113 0x1 - .text.mbedtls_ecp_copy - 0x000000004010f114 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x2c (size before relaxing) - 0x000000004010f114 mbedtls_ecp_copy - .text.ecp_mul_mxz - 0x000000004010f138 0x101 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x141 (size before relaxing) - *fill* 0x000000004010f239 0x3 - .text.mbedtls_ecp_group_copy - 0x000000004010f23c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x000000004010f23c mbedtls_ecp_group_copy - *fill* 0x000000004010f24d 0x3 - .text.mbedtls_ecp_set_zero - 0x000000004010f250 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x2a (size before relaxing) - 0x000000004010f250 mbedtls_ecp_set_zero - *fill* 0x000000004010f272 0x2 - .text.ecp_add_mixed - 0x000000004010f274 0x411 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x4b1 (size before relaxing) - *fill* 0x000000004010f685 0x3 - .text.ecp_precompute_comb - 0x000000004010f688 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .text.ecp_mul_comb_core - 0x000000004010f7b0 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xa4 (size before relaxing) - .text.ecp_mul_comb_after_precomp - 0x000000004010f840 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x5d (size before relaxing) - *fill* 0x000000004010f891 0x3 - .text.ecp_mul_comb - 0x000000004010f894 0x122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x132 (size before relaxing) - *fill* 0x000000004010f9b6 0x2 - .text.mbedtls_ecp_is_zero - 0x000000004010f9b8 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x000000004010f9b8 mbedtls_ecp_is_zero - *fill* 0x000000004010f9cf 0x1 - .text.mbedtls_ecp_point_cmp - 0x000000004010f9d0 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x42 (size before relaxing) - 0x000000004010f9d0 mbedtls_ecp_point_cmp - *fill* 0x000000004010fa0a 0x2 - .text.mbedtls_ecp_point_write_binary - 0x000000004010fa0c 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0xa8 (size before relaxing) - 0x000000004010fa0c mbedtls_ecp_point_write_binary - .text.mbedtls_ecp_point_read_binary - 0x000000004010faa8 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x7c (size before relaxing) - 0x000000004010faa8 mbedtls_ecp_point_read_binary - .text.mbedtls_ecp_tls_read_point - 0x000000004010fb14 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x000000004010fb14 mbedtls_ecp_tls_read_point - *fill* 0x000000004010fb51 0x3 - .text.mbedtls_ecp_tls_write_point - 0x000000004010fb54 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x32 (size before relaxing) - 0x000000004010fb54 mbedtls_ecp_tls_write_point - *fill* 0x000000004010fb82 0x2 - .text.mbedtls_ecp_tls_read_group_id - 0x000000004010fb84 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x000000004010fb84 mbedtls_ecp_tls_read_group_id - *fill* 0x000000004010fbcd 0x3 - .text.mbedtls_ecp_tls_write_group - 0x000000004010fbd0 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x39 (size before relaxing) - 0x000000004010fbd0 mbedtls_ecp_tls_write_group - *fill* 0x000000004010fc05 0x3 - .literal.mbedtls_ecp_mul_restartable - 0x000000004010fc08 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_ecp_mul - 0x000000004010fc0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ecp_mul_shortcuts - 0x000000004010fc0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x000000004010d2f6 0x2 + .text.ili9341_send_color + 0x000000004010d2f8 0x1a esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + 0x22 (size before relaxing) + *fill* 0x000000004010d312 0x2 + .text.ili9341_flush + 0x000000004010d314 0x82 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + 0x96 (size before relaxing) + 0x000000004010d314 ili9341_flush + *fill* 0x000000004010d396 0x2 + .text.ili9341_enable_backlight + 0x000000004010d398 0x38 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + 0x000000004010d398 ili9341_enable_backlight + .text.ili9341_init + 0x000000004010d3d0 0x298 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + 0x2ac (size before relaxing) + 0x000000004010d3d0 ili9341_init + .text.lv_disp_get_scr_act + 0x000000004010d668 0x28 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + 0x000000004010d668 lv_disp_get_scr_act + .text.lv_disp_get_layer_top + 0x000000004010d690 0x28 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + 0x000000004010d690 lv_disp_get_layer_top + .text.lv_disp_get_layer_sys + 0x000000004010d6b8 0x29 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + 0x000000004010d6b8 lv_disp_get_layer_sys + *fill* 0x000000004010d6e1 0x3 + .text.lv_event_mark_deleted + 0x000000004010d6e4 0x1d esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + *fill* 0x000000004010d701 0x3 + .text.refresh_children_position + 0x000000004010d704 0x55 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + *fill* 0x000000004010d759 0x3 + .text.lv_init 0x000000004010d75c 0x63 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x7f (size before relaxing) + 0x000000004010d75c lv_init + *fill* 0x000000004010d7bf 0x1 + .text.lv_obj_set_drag + 0x000000004010d7c0 0x2a esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d7c0 lv_obj_set_drag + *fill* 0x000000004010d7ea 0x2 + .text.lv_event_send_func + 0x000000004010d7ec 0x8e esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d7ec lv_event_send_func + *fill* 0x000000004010d87a 0x2 + .text.lv_event_send + 0x000000004010d87c 0x1d esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d87c lv_event_send + *fill* 0x000000004010d899 0x3 + .text.lv_event_get_data + 0x000000004010d89c 0xa esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d89c lv_event_get_data + *fill* 0x000000004010d8a6 0x2 + .text.lv_obj_allocate_ext_attr + 0x000000004010d8a8 0x14 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d8a8 lv_obj_allocate_ext_attr + .text.lv_obj_get_screen + 0x000000004010d8bc 0x15 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d8bc lv_obj_get_screen + *fill* 0x000000004010d8d1 0x3 + .text.lv_obj_get_disp + 0x000000004010d8d4 0x62 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x6a (size before relaxing) + 0x000000004010d8d4 lv_obj_get_disp + *fill* 0x000000004010d936 0x2 + .text.lv_obj_get_child + 0x000000004010d938 0x1e esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d938 lv_obj_get_child + *fill* 0x000000004010d956 0x2 + .text.lv_obj_get_child_back + 0x000000004010d958 0x1e esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d958 lv_obj_get_child_back + *fill* 0x000000004010d976 0x2 + .text.lv_obj_get_coords + 0x000000004010d978 0x12 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d978 lv_obj_get_coords + *fill* 0x000000004010d98a 0x2 + .text.lv_obj_get_x + 0x000000004010d98c 0x22 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d98c lv_obj_get_x + *fill* 0x000000004010d9ae 0x2 + .text.lv_obj_get_y + 0x000000004010d9b0 0x22 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010d9b0 lv_obj_get_y + *fill* 0x000000004010d9d2 0x2 + .text.lv_obj_invalidate_area + 0x000000004010d9d4 0xbf esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0xd3 (size before relaxing) + 0x000000004010d9d4 lv_obj_invalidate_area + *fill* 0x000000004010da93 0x1 + .text.lv_obj_invalidate + 0x000000004010da94 0x42 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x46 (size before relaxing) + 0x000000004010da94 lv_obj_invalidate + *fill* 0x000000004010dad6 0x2 + .text.lv_obj_move_foreground + 0x000000004010dad8 0x3f esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x47 (size before relaxing) + 0x000000004010dad8 lv_obj_move_foreground + *fill* 0x000000004010db17 0x1 + .text.lv_obj_set_pos + 0x000000004010db18 0x8e esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x9a (size before relaxing) + 0x000000004010db18 lv_obj_set_pos + *fill* 0x000000004010dba6 0x2 + .text.lv_obj_set_x + 0x000000004010dba8 0x18 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) 0x1c (size before relaxing) - .literal.mbedtls_ecp_muladd_restartable - 0x000000004010fc0c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004010dba8 lv_obj_set_x + .text.lv_obj_set_y + 0x000000004010dbc0 0x18 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) 0x1c (size before relaxing) - .literal.mbedtls_ecp_muladd - 0x000000004010fc10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ecp_gen_privkey - 0x000000004010fc10 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x38 (size before relaxing) - .literal.mbedtls_ecp_gen_keypair_base - 0x000000004010fc14 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_ecp_gen_keypair - 0x000000004010fc14 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ecp_gen_key - 0x000000004010fc14 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_ecp_check_pub_priv - 0x000000004010fc14 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x34 (size before relaxing) - .literal.ecp_mod_p255 - 0x000000004010fc14 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0x18 (size before relaxing) - .literal.ecp_mod_p521 - 0x000000004010fc18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0xc (size before relaxing) - .literal.ecp_mod_p192 - 0x000000004010fc18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0x4 (size before relaxing) - .literal.ecp_mod_p384 - 0x000000004010fc18 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0xc (size before relaxing) - .literal.ecp_group_load - 0x000000004010fc1c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0xc (size before relaxing) - .literal.ecp_use_curve25519 - 0x000000004010fc20 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0x34 (size before relaxing) - .literal.ecp_mod_p224 - 0x000000004010fc28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0xc (size before relaxing) - .literal.ecp_mod_p256 - 0x000000004010fc28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0xc (size before relaxing) - .literal.ecp_mod_p192k1 - 0x000000004010fc28 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0x1c (size before relaxing) - .literal.ecp_mod_p256k1 - 0x000000004010fc2c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0x1c (size before relaxing) - .literal.ecp_mod_p224k1 - 0x000000004010fc30 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0x1c (size before relaxing) - .literal.mbedtls_ecp_group_load - 0x000000004010fc34 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0x158 (size before relaxing) - .literal.entropy_update - 0x000000004010fd50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0x14 (size before relaxing) - .literal.entropy_gather_internal - 0x000000004010fd50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_entropy_free - 0x000000004010fd50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_entropy_init - 0x000000004010fd50 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_entropy_func - 0x000000004010fd58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0x28 (size before relaxing) - .literal.mbedtls_strerror - 0x000000004010fd58 0x5a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) - 0x8ec (size before relaxing) - .literal.mbedtls_md_info_from_type - 0x0000000040110300 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .literal.mbedtls_md_free - 0x000000004011031c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_md_setup - 0x000000004011031c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_md_starts - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_md_update - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_md_finish - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_md - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_md_hmac_starts - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_md_hmac_update - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_md_hmac_finish - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_md_hmac_reset - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_md_process - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x4 (size before relaxing) - .literal.md5_process_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.md5_clone_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.md5_ctx_free - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x8 (size before relaxing) - .literal.md5_ctx_alloc - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x8 (size before relaxing) - .literal.md5_finish_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.md5_update_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.md5_starts_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha1_process_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha1_clone_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha1_ctx_free - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x8 (size before relaxing) - .literal.sha1_ctx_alloc - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x8 (size before relaxing) - .literal.sha1_finish_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha1_update_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha1_starts_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha224_process_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha224_clone_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha224_ctx_free - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x8 (size before relaxing) - .literal.sha224_ctx_alloc - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x8 (size before relaxing) - .literal.sha224_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha256_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha224_finish_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha224_update_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha224_starts_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha256_starts_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha384_process_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha384_clone_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha384_ctx_free - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x8 (size before relaxing) - .literal.sha384_ctx_alloc - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x8 (size before relaxing) - .literal.sha384_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha512_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha384_finish_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha384_update_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha384_starts_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.sha512_starts_wrap - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_pk_free - 0x0000000040110324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_pk_info_from_type - 0x0000000040110324 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .literal.mbedtls_pk_setup - 0x0000000040110334 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .literal.mbedtls_pk_verify_restartable - 0x000000004011033c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_pk_verify - 0x0000000040110340 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_pk_sign_restartable - 0x0000000040110340 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_pk_sign - 0x0000000040110340 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_pk_decrypt - 0x0000000040110340 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_pk_encrypt - 0x0000000040110340 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_pk_check_pair - 0x0000000040110340 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_pk_verify_ext - 0x0000000040110340 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x24 (size before relaxing) - .literal.rsa_debug - 0x0000000040110348 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .literal.eckey_debug - 0x0000000040110350 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .literal.rsa_free_wrap - 0x0000000040110354 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x8 (size before relaxing) - .literal.rsa_alloc_wrap - 0x0000000040110354 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x8 (size before relaxing) - .literal.rsa_check_pair_wrap - 0x0000000040110354 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x4 (size before relaxing) - .literal.rsa_get_bitlen - 0x0000000040110354 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x4 (size before relaxing) - .literal.rsa_encrypt_wrap - 0x0000000040110354 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0xc (size before relaxing) - .literal.rsa_decrypt_wrap - 0x0000000040110358 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0xc (size before relaxing) - .literal.rsa_sign_wrap - 0x000000004011035c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x8 (size before relaxing) - .literal.rsa_verify_wrap - 0x000000004011035c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x10 (size before relaxing) - .literal.eckey_free_wrap - 0x000000004011035c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x8 (size before relaxing) - .literal.eckey_alloc_wrap - 0x000000004011035c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x8 (size before relaxing) - .literal.eckey_check_pair - 0x000000004011035c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x4 (size before relaxing) - .literal.ecdsa_alloc_wrap - 0x000000004011035c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x8 (size before relaxing) - .literal.ecdsa_free_wrap - 0x000000004011035c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x8 (size before relaxing) - .literal.ecdsa_sign_wrap - 0x000000004011035c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x4 (size before relaxing) - .literal.eckey_sign_wrap - 0x000000004011035c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x10 (size before relaxing) - .literal.ecdsa_verify_wrap - 0x000000004011035c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0xc (size before relaxing) - .literal.eckey_verify_wrap - 0x0000000040110360 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0x10 (size before relaxing) - .literal.pkcs5_parse_pbkdf2_params - 0x0000000040110360 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - 0x20 (size before relaxing) - .literal.mbedtls_pkcs5_pbkdf2_hmac - 0x000000004011036c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - 0x28 (size before relaxing) - .literal.mbedtls_pkcs5_pbes2 - 0x000000004011036c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - 0x58 (size before relaxing) - .literal.pk_get_ecparams - 0x000000004011037c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x10 (size before relaxing) - .literal.pk_get_pk_alg - 0x0000000040110388 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x10 (size before relaxing) - .literal.pk_get_rsapubkey - 0x0000000040110390 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x24 (size before relaxing) - .literal.pk_group_from_specified - 0x0000000040110398 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x64 (size before relaxing) - .literal.pk_group_id_from_group - 0x00000000401103a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x38 (size before relaxing) - .literal.pk_group_id_from_specified - 0x00000000401103a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x10 (size before relaxing) - .literal.pk_use_ecparams - 0x00000000401103a4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x14 (size before relaxing) - .literal.pk_get_ecpubkey - 0x00000000401103a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x8 (size before relaxing) - .literal.asn1_get_nonzero_mpi - 0x00000000401103a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0xc (size before relaxing) - .literal.pk_parse_key_pkcs1_der - 0x00000000401103a8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x000000004010dbc0 lv_obj_set_y + .text.lv_obj_align + 0x000000004010dbd8 0x452 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x45a (size before relaxing) + 0x000000004010dbd8 lv_obj_align + *fill* 0x000000004010e02a 0x2 + .text.lv_obj_align_origo + 0x000000004010e02c 0x3b6 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x3c2 (size before relaxing) + 0x000000004010e02c lv_obj_align_origo + *fill* 0x000000004010e3e2 0x2 + .text.lv_obj_realign + 0x000000004010e3e4 0x2c esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x33 (size before relaxing) + 0x000000004010e3e4 lv_obj_realign + *fill* 0x000000004010e410 0x0 + .text.lv_obj_set_parent + 0x000000004010e410 0x7a esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x8e (size before relaxing) + 0x000000004010e410 lv_obj_set_parent + *fill* 0x000000004010e48a 0x2 + .text.lv_obj_refresh_style + 0x000000004010e48c 0x1a esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x22 (size before relaxing) + 0x000000004010e48c lv_obj_refresh_style + *fill* 0x000000004010e4a6 0x2 + .text.refresh_children_style + 0x000000004010e4a8 0x41 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x45 (size before relaxing) + *fill* 0x000000004010e4e9 0x3 + .text.lv_obj_set_style + 0x000000004010e4ec 0x13 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x17 (size before relaxing) + 0x000000004010e4ec lv_obj_set_style + *fill* 0x000000004010e4ff 0x1 + .text.lv_obj_refresh_ext_draw_pad + 0x000000004010e500 0x1a esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x1e (size before relaxing) + 0x000000004010e500 lv_obj_refresh_ext_draw_pad + *fill* 0x000000004010e51a 0x2 + .text.lv_obj_create + 0x000000004010e51c 0x31b esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x33b (size before relaxing) + 0x000000004010e51c lv_obj_create + *fill* 0x000000004010e837 0x1 + .text.lv_obj_set_size + 0x000000004010e838 0xc2 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0xca (size before relaxing) + 0x000000004010e838 lv_obj_set_size + *fill* 0x000000004010e8fa 0x2 + .text.lv_obj_set_height + 0x000000004010e8fc 0x1c esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010e8fc lv_obj_set_height + .text.lv_obj_get_opa_scale + 0x000000004010e918 0x22 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010e918 lv_obj_get_opa_scale + *fill* 0x000000004010e93a 0x2 + .text.delete_children + 0x000000004010e93c 0xbc esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0xde (size before relaxing) + *fill* 0x000000004010e9f8 0x0 + .text.lv_obj_del + 0x000000004010e9f8 0xed esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x111 (size before relaxing) + 0x000000004010e9f8 lv_obj_del + *fill* 0x000000004010eae5 0x3 + .text.lv_obj_get_style + 0x000000004010eae8 0x67 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010eae8 lv_obj_get_style + *fill* 0x000000004010eb4f 0x1 + .text.lv_obj_design + 0x000000004010eb50 0xb2 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0xca (size before relaxing) + *fill* 0x000000004010ec02 0x2 + .text.lv_obj_get_width_fit + 0x000000004010ec04 0x2b esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x2f (size before relaxing) + 0x000000004010ec04 lv_obj_get_width_fit + *fill* 0x000000004010ec2f 0x1 + .text.lv_obj_get_height_fit + 0x000000004010ec30 0x2b esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x2f (size before relaxing) + 0x000000004010ec30 lv_obj_get_height_fit + *fill* 0x000000004010ec5b 0x1 + .text.lv_obj_is_focused + 0x000000004010ec5c 0x1e esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004010ec5c lv_obj_is_focused + *fill* 0x000000004010ec7a 0x2 + .text.lv_obj_signal + 0x000000004010ec7c 0x68 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) 0x6c (size before relaxing) - .literal.pk_parse_key_sec1_der - 0x00000000401103ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x58 (size before relaxing) - .literal.pk_parse_key_pkcs8_unencrypted_der - 0x00000000401103ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x38 (size before relaxing) - .literal.pk_parse_key_pkcs8_encrypted_der - 0x00000000401103ac 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x44 (size before relaxing) - .literal.mbedtls_pk_load_file - 0x00000000401103c0 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x44 (size before relaxing) - .literal.mbedtls_pk_parse_subpubkey - 0x00000000401103d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x2c (size before relaxing) - .literal.mbedtls_pk_parse_key - 0x00000000401103d4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0xdc (size before relaxing) - .literal.mbedtls_pk_parse_keyfile - 0x0000000040110400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x18 (size before relaxing) - .literal.pk_write_rsa_pubkey - 0x0000000040110400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x20 (size before relaxing) - .literal.pk_write_ec_pubkey - 0x0000000040110400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x8 (size before relaxing) - .literal.pk_write_ec_param - 0x0000000040110400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x8 (size before relaxing) - .literal.pk_write_ec_private - 0x0000000040110400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_pk_write_pubkey - 0x0000000040110400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_pk_write_pubkey_der - 0x0000000040110400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x28 (size before relaxing) - .literal.mbedtls_pk_write_key_der - 0x0000000040110400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x90 (size before relaxing) - .literal.mbedtls_pk_write_key_pem - 0x0000000040110400 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0x2c (size before relaxing) - .literal.mbedtls_calloc - 0x0000000040110418 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .literal.mbedtls_free - 0x000000004011041c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .literal.mbedtls_platform_zeroize - 0x0000000040110420 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .literal.if_int - 0x0000000040110424 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x4 (size before relaxing) - .literal.mem_move_to_left - 0x0000000040110424 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0xc (size before relaxing) - .literal.rsa_check_context - 0x0000000040110424 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x30 (size before relaxing) - .literal.rsa_prepare_blinding - 0x0000000040110424 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x28 (size before relaxing) - .literal.mgf_mask - 0x0000000040110428 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x1c (size before relaxing) - .literal.rsa_rsassa_pkcs1_v15_encode - 0x0000000040110428 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x24 (size before relaxing) - .literal.mbedtls_rsa_import - 0x0000000040110428 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x1c (size before relaxing) - .literal.mbedtls_rsa_import_raw - 0x0000000040110428 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x1c (size before relaxing) - .literal.mbedtls_rsa_complete - 0x0000000040110428 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x3c (size before relaxing) - .literal.mbedtls_rsa_export - 0x0000000040110428 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x2c (size before relaxing) - .literal.mbedtls_rsa_export_crt - 0x0000000040110428 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x24 (size before relaxing) - .literal.mbedtls_rsa_init - 0x0000000040110428 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_rsa_check_pubkey - 0x0000000040110428 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_rsa_check_privkey - 0x000000004011042c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_rsa_check_pub_priv - 0x000000004011042c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_rsa_public - 0x000000004011042c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x24 (size before relaxing) - .literal.mbedtls_rsa_private - 0x0000000040110430 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0xc4 (size before relaxing) - .literal.mbedtls_rsa_rsaes_oaep_encrypt - 0x0000000040110430 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x38 (size before relaxing) - .literal.mbedtls_rsa_rsaes_pkcs1_v15_encrypt - 0x0000000040110430 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_rsa_pkcs1_encrypt - 0x0000000040110430 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_rsa_rsaes_oaep_decrypt - 0x0000000040110434 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x48 (size before relaxing) - .literal.mbedtls_rsa_rsaes_pkcs1_v15_decrypt - 0x0000000040110434 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x4c (size before relaxing) - .literal.mbedtls_rsa_pkcs1_decrypt - 0x0000000040110434 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_rsa_rsassa_pss_sign - 0x0000000040110434 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x58 (size before relaxing) - .literal.mbedtls_rsa_rsassa_pkcs1_v15_sign - 0x0000000040110434 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x30 (size before relaxing) - .literal.mbedtls_rsa_pkcs1_sign - 0x0000000040110438 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_rsa_rsassa_pss_verify_ext - 0x0000000040110438 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x50 (size before relaxing) - .literal.mbedtls_rsa_rsassa_pss_verify - 0x0000000040110438 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_rsa_rsassa_pkcs1_v15_verify - 0x0000000040110438 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x2c (size before relaxing) - .literal.mbedtls_rsa_pkcs1_verify - 0x0000000040110438 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_rsa_free - 0x0000000040110438 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x34 (size before relaxing) - .literal.mbedtls_rsa_gen_key - 0x0000000040110438 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x78 (size before relaxing) - .literal.mbedtls_rsa_deduce_primes - 0x000000004011043c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - 0x74 (size before relaxing) - .literal.mbedtls_rsa_deduce_private_exponent - 0x0000000040110440 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - 0x38 (size before relaxing) - .literal.mbedtls_rsa_validate_crt - 0x0000000040110440 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - 0x48 (size before relaxing) - .literal.mbedtls_rsa_validate_params - 0x0000000040110440 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - 0x68 (size before relaxing) - .literal.mbedtls_rsa_deduce_crt - 0x0000000040110440 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - 0x1c (size before relaxing) - .literal.mbedtls_sha1_ret - 0x0000000040110440 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_sha256_ret - 0x0000000040110440 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_sha512_ret - 0x0000000040110440 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_hardware_poll - 0x0000000040110440 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - 0x4 (size before relaxing) - .literal.mpi_words - 0x0000000040110440 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x4 (size before relaxing) - .literal.modular_inverse - 0x0000000040110440 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .literal.calculate_rinv - 0x0000000040110444 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x10 (size before relaxing) - .literal.esp_mpi_acquire_hardware - 0x0000000040110444 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0xc (size before relaxing) - .literal.esp_mpi_release_hardware - 0x000000004011044c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0xc (size before relaxing) - .literal.mpi_montgomery_exp_calc - 0x0000000040110450 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x3c (size before relaxing) - .literal.mpi_mult_mpi_failover_mod_mult - 0x0000000040110450 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x18 (size before relaxing) - .literal.esp_mpi_mul_mpi_mod - 0x0000000040110450 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x34 (size before relaxing) - .literal.mbedtls_mpi_exp_mod - 0x0000000040110450 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x3c (size before relaxing) - .literal.mbedtls_mpi_mul_mpi - 0x0000000040110454 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x40 (size before relaxing) - .literal.mpi_mult_mpi_overlong - 0x0000000040110458 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x18 (size before relaxing) - .literal.esp_mpi_enable_hardware_hw_op - 0x0000000040110458 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x14 (size before relaxing) - .literal.esp_mpi_disable_hardware_hw_op - 0x0000000040110464 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xc (size before relaxing) - .literal.esp_mpi_read_result_hw_op - 0x0000000040110464 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x20 (size before relaxing) - .literal.esp_mpi_mul_mpi_mod_hw_op - 0x000000004011047c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x20 (size before relaxing) - .literal.esp_mpi_mul_mpi_hw_op - 0x0000000040110490 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x18 (size before relaxing) - .literal.esp_mont_hw_op - 0x0000000040110494 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x40 (size before relaxing) - .literal.esp_mpi_mult_mpi_failover_mod_mult_hw_op - 0x0000000040110494 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x24 (size before relaxing) - .literal.esp_aes_setkey_hardware - 0x0000000040110498 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - .literal.esp_aes_block - 0x00000000401104a4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x30 (size before relaxing) - .literal.esp_aes_acquire_hardware - 0x00000000401104bc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0xc (size before relaxing) - .literal.esp_aes_release_hardware - 0x00000000401104c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0xc (size before relaxing) - .literal.esp_aes_init - 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x4 (size before relaxing) - .literal.esp_aes_free - 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x4 (size before relaxing) - .literal.esp_aes_setkey - 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x4 (size before relaxing) - .literal.esp_internal_aes_encrypt - 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x10 (size before relaxing) - .literal.esp_internal_aes_decrypt - 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x10 (size before relaxing) - .literal.esp_aes_crypt_ecb - 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x10 (size before relaxing) - .literal.esp_aes_crypt_cbc - 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x20 (size before relaxing) - .literal.esp_aes_crypt_cfb128 - 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x14 (size before relaxing) - .literal.esp_aes_crypt_ctr - 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x10 (size before relaxing) - .literal.esp_aes_crypt_ofb - 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_sha1_software_process - 0x00000000401104c8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .literal.mbedtls_sha1_init - 0x00000000401104d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_sha1_free - 0x00000000401104d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_sha1_clone - 0x00000000401104d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_sha1_starts_ret - 0x00000000401104d8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_internal_sha1_process - 0x00000000401104ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_sha1_update_ret - 0x00000000401104ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_sha1_finish_ret - 0x00000000401104ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_sha256_software_process - 0x00000000401104f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .literal.mbedtls_sha256_init - 0x00000000401104f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_sha256_free - 0x00000000401104f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_sha256_clone - 0x00000000401104f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_sha256_starts_ret - 0x00000000401104f4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x44 (size before relaxing) - .literal.mbedtls_internal_sha256_process - 0x0000000040110534 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_sha256_update_ret - 0x0000000040110534 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_sha256_finish_ret - 0x0000000040110534 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_sha512_software_process - 0x0000000040110538 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - .literal.mbedtls_sha512_init - 0x000000004011053c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_sha512_free - 0x000000004011053c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_sha512_clone - 0x000000004011053c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_sha512_starts_ret - 0x000000004011053c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - 0x8c (size before relaxing) - .literal.mbedtls_internal_sha512_process - 0x0000000040110580 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_sha512_update_ret - 0x0000000040110580 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_sha512_finish_ret - 0x0000000040110580 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_asn1_get_tag - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_asn1_get_bool - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_asn1_get_int - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_asn1_get_mpi - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_asn1_get_bitstring - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_asn1_get_bitstring_null - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_asn1_get_sequence_of - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_asn1_get_alg - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_asn1_get_alg_null - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_asn1_free_named_data - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_asn1_free_named_data_list - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x8 (size before relaxing) - .literal.asn1_find_named_data - 0x0000000040110584 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_asn1_write_len - 0x0000000040110584 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .literal.mbedtls_asn1_write_raw_buffer - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_asn1_write_mpi - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_asn1_write_null - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_asn1_write_oid - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_asn1_write_algorithm_identifier - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_asn1_write_bool - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_asn1_write_int - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_asn1_write_tagged_string - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_asn1_write_bitstring - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_asn1_write_octet_string - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_asn1_store_named_data - 0x000000004011058c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x2c (size before relaxing) - .literal.get_pkcs_padding - 0x000000004011058c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .literal.get_one_and_zeros_padding - 0x0000000040110594 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x8 (size before relaxing) - .literal.get_zeros_and_len_padding - 0x0000000040110594 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x8 (size before relaxing) - .literal.get_zeros_padding - 0x0000000040110594 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x4 (size before relaxing) - .literal.get_no_padding - 0x0000000040110594 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_cipher_info_from_type - 0x0000000040110594 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .literal.mbedtls_cipher_info_from_values - 0x0000000040110598 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_cipher_init - 0x0000000040110598 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_cipher_free - 0x0000000040110598 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_cipher_setkey - 0x0000000040110598 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_cipher_set_iv - 0x0000000040110598 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_cipher_reset - 0x000000004011059c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_cipher_update - 0x000000004011059c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x20 (size before relaxing) - .literal.mbedtls_cipher_finish - 0x00000000401105a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_cipher_set_padding_mode - 0x00000000401105a4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x30 (size before relaxing) - .literal.mbedtls_cipher_setup - 0x00000000401105cc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_cipher_crypt - 0x00000000401105d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_cipher_auth_encrypt - 0x00000000401105d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_cipher_auth_decrypt - 0x00000000401105d0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x10 (size before relaxing) - .literal.ccm_ctx_free - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x8 (size before relaxing) - .literal.ccm_ctx_alloc - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x8 (size before relaxing) - .literal.ccm_aes_setkey_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.gcm_ctx_free - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x8 (size before relaxing) - .literal.gcm_ctx_alloc - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x8 (size before relaxing) - .literal.gcm_aes_setkey_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.xts_aes_ctx_free - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x8 (size before relaxing) - .literal.xts_aes_ctx_alloc - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x8 (size before relaxing) - .literal.xts_aes_setkey_dec_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.xts_aes_setkey_enc_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.aes_crypt_xts_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x8 (size before relaxing) - .literal.aes_ctx_free - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x8 (size before relaxing) - .literal.aes_ctx_alloc - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x8 (size before relaxing) - .literal.aes_setkey_dec_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.aes_setkey_enc_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.aes_crypt_ctr_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.aes_crypt_ofb_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.aes_crypt_cfb128_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.aes_crypt_cbc_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.aes_crypt_ecb_wrap - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x4 (size before relaxing) - .literal.derive_mpi - 0x00000000401105d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x10 (size before relaxing) - .literal.ecdsa_sign_restartable - 0x00000000401105d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x70 (size before relaxing) - .literal.ecdsa_sign_det_restartable - 0x00000000401105d8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x4c (size before relaxing) - .literal.ecdsa_verify_restartable - 0x00000000401105e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x68 (size before relaxing) - .literal.ecdsa_signature_to_asn1 - 0x00000000401105e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_ecdsa_write_signature_restartable - 0x00000000401105e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_ecdsa_write_signature - 0x00000000401105e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ecdsa_read_signature_restartable - 0x00000000401105e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x2c (size before relaxing) - .literal.mbedtls_ecdsa_read_signature - 0x00000000401105e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ecdsa_init - 0x00000000401105e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ecdsa_free - 0x00000000401105e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ecdsa_from_keypair - 0x00000000401105e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x10 (size before relaxing) - .literal.gcm_mult - 0x00000000401105e8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .literal.gcm_gen_table - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_gcm_init - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_gcm_setkey - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_gcm_starts - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x24 (size before relaxing) - .literal.mbedtls_gcm_update - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_gcm_finish - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_gcm_crypt_and_tag - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_gcm_auth_decrypt - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_gcm_free - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_hmac_drbg_init - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_hmac_drbg_update_ret - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x28 (size before relaxing) - .literal.hmac_drbg_reseed_core - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_hmac_drbg_seed_buf - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_hmac_drbg_reseed - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_hmac_drbg_random_with_add - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x20 (size before relaxing) - .literal.mbedtls_hmac_drbg_random - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_hmac_drbg_free - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_md5_init - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_md5_free - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_md5_clone - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_md5_starts_ret - 0x00000000401105ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_internal_md5_process - 0x00000000401105ec 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .literal.mbedtls_md5_update_ret - 0x00000000401106ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_md5_finish_ret - 0x00000000401106ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_md5_ret - 0x00000000401106ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x14 (size before relaxing) - .literal.oid_x520_attr_from_asn1 - 0x00000000401106ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x8 (size before relaxing) - .literal.oid_x509_ext_from_asn1 - 0x00000000401106f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x8 (size before relaxing) - .literal.oid_sig_alg_from_asn1 - 0x00000000401106f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x8 (size before relaxing) - .literal.oid_pk_alg_from_asn1 - 0x00000000401106f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x8 (size before relaxing) - .literal.oid_grp_id_from_asn1 - 0x00000000401106fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x8 (size before relaxing) - .literal.oid_cipher_alg_from_asn1 - 0x0000000040110700 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x8 (size before relaxing) - .literal.oid_md_alg_from_asn1 - 0x0000000040110704 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x8 (size before relaxing) - .literal.oid_md_hmac_from_asn1 - 0x0000000040110708 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x8 (size before relaxing) - .literal.oid_pkcs12_pbe_alg_from_asn1 - 0x000000004011070c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_oid_get_attr_short_name - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_x509_ext_type - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_sig_alg - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_oid_by_sig_alg - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_pk_alg - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_oid_by_pk_alg - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_ec_grp - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_oid_by_ec_grp - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_cipher_alg - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_md_alg - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_oid_by_md - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_md_hmac - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_oid_get_pkcs12_pbe_alg - 0x0000000040110710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x4 (size before relaxing) - .literal.pem_get_iv - 0x0000000040110710 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x8 (size before relaxing) - .literal.pem_pbkdf1 - 0x0000000040110714 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x3c (size before relaxing) - .literal.pem_aes_decrypt - 0x0000000040110714 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_pem_read_buffer - 0x0000000040110714 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x90 (size before relaxing) - .literal.mbedtls_pem_free - 0x0000000040110738 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_pem_write_buffer - 0x0000000040110738 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x3c (size before relaxing) - .literal.pkcs12_parse_pbe_params - 0x0000000040110738 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - 0x14 (size before relaxing) - .literal.pkcs12_fill_buffer - 0x0000000040110744 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_pkcs12_pbe_sha1_rc4_128 - 0x0000000040110744 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .literal.mbedtls_pkcs12_derivation - 0x0000000040110748 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - 0x58 (size before relaxing) - .literal.pkcs12_pbe_derive_key_iv - 0x000000004011074c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_pkcs12_pbe - 0x000000004011074c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - 0x38 (size before relaxing) - .literal.esp_aes_xts_init - 0x000000004011074c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0x8 (size before relaxing) - .literal.esp_aes_xts_free - 0x000000004011074c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0x8 (size before relaxing) - .literal.esp_aes_xts_setkey_enc - 0x000000004011074c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0xc (size before relaxing) - .literal.esp_aes_xts_setkey_dec - 0x000000004011074c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0xc (size before relaxing) - .literal.esp_aes_crypt_xts - 0x000000004011074c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0x18 (size before relaxing) - .literal.sha_get_engine_state - 0x0000000040110750 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x20 (size before relaxing) - .literal.esp_sha_lock_engine_common - 0x000000004011076c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x2c (size before relaxing) - .literal.esp_sha_lock_memory_block - 0x0000000040110780 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x8 (size before relaxing) - .literal.esp_sha_unlock_memory_block - 0x0000000040110784 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x8 (size before relaxing) - .literal.esp_sha_try_lock_engine - 0x0000000040110784 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x4 (size before relaxing) - .literal.esp_sha_unlock_engine - 0x0000000040110784 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x1c (size before relaxing) - .literal.esp_sha_wait_idle - 0x0000000040110784 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x20 (size before relaxing) - .literal.esp_sha_read_digest_state - 0x0000000040110794 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x4c (size before relaxing) - .literal.esp_sha_block - 0x00000000401107b0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x38 (size before relaxing) - .literal.mbedtls_base64_encode - 0x00000000401107c0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_base64_decode - 0x00000000401107c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .literal.ccm_auth_crypt - 0x00000000401107cc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x40 (size before relaxing) - .literal.mbedtls_ccm_init - 0x00000000401107d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ccm_setkey - 0x00000000401107d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_ccm_free - 0x00000000401107d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_ccm_star_encrypt_and_tag - 0x00000000401107d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ccm_encrypt_and_tag - 0x00000000401107d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_ccm_star_auth_decrypt - 0x00000000401107d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x8 (size before relaxing) - .literal.mbedtls_ccm_auth_decrypt - 0x00000000401107d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x4 (size before relaxing) - .literal.x509_parse_int - 0x00000000401107d0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .literal.x509_date_is_valid - 0x00000000401107d4 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x10 (size before relaxing) - .literal.x509_parse_time - 0x00000000401107e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x20 (size before relaxing) - .literal.x509_get_attr_type_value - 0x00000000401107e0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x1c (size before relaxing) - .literal.x509_get_hash_alg - 0x00000000401107f0 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_x509_get_serial - 0x00000000401107fc 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_x509_get_alg_null - 0x0000000040110808 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_x509_get_alg - 0x0000000040110808 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_x509_get_rsassa_pss_params - 0x0000000040110808 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x40 (size before relaxing) - .literal.mbedtls_x509_get_name - 0x0000000040110814 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_x509_get_time - 0x0000000040110818 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_x509_get_sig - 0x0000000040110820 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_x509_get_sig_alg - 0x0000000040110828 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x1c (size before relaxing) - .literal.mbedtls_x509_get_ext - 0x000000004011082c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_x509_dn_gets - 0x0000000040110830 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x30 (size before relaxing) - .literal.x509_get_uid - 0x0000000040110848 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_string_cmp - 0x000000004011084c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_name_cmp - 0x000000004011084c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_crt_check_ee_locally_trusted - 0x000000004011084c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_get_version - 0x000000004011084c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x10 (size before relaxing) - .literal.x509_get_dates - 0x0000000040110850 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x10 (size before relaxing) - .literal.x509_get_basic_constraints - 0x0000000040110854 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x14 (size before relaxing) - .literal.x509_get_key_usage - 0x0000000040110854 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_get_ns_cert_type - 0x0000000040110858 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_get_ext_key_usage - 0x0000000040110858 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_get_subject_alt_name - 0x0000000040110858 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x20 (size before relaxing) - .literal.x509_get_crt_ext - 0x0000000040110868 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x44 (size before relaxing) - .literal.x509_profile_check_key - 0x0000000040110870 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_check_wildcard - 0x0000000040110870 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_crt_check_cn - 0x0000000040110870 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_crt_verify_name - 0x0000000040110870 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x14 (size before relaxing) - .literal.x509_crt_check_signature - 0x0000000040110874 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_x509_crt_check_key_usage - 0x0000000040110874 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0xc (size before relaxing) - .literal.x509_crt_check_parent - 0x000000004011087c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_crt_find_parent_in - 0x000000004011087c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x10 (size before relaxing) - .literal.x509_crt_find_parent - 0x000000004011087c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_x509_crt_check_extended_key_usage - 0x000000004011087c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_x509_crt_is_revoked - 0x0000000040110880 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x8 (size before relaxing) - .literal.x509_crt_verifycrl - 0x0000000040110880 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x3c (size before relaxing) - .literal.x509_crt_verify_chain - 0x0000000040110888 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x34 (size before relaxing) - .literal.mbedtls_x509_crt_verify_restartable - 0x0000000040110894 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x30 (size before relaxing) - .literal.mbedtls_x509_crt_init - 0x0000000040110898 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_x509_crt_free - 0x0000000040110898 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x38 (size before relaxing) - .literal.x509_crt_parse_der_core - 0x0000000040110898 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0xbc (size before relaxing) - .literal.mbedtls_x509_crt_parse_der - 0x00000000401108a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_x509_crt_parse - 0x00000000401108a4 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x38 (size before relaxing) - .literal.mbedtls_x509_crt_parse_file - 0x00000000401108b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x10 (size before relaxing) - .literal.x509_csr_get_version - 0x00000000401108b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_x509_csr_init - 0x00000000401108b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_x509_csr_free - 0x00000000401108b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - 0x1c (size before relaxing) - .literal.mbedtls_x509_csr_parse_der - 0x00000000401108b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .text.lv_refr_join_area + 0x000000004010ece4 0xde esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + *fill* 0x000000004010edc2 0x2 + .text.lv_refr_get_top_obj + 0x000000004010edc4 0x83 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x8b (size before relaxing) + *fill* 0x000000004010ee47 0x1 + .text.lv_refr_obj + 0x000000004010ee48 0xe2 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0xee (size before relaxing) + *fill* 0x000000004010ef2a 0x2 + .text.lv_refr_obj_and_children + 0x000000004010ef2c 0x6f esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + *fill* 0x000000004010ef9b 0x1 + .text.lv_inv_area + 0x000000004010ef9c 0xda esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0xe2 (size before relaxing) + 0x000000004010ef9c lv_inv_area + *fill* 0x000000004010f076 0x2 + .text.lv_refr_get_disp_refreshing + 0x000000004010f078 0xa esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x000000004010f078 lv_refr_get_disp_refreshing + *fill* 0x000000004010f082 0x2 + .text.lv_refr_vdb_flush + 0x000000004010f084 0x5a esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + *fill* 0x000000004010f0de 0x2 + .text.lv_refr_area_part + 0x000000004010f0e0 0x68 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) 0x80 (size before relaxing) - .literal.mbedtls_x509_csr_parse - 0x00000000401108b4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - 0x30 (size before relaxing) - .literal.mbedtls_x509_csr_parse_file - 0x00000000401108c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - 0x10 (size before relaxing) - .literal.x509_write_time - 0x00000000401108c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_x509write_crt_init - 0x00000000401108c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .text.lv_refr_area + 0x000000004010f148 0x162 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x17e (size before relaxing) + *fill* 0x000000004010f2aa 0x2 + .text.lv_refr_areas + 0x000000004010f2ac 0x5b esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + *fill* 0x000000004010f307 0x1 + .text.lv_disp_refr_task + 0x000000004010f308 0x121 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x138 (size before relaxing) + 0x000000004010f308 lv_disp_refr_task + *fill* 0x000000004010f429 0x3 + .text.lv_style_copy + 0x000000004010f42c 0x12 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + 0x000000004010f42c lv_style_copy + *fill* 0x000000004010f43e 0x2 + .text.lv_style_init + 0x000000004010f440 0x53f esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + 0x56b (size before relaxing) + 0x000000004010f440 lv_style_init + *fill* 0x000000004010f97f 0x1 + .text.lv_draw_get_buf + 0x000000004010f980 0x43 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + 0x000000004010f980 lv_draw_get_buf + *fill* 0x000000004010f9c3 0x1 + .text.lv_draw_free_buf + 0x000000004010f9c4 0x1e esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + 0x000000004010f9c4 lv_draw_free_buf + *fill* 0x000000004010f9e2 0x2 + .text.lv_draw_aa_get_opa + 0x000000004010f9e4 0x44 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + 0x000000004010f9e4 lv_draw_aa_get_opa + .text.lv_draw_aa_ver_seg + 0x000000004010fa28 0x60 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + 0x000000004010fa28 lv_draw_aa_ver_seg + .text.lv_draw_aa_hor_seg + 0x000000004010fa88 0x60 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + 0x64 (size before relaxing) + 0x000000004010fa88 lv_draw_aa_hor_seg + .text.sw_mem_blend + 0x000000004010fae8 0xbb esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + *fill* 0x000000004010fba3 0x1 + .text.sw_color_fill + 0x000000004010fba4 0x1d8 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .text.lv_draw_px + 0x000000004010fd7c 0x107 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0x10b (size before relaxing) + 0x000000004010fd7c lv_draw_px + *fill* 0x000000004010fe83 0x1 + .text.lv_draw_fill + 0x000000004010fe84 0x1d4 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0x1dc (size before relaxing) + 0x000000004010fe84 lv_draw_fill + .literal.antialias_get_opa_circ + 0x0000000040110058 0x10 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .literal.lv_draw_cont_radius_corr + 0x0000000040110068 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) 0x8 (size before relaxing) - .literal.mbedtls_x509write_crt_free - 0x00000000401108c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_x509write_crt_set_subject_name - 0x00000000401108c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_x509write_crt_set_issuer_name - 0x00000000401108c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_x509write_crt_set_serial - 0x00000000401108c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_x509write_crt_set_validity - 0x00000000401108c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x14 (size before relaxing) - .literal.mbedtls_x509write_crt_set_extension - 0x00000000401108c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x4 (size before relaxing) - .literal.mbedtls_x509write_crt_set_basic_constraints - 0x00000000401108c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .literal.lv_draw_shadow_full_straight + 0x0000000040110068 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) 0x1c (size before relaxing) - .literal.mbedtls_x509write_crt_set_subject_key_identifier - 0x00000000401108cc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x20 (size before relaxing) - .literal.mbedtls_x509write_crt_set_authority_key_identifier - 0x00000000401108d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x28 (size before relaxing) - .literal.mbedtls_x509write_crt_set_key_usage - 0x00000000401108d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x18 (size before relaxing) - .literal.mbedtls_x509write_crt_set_ns_cert_type - 0x00000000401108dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_x509write_crt_der - 0x00000000401108e0 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x88 (size before relaxing) - .literal.mbedtls_x509write_crt_pem - 0x00000000401108ec 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x14 (size before relaxing) - .literal.x509_attr_descr_from_name - 0x00000000401108f4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .literal.x509_write_name - 0x00000000401108fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x18 (size before relaxing) - .literal.x509_write_extension - 0x00000000401108fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x24 (size before relaxing) - .literal.mbedtls_x509_string_to_names - 0x00000000401108fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x20 (size before relaxing) - .literal.mbedtls_x509_set_extension - 0x0000000040110900 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_x509_write_names - 0x0000000040110900 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0xc (size before relaxing) - .literal.mbedtls_x509_write_sig - 0x0000000040110900 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x10 (size before relaxing) - .literal.mbedtls_x509_write_extensions - 0x0000000040110900 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x4 (size before relaxing) - .literal.esp_ota_get_running_partition - 0x0000000040110900 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x38 (size before relaxing) - .literal.esp_netif_action_start - 0x0000000040110918 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x4 (size before relaxing) - .literal.esp_netif_action_stop - 0x0000000040110918 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x4 (size before relaxing) - .literal.esp_netif_action_connected - 0x0000000040110918 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x50 (size before relaxing) - .literal.esp_netif_action_disconnected - 0x0000000040110938 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x4 (size before relaxing) - .literal.esp_netif_action_got_ip - 0x0000000040110938 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x14 (size before relaxing) - .literal.wifi_create_and_start_sta - 0x000000004011093c 0xc esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - 0x18 (size before relaxing) - .literal.wifi_create_and_start_ap - 0x0000000040110948 0x8 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - 0x18 (size before relaxing) - .literal.tcpip_adapter_set_default_wifi_handlers - 0x0000000040110950 0x10 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - 0x1c (size before relaxing) - .literal.tcpip_adapter_clear_default_wifi_handlers - 0x0000000040110960 0x0 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - 0x4 (size before relaxing) - .literal.os_get_time - 0x0000000040110960 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x4 (size before relaxing) - .literal.os_random - 0x0000000040110960 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .literal.os_get_random - 0x0000000040110964 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x4 (size before relaxing) - .literal.wpa_install_key - 0x0000000040110964 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x4 (size before relaxing) - .literal.wpa_get_key - 0x0000000040110964 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x4 (size before relaxing) - .literal.wpa_sendto_wrapper - 0x0000000040110964 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x4 (size before relaxing) - .literal.wpa_deauthenticate - 0x0000000040110964 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x4 (size before relaxing) - .literal.wpa_config_assoc_ie - 0x0000000040110964 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x8 (size before relaxing) - .literal.wpa_neg_complete - 0x0000000040110964 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x4 (size before relaxing) - .literal.wpa_attach - 0x0000000040110964 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x24 (size before relaxing) - .literal.wpa_ap_get_wpa_ie - 0x0000000040110980 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x4 (size before relaxing) - .literal.wpa_ap_rx_eapol - 0x0000000040110980 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x4 (size before relaxing) - .literal.wpa_deattach - 0x0000000040110980 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x4 (size before relaxing) - .literal.wpa_parse_wpa_ie_wrapper - 0x0000000040110980 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x10 (size before relaxing) - .literal.wpa_sta_disconnected_cb - 0x0000000040110980 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x4 (size before relaxing) - .literal.wpa_config_profile - 0x0000000040110980 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x2c (size before relaxing) - .literal.wpa_config_bss - 0x000000004011098c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x18 (size before relaxing) - .literal.wpa_sta_connect - 0x000000004011098c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x18 (size before relaxing) - .literal.esp_supplicant_init - 0x0000000040110994 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x48 (size before relaxing) - .literal.esp_supplicant_deinit - 0x00000000401109d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x4 (size before relaxing) - .literal.wpa3_parse_sae_commit - 0x00000000401109d4 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x1c (size before relaxing) - .literal.wpa3_parse_sae_confirm - 0x00000000401109e0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x1c (size before relaxing) - .literal.wpa3_parse_sae_msg - 0x00000000401109e8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x8 (size before relaxing) - .literal.wpa3_build_sae_commit - 0x00000000401109e8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.lv_draw_shadow_full + 0x0000000040110068 0x10 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) 0x34 (size before relaxing) - .literal.wpa3_build_sae_confirm - 0x00000000401109e8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x10 (size before relaxing) - .literal.wpa3_build_sae_msg - 0x00000000401109e8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x8 (size before relaxing) - .literal.esp_wifi_register_wpa3_cb - 0x00000000401109e8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .literal.wpa_sm_pmksa_free_cb - 0x00000000401109f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x14 (size before relaxing) - .literal.wpa_supplicant_clr_countermeasures - 0x00000000401109f0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0xc (size before relaxing) - .literal.cipher_type_map_public_to_supp - 0x00000000401109f8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .literal.wpa_eapol_key_send - 0x00000000401109fc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0xc (size before relaxing) - .literal.wpa_sm_key_request - 0x00000000401109fc 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.lv_draw_shadow_bottom + 0x0000000040110078 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) 0x2c (size before relaxing) - .literal.wpa_sm_rekey_ptk - 0x0000000040110a0c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x4 (size before relaxing) - .literal.wpa_supplicant_send_2_of_4 - 0x0000000040110a0c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.lv_draw_shadow + 0x000000004011007c 0x8 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) 0x1c (size before relaxing) - .literal.wpa_derive_ptk - 0x0000000040110a0c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0xc (size before relaxing) - .literal.wpa_supplicant_pairwise_gtk - 0x0000000040110a10 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x10 (size before relaxing) - .literal.wpa_report_ie_mismatch - 0x0000000040110a10 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x4 (size before relaxing) - .literal.ieee80211w_set_keys - 0x0000000040110a10 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x8 (size before relaxing) - .literal.wpa_supplicant_validate_ie - 0x0000000040110a14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x1c (size before relaxing) - .literal.wpa_supplicant_send_4_of_4 - 0x0000000040110a14 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x1c (size before relaxing) - .literal.wpa_sm_set_seq - 0x0000000040110a18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x4 (size before relaxing) - .literal.wpa_supplicant_process_1_of_2_rsn - 0x0000000040110a18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x14 (size before relaxing) - .literal.wpa_supplicant_process_1_of_2_wpa - 0x0000000040110a18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x1c (size before relaxing) - .literal.wpa_supplicant_send_2_of_2 - 0x0000000040110a18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x18 (size before relaxing) - .literal.wpa_supplicant_verify_eapol_key_mic - 0x0000000040110a18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x28 (size before relaxing) - .literal.wpa_supplicant_decrypt_key_data - 0x0000000040110a18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x14 (size before relaxing) - .literal.wpa_sm_set_state - 0x0000000040110a18 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0xc (size before relaxing) - .literal.wpa_supplicant_key_neg_complete - 0x0000000040110a1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x8 (size before relaxing) - .literal.wpa_supplicant_process_3_of_4 - 0x0000000040110a1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x28 (size before relaxing) - .literal.wpa_supplicant_process_1_of_2 - 0x0000000040110a1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x1c (size before relaxing) - .literal.wpa_supplicant_stop_countermeasures - 0x0000000040110a1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x14 (size before relaxing) - .literal.wpa_sm_set_pmk_from_pmksa - 0x0000000040110a1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x8 (size before relaxing) - .literal.wpa_supplicant_get_pmk - 0x0000000040110a1c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x34 (size before relaxing) - .literal.wpa_supplicant_process_1_of_4 - 0x0000000040110a28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x2c (size before relaxing) - .literal.wpa_sm_rx_eapol - 0x0000000040110a28 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x28 (size before relaxing) - .literal.wpa_sm_init - 0x0000000040110a2c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x10 (size before relaxing) - .literal.wpa_sm_deinit - 0x0000000040110a30 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x8 (size before relaxing) - .literal.wpa_set_profile - 0x0000000040110a30 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x4 (size before relaxing) - .literal.wpa_set_pmk - 0x0000000040110a30 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x14 (size before relaxing) - .literal.wpa_set_passphrase - 0x0000000040110a38 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x40 (size before relaxing) - .literal.set_assoc_ie - 0x0000000040110a38 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x4 (size before relaxing) - .literal.wpa_set_bss - 0x0000000040110a38 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.lv_draw_rect_border_straight + 0x0000000040110084 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) 0x4c (size before relaxing) - .literal.wpa_sm_set_key - 0x0000000040110a3c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.lv_draw_rect_border_corner + 0x0000000040110084 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0xe4 (size before relaxing) + .literal.lv_draw_rect_main_mid + 0x0000000040110084 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0x18 (size before relaxing) + .literal.lv_draw_rect_main_corner + 0x0000000040110088 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0xc0 (size before relaxing) + .literal.lv_draw_rect + 0x000000004011008c 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0x18 (size before relaxing) + .literal.lv_img_cache_open + 0x0000000040110090 0x24 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + 0x44 (size before relaxing) + .literal.lv_img_cache_invalidate_src + 0x00000000401100b4 0x0 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + 0x10 (size before relaxing) + .literal.lv_img_cache_set_size + 0x00000000401100b4 0x0 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + 0x1c (size before relaxing) + .literal.lv_img_decoder_built_in_info + 0x00000000401100b4 0x18 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x28 (size before relaxing) + .literal.lv_img_decoder_built_in_close + 0x00000000401100cc 0x0 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x14 (size before relaxing) + .literal.lv_img_decoder_built_in_open + 0x00000000401100cc 0x14 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x64 (size before relaxing) + .literal.lv_img_decoder_built_in_line_true_color + 0x00000000401100e0 0x8 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x20 (size before relaxing) + .literal.lv_img_decoder_built_in_line_alpha + 0x00000000401100e8 0x8 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x18 (size before relaxing) + .literal.lv_img_decoder_built_in_line_indexed + 0x00000000401100f0 0x0 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) 0xc (size before relaxing) - .literal.wpa_supplicant_install_ptk - 0x0000000040110a3c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x10 (size before relaxing) - .literal.wpa_supplicant_install_gtk - 0x0000000040110a40 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x14 (size before relaxing) - .literal.wpa_supplicant_send_4_of_4_txcallback - 0x0000000040110a40 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x14 (size before relaxing) - .literal.wpa_sm_get_key - 0x0000000040110a40 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.lv_img_decoder_built_in_read_line + 0x00000000401100f0 0x4 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x18 (size before relaxing) + .literal.lv_img_decoder_get_info + 0x00000000401100f4 0xc esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .literal.lv_img_decoder_open + 0x0000000040110100 0x8 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x20 (size before relaxing) + .literal.lv_img_decoder_close + 0x0000000040110108 0x0 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) 0x4 (size before relaxing) - .literal.wpa_supplicant_gtk_in_use - 0x0000000040110a40 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x24 (size before relaxing) - .literal.wpa_supplicant_send_2_of_2_txcallback - 0x0000000040110a40 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.lv_img_decoder_create + 0x0000000040110108 0x0 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0xc (size before relaxing) + .literal.lv_img_decoder_init + 0x0000000040110108 0x28 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x38 (size before relaxing) + .literal.lv_font_get_glyph_width + 0x0000000040110130 0x4 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .literal.lv_disp_drv_init + 0x0000000040110134 0x4 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x8 (size before relaxing) + .literal.lv_disp_drv_register + 0x0000000040110138 0x10 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x44 (size before relaxing) + .literal.lv_disp_get_default + 0x0000000040110148 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x4 (size before relaxing) + .literal.lv_disp_get_hor_res + 0x0000000040110148 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x4 (size before relaxing) + .literal.lv_disp_get_ver_res + 0x0000000040110148 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x4 (size before relaxing) + .literal.lv_disp_get_antialiasing + 0x0000000040110148 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x4 (size before relaxing) + .literal.lv_disp_is_true_double_buf + 0x0000000040110148 0x4 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .literal.lv_indev_get_next + 0x000000004011014c 0x4 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + 0xc (size before relaxing) + .literal.lv_tick_get + 0x0000000040110150 0x8 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .literal.lv_tick_elaps + 0x0000000040110158 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + 0x4 (size before relaxing) + .literal.anim_ready_handler + 0x0000000040110158 0x8 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x14 (size before relaxing) + .literal.anim_task + 0x0000000040110160 0x4 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x2c (size before relaxing) + .literal.lv_anim_core_init + 0x0000000040110164 0x4 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x18 (size before relaxing) + .literal.lv_anim_del + 0x0000000040110168 0x0 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x18 (size before relaxing) + .literal.lv_anim_create + 0x0000000040110168 0x0 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x14 (size before relaxing) + .literal.lv_anim_speed_to_time + 0x0000000040110168 0x4 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .literal.lv_area_set_pos + 0x000000004011016c 0x8 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .literal.lv_fs_init + 0x0000000040110174 0x4 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0x8 (size before relaxing) + .literal.lv_fs_close + 0x0000000040110178 0x0 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0x4 (size before relaxing) + .literal.lv_fs_get_drv + 0x0000000040110178 0x0 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0xc (size before relaxing) + .literal.lv_fs_open + 0x0000000040110178 0x4 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) 0x10 (size before relaxing) - .literal.wpa_michael_mic_failure - 0x0000000040110a40 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.lv_fs_get_ext + 0x000000004011017c 0x4 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0x8 (size before relaxing) + .literal.lv_ll_ins_head + 0x0000000040110180 0x8 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x10 (size before relaxing) + .literal.lv_ll_ins_tail + 0x0000000040110188 0x0 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x10 (size before relaxing) + .literal.lv_ll_ins_prev + 0x0000000040110188 0x4 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x20 (size before relaxing) + .literal.lv_ll_rem + 0x000000004011018c 0x4 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x28 (size before relaxing) + .literal.lv_ll_clear + 0x0000000040110190 0x0 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x10 (size before relaxing) + .literal.lv_ll_chg_list + 0x0000000040110190 0x0 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x1c (size before relaxing) + .literal.lv_ll_move_before + 0x0000000040110190 0x0 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x1c (size before relaxing) + .literal.lv_log_add + 0x0000000040110190 0x8 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + 0xc (size before relaxing) + .literal.ent_get_next + 0x0000000040110198 0x8 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .literal.ent_trunc + 0x00000000401101a0 0x0 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x4 (size before relaxing) + .literal.ent_alloc + 0x00000000401101a0 0x0 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x4 (size before relaxing) + .literal.lv_mem_init + 0x00000000401101a0 0x8 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0xc (size before relaxing) + .literal.lv_mem_alloc + 0x00000000401101a8 0xc esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x18 (size before relaxing) + .literal.lv_mem_free + 0x00000000401101b4 0x0 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0xc (size before relaxing) + .literal.lv_mem_monitor + 0x00000000401101b4 0x0 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x10 (size before relaxing) + .literal.lv_mem_get_size + 0x00000000401101b4 0x0 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x4 (size before relaxing) + .literal.lv_mem_realloc + 0x00000000401101b4 0x0 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x20 (size before relaxing) + .literal.lv_task_create_basic + 0x00000000401101b4 0x8 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x20 (size before relaxing) + .literal.lv_task_del + 0x00000000401101bc 0x8 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x14 (size before relaxing) + .literal.lv_task_exec + 0x00000000401101c4 0x0 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x14 (size before relaxing) + .literal.lv_task_handler + 0x00000000401101c4 0x1c esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x50 (size before relaxing) + .literal.lv_task_set_prio + 0x00000000401101e0 0x0 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x14 (size before relaxing) + .literal.lv_task_create + 0x00000000401101e0 0x8 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x10 (size before relaxing) + .literal.lv_task_ready + 0x00000000401101e8 0x0 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x4 (size before relaxing) + .literal.lv_task_enable + 0x00000000401101e8 0x0 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x4 (size before relaxing) + .literal.lv_task_core_init + 0x00000000401101e8 0x0 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0xc (size before relaxing) + .literal.lv_task_get_idle + 0x00000000401101e8 0x0 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x4 (size before relaxing) + .literal.lv_chart_draw_div + 0x00000000401101e8 0xc esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x1c (size before relaxing) + .literal.lv_chart_draw_lines + 0x00000000401101f4 0x8 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x28 (size before relaxing) + .literal.lv_chart_draw_points + 0x00000000401101fc 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x2c (size before relaxing) + .literal.lv_chart_draw_vertical_lines + 0x00000000401101fc 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x2c (size before relaxing) + .literal.lv_chart_draw_areas + 0x00000000401101fc 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x2c (size before relaxing) + .literal.lv_chart_get_next_label + 0x00000000401101fc 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .literal.lv_chart_draw_y_ticks + 0x0000000040110200 0x10 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x44 (size before relaxing) + .literal.lv_chart_draw_x_ticks + 0x0000000040110210 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x3c (size before relaxing) + .literal.lv_chart_draw_axes + 0x0000000040110210 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0xc (size before relaxing) + .literal.lv_chart_signal + 0x0000000040110210 0x8 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x20 (size before relaxing) + .literal.lv_chart_inv_cols + 0x0000000040110218 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x14 (size before relaxing) + .literal.lv_chart_inv_points + 0x0000000040110218 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x14 (size before relaxing) + .literal.lv_chart_inv_lines + 0x0000000040110218 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x14 (size before relaxing) + .literal.lv_chart_draw_cols + 0x0000000040110218 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x30 (size before relaxing) + .literal.lv_chart_design + 0x0000000040110218 0x4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x38 (size before relaxing) + .literal.lv_chart_create + 0x000000004011021c 0xc esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) 0x54 (size before relaxing) - .literal.eapol_txcb - 0x0000000040110a60 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x1c (size before relaxing) - .literal.wpa_sta_in_4way_handshake - 0x0000000040110a68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x4 (size before relaxing) - .literal.wpa_sta_is_cur_pmksa_set - 0x0000000040110a68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x8 (size before relaxing) - .literal.wpa_sta_clear_curr_pmksa - 0x0000000040110a68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0xc (size before relaxing) - .literal.wpa_parse_generic - 0x0000000040110a68 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .literal.wpa_gen_wpa_ie_rsn - 0x0000000040110a7c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0x14 (size before relaxing) - .literal.wpa_gen_wpa_ie_wpa - 0x0000000040110a88 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0x10 (size before relaxing) - .literal.wpa_parse_wpa_ie - 0x0000000040110a90 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0x8 (size before relaxing) - .literal.wpa_gen_wpa_ie - 0x0000000040110a90 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0x8 (size before relaxing) - .literal.wpa_supplicant_parse_ies - 0x0000000040110a90 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0x8 (size before relaxing) - .literal.hex2byte - 0x0000000040110a90 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x8 (size before relaxing) - .literal.hexstr2bin - 0x0000000040110a90 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x4 (size before relaxing) - .literal.wpa_get_ntp_timestamp - 0x0000000040110a90 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x14 (size before relaxing) - .literal.printf_decode - 0x0000000040110a9c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0xc (size before relaxing) - .literal.dup_binstr - 0x0000000040110aa0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x8 (size before relaxing) - .literal.wpa_config_parse_string - 0x0000000040110aa0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x38 (size before relaxing) - .literal.wpa_bin_clear_free - 0x0000000040110aa4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x4 (size before relaxing) - .literal.wpabuf_alloc - 0x0000000040110aa4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .literal.wpabuf_free - 0x0000000040110aa8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x8 (size before relaxing) - .literal.wpabuf_alloc_copy - 0x0000000040110aa8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0xc (size before relaxing) - .literal.wpa_auth_get_sm - 0x0000000040110aa8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .literal.wpa_auth_add_sm - 0x0000000040110ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x8 (size before relaxing) - .literal.wpa_auth_del_sm - 0x0000000040110ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x8 (size before relaxing) - .literal.wpa_use_aes_cmac - 0x0000000040110ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x4 (size before relaxing) - .literal.wpa_receive_error_report - 0x0000000040110ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x4 (size before relaxing) - .literal.wpa_free_sta_sm - 0x0000000040110ab0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x10 (size before relaxing) - .literal.wpa_group_init_gmk_and_counter - 0x0000000040110ab0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.lv_chart_add_series + 0x0000000040110228 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) 0x18 (size before relaxing) - .literal.sm_WPA_PTK_AUTHENTICATION_Enter - 0x0000000040110ab4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x4 (size before relaxing) - .literal.wpa_gmk_to_gtk - 0x0000000040110ab4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x14 (size before relaxing) - .literal.wpa_gtk_update - 0x0000000040110ab4 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x20 (size before relaxing) - .literal.wpa_group_gtk_init - 0x0000000040110abc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.lv_chart_set_series_width + 0x0000000040110228 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) 0x8 (size before relaxing) - .literal.wpa_group_setkeys - 0x0000000040110abc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.lv_chart_refresh + 0x0000000040110228 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) 0x4 (size before relaxing) - .literal.wpa_group_config_group_keys - 0x0000000040110abc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x10 (size before relaxing) - .literal.wpa_group_setkeysdone - 0x0000000040110ac0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x4 (size before relaxing) - .literal.wpa_group_sm_step - 0x0000000040110ac0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x14 (size before relaxing) - .literal.wpa_group_init - 0x0000000040110ac0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x18 (size before relaxing) - .literal.wpa_group_ensure_init - 0x0000000040110ac0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0xc (size before relaxing) - .literal.wpa_sta_disconnect - 0x0000000040110ac0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x4 (size before relaxing) - .literal.sm_WPA_PTK_AUTHENTICATION2_Enter - 0x0000000040110ac0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0xc (size before relaxing) - .literal.sm_WPA_PTK_DISCONNECT_Enter - 0x0000000040110ac0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x4 (size before relaxing) - .literal.wpa_rekey_gtk - 0x0000000040110ac0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0xc (size before relaxing) - .literal.wpa_derive_ptk - 0x0000000040110ac4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0xc (size before relaxing) - .literal.wpa_verify_key_mic - 0x0000000040110ac8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x14 (size before relaxing) - .literal.wpa_replay_counter_valid - 0x0000000040110ac8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x4 (size before relaxing) - .literal.wpa_replay_counter_mark_invalid - 0x0000000040110ac8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x4 (size before relaxing) - .literal.sm_WPA_PTK_PTKINITDONE_Enter - 0x0000000040110ac8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x20 (size before relaxing) - .literal.ieee80211w_kde_add - 0x0000000040110acc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0xc (size before relaxing) - .literal.resend_eapol_handle - 0x0000000040110acc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.lv_chart_set_range + 0x0000000040110228 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) 0x8 (size before relaxing) - .literal.sm_WPA_PTK_INITPSK_Enter - 0x0000000040110ad0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0xc (size before relaxing) - .literal.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter - 0x0000000040110ad0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x24 (size before relaxing) - .literal.wpa_init - 0x0000000040110ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.lv_chart_set_type + 0x0000000040110228 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x8 (size before relaxing) + .literal.lv_chart_set_point_count + 0x0000000040110228 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) 0x20 (size before relaxing) - .literal.wpa_auth_sta_init - 0x0000000040110ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0xc (size before relaxing) - .literal.wpa_auth_sta_deinit - 0x0000000040110ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0xc (size before relaxing) - .literal.__wpa_send_eapol - 0x0000000040110ad8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x80 (size before relaxing) - .literal.wpa_send_eapol - 0x0000000040110ad8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x20 (size before relaxing) - .literal.sm_WPA_PTK_PTKSTART_Enter - 0x0000000040110ae0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x10 (size before relaxing) - .literal.sm_WPA_PTK_PTKINITNEGOTIATING_Enter - 0x0000000040110ae0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x24 (size before relaxing) - .literal.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter - 0x0000000040110ae0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x20 (size before relaxing) - .literal.sm_WPA_PTK_GROUP_Step - 0x0000000040110ae0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.lv_chart_set_next + 0x0000000040110228 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) 0x1c (size before relaxing) - .literal.wpa_remove_ptk - 0x0000000040110ae0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x10 (size before relaxing) - .literal.sm_WPA_PTK_INITIALIZE_Enter - 0x0000000040110ae0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.lv_label_get_dot_tmp + 0x0000000040110228 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x4 (size before relaxing) - .literal.sm_WPA_PTK_Step - 0x0000000040110ae0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x70 (size before relaxing) - .literal.wpa_sm_step - 0x0000000040110ae4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x10 (size before relaxing) - .literal.wpa_send_eapol_timeout - 0x0000000040110ae4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x4 (size before relaxing) - .literal.wpa_rekey_ptk - 0x0000000040110ae4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.lv_label_dot_tmp_free + 0x0000000040110228 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x8 (size before relaxing) - .literal.wpa_auth_sta_associated - 0x0000000040110ae4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x10 (size before relaxing) - .literal.wpa_receive - 0x0000000040110ae4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x8c (size before relaxing) - .literal.hostap_eapol_resend_process - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x8 (size before relaxing) - .literal.wpa_ap_join - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.lv_label_revert_dots + 0x0000000040110228 0x4 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x14 (size before relaxing) - .literal.wpa_ap_remove - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x4 (size before relaxing) - .literal.wpa_parse_generic - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x14 (size before relaxing) - .literal.wpa_write_wpa_ie - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .literal.lv_label_set_offset_y + 0x000000004011022c 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x8 (size before relaxing) - .literal.wpa_write_rsn_ie - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0xc (size before relaxing) - .literal.wpa_auth_gen_wpa_ie - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x14 (size before relaxing) - .literal.wpa_add_kde - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .literal.lv_label_set_offset_x + 0x000000004011022c 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x8 (size before relaxing) - .literal.wpa_validate_wpa_ie - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x24 (size before relaxing) - .literal.wpa_parse_kde_ies - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x8 (size before relaxing) - .literal.sae_parse_commit_token - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x8 (size before relaxing) - .literal.sae_cn_confirm - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0xc (size before relaxing) - .literal.sae_cn_confirm_ffc - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0xc (size before relaxing) - .literal.get_random_qr_qnr - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x18 (size before relaxing) - .literal.sae_pwd_seed_key - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x14 (size before relaxing) - .literal.get_rand_1_to_p_1 - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x18 (size before relaxing) - .literal.is_quadratic_residue_blind - 0x0000000040110ae8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x24 (size before relaxing) - .literal.sae_test_pwd_seed_ecc - 0x0000000040110ae8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x2c (size before relaxing) - .literal.sae_derive_pwe_ecc - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x38 (size before relaxing) - .literal.sae_test_pwd_seed_ffc - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x38 (size before relaxing) - .literal.sae_derive_pwe_ffc - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x14 (size before relaxing) - .literal.sae_derive_k_ffc - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x1c (size before relaxing) - .literal.sae_get_rand - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .literal.lv_label_set_dot_tmp + 0x000000004011022c 0x8 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x20 (size before relaxing) - .literal.sae_get_rand_and_mask - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0xc (size before relaxing) - .literal.sae_parse_commit_scalar - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x20 (size before relaxing) - .literal.sae_parse_commit_element_ffc - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x3c (size before relaxing) - .literal.sae_derive_commit_element_ecc - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0xc (size before relaxing) - .literal.sae_derive_commit_element_ffc - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0xc (size before relaxing) - .literal.sae_derive_commit - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x24 (size before relaxing) - .literal.sae_derive_k_ecc - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x1c (size before relaxing) - .literal.sae_cn_confirm_ecc - 0x0000000040110aec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0xc (size before relaxing) - .literal.sae_derive_keys - 0x0000000040110aec 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x30 (size before relaxing) - .literal.sae_parse_commit_element_ecc - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x18 (size before relaxing) - .literal.sae_parse_commit_element - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .literal.lv_label_set_align + 0x0000000040110234 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x8 (size before relaxing) - .literal.sae_parse_password_identifier - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x1c (size before relaxing) - .literal.bin_clear_free - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .literal.lv_label_set_body_draw + 0x0000000040110234 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0xc (size before relaxing) + .literal.lv_label_get_text + 0x0000000040110234 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x4 (size before relaxing) - .literal.sae_clear_temp_data - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x34 (size before relaxing) - .literal.sae_clear_data - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0xc (size before relaxing) - .literal.sae_set_group - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x30 (size before relaxing) - .literal.sae_prepare_commit - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0xc (size before relaxing) - .literal.sae_process_commit - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0xc (size before relaxing) - .literal.sae_write_commit - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .literal.lv_label_get_long_mode + 0x0000000040110234 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x4 (size before relaxing) + .literal.lv_label_get_align + 0x0000000040110234 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x4 (size before relaxing) + .literal.lv_label_get_recolor + 0x0000000040110234 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x4 (size before relaxing) + .literal.lv_label_get_body_draw + 0x0000000040110234 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x4 (size before relaxing) + .literal.lv_label_get_letter_on + 0x0000000040110234 0xc esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x40 (size before relaxing) - .literal.sae_group_allowed - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x4 (size before relaxing) - .literal.sae_parse_commit - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x24 (size before relaxing) - .literal.sae_write_confirm - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x1c (size before relaxing) - .literal.sae_check_confirm - 0x0000000040110af0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0xc (size before relaxing) - .literal.rsn_selector_to_bitfield - 0x0000000040110af0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x18 (size before relaxing) - .literal.rsn_key_mgmt_to_bitfield - 0x0000000040110b00 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x14 (size before relaxing) - .literal.wpa_selector_to_bitfield - 0x0000000040110b04 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x14 (size before relaxing) - .literal.wpa_key_mgmt_to_bitfield - 0x0000000040110b14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0xc (size before relaxing) - .literal.wpa_parse_wpa_ie_rsn - 0x0000000040110b14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0xc (size before relaxing) - .literal.wpa_parse_wpa_ie_wpa - 0x0000000040110b14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x10 (size before relaxing) - .literal.wpa_eapol_key_mic - 0x0000000040110b14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x10 (size before relaxing) - .literal.wpa_compare_rsn_ie - 0x0000000040110b14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x4 (size before relaxing) - .literal.wpa_pmk_to_ptk - 0x0000000040110b14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x30 (size before relaxing) - .literal.rsn_pmkid - 0x0000000040110b14 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x14 (size before relaxing) - .literal.wpa_cipher_to_suite - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.lv_label_refr_text + 0x0000000040110240 0x14 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0xb4 (size before relaxing) + .literal.lv_label_signal + 0x0000000040110254 0x8 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x2c (size before relaxing) - .literal.ecp_opp - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0xc (size before relaxing) - .literal.crypto_bignum_init - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x8 (size before relaxing) - .literal.crypto_bignum_init_set - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0xc (size before relaxing) - .literal.crypto_bignum_deinit - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x8 (size before relaxing) - .literal.crypto_bignum_to_bin - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x10 (size before relaxing) - .literal.crypto_bignum_add - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_mod - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_exptmod - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_inverse - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_sub - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_div - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_mulmod - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_cmp - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_bits - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_is_zero - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_is_one - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_bignum_legendre - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.lv_label_set_text + 0x000000004011025c 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x28 (size before relaxing) - .literal.crypto_ec_deinit - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x8 (size before relaxing) - .literal.crypto_ec_init - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x10 (size before relaxing) - .literal.crypto_ec_point_init - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x8 (size before relaxing) - .literal.crypto_ec_prime_len - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_ec_prime_len_bits - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_ec_point_deinit - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x8 (size before relaxing) - .literal.crypto_ec_point_to_bin - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.lv_label_set_static_text + 0x000000004011025c 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0xc (size before relaxing) - .literal.crypto_ec_point_from_bin - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x20 (size before relaxing) - .literal.crypto_ec_point_add - 0x0000000040110b1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x10 (size before relaxing) - .literal.crypto_ec_point_mul - 0x0000000040110b1c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x20 (size before relaxing) - .literal.crypto_ec_point_invert - 0x0000000040110b24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.crypto_ec_point_compute_y_sqr - 0x0000000040110b24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4c (size before relaxing) - .literal.crypto_ec_point_solve_y_coord - 0x0000000040110b24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.lv_label_set_long_mode + 0x000000004011025c 0x8 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x30 (size before relaxing) - .literal.crypto_ec_point_is_at_infinity - 0x0000000040110b24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.lv_label_set_recolor + 0x0000000040110264 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x8 (size before relaxing) + .literal.lv_label_create + 0x0000000040110264 0xc esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x88 (size before relaxing) + .literal.lv_label_get_text_sel_start + 0x0000000040110270 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) 0x4 (size before relaxing) - .literal.crypto_ec_point_is_on_curve - 0x0000000040110b24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.lv_label_get_text_sel_end + 0x0000000040110270 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x4 (size before relaxing) + .literal.lv_label_design + 0x0000000040110270 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x68 (size before relaxing) + .literal.lv_win_set_layout + 0x0000000040110270 0x0 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0xc (size before relaxing) + .literal.lv_win_get_style + 0x0000000040110270 0x4 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x18 (size before relaxing) + .literal.lv_win_realign + 0x0000000040110274 0x0 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x48 (size before relaxing) + .literal.lv_win_signal + 0x0000000040110274 0x8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x34 (size before relaxing) + .literal.lv_win_add_btn + 0x000000004011027c 0x0 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) 0x24 (size before relaxing) - .literal.crypto_ec_point_cmp - 0x0000000040110b24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x4 (size before relaxing) - .literal.dh_groups_get - 0x0000000040110b24 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .literal.hostap_init - 0x0000000040110b28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x60 (size before relaxing) - .literal.hostap_deinit - 0x0000000040110b28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.lv_win_set_style + 0x000000004011027c 0x4 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x34 (size before relaxing) + .literal.lv_win_create + 0x0000000040110280 0x18 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0xd8 (size before relaxing) + .literal.lv_theme_get_current + 0x0000000040110298 0x4 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .literal.obj_to_foreground + 0x000000004011029c 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x8 (size before relaxing) + .literal.focus_next_core + 0x000000004011029c 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x18 (size before relaxing) + .literal.lv_group_init + 0x000000004011029c 0x4 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x8 (size before relaxing) + .literal.lv_group_focus_next + 0x00000000401102a0 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0xc (size before relaxing) + .literal.lv_group_focus_prev + 0x00000000401102a0 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0xc (size before relaxing) + .literal.lv_group_refocus + 0x00000000401102a0 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x8 (size before relaxing) + .literal.lv_group_add_obj + 0x00000000401102a0 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) 0x1c (size before relaxing) - .literal.wpa_sm_alloc_eapol - 0x0000000040110b28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0xc (size before relaxing) - .literal.wpa_sm_free_eapol - 0x0000000040110b28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .literal.lv_group_remove_obj + 0x00000000401102a0 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x1c (size before relaxing) + .literal.lv_group_mod_style + 0x00000000401102a0 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) 0x4 (size before relaxing) - .literal.wpa_sm_deauthenticate - 0x0000000040110b28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x4 (size before relaxing) - .literal._pmksa_cache_free_entry - 0x0000000040110b28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x4 (size before relaxing) - .literal.pmksa_cache_free_entry - 0x0000000040110b28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x4 (size before relaxing) - .literal.pmksa_cache_set_expiration - 0x0000000040110b28 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x2c (size before relaxing) - .literal.pmksa_cache_expire - 0x0000000040110b4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x20 (size before relaxing) - .literal.pmksa_cache_flush - 0x0000000040110b4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.lv_indev_get_act + 0x00000000401102a0 0x4 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.lv_indev_reset + 0x00000000401102a4 0x0 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) 0x8 (size before relaxing) - .literal.pmksa_cache_add - 0x0000000040110b4c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x5c (size before relaxing) - .literal.pmksa_cache_clone_entry - 0x0000000040110b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.lv_indev_init + 0x00000000401102a4 0x0 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) 0x4 (size before relaxing) - .literal.pmksa_cache_deinit - 0x0000000040110b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.lv_indev_get_obj_act + 0x00000000401102a4 0x4 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .literal.lv_img_color_format_get_px_size + 0x00000000401102a8 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .literal.lv_img_draw_core + 0x00000000401102ac 0xc esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + 0x48 (size before relaxing) + .literal.lv_draw_img + 0x00000000401102b8 0x8 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + 0x30 (size before relaxing) + .literal.hex_char_to_num + 0x00000000401102c0 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .literal.lv_draw_label + 0x00000000401102c4 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + 0x68 (size before relaxing) + .literal.line_next_y + 0x00000000401102c8 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + 0x4 (size before relaxing) + .literal.line_next_x + 0x00000000401102c8 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + 0x4 (size before relaxing) + .literal.line_draw_hor + 0x00000000401102c8 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + 0x4 (size before relaxing) + .literal.line_draw_ver + 0x00000000401102c8 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + 0x4 (size before relaxing) + .literal.line_draw_skew + 0x00000000401102c8 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + 0xa0 (size before relaxing) + .literal.lv_draw_line + 0x00000000401102cc 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + 0x28 (size before relaxing) + .literal.tri_draw_flat + 0x00000000401102cc 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) 0x14 (size before relaxing) - .literal.pmksa_cache_get - 0x0000000040110b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.tri_draw_tall + 0x00000000401102cc 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + 0x14 (size before relaxing) + .literal.lv_draw_triangle + 0x00000000401102cc 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) 0x8 (size before relaxing) - .literal.pmksa_cache_get_opportunistic - 0x0000000040110b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.bits_write + 0x00000000401102cc 0x4 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .literal.rle_init + 0x00000000401102d0 0x18 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .literal.rle_next + 0x00000000401102e8 0x0 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0x30 (size before relaxing) + .literal.decompress_line + 0x00000000401102e8 0x0 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) 0x4 (size before relaxing) - .literal.pmksa_cache_set_current - 0x0000000040110b54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.get_glyph_dsc_id + 0x00000000401102e8 0x4 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) 0xc (size before relaxing) - .literal.pmksa_cache_init - 0x0000000040110b54 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.get_kern_value + 0x00000000401102ec 0x14 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0x1c (size before relaxing) + .literal.decompress + 0x0000000040110300 0x0 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0x18 (size before relaxing) + .literal.lv_font_get_bitmap_fmt_txt + 0x0000000040110300 0xc esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0x1c (size before relaxing) + .literal.lv_font_get_glyph_dsc_fmt_txt + 0x000000004011030c 0x0 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0xc (size before relaxing) + .literal.lv_txt_utf8_next + 0x000000004011030c 0xc esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .literal.lv_txt_utf8_prev + 0x0000000040110318 0x0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x8 (size before relaxing) + .literal.lv_txt_utf8_get_byte_id + 0x0000000040110318 0x0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x4 (size before relaxing) + .literal.lv_txt_utf8_get_char_id + 0x0000000040110318 0x0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x4 (size before relaxing) + .literal.lv_txt_utf8_get_length + 0x0000000040110318 0x0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x4 (size before relaxing) + .literal.lv_txt_get_next_word + 0x0000000040110318 0x4 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x18 (size before relaxing) + .literal.lv_txt_get_next_line + 0x000000004011031c 0x0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0xc (size before relaxing) + .literal.lv_txt_get_width + 0x000000004011031c 0x0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0xc (size before relaxing) + .literal.lv_txt_get_size + 0x000000004011031c 0xc esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x1c (size before relaxing) + .literal.lv_btn_design + 0x0000000040110328 0x4 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .literal.lv_btn_set_state + 0x000000004011032c 0x0 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0x8 (size before relaxing) + .literal.lv_btn_set_style + 0x000000004011032c 0x4 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0xc (size before relaxing) + .literal.lv_btn_create + 0x0000000040110330 0x18 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0x6c (size before relaxing) + .literal.lv_btn_get_toggle + 0x0000000040110348 0x0 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0x4 (size before relaxing) + .literal.lv_btn_signal + 0x0000000040110348 0x4 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0x68 (size before relaxing) + .literal.lv_cont_layout_center + 0x000000004011034c 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x3c (size before relaxing) + .literal.lv_cont_layout_pretty + 0x000000004011034c 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x80 (size before relaxing) + .literal.lv_cont_layout_grid + 0x000000004011034c 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x3c (size before relaxing) + .literal.lv_cont_refr_autofit + 0x000000004011034c 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x50 (size before relaxing) + .literal.lv_cont_create + 0x000000004011034c 0x8 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x34 (size before relaxing) + .literal.lv_cont_set_layout + 0x0000000040110354 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x4 (size before relaxing) + .literal.lv_cont_set_fit4 + 0x0000000040110354 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x8 (size before relaxing) + .literal.lv_cont_get_layout + 0x0000000040110354 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x4 (size before relaxing) + .literal.lv_cont_layout_col + 0x0000000040110354 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x28 (size before relaxing) + .literal.lv_cont_layout_row + 0x0000000040110354 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x30 (size before relaxing) + .literal.lv_cont_refr_layout + 0x0000000040110354 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x1c (size before relaxing) + .literal.lv_cont_signal + 0x0000000040110354 0x4 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x30 (size before relaxing) + .literal.lv_cont_get_fit_left + 0x0000000040110358 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x4 (size before relaxing) + .literal.lv_cont_get_fit_right + 0x0000000040110358 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x4 (size before relaxing) + .literal.lv_cont_get_fit_top + 0x0000000040110358 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x4 (size before relaxing) + .literal.lv_img_design + 0x0000000040110358 0x8 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x38 (size before relaxing) + .literal.lv_img_get_auto_size + 0x0000000040110360 0x0 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x4 (size before relaxing) + .literal.lv_img_set_src + 0x0000000040110360 0x8 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x58 (size before relaxing) + .literal.lv_img_create + 0x0000000040110368 0xc esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x44 (size before relaxing) + .literal.lv_img_signal + 0x0000000040110374 0x4 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x18 (size before relaxing) + .literal.scrl_def_event_cb + 0x0000000040110378 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0xc (size before relaxing) + .literal.lv_scrl_design + 0x0000000040110378 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x20 (size before relaxing) + .literal.lv_page_sb_refresh + 0x000000004011037c 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x68 (size before relaxing) + .literal.edge_flash_anim_end + 0x000000004011037c 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x8 (size before relaxing) + .literal.edge_flash_anim + 0x000000004011037c 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x8 (size before relaxing) + .literal.lv_page_set_sb_mode + 0x000000004011037c 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0xc (size before relaxing) + .literal.lv_page_set_style + 0x000000004011037c 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x20 (size before relaxing) + .literal.lv_page_get_scrl + 0x000000004011037c 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x4 (size before relaxing) + .literal.lv_page_get_style + 0x000000004011037c 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0xc (size before relaxing) + .literal.lv_page_create + 0x000000004011037c 0x1c esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0xc4 (size before relaxing) + .literal.lv_page_design + 0x0000000040110398 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x54 (size before relaxing) + .literal.lv_page_scroll_hor + 0x000000004011039c 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x14 (size before relaxing) + .literal.lv_page_scroll_ver + 0x000000004011039c 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x14 (size before relaxing) + .literal.lv_page_signal + 0x000000004011039c 0x4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0xa0 (size before relaxing) + .literal.lv_page_start_edge_flash + 0x00000000401103a0 0x8 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x14 (size before relaxing) + .literal.lv_page_scrollable_signal + 0x00000000401103a8 0xc esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x7c (size before relaxing) + .literal.select + 0x00000000401103b4 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) + 0x4 (size before relaxing) + .literal.s_get_num_reserved_regions + 0x00000000401103b4 0x8 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .literal.s_prepare_reserved_regions + 0x00000000401103bc 0x2c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x3c (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x00000000401103e8 0x4 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x8 (size before relaxing) + .literal.soc_get_available_memory_regions + 0x00000000401103ec 0x4 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x14 (size before relaxing) + .literal.rtcio_hal_isolate + 0x00000000401103f0 0x2c esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + 0x38 (size before relaxing) + .literal.uart_hal_set_baudrate + 0x000000004011041c 0x14 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x18 (size before relaxing) + .literal.uart_hal_get_baudrate + 0x0000000040110430 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0xc (size before relaxing) + .literal.uart_hal_set_hw_flow_ctrl + 0x0000000040110430 0x10 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x14 (size before relaxing) + .literal.uart_hal_set_rx_timeout + 0x0000000040110440 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0xc (size before relaxing) + .literal.uart_hal_set_tx_idle_num + 0x0000000040110444 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_txfifo_empty_thr + 0x0000000040110448 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x000000004011044c 0xc esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_clz + 0x0000000040110458 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_int_div_int + 0x0000000040110458 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_zeroize + 0x0000000040110464 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mpi_uint_bigendian_to_host + 0x0000000040110464 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mpi_bigendian_to_host + 0x0000000040110468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_free + 0x0000000040110468 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_grow + 0x0000000040110468 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_shrink + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_copy + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) 0x10 (size before relaxing) - .literal.hostapd_derive_psk - 0x0000000040110b5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.mbedtls_mpi_swap + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) 0xc (size before relaxing) - .literal.hostapd_setup_wpa_psk - 0x0000000040110b5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.mbedtls_mpi_safe_cond_assign + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) 0x4 (size before relaxing) - .literal.hostapd_get_psk - 0x0000000040110b5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.mbedtls_mpi_safe_cond_swap + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_lset + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_set_bit + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) 0x4 (size before relaxing) + .literal.mbedtls_mpi_bitlen + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_size + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_read_binary + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_write_binary + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_shift_l + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_r + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_cmp_abs + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_mpi + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_lt_mpi_ct + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_cmp_int + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_abs + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_sub_abs + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_mpi_add_mpi + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_sub_mpi + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_add_int + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_int + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mul_int + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_read_string + 0x000000004011046c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_mpi_div_mpi + 0x000000004011046c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xb8 (size before relaxing) + .literal.mbedtls_mpi_div_int + 0x0000000040110474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mod_mpi + 0x0000000040110474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mod_int + 0x0000000040110474 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mpi_write_hlp + 0x0000000040110474 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_write_string + 0x0000000040110478 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_mpi_write_file + 0x000000004011047c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x2c (size before relaxing) + .literal.mpi_check_small_factors + 0x000000004011048c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_gcd + 0x0000000040110490 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x60 (size before relaxing) + .literal.mbedtls_mpi_fill_random + 0x0000000040110490 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mpi_miller_rabin + 0x0000000040110490 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x78 (size before relaxing) + .literal.mbedtls_mpi_inv_mod + 0x0000000040110490 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xd0 (size before relaxing) + .literal.mbedtls_mpi_is_prime_ext + 0x0000000040110490 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_gen_prime + 0x0000000040110490 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4c (size before relaxing) + .literal.block_cipher_df + 0x0000000040110498 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x3c (size before relaxing) + .literal.ctr_drbg_update_internal + 0x0000000040110498 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ctr_drbg_init + 0x0000000040110498 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ctr_drbg_free + 0x0000000040110498 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed + 0x0000000040110498 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ctr_drbg_seed + 0x0000000040110498 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ctr_drbg_random_with_add + 0x0000000040110498 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ctr_drbg_random + 0x0000000040110498 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.ecp_check_pubkey_mx + 0x0000000040110498 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_modp + 0x000000004011049c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.ecp_randomize_mxz + 0x00000000401104a0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x30 (size before relaxing) + .literal.ecp_randomize_jac + 0x00000000401104a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x50 (size before relaxing) + .literal.ecp_double_add_mxz + 0x00000000401104a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xf8 (size before relaxing) + .literal.ecp_normalize_mxz + 0x00000000401104a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_normalize_jac + 0x00000000401104a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x40 (size before relaxing) + .literal.ecp_double_jac + 0x00000000401104a8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x134 (size before relaxing) + .literal.ecp_normalize_jac_many + 0x00000000401104ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x84 (size before relaxing) + .literal.ecp_safe_invert_jac + 0x00000000401104b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_select_comb + 0x00000000401104b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_comb_recode_core + 0x00000000401104b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_comb_recode_scalar + 0x00000000401104b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.ecp_check_pubkey_sw + 0x00000000401104b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x68 (size before relaxing) + .literal.mbedtls_ecp_curve_list + 0x00000000401104b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_grp_id_list + 0x00000000401104b4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_curve_info_from_grp_id + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_curve_info_from_tls_id + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_curve_info_from_name + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_point_init + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_init + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_keypair_init + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_point_free + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_free + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ecp_keypair_free + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_copy + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_mul_mxz + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x50 (size before relaxing) + .literal.mbedtls_ecp_group_copy + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_set_zero + 0x00000000401104bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_add_mixed + 0x00000000401104bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x120 (size before relaxing) + .literal.ecp_precompute_comb + 0x00000000401104c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.ecp_mul_comb_core + 0x00000000401104c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.ecp_mul_comb_after_precomp + 0x00000000401104c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.ecp_mul_comb + 0x00000000401104c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecp_is_zero + 0x00000000401104c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_point_cmp + 0x00000000401104c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecp_point_write_binary + 0x00000000401104c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_point_read_binary + 0x00000000401104c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_tls_read_point + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_tls_write_point + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_tls_read_group_id + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_tls_write_group + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) .literal.mbedtls_ecp_check_pubkey - 0x0000000040110b5c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) 0x14 (size before relaxing) .literal.mbedtls_ecp_check_privkey - 0x0000000040110b5c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) 0x20 (size before relaxing) - .text.mbedtls_ecp_check_pubkey - 0x0000000040110b5c 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x51 (size before relaxing) - 0x0000000040110b5c mbedtls_ecp_check_pubkey - *fill* 0x0000000040110ba9 0x3 - .text.mbedtls_ecp_check_privkey - 0x0000000040110bac 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x98 (size before relaxing) - 0x0000000040110bac mbedtls_ecp_check_privkey - .text.mbedtls_ecp_mul_restartable - 0x0000000040110c34 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x6e (size before relaxing) - 0x0000000040110c34 mbedtls_ecp_mul_restartable - *fill* 0x0000000040110c9a 0x2 - .text.mbedtls_ecp_mul - 0x0000000040110c9c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x0000000040110c9c mbedtls_ecp_mul - *fill* 0x0000000040110cb9 0x3 - .text.mbedtls_ecp_mul_shortcuts - 0x0000000040110cbc 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x72 (size before relaxing) - *fill* 0x0000000040110d1e 0x2 - .text.mbedtls_ecp_muladd_restartable - 0x0000000040110d20 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x77 (size before relaxing) - 0x0000000040110d20 mbedtls_ecp_muladd_restartable - *fill* 0x0000000040110d87 0x1 - .text.mbedtls_ecp_muladd - 0x0000000040110d88 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x0000000040110d88 mbedtls_ecp_muladd - *fill* 0x0000000040110da5 0x3 - .text.mbedtls_ecp_gen_privkey - 0x0000000040110da8 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x12a (size before relaxing) - 0x0000000040110da8 mbedtls_ecp_gen_privkey - *fill* 0x0000000040110eb2 0x2 - .text.mbedtls_ecp_gen_keypair_base - 0x0000000040110eb4 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x29 (size before relaxing) - 0x0000000040110eb4 mbedtls_ecp_gen_keypair_base - *fill* 0x0000000040110ed9 0x3 - .text.mbedtls_ecp_gen_keypair - 0x0000000040110edc 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x0000000040110edc mbedtls_ecp_gen_keypair - *fill* 0x0000000040110ef6 0x2 - .text.mbedtls_ecp_gen_key - 0x0000000040110ef8 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_mul_restartable + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_mul + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_mul_shortcuts + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_muladd_restartable + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_muladd + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_gen_privkey + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_ecp_gen_keypair_base + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_gen_keypair + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_gen_key + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_check_pub_priv + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .literal.ecp_mod_p255 + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x18 (size before relaxing) + .literal.ecp_mod_p521 + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_mod_p192 + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x4 (size before relaxing) + .literal.ecp_mod_p384 + 0x00000000401104c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_group_load + 0x00000000401104c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_use_curve25519 + 0x00000000401104cc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x34 (size before relaxing) + .literal.ecp_mod_p224 + 0x00000000401104d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_mod_p256 + 0x00000000401104d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_mod_p192k1 + 0x00000000401104d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1c (size before relaxing) + .literal.ecp_mod_p256k1 + 0x00000000401104d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1c (size before relaxing) + .literal.ecp_mod_p224k1 + 0x00000000401104dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_group_load + 0x00000000401104e0 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x158 (size before relaxing) + .literal.entropy_update + 0x00000000401105fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x14 (size before relaxing) + .literal.entropy_gather_internal + 0x00000000401105fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_free + 0x00000000401105fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_init + 0x00000000401105fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_entropy_func + 0x0000000040110600 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) 0x28 (size before relaxing) - 0x0000000040110ef8 mbedtls_ecp_gen_key - .text.mbedtls_ecp_check_pub_priv - 0x0000000040110f1c 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_strerror + 0x0000000040110600 0x5a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + 0x8ec (size before relaxing) + .literal.mbedtls_md_info_from_type + 0x0000000040110ba4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_free + 0x0000000040110bc0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_md_setup + 0x0000000040110bc0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_md_starts + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_update + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_finish + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_hmac_starts + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_md_hmac_update + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_hmac_finish + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_hmac_reset + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_process + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.md5_process_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.md5_clone_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.md5_ctx_free + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.md5_ctx_alloc + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.md5_finish_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.md5_update_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.md5_starts_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha1_process_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha1_clone_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha1_ctx_free + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha1_ctx_alloc + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha1_finish_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha1_update_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha1_starts_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_process_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_clone_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_ctx_free + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha224_ctx_alloc + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha224_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha256_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_finish_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_update_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_starts_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha256_starts_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_process_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_clone_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_ctx_free + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha384_ctx_alloc + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha384_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha512_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_finish_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_update_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_starts_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha512_starts_wrap + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_free + 0x0000000040110bc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_info_from_type + 0x0000000040110bc8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_setup + 0x0000000040110bd8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify_restartable + 0x0000000040110be0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_pk_verify + 0x0000000040110be4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_sign_restartable + 0x0000000040110be4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_pk_sign + 0x0000000040110be4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_decrypt + 0x0000000040110be4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_encrypt + 0x0000000040110be4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_check_pair + 0x0000000040110be4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_verify_ext + 0x0000000040110be4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x24 (size before relaxing) + .literal.rsa_debug + 0x0000000040110bec 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.eckey_debug + 0x0000000040110bf4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_free_wrap + 0x0000000040110bf8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_alloc_wrap + 0x0000000040110bf8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_check_pair_wrap + 0x0000000040110bf8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_get_bitlen + 0x0000000040110bf8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_encrypt_wrap + 0x0000000040110bf8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_decrypt_wrap + 0x0000000040110bfc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_sign_wrap + 0x0000000040110c00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_verify_wrap + 0x0000000040110c00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .literal.eckey_free_wrap + 0x0000000040110c00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_alloc_wrap + 0x0000000040110c00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_check_pair + 0x0000000040110c00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_alloc_wrap + 0x0000000040110c00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ecdsa_free_wrap + 0x0000000040110c00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ecdsa_sign_wrap + 0x0000000040110c00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.eckey_sign_wrap + 0x0000000040110c00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .literal.ecdsa_verify_wrap + 0x0000000040110c00 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.eckey_verify_wrap + 0x0000000040110c04 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .literal.pkcs5_parse_pbkdf2_params + 0x0000000040110c04 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_pkcs5_pbkdf2_hmac + 0x0000000040110c10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_pkcs5_pbes2 + 0x0000000040110c10 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x58 (size before relaxing) + .literal.pk_get_ecparams + 0x0000000040110c20 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.pk_get_pk_alg + 0x0000000040110c2c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.pk_get_rsapubkey + 0x0000000040110c34 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x24 (size before relaxing) + .literal.pk_group_from_specified + 0x0000000040110c3c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x64 (size before relaxing) + .literal.pk_group_id_from_group + 0x0000000040110c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.pk_group_id_from_specified + 0x0000000040110c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.pk_use_ecparams + 0x0000000040110c48 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x14 (size before relaxing) + .literal.pk_get_ecpubkey + 0x0000000040110c4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x8 (size before relaxing) + .literal.asn1_get_nonzero_mpi + 0x0000000040110c4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xc (size before relaxing) + .literal.pk_parse_key_pkcs1_der + 0x0000000040110c4c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x6c (size before relaxing) + .literal.pk_parse_key_sec1_der + 0x0000000040110c50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x58 (size before relaxing) + .literal.pk_parse_key_pkcs8_unencrypted_der + 0x0000000040110c50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.pk_parse_key_pkcs8_encrypted_der + 0x0000000040110c50 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_pk_load_file + 0x0000000040110c64 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_pk_parse_subpubkey + 0x0000000040110c78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_pk_parse_key + 0x0000000040110c78 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xdc (size before relaxing) + .literal.mbedtls_pk_parse_keyfile + 0x0000000040110ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x18 (size before relaxing) + .literal.pk_write_rsa_pubkey + 0x0000000040110ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x20 (size before relaxing) + .literal.pk_write_ec_pubkey + 0x0000000040110ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x8 (size before relaxing) + .literal.pk_write_ec_param + 0x0000000040110ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x8 (size before relaxing) + .literal.pk_write_ec_private + 0x0000000040110ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_pk_write_pubkey + 0x0000000040110ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_pk_write_pubkey_der + 0x0000000040110ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_pk_write_key_der + 0x0000000040110ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x90 (size before relaxing) + .literal.mbedtls_pk_write_key_pem + 0x0000000040110ca4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_calloc + 0x0000000040110cbc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_free + 0x0000000040110cc0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_platform_zeroize + 0x0000000040110cc4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.if_int + 0x0000000040110cc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mem_move_to_left + 0x0000000040110cc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.rsa_check_context + 0x0000000040110cc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.rsa_prepare_blinding + 0x0000000040110cc8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x28 (size before relaxing) + .literal.mgf_mask + 0x0000000040110ccc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.rsa_rsassa_pkcs1_v15_encode + 0x0000000040110ccc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_import + 0x0000000040110ccc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_import_raw + 0x0000000040110ccc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_complete + 0x0000000040110ccc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_rsa_export + 0x0000000040110ccc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_export_crt + 0x0000000040110ccc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_init + 0x0000000040110ccc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_check_pubkey + 0x0000000040110ccc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_rsa_check_privkey + 0x0000000040110cd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_check_pub_priv + 0x0000000040110cd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_public + 0x0000000040110cd0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_private + 0x0000000040110cd4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc4 (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_encrypt + 0x0000000040110cd4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x0000000040110cd4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_encrypt + 0x0000000040110cd4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_decrypt + 0x0000000040110cd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x0000000040110cd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4c (size before relaxing) + .literal.mbedtls_rsa_pkcs1_decrypt + 0x0000000040110cd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_sign + 0x0000000040110cd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x58 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x0000000040110cd8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_sign + 0x0000000040110cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify_ext + 0x0000000040110cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x50 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify + 0x0000000040110cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x0000000040110cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_pkcs1_verify + 0x0000000040110cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_free + 0x0000000040110cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_rsa_gen_key + 0x0000000040110cdc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x78 (size before relaxing) + .literal.mbedtls_rsa_deduce_primes + 0x0000000040110ce0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_rsa_deduce_private_exponent + 0x0000000040110ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_rsa_validate_crt + 0x0000000040110ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_rsa_validate_params + 0x0000000040110ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x68 (size before relaxing) + .literal.mbedtls_rsa_deduce_crt + 0x0000000040110ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_sha1_ret + 0x0000000040110ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_ret + 0x0000000040110ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512_ret + 0x0000000040110ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_hardware_poll + 0x0000000040110ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x4 (size before relaxing) + .literal.mpi_words + 0x0000000040110ce4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.modular_inverse + 0x0000000040110ce4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.calculate_rinv + 0x0000000040110ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x10 (size before relaxing) + .literal.esp_mpi_acquire_hardware + 0x0000000040110ce8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0xc (size before relaxing) + .literal.esp_mpi_release_hardware + 0x0000000040110cf0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0xc (size before relaxing) + .literal.mpi_montgomery_exp_calc + 0x0000000040110cf4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x3c (size before relaxing) + .literal.mpi_mult_mpi_failover_mod_mult + 0x0000000040110cf4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + .literal.esp_mpi_mul_mpi_mod + 0x0000000040110cf4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_mpi_exp_mod + 0x0000000040110cf4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_mpi_mul_mpi + 0x0000000040110cf8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x40 (size before relaxing) + .literal.mpi_mult_mpi_overlong + 0x0000000040110cfc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + .literal.esp_mpi_enable_hardware_hw_op + 0x0000000040110cfc 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.esp_mpi_disable_hardware_hw_op + 0x0000000040110d08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.esp_mpi_read_result_hw_op + 0x0000000040110d08 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x20 (size before relaxing) + .literal.esp_mpi_mul_mpi_mod_hw_op + 0x0000000040110d20 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x20 (size before relaxing) + .literal.esp_mpi_mul_mpi_hw_op + 0x0000000040110d34 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.esp_mont_hw_op + 0x0000000040110d38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x40 (size before relaxing) + .literal.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x0000000040110d38 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x24 (size before relaxing) + .literal.esp_aes_setkey_hardware + 0x0000000040110d3c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_block + 0x0000000040110d44 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x30 (size before relaxing) + .literal.esp_aes_acquire_hardware + 0x0000000040110d5c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_release_hardware + 0x0000000040110d64 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_init + 0x0000000040110d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_free + 0x0000000040110d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_setkey + 0x0000000040110d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x4 (size before relaxing) + .literal.esp_internal_aes_encrypt + 0x0000000040110d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x10 (size before relaxing) + .literal.esp_internal_aes_decrypt + 0x0000000040110d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_crypt_ecb + 0x0000000040110d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_crypt_cbc + 0x0000000040110d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x20 (size before relaxing) + .literal.esp_aes_crypt_cfb128 + 0x0000000040110d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x14 (size before relaxing) + .literal.esp_aes_crypt_ctr + 0x0000000040110d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_crypt_ofb + 0x0000000040110d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha1_software_process + 0x0000000040110d68 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_sha1_init + 0x0000000040110d78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_free + 0x0000000040110d78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha1_clone + 0x0000000040110d78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha1_starts_ret + 0x0000000040110d78 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_internal_sha1_process + 0x0000000040110d8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_sha1_update_ret + 0x0000000040110d8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha1_finish_ret + 0x0000000040110d8c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_software_process + 0x0000000040110d90 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_init + 0x0000000040110d94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_free + 0x0000000040110d94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha256_clone + 0x0000000040110d94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha256_starts_ret + 0x0000000040110d94 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_internal_sha256_process + 0x0000000040110dd4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_sha256_update_ret + 0x0000000040110dd4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha256_finish_ret + 0x0000000040110dd4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512_software_process + 0x0000000040110dd8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_init + 0x0000000040110ddc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_free + 0x0000000040110ddc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha512_clone + 0x0000000040110ddc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha512_starts_ret + 0x0000000040110ddc 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8c (size before relaxing) + .literal.mbedtls_internal_sha512_process + 0x0000000040110e20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_sha512_update_ret + 0x0000000040110e20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha512_finish_ret + 0x0000000040110e20 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_asn1_get_tag + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_bool + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_int + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_mpi + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_get_bitstring + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_bitstring_null + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_sequence_of + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_get_alg + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_asn1_get_alg_null + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_free_named_data + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_free_named_data_list + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.asn1_find_named_data + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_write_len + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_raw_buffer + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_write_mpi + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_asn1_write_null + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_oid + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_write_algorithm_identifier + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_asn1_write_bool + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_int + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_tagged_string + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_write_bitstring + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_write_octet_string + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_store_named_data + 0x0000000040110e24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x2c (size before relaxing) + .literal.get_pkcs_padding + 0x0000000040110e24 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_one_and_zeros_padding + 0x0000000040110e2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.get_zeros_and_len_padding + 0x0000000040110e2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.get_zeros_padding + 0x0000000040110e2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.get_no_padding + 0x0000000040110e2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_info_from_type + 0x0000000040110e2c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_values + 0x0000000040110e30 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_init + 0x0000000040110e30 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_free + 0x0000000040110e30 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_setkey + 0x0000000040110e30 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_set_iv + 0x0000000040110e30 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_reset + 0x0000000040110e34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_update + 0x0000000040110e34 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_cipher_finish + 0x0000000040110e3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_set_padding_mode + 0x0000000040110e3c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_cipher_setup + 0x0000000040110e64 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_cipher_crypt + 0x0000000040110e68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_cipher_auth_encrypt + 0x0000000040110e68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_auth_decrypt + 0x0000000040110e68 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.ccm_ctx_free + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_ctx_alloc + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_aes_setkey_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.gcm_ctx_free + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_ctx_alloc + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_aes_setkey_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_ctx_free + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_ctx_alloc + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_setkey_dec_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_setkey_enc_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_xts_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_free + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_alloc + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_setkey_dec_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_setkey_enc_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ctr_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ofb_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cfb128_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cbc_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ecb_wrap + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.derive_mpi + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x10 (size before relaxing) + .literal.ecdsa_sign_restartable + 0x0000000040110e6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x70 (size before relaxing) + .literal.ecdsa_sign_det_restartable + 0x0000000040110e6c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4c (size before relaxing) + .literal.ecdsa_verify_restartable + 0x0000000040110e74 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x68 (size before relaxing) + .literal.ecdsa_signature_to_asn1 + 0x0000000040110e78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecdsa_write_signature_restartable + 0x0000000040110e78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecdsa_write_signature + 0x0000000040110e78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_read_signature_restartable + 0x0000000040110e78 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecdsa_read_signature + 0x0000000040110e7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_init + 0x0000000040110e7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_free + 0x0000000040110e7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_from_keypair + 0x0000000040110e7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x10 (size before relaxing) + .literal.gcm_mult + 0x0000000040110e7c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .literal.gcm_gen_table + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_gcm_init + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_gcm_setkey + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_gcm_starts + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_gcm_update + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_gcm_finish + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_gcm_crypt_and_tag + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_gcm_auth_decrypt + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_gcm_free + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_hmac_drbg_init + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_update_ret + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x28 (size before relaxing) + .literal.hmac_drbg_reseed_core + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_hmac_drbg_seed_buf + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_hmac_drbg_reseed + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_random_with_add + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_hmac_drbg_random + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_free + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_md5_init + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md5_free + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md5_clone + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md5_starts_ret + 0x0000000040110e80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_internal_md5_process + 0x0000000040110e80 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.mbedtls_md5_update_ret + 0x0000000040110f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_md5_finish_ret + 0x0000000040110f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_md5_ret + 0x0000000040110f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x14 (size before relaxing) + .literal.oid_x520_attr_from_asn1 + 0x0000000040110f80 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_x509_ext_from_asn1 + 0x0000000040110f84 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_sig_alg_from_asn1 + 0x0000000040110f88 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_pk_alg_from_asn1 + 0x0000000040110f8c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_grp_id_from_asn1 + 0x0000000040110f90 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_cipher_alg_from_asn1 + 0x0000000040110f94 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_md_alg_from_asn1 + 0x0000000040110f98 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_md_hmac_from_asn1 + 0x0000000040110f9c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_pkcs12_pbe_alg_from_asn1 + 0x0000000040110fa0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_oid_get_attr_short_name + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_x509_ext_type + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_sig_alg + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_sig_alg + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_pk_alg + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_pk_alg + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_ec_grp + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_ec_grp + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_cipher_alg + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_md_alg + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_md + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_md_hmac + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_pkcs12_pbe_alg + 0x0000000040110fa4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.pem_get_iv + 0x0000000040110fa4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x8 (size before relaxing) + .literal.pem_pbkdf1 + 0x0000000040110fa8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x3c (size before relaxing) + .literal.pem_aes_decrypt + 0x0000000040110fa8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_pem_read_buffer + 0x0000000040110fa8 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x90 (size before relaxing) + .literal.mbedtls_pem_free + 0x0000000040110fcc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_pem_write_buffer + 0x0000000040110fcc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x3c (size before relaxing) + .literal.pkcs12_parse_pbe_params + 0x0000000040110fcc 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x14 (size before relaxing) + .literal.pkcs12_fill_buffer + 0x0000000040110fd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pkcs12_pbe_sha1_rc4_128 + 0x0000000040110fd8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs12_derivation + 0x0000000040110fdc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x58 (size before relaxing) + .literal.pkcs12_pbe_derive_key_iv + 0x0000000040110fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_pkcs12_pbe + 0x0000000040110fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x38 (size before relaxing) + .literal.esp_aes_xts_init + 0x0000000040110fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_free + 0x0000000040110fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_setkey_enc + 0x0000000040110fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_xts_setkey_dec + 0x0000000040110fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_crypt_xts + 0x0000000040110fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x18 (size before relaxing) + .literal.sha_get_engine_state + 0x0000000040110fe0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x20 (size before relaxing) + .literal.esp_sha_lock_engine_common + 0x0000000040110ffc 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x2c (size before relaxing) + .literal.esp_sha_lock_memory_block + 0x0000000040111010 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_unlock_memory_block + 0x0000000040111014 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_try_lock_engine + 0x0000000040111014 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_unlock_engine + 0x0000000040111014 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x1c (size before relaxing) + .literal.esp_sha_wait_idle + 0x0000000040111014 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x20 (size before relaxing) + .literal.esp_sha_read_digest_state + 0x0000000040111024 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4c (size before relaxing) + .literal.esp_sha_block + 0x0000000040111040 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_base64_encode + 0x000000004011104c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_base64_decode + 0x0000000040111054 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.ccm_auth_crypt + 0x0000000040111058 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_ccm_init + 0x000000004011105c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_setkey + 0x000000004011105c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ccm_free + 0x000000004011105c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_star_encrypt_and_tag + 0x000000004011105c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_encrypt_and_tag + 0x000000004011105c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_star_auth_decrypt + 0x000000004011105c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_auth_decrypt + 0x000000004011105c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.x509_parse_int + 0x000000004011105c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_date_is_valid + 0x0000000040111060 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x10 (size before relaxing) + .literal.x509_parse_time + 0x0000000040111068 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x20 (size before relaxing) + .literal.x509_get_attr_type_value + 0x0000000040111068 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1c (size before relaxing) + .literal.x509_get_hash_alg + 0x0000000040111078 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509_get_serial + 0x0000000040111084 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_x509_get_alg_null + 0x0000000040111090 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_get_alg + 0x0000000040111090 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_get_rsassa_pss_params + 0x0000000040111090 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_x509_get_name + 0x000000004011109c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509_get_time + 0x00000000401110a0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_x509_get_sig + 0x00000000401110a8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_x509_get_sig_alg + 0x00000000401110b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_x509_get_ext + 0x00000000401110b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_x509_dn_gets + 0x00000000401110b8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x30 (size before relaxing) + .literal.x509_get_uid + 0x00000000401110d0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_string_cmp + 0x00000000401110d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_name_cmp + 0x00000000401110d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_check_ee_locally_trusted + 0x00000000401110d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_version + 0x00000000401110d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.x509_get_dates + 0x00000000401110d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.x509_get_basic_constraints + 0x00000000401110dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x14 (size before relaxing) + .literal.x509_get_key_usage + 0x00000000401110dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_ns_cert_type + 0x00000000401110e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_ext_key_usage + 0x00000000401110e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_subject_alt_name + 0x00000000401110e0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x20 (size before relaxing) + .literal.x509_get_crt_ext + 0x00000000401110f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x44 (size before relaxing) + .literal.x509_profile_check_key + 0x00000000401110f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_check_wildcard + 0x00000000401110f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_check_cn + 0x00000000401110f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_verify_name + 0x00000000401110f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x14 (size before relaxing) + .literal.x509_crt_check_signature + 0x00000000401110f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_x509_crt_check_key_usage + 0x00000000401110f8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xc (size before relaxing) + .literal.x509_crt_check_parent + 0x0000000040111100 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_find_parent_in + 0x0000000040111100 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.x509_crt_find_parent + 0x0000000040111100 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_crt_check_extended_key_usage + 0x0000000040111100 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_x509_crt_is_revoked + 0x0000000040111104 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_verifycrl + 0x0000000040111104 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x3c (size before relaxing) + .literal.x509_crt_verify_chain + 0x000000004011110c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_x509_crt_verify_restartable + 0x0000000040111114 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_x509_crt_init + 0x0000000040111118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_crt_free + 0x0000000040111118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x38 (size before relaxing) + .literal.x509_crt_parse_der_core + 0x0000000040111118 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0xbc (size before relaxing) - 0x0000000040110f1c mbedtls_ecp_check_pub_priv + .literal.mbedtls_x509_crt_parse_der + 0x0000000040111124 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509_crt_parse + 0x0000000040111124 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_x509_crt_parse_file + 0x0000000040111130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.x509_csr_get_version + 0x0000000040111130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_csr_init + 0x0000000040111130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_csr_free + 0x0000000040111130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_x509_csr_parse_der + 0x0000000040111130 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x80 (size before relaxing) + .literal.mbedtls_x509_csr_parse + 0x0000000040111134 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_x509_csr_parse_file + 0x0000000040111144 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x10 (size before relaxing) + .literal.x509_write_time + 0x0000000040111144 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509write_crt_init + 0x0000000040111144 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_x509write_crt_free + 0x0000000040111144 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_x509write_crt_set_subject_name + 0x0000000040111144 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509write_crt_set_issuer_name + 0x0000000040111144 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509write_crt_set_serial + 0x0000000040111144 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509write_crt_set_validity + 0x0000000040111144 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_x509write_crt_set_extension + 0x0000000040111144 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509write_crt_set_basic_constraints + 0x0000000040111144 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_x509write_crt_set_subject_key_identifier + 0x0000000040111148 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_x509write_crt_set_authority_key_identifier + 0x0000000040111150 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_x509write_crt_set_key_usage + 0x0000000040111154 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509write_crt_set_ns_cert_type + 0x0000000040111158 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_x509write_crt_der + 0x000000004011115c 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x88 (size before relaxing) + .literal.mbedtls_x509write_crt_pem + 0x0000000040111168 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x14 (size before relaxing) + .literal.x509_attr_descr_from_name + 0x0000000040111170 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .literal.x509_write_name + 0x0000000040111178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x18 (size before relaxing) + .literal.x509_write_extension + 0x0000000040111178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_x509_string_to_names + 0x0000000040111178 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_x509_set_extension + 0x000000004011117c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_x509_write_names + 0x000000004011117c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_x509_write_sig + 0x000000004011117c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_x509_write_extensions + 0x000000004011117c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x4 (size before relaxing) + .literal.esp_ota_get_running_partition + 0x000000004011117c 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x38 (size before relaxing) + .literal.esp_netif_action_start + 0x0000000040111194 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_stop + 0x0000000040111194 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_connected + 0x0000000040111194 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x50 (size before relaxing) + .literal.esp_netif_action_disconnected + 0x00000000401111b0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_got_ip + 0x00000000401111b0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x14 (size before relaxing) + .literal.wifi_create_and_start_sta + 0x00000000401111b4 0xc esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x18 (size before relaxing) + .literal.wifi_create_and_start_ap + 0x00000000401111c0 0x8 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x18 (size before relaxing) + .literal.tcpip_adapter_set_default_wifi_handlers + 0x00000000401111c8 0x10 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x1c (size before relaxing) + .literal.tcpip_adapter_clear_default_wifi_handlers + 0x00000000401111d8 0x0 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x4 (size before relaxing) + .literal.os_get_time + 0x00000000401111d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_random + 0x00000000401111d8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .literal.os_get_random + 0x00000000401111dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_install_key + 0x00000000401111dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_key + 0x00000000401111dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sendto_wrapper + 0x00000000401111dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deauthenticate + 0x00000000401111dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_config_assoc_ie + 0x00000000401111dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x8 (size before relaxing) + .literal.wpa_neg_complete + 0x00000000401111dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_attach + 0x00000000401111dc 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x24 (size before relaxing) + .literal.wpa_ap_get_wpa_ie + 0x00000000401111f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_rx_eapol + 0x00000000401111f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deattach + 0x00000000401111f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_parse_wpa_ie_wrapper + 0x00000000401111f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sta_disconnected_cb + 0x00000000401111f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_config_profile + 0x00000000401111f8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x2c (size before relaxing) + .literal.wpa_config_bss + 0x0000000040111204 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sta_connect + 0x0000000040111204 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x18 (size before relaxing) + .literal.esp_supplicant_init + 0x000000004011120c 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x48 (size before relaxing) + .literal.esp_supplicant_deinit + 0x000000004011124c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa3_parse_sae_commit + 0x000000004011124c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x1c (size before relaxing) + .literal.wpa3_parse_sae_confirm + 0x0000000040111258 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x1c (size before relaxing) + .literal.wpa3_parse_sae_msg + 0x0000000040111260 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x8 (size before relaxing) + .literal.wpa3_build_sae_commit + 0x0000000040111260 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x34 (size before relaxing) + .literal.wpa3_build_sae_confirm + 0x0000000040111260 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x10 (size before relaxing) + .literal.wpa3_build_sae_msg + 0x0000000040111260 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x8 (size before relaxing) + .literal.esp_wifi_register_wpa3_cb + 0x0000000040111260 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.wpa_sm_pmksa_free_cb + 0x0000000040111268 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_supplicant_clr_countermeasures + 0x0000000040111268 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.cipher_type_map_public_to_supp + 0x0000000040111270 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.wpa_eapol_key_send + 0x0000000040111274 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_key_request + 0x0000000040111274 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + .literal.wpa_sm_rekey_ptk + 0x0000000040111284 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_send_2_of_4 + 0x0000000040111284 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_derive_ptk + 0x0000000040111284 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_pairwise_gtk + 0x0000000040111288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_report_ie_mismatch + 0x0000000040111288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.ieee80211w_set_keys + 0x0000000040111288 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_validate_ie + 0x000000004011128c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_send_4_of_4 + 0x000000004011128c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sm_set_seq + 0x0000000040111290 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_rsn + 0x0000000040111290 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_wpa + 0x0000000040111290 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_send_2_of_2 + 0x0000000040111290 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_verify_eapol_key_mic + 0x0000000040111290 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_supplicant_decrypt_key_data + 0x0000000040111290 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_set_state + 0x0000000040111290 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_key_neg_complete + 0x0000000040111294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_process_3_of_4 + 0x0000000040111294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2 + 0x0000000040111294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_stop_countermeasures + 0x0000000040111294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_set_pmk_from_pmksa + 0x0000000040111294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_get_pmk + 0x0000000040111294 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + .literal.wpa_supplicant_process_1_of_4 + 0x000000004011129c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + .literal.wpa_sm_rx_eapol + 0x000000004011129c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_sm_init + 0x00000000401112a0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sm_deinit + 0x00000000401112a4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_set_profile + 0x00000000401112a4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_set_pmk + 0x00000000401112a4 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_set_passphrase + 0x00000000401112ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40 (size before relaxing) + .literal.set_assoc_ie + 0x00000000401112ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_set_bss + 0x00000000401112ac 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4c (size before relaxing) + .literal.wpa_sm_set_key + 0x00000000401112b0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_install_ptk + 0x00000000401112b0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_supplicant_install_gtk + 0x00000000401112b4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_supplicant_send_4_of_4_txcallback + 0x00000000401112b4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_get_key + 0x00000000401112b4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_gtk_in_use + 0x00000000401112b4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + .literal.wpa_supplicant_send_2_of_2_txcallback + 0x00000000401112b4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_michael_mic_failure + 0x00000000401112b4 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x54 (size before relaxing) + .literal.eapol_txcb + 0x00000000401112d0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sta_in_4way_handshake + 0x00000000401112d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sta_is_cur_pmksa_set + 0x00000000401112d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sta_clear_curr_pmksa + 0x00000000401112d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_parse_generic + 0x00000000401112d8 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .literal.wpa_gen_wpa_ie_rsn + 0x00000000401112ec 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_gen_wpa_ie_wpa + 0x00000000401112f8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x10 (size before relaxing) + .literal.wpa_parse_wpa_ie + 0x0000000040111300 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_gen_wpa_ie + 0x0000000040111300 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_parse_ies + 0x0000000040111300 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.hex2byte + 0x0000000040111300 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.hexstr2bin + 0x0000000040111300 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_ntp_timestamp + 0x0000000040111300 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x14 (size before relaxing) + .literal.printf_decode + 0x000000004011130c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0xc (size before relaxing) + .literal.dup_binstr + 0x0000000040111310 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_config_parse_string + 0x0000000040111310 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x38 (size before relaxing) + .literal.wpa_bin_clear_free + 0x0000000040111314 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_alloc + 0x0000000040111314 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_free + 0x0000000040111318 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_alloc_copy + 0x0000000040111318 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_get_sm + 0x0000000040111318 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_add_sm + 0x0000000040111320 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_del_sm + 0x0000000040111320 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_use_aes_cmac + 0x0000000040111320 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_receive_error_report + 0x0000000040111320 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_free_sta_sm + 0x0000000040111320 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_group_init_gmk_and_counter + 0x0000000040111320 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION_Enter + 0x0000000040111324 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_gmk_to_gtk + 0x0000000040111324 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_gtk_update + 0x0000000040111324 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.wpa_group_gtk_init + 0x000000004011132c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_group_setkeys + 0x000000004011132c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_config_group_keys + 0x000000004011132c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_group_setkeysdone + 0x0000000040111330 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_sm_step + 0x0000000040111330 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_group_init + 0x0000000040111330 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_group_ensure_init + 0x0000000040111330 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_sta_disconnect + 0x0000000040111330 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x0000000040111330 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.sm_WPA_PTK_DISCONNECT_Enter + 0x0000000040111330 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_rekey_gtk + 0x0000000040111330 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_derive_ptk + 0x0000000040111334 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_verify_key_mic + 0x0000000040111338 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_replay_counter_valid + 0x0000000040111338 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_replay_counter_mark_invalid + 0x0000000040111338 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITDONE_Enter + 0x0000000040111338 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.ieee80211w_kde_add + 0x000000004011133c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.resend_eapol_handle + 0x000000004011133c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.sm_WPA_PTK_INITPSK_Enter + 0x0000000040111340 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x0000000040111340 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.wpa_init + 0x0000000040111348 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.wpa_auth_sta_init + 0x0000000040111348 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_sta_deinit + 0x0000000040111348 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.__wpa_send_eapol + 0x0000000040111348 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x80 (size before relaxing) + .literal.wpa_send_eapol + 0x0000000040111348 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.sm_WPA_PTK_PTKSTART_Enter + 0x000000004011134c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x000000004011134c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x000000004011134c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_Step + 0x000000004011134c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1c (size before relaxing) + .literal.wpa_remove_ptk + 0x000000004011134c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_INITIALIZE_Enter + 0x000000004011134c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_Step + 0x000000004011134c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x70 (size before relaxing) + .literal.wpa_sm_step + 0x0000000040111350 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_send_eapol_timeout + 0x0000000040111350 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_rekey_ptk + 0x0000000040111350 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_sta_associated + 0x0000000040111350 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_receive + 0x0000000040111350 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8c (size before relaxing) + .literal.hostap_eapol_resend_process + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_ap_join + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_ap_remove + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_parse_generic + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_write_wpa_ie + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_write_rsn_ie + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_gen_wpa_ie + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_add_kde + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_validate_wpa_ie + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x24 (size before relaxing) + .literal.wpa_parse_kde_ies + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.sae_parse_commit_token + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_cn_confirm + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_cn_confirm_ffc + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.get_random_qr_qnr + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.sae_pwd_seed_key + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x14 (size before relaxing) + .literal.get_rand_1_to_p_1 + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.is_quadratic_residue_blind + 0x0000000040111354 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x24 (size before relaxing) + .literal.sae_test_pwd_seed_ecc + 0x0000000040111354 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_derive_pwe_ecc + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x38 (size before relaxing) + .literal.sae_test_pwd_seed_ffc + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x38 (size before relaxing) + .literal.sae_derive_pwe_ffc + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x14 (size before relaxing) + .literal.sae_derive_k_ffc + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_get_rand + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x20 (size before relaxing) + .literal.sae_get_rand_and_mask + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_parse_commit_scalar + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x20 (size before relaxing) + .literal.sae_parse_commit_element_ffc + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3c (size before relaxing) + .literal.sae_derive_commit_element_ecc + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_commit_element_ffc + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_commit + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x24 (size before relaxing) + .literal.sae_derive_k_ecc + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_cn_confirm_ecc + 0x0000000040111358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_keys + 0x0000000040111358 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x30 (size before relaxing) + .literal.sae_parse_commit_element_ecc + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.sae_parse_commit_element + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_parse_password_identifier + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.bin_clear_free + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_clear_temp_data + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x34 (size before relaxing) + .literal.sae_clear_data + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_set_group + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x30 (size before relaxing) + .literal.sae_prepare_commit + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_process_commit + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_write_commit + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x40 (size before relaxing) + .literal.sae_group_allowed + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x24 (size before relaxing) + .literal.sae_write_confirm + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_check_confirm + 0x000000004011135c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.rsn_selector_to_bitfield + 0x000000004011135c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.rsn_key_mgmt_to_bitfield + 0x000000004011136c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_selector_to_bitfield + 0x0000000040111370 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_key_mgmt_to_bitfield + 0x0000000040111380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_parse_wpa_ie_rsn + 0x0000000040111380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_parse_wpa_ie_wpa + 0x0000000040111380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x10 (size before relaxing) + .literal.wpa_eapol_key_mic + 0x0000000040111380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x10 (size before relaxing) + .literal.wpa_compare_rsn_ie + 0x0000000040111380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_pmk_to_ptk + 0x0000000040111380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x30 (size before relaxing) + .literal.rsn_pmkid + 0x0000000040111380 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_cipher_to_suite + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x2c (size before relaxing) + .literal.ecp_opp + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_init + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_init_set + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_deinit + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_to_bin + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_add + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mod + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_exptmod + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_inverse + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_sub + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_div + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mulmod + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_cmp + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_bits + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_zero + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_one + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_legendre + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x28 (size before relaxing) + .literal.crypto_ec_deinit + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_init + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_init + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_prime_len + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_prime_len_bits + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_deinit + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_point_to_bin + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xc (size before relaxing) + .literal.crypto_ec_point_from_bin + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_add + 0x0000000040111388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_mul + 0x0000000040111388 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_invert + 0x0000000040111390 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_compute_y_sqr + 0x0000000040111390 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4c (size before relaxing) + .literal.crypto_ec_point_solve_y_coord + 0x0000000040111390 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x30 (size before relaxing) + .literal.crypto_ec_point_is_at_infinity + 0x0000000040111390 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_is_on_curve + 0x0000000040111390 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x24 (size before relaxing) + .literal.crypto_ec_point_cmp + 0x0000000040111390 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.dh_groups_get + 0x0000000040111390 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.hostap_init + 0x0000000040111394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x60 (size before relaxing) + .literal.hostap_deinit + 0x0000000040111394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sm_alloc_eapol + 0x0000000040111394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_free_eapol + 0x0000000040111394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_deauthenticate + 0x0000000040111394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal._pmksa_cache_free_entry + 0x0000000040111394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x0000000040111394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x0000000040111394 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x2c (size before relaxing) + .literal.pmksa_cache_expire + 0x00000000401113b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x20 (size before relaxing) + .literal.pmksa_cache_flush + 0x00000000401113b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_add + 0x00000000401113b8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x5c (size before relaxing) + .literal.pmksa_cache_clone_entry + 0x00000000401113c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_deinit + 0x00000000401113c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x14 (size before relaxing) + .literal.pmksa_cache_get + 0x00000000401113c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_get_opportunistic + 0x00000000401113c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_current + 0x00000000401113c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_init + 0x00000000401113c0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_derive_psk + 0x00000000401113c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc (size before relaxing) + .literal.hostapd_setup_wpa_psk + 0x00000000401113c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.hostapd_get_psk + 0x00000000401113c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.lv_draw_letter + 0x00000000401113c8 0x18 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0x34 (size before relaxing) + .literal.lv_draw_map + 0x00000000401113e0 0x4 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0x14 (size before relaxing) + .text.lv_draw_letter + 0x00000000401113e4 0x6a2 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0x6a6 (size before relaxing) + 0x00000000401113e4 lv_draw_letter + *fill* 0x0000000040111a86 0x2 + .text.lv_draw_map + 0x0000000040111a88 0x507 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0x0000000040111a88 lv_draw_map + *fill* 0x0000000040111f8f 0x1 + .text.antialias_get_opa_circ + 0x0000000040111f90 0x5e esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + *fill* 0x0000000040111fee 0x2 + .text.lv_draw_cont_radius_corr + 0x0000000040111ff0 0x33 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0x3a (size before relaxing) + *fill* 0x0000000040112023 0x1 + .text.lv_draw_shadow_full_straight + 0x0000000040112024 0x151 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0x165 (size before relaxing) + *fill* 0x0000000040112175 0x3 + .text.lv_draw_shadow_full + 0x0000000040112178 0x3bc esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0x3d8 (size before relaxing) + .text.lv_draw_shadow_bottom + 0x0000000040112534 0x24e esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0x25e (size before relaxing) + *fill* 0x0000000040112782 0x2 + .text.lv_draw_shadow + 0x0000000040112784 0xaa esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0xb2 (size before relaxing) + *fill* 0x000000004011282e 0x2 + .text.lv_draw_rect_border_straight + 0x0000000040112830 0x434 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0x444 (size before relaxing) + .text.lv_draw_rect_border_corner + 0x0000000040112c64 0xc02 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0xc82 (size before relaxing) + *fill* 0x0000000040113866 0x2 + .text.lv_draw_rect_main_mid + 0x0000000040113868 0x1d6 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0x1da (size before relaxing) + *fill* 0x0000000040113a3e 0x2 + .text.lv_draw_rect_main_corner + 0x0000000040113a40 0x12ec esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0x1358 (size before relaxing) + .text.lv_draw_rect + 0x0000000040114d2c 0xa6 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0xb2 (size before relaxing) + 0x0000000040114d2c lv_draw_rect + *fill* 0x0000000040114dd2 0x2 + .text.lv_img_cache_open + 0x0000000040114dd4 0x142 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + 0x156 (size before relaxing) + 0x0000000040114dd4 lv_img_cache_open + *fill* 0x0000000040114f16 0x2 + .text.lv_img_cache_invalidate_src + 0x0000000040114f18 0x41 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + 0x44 (size before relaxing) + 0x0000000040114f18 lv_img_cache_invalidate_src + *fill* 0x0000000040114f59 0x3 + .text.lv_img_cache_set_size + 0x0000000040114f5c 0x7a esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + 0x7e (size before relaxing) + 0x0000000040114f5c lv_img_cache_set_size + *fill* 0x0000000040114fd6 0x2 + .text.lv_img_decoder_built_in_info + 0x0000000040114fd8 0xea esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0xee (size before relaxing) + 0x0000000040114fd8 lv_img_decoder_built_in_info + *fill* 0x00000000401150c2 0x2 + .text.lv_img_decoder_built_in_close + 0x00000000401150c4 0x38 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x3c (size before relaxing) + 0x00000000401150c4 lv_img_decoder_built_in_close + .text.lv_img_decoder_built_in_open + 0x00000000401150fc 0x285 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x2a5 (size before relaxing) + 0x00000000401150fc lv_img_decoder_built_in_open + *fill* 0x0000000040115381 0x3 + .text.lv_img_decoder_built_in_line_true_color + 0x0000000040115384 0x7c esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x84 (size before relaxing) + .text.lv_img_decoder_built_in_line_alpha + 0x0000000040115400 0x207 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + *fill* 0x0000000040115607 0x1 + .text.lv_img_decoder_built_in_line_indexed + 0x0000000040115608 0x1a7 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + *fill* 0x00000000401157af 0x1 + .text.lv_img_decoder_built_in_read_line + 0x00000000401157b0 0x76 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x00000000401157b0 lv_img_decoder_built_in_read_line + *fill* 0x0000000040115826 0x2 + .text.lv_img_decoder_get_info + 0x0000000040115828 0x4a esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x0000000040115828 lv_img_decoder_get_info + *fill* 0x0000000040115872 0x2 + .text.lv_img_decoder_open + 0x0000000040115874 0x98 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x9c (size before relaxing) + 0x0000000040115874 lv_img_decoder_open + .text.lv_img_decoder_close + 0x000000004011590c 0x24 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x000000004011590c lv_img_decoder_close + .text.lv_img_decoder_create + 0x0000000040115930 0x1c esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x0000000040115930 lv_img_decoder_create + .text.lv_img_decoder_init + 0x000000004011594c 0x56 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x5a (size before relaxing) + 0x000000004011594c lv_img_decoder_init + *fill* 0x00000000401159a2 0x2 + .text.lv_font_get_glyph_width + 0x00000000401159a4 0x1d esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + 0x00000000401159a4 lv_font_get_glyph_width + *fill* 0x00000000401159c1 0x3 + .text.lv_disp_drv_init + 0x00000000401159c4 0x32 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x00000000401159c4 lv_disp_drv_init + *fill* 0x00000000401159f6 0x2 + .text.lv_disp_drv_register + 0x00000000401159f8 0xb8 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0xd4 (size before relaxing) + 0x00000000401159f8 lv_disp_drv_register + .text.lv_disp_get_default + 0x0000000040115ab0 0xa esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x0000000040115ab0 lv_disp_get_default + *fill* 0x0000000040115aba 0x2 + .text.lv_disp_get_hor_res + 0x0000000040115abc 0x27 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x0000000040115abc lv_disp_get_hor_res + *fill* 0x0000000040115ae3 0x1 + .text.lv_disp_get_ver_res + 0x0000000040115ae4 0x29 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x0000000040115ae4 lv_disp_get_ver_res + *fill* 0x0000000040115b0d 0x3 + .text.lv_disp_get_antialiasing + 0x0000000040115b10 0x1d esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x0000000040115b10 lv_disp_get_antialiasing + *fill* 0x0000000040115b2d 0x3 + .text.lv_disp_is_true_double_buf + 0x0000000040115b30 0x28 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x0000000040115b30 lv_disp_is_true_double_buf + .text.lv_indev_get_next + 0x0000000040115b58 0x24 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + 0x0000000040115b58 lv_indev_get_next + .text.lv_tick_get + 0x0000000040115b7c 0x1e esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + 0x0000000040115b7c lv_tick_get + *fill* 0x0000000040115b9a 0x2 + .text.lv_tick_elaps + 0x0000000040115b9c 0x15 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + 0x19 (size before relaxing) + 0x0000000040115b9c lv_tick_elaps + *fill* 0x0000000040115bb1 0x3 + .text.anim_ready_handler + 0x0000000040115bb4 0x88 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x90 (size before relaxing) + .text.anim_task + 0x0000000040115c3c 0xcf esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0xd3 (size before relaxing) + *fill* 0x0000000040115d0b 0x1 + .text.lv_anim_core_init + 0x0000000040115d0c 0x26 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x2a (size before relaxing) + 0x0000000040115d0c lv_anim_core_init + *fill* 0x0000000040115d32 0x2 + .text.lv_anim_del + 0x0000000040115d34 0x4f esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x53 (size before relaxing) + 0x0000000040115d34 lv_anim_del + *fill* 0x0000000040115d83 0x1 + .text.lv_anim_create + 0x0000000040115d84 0x42 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x4a (size before relaxing) + 0x0000000040115d84 lv_anim_create + *fill* 0x0000000040115dc6 0x2 + .text.lv_anim_speed_to_time + 0x0000000040115dc8 0x39 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x0000000040115dc8 lv_anim_speed_to_time + *fill* 0x0000000040115e01 0x3 + .text.lv_area_set_pos + 0x0000000040115e04 0x40 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + 0x0000000040115e04 lv_area_set_pos + .text.lv_fs_init + 0x0000000040115e44 0x10 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0x0000000040115e44 lv_fs_init + .text.lv_fs_close + 0x0000000040115e54 0x2f esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0x0000000040115e54 lv_fs_close + *fill* 0x0000000040115e83 0x1 + .text.lv_fs_get_drv + 0x0000000040115e84 0x2c esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0x0000000040115e84 lv_fs_get_drv + .text.lv_fs_open + 0x0000000040115eb0 0x8d esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0x0000000040115eb0 lv_fs_open + *fill* 0x0000000040115f3d 0x3 + .text.lv_fs_get_ext + 0x0000000040115f40 0x49 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0x0000000040115f40 lv_fs_get_ext + *fill* 0x0000000040115f89 0x3 + .text.lv_ll_ins_head + 0x0000000040115f8c 0x40 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x44 (size before relaxing) + 0x0000000040115f8c lv_ll_ins_head + .text.lv_ll_ins_tail + 0x0000000040115fcc 0x46 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x4a (size before relaxing) + 0x0000000040115fcc lv_ll_ins_tail + *fill* 0x0000000040116012 0x2 + .text.lv_ll_ins_prev + 0x0000000040116014 0x90 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x98 (size before relaxing) + 0x0000000040116014 lv_ll_ins_prev + .text.lv_ll_rem + 0x00000000401160a4 0x96 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x00000000401160a4 lv_ll_rem + *fill* 0x000000004011613a 0x2 + .text.lv_ll_clear + 0x000000004011613c 0x33 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x37 (size before relaxing) + 0x000000004011613c lv_ll_clear + *fill* 0x000000004011616f 0x1 + .text.lv_ll_chg_list + 0x0000000040116170 0x74 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x0000000040116170 lv_ll_chg_list + .text.lv_ll_move_before + 0x00000000401161e4 0x6a esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x00000000401161e4 lv_ll_move_before + *fill* 0x000000004011624e 0x2 + .text.lv_log_add + 0x0000000040116250 0x2a esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + 0x0000000040116250 lv_log_add + *fill* 0x000000004011627a 0x2 + .text.ent_get_next + 0x000000004011627c 0x2a esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + *fill* 0x00000000401162a6 0x2 + .text.ent_trunc + 0x00000000401162a8 0x59 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + *fill* 0x0000000040116301 0x3 + .text.ent_alloc + 0x0000000040116304 0x30 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .text.lv_mem_init + 0x0000000040116334 0x12 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x0000000040116334 lv_mem_init + *fill* 0x0000000040116346 0x2 + .text.lv_mem_alloc + 0x0000000040116348 0x5a esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x62 (size before relaxing) + 0x0000000040116348 lv_mem_alloc + *fill* 0x00000000401163a2 0x2 + .text.lv_mem_free + 0x00000000401163a4 0x4a esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x00000000401163a4 lv_mem_free + *fill* 0x00000000401163ee 0x2 + .text.lv_mem_monitor + 0x00000000401163f0 0x8a esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x8e (size before relaxing) + 0x00000000401163f0 lv_mem_monitor + *fill* 0x000000004011647a 0x2 + .text.lv_mem_get_size + 0x000000004011647c 0x20 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x000000004011647c lv_mem_get_size + .text.lv_mem_realloc + 0x000000004011649c 0x76 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x86 (size before relaxing) + 0x000000004011649c lv_mem_realloc + *fill* 0x0000000040116512 0x2 + .text.lv_task_create_basic + 0x0000000040116514 0x98 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x0000000040116514 lv_task_create_basic + .text.lv_task_del + 0x00000000401165ac 0x24 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x28 (size before relaxing) + 0x00000000401165ac lv_task_del + .text.lv_task_exec + 0x00000000401165d0 0x4c esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x58 (size before relaxing) + .text.lv_task_handler + 0x000000004011661c 0x177 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x17f (size before relaxing) + 0x000000004011661c lv_task_handler + *fill* 0x0000000040116793 0x1 + .text.lv_task_set_prio + 0x0000000040116794 0x67 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x6f (size before relaxing) + 0x0000000040116794 lv_task_set_prio + *fill* 0x00000000401167fb 0x1 + .text.lv_task_create + 0x00000000401167fc 0x2e esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x32 (size before relaxing) + 0x00000000401167fc lv_task_create + *fill* 0x000000004011682a 0x2 + .text.lv_task_ready + 0x000000004011682c 0x14 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x000000004011682c lv_task_ready + .text.lv_task_enable + 0x0000000040116840 0xb esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x0000000040116840 lv_task_enable + *fill* 0x000000004011684b 0x1 + .text.lv_task_core_init + 0x000000004011684c 0x18 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x000000004011684c lv_task_core_init + .text.lv_task_get_idle + 0x0000000040116864 0xb esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x0000000040116864 lv_task_get_idle + *fill* 0x000000004011686f 0x1 + .text.lv_chart_draw_div + 0x0000000040116870 0x10e esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x112 (size before relaxing) + *fill* 0x000000004011697e 0x2 + .text.lv_chart_draw_lines + 0x0000000040116980 0x167 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x173 (size before relaxing) + *fill* 0x0000000040116ae7 0x1 + .text.lv_chart_draw_points + 0x0000000040116ae8 0x1a4 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x1ac (size before relaxing) + .text.lv_chart_draw_vertical_lines + 0x0000000040116c8c 0x183 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x187 (size before relaxing) + *fill* 0x0000000040116e0f 0x1 + .text.lv_chart_draw_areas + 0x0000000040116e10 0x197 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x1a3 (size before relaxing) + *fill* 0x0000000040116fa7 0x1 + .text.lv_chart_get_next_label + 0x0000000040116fa8 0x9f esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + *fill* 0x0000000040117047 0x1 + .text.lv_chart_draw_y_ticks + 0x0000000040117048 0x2a7 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x2c7 (size before relaxing) + *fill* 0x00000000401172ef 0x1 + .text.lv_chart_draw_x_ticks + 0x00000000401172f0 0x1ea esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x202 (size before relaxing) + *fill* 0x00000000401174da 0x2 + .text.lv_chart_draw_axes + 0x00000000401174dc 0x20 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x28 (size before relaxing) + .text.lv_chart_signal + 0x00000000401174fc 0x6b esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x77 (size before relaxing) + *fill* 0x0000000040117567 0x1 + .text.lv_chart_inv_cols + 0x0000000040117568 0x5b esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x6b (size before relaxing) + *fill* 0x00000000401175c3 0x1 + .text.lv_chart_inv_points + 0x00000000401175c4 0x46 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x56 (size before relaxing) + *fill* 0x000000004011760a 0x2 + .text.lv_chart_inv_lines + 0x000000004011760c 0x98 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0xa8 (size before relaxing) + .text.lv_chart_draw_cols + 0x00000000401176a4 0x1f5 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x20d (size before relaxing) + *fill* 0x0000000040117899 0x3 + .text.lv_chart_design + 0x000000004011789c 0xb5 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0xd5 (size before relaxing) + *fill* 0x0000000040117951 0x3 + .text.lv_chart_create + 0x0000000040117954 0x184 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x1a8 (size before relaxing) + 0x0000000040117954 lv_chart_create + .text.lv_chart_add_series + 0x0000000040117ad8 0x5e esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x6e (size before relaxing) + 0x0000000040117ad8 lv_chart_add_series + *fill* 0x0000000040117b36 0x2 + .text.lv_chart_set_series_width + 0x0000000040117b38 0x1b esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x22 (size before relaxing) + 0x0000000040117b38 lv_chart_set_series_width + *fill* 0x0000000040117b53 0x1 + .text.lv_chart_refresh + 0x0000000040117b54 0xa esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0xe (size before relaxing) + 0x0000000040117b54 lv_chart_refresh + *fill* 0x0000000040117b5e 0x2 + .text.lv_chart_set_range + 0x0000000040117b60 0x2a esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x2e (size before relaxing) + 0x0000000040117b60 lv_chart_set_range + *fill* 0x0000000040117b8a 0x2 + .text.lv_chart_set_type + 0x0000000040117b8c 0x1b esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x22 (size before relaxing) + 0x0000000040117b8c lv_chart_set_type + *fill* 0x0000000040117ba7 0x1 + .text.lv_chart_set_point_count + 0x0000000040117ba8 0x10a esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x112 (size before relaxing) + 0x0000000040117ba8 lv_chart_set_point_count + *fill* 0x0000000040117cb2 0x2 + .text.lv_chart_set_next + 0x0000000040117cb4 0xa9 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0xb1 (size before relaxing) + 0x0000000040117cb4 lv_chart_set_next + *fill* 0x0000000040117d5d 0x3 + .text.lv_label_get_dot_tmp + 0x0000000040117d60 0x18 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x1c (size before relaxing) + .text.lv_label_dot_tmp_free + 0x0000000040117d78 0x2a esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x32 (size before relaxing) + *fill* 0x0000000040117da2 0x2 + .text.lv_label_revert_dots + 0x0000000040117da4 0x63 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x6f (size before relaxing) + *fill* 0x0000000040117e07 0x1 + .text.lv_label_set_offset_y + 0x0000000040117e08 0x17 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x1b (size before relaxing) + *fill* 0x0000000040117e1f 0x1 + .text.lv_label_set_offset_x + 0x0000000040117e20 0x17 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x1b (size before relaxing) + *fill* 0x0000000040117e37 0x1 + .text.lv_label_set_dot_tmp + 0x0000000040117e38 0x70 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x80 (size before relaxing) + .text.lv_label_set_align + 0x0000000040117ea8 0x32 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x36 (size before relaxing) + 0x0000000040117ea8 lv_label_set_align + *fill* 0x0000000040117eda 0x2 + .text.lv_label_set_body_draw + 0x0000000040117edc 0x42 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x46 (size before relaxing) + 0x0000000040117edc lv_label_set_body_draw + *fill* 0x0000000040117f1e 0x2 + .text.lv_label_get_text + 0x0000000040117f20 0xc esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x10 (size before relaxing) + 0x0000000040117f20 lv_label_get_text + .text.lv_label_get_long_mode + 0x0000000040117f2c 0xf esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x13 (size before relaxing) + 0x0000000040117f2c lv_label_get_long_mode + *fill* 0x0000000040117f3b 0x1 + .text.lv_label_get_align + 0x0000000040117f3c 0x14 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x18 (size before relaxing) + 0x0000000040117f3c lv_label_get_align + .text.lv_label_get_recolor + 0x0000000040117f50 0x10 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x14 (size before relaxing) + 0x0000000040117f50 lv_label_get_recolor + .text.lv_label_get_body_draw + 0x0000000040117f60 0x10 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x14 (size before relaxing) + 0x0000000040117f60 lv_label_get_body_draw + .text.lv_label_get_letter_on + 0x0000000040117f70 0x1f3 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x213 (size before relaxing) + 0x0000000040117f70 lv_label_get_letter_on + *fill* 0x0000000040118163 0x1 + .text.lv_label_refr_text + 0x0000000040118164 0x3e4 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x444 (size before relaxing) + .text.lv_label_signal + 0x0000000040118548 0xe7 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0xfa (size before relaxing) + *fill* 0x000000004011862f 0x1 + .text.lv_label_set_text + 0x0000000040118630 0x7e esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x8e (size before relaxing) + 0x0000000040118630 lv_label_set_text + *fill* 0x00000000401186ae 0x2 + .text.lv_label_set_static_text + 0x00000000401186b0 0x34 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x3b (size before relaxing) + 0x00000000401186b0 lv_label_set_static_text + *fill* 0x00000000401186e4 0x0 + .text.lv_label_set_long_mode + 0x00000000401186e4 0x8f esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0xa3 (size before relaxing) + 0x00000000401186e4 lv_label_set_long_mode + *fill* 0x0000000040118773 0x1 + .text.lv_label_set_recolor + 0x0000000040118774 0x3b esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x3e (size before relaxing) + 0x0000000040118774 lv_label_set_recolor + *fill* 0x00000000401187af 0x1 + .text.lv_label_create + 0x00000000401187b0 0x19e esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x1ee (size before relaxing) + 0x00000000401187b0 lv_label_create + *fill* 0x000000004011894e 0x2 + .text.lv_label_get_text_sel_start + 0x0000000040118950 0x8 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x0000000040118950 lv_label_get_text_sel_start + .text.lv_label_get_text_sel_end + 0x0000000040118958 0x8 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x0000000040118958 lv_label_get_text_sel_end + .text.lv_label_design + 0x0000000040118960 0x21a esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x26a (size before relaxing) + *fill* 0x0000000040118b7a 0x2 + .text.lv_win_set_layout + 0x0000000040118b7c 0x18 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x20 (size before relaxing) + 0x0000000040118b7c lv_win_set_layout + .text.lv_win_get_style + 0x0000000040118b94 0x64 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x0000000040118b94 lv_win_get_style + .text.lv_win_realign + 0x0000000040118bf8 0xfa esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x136 (size before relaxing) + *fill* 0x0000000040118cf2 0x2 + .text.lv_win_signal + 0x0000000040118cf4 0xed esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x105 (size before relaxing) + *fill* 0x0000000040118de1 0x3 + .text.lv_win_add_btn + 0x0000000040118de4 0x4e esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x66 (size before relaxing) + 0x0000000040118de4 lv_win_add_btn + *fill* 0x0000000040118e32 0x2 + .text.lv_win_set_style + 0x0000000040118e34 0xb3 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0xc7 (size before relaxing) + 0x0000000040118e34 lv_win_set_style + *fill* 0x0000000040118ee7 0x1 + .text.lv_win_create + 0x0000000040118ee8 0x1b2 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x236 (size before relaxing) + 0x0000000040118ee8 lv_win_create + *fill* 0x000000004011909a 0x2 + .text.lv_theme_get_current + 0x000000004011909c 0xa esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + 0x000000004011909c lv_theme_get_current + *fill* 0x00000000401190a6 0x2 + .text.obj_to_foreground + 0x00000000401190a8 0x26 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000401190ce 0x2 + .text.focus_next_core + 0x00000000401190d0 0xaf esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0xbf (size before relaxing) + *fill* 0x000000004011917f 0x1 + .text.lv_group_init + 0x0000000040119180 0xd esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x10 (size before relaxing) + 0x0000000040119180 lv_group_init + *fill* 0x000000004011918d 0x3 + .text.lv_group_focus_next + 0x0000000040119190 0x10 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x13 (size before relaxing) + 0x0000000040119190 lv_group_focus_next + *fill* 0x00000000401191a0 0x0 + .text.lv_group_focus_prev + 0x00000000401191a0 0x10 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x13 (size before relaxing) + 0x00000000401191a0 lv_group_focus_prev + *fill* 0x00000000401191b0 0x0 + .text.lv_group_refocus + 0x00000000401191b0 0x3e esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000401191ee 0x2 + .text.lv_group_add_obj + 0x00000000401191f0 0x52 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x66 (size before relaxing) + 0x00000000401191f0 lv_group_add_obj + *fill* 0x0000000040119242 0x2 + .text.lv_group_remove_obj + 0x0000000040119244 0x84 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x90 (size before relaxing) + 0x0000000040119244 lv_group_remove_obj + .text.lv_group_mod_style + 0x00000000401192c8 0x34 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x00000000401192c8 lv_group_mod_style + .text.lv_indev_get_act + 0x00000000401192fc 0xa esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + 0x00000000401192fc lv_indev_get_act + *fill* 0x0000000040119306 0x2 + .text.lv_indev_reset + 0x0000000040119308 0x2f esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + 0x36 (size before relaxing) + 0x0000000040119308 lv_indev_reset + *fill* 0x0000000040119337 0x1 + .text.lv_indev_init + 0x0000000040119338 0xa esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + 0xe (size before relaxing) + 0x0000000040119338 lv_indev_init + *fill* 0x0000000040119342 0x2 + .text.lv_indev_get_obj_act + 0x0000000040119344 0xa esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + 0x0000000040119344 lv_indev_get_obj_act + *fill* 0x000000004011934e 0x2 + .text.lv_img_color_format_get_px_size + 0x0000000040119350 0x40 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + 0x0000000040119350 lv_img_color_format_get_px_size + .text.lv_img_draw_core + 0x0000000040119390 0x17e esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + 0x1a6 (size before relaxing) + *fill* 0x000000004011950e 0x2 + .text.lv_draw_img + 0x0000000040119510 0x88 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + 0x9c (size before relaxing) + 0x0000000040119510 lv_draw_img + .text.hex_char_to_num + 0x0000000040119598 0x56 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + *fill* 0x00000000401195ee 0x2 + .text.lv_draw_label + 0x00000000401195f0 0x5a8 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + 0x5d0 (size before relaxing) + 0x00000000401195f0 lv_draw_label + .text.line_next_y + 0x0000000040119b98 0x1a esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + *fill* 0x0000000040119bb2 0x2 + .text.line_next_x + 0x0000000040119bb4 0x1a esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + *fill* 0x0000000040119bce 0x2 + .text.line_draw_hor + 0x0000000040119bd0 0x6e esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + *fill* 0x0000000040119c3e 0x2 + .text.line_draw_ver + 0x0000000040119c40 0x6e esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + *fill* 0x0000000040119cae 0x2 + .text.line_draw_skew + 0x0000000040119cb0 0xb8c esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + 0xbf4 (size before relaxing) + .text.lv_draw_line + 0x000000004011a83c 0x216 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + 0x226 (size before relaxing) + 0x000000004011a83c lv_draw_line + *fill* 0x000000004011aa52 0x2 + .text.tri_draw_flat + 0x000000004011aa54 0x2da esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + 0x2de (size before relaxing) + 0x000000004011aa54 tri_draw_flat + *fill* 0x000000004011ad2e 0x2 + .text.tri_draw_tall + 0x000000004011ad30 0x26b esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + 0x273 (size before relaxing) + 0x000000004011ad30 tri_draw_tall + *fill* 0x000000004011af9b 0x1 + .text.lv_draw_triangle + 0x000000004011af9c 0xa2 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + 0x000000004011af9c lv_draw_triangle + *fill* 0x000000004011b03e 0x2 + .text.bits_write + 0x000000004011b040 0x8a esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + *fill* 0x000000004011b0ca 0x2 + .text.rle_init + 0x000000004011b0cc 0x28 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .text.rle_next + 0x000000004011b0f4 0x14e esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0x15a (size before relaxing) + *fill* 0x000000004011b242 0x2 + .text.decompress_line + 0x000000004011b244 0x1d esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + *fill* 0x000000004011b261 0x3 + .text.get_glyph_dsc_id + 0x000000004011b264 0xe4 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .text.get_kern_value + 0x000000004011b348 0xd5 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0xd9 (size before relaxing) + *fill* 0x000000004011b41d 0x3 + .text.decompress + 0x000000004011b420 0xa6 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0xae (size before relaxing) + *fill* 0x000000004011b4c6 0x2 + .text.lv_font_get_bitmap_fmt_txt + 0x000000004011b4c8 0xc9 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0xd1 (size before relaxing) + 0x000000004011b4c8 lv_font_get_bitmap_fmt_txt + *fill* 0x000000004011b591 0x3 + .text.lv_font_get_glyph_dsc_fmt_txt + 0x000000004011b594 0x81 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0x8d (size before relaxing) + 0x000000004011b594 lv_font_get_glyph_dsc_fmt_txt + *fill* 0x000000004011b615 0x3 + .text.lv_txt_utf8_next + 0x000000004011b618 0x140 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .text.lv_txt_utf8_prev + 0x000000004011b758 0x49 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + *fill* 0x000000004011b7a1 0x3 + .text.lv_txt_utf8_get_byte_id + 0x000000004011b7a4 0x23 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + *fill* 0x000000004011b7c7 0x1 + .text.lv_txt_utf8_get_char_id + 0x000000004011b7c8 0x25 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + *fill* 0x000000004011b7ed 0x3 + .text.lv_txt_utf8_get_length + 0x000000004011b7f0 0x26 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + *fill* 0x000000004011b816 0x2 + .text.lv_txt_get_next_word + 0x000000004011b818 0x1f6 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + *fill* 0x000000004011ba0e 0x2 + .text.lv_txt_get_next_line + 0x000000004011ba10 0xd5 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0xd9 (size before relaxing) + 0x000000004011ba10 lv_txt_get_next_line + *fill* 0x000000004011bae5 0x3 + .text.lv_txt_get_width + 0x000000004011bae8 0x8e esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x96 (size before relaxing) + 0x000000004011bae8 lv_txt_get_width + *fill* 0x000000004011bb76 0x2 + .text.lv_txt_get_size + 0x000000004011bb78 0xe0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0xe4 (size before relaxing) + 0x000000004011bb78 lv_txt_get_size + .text.lv_btn_design + 0x000000004011bc58 0x3a esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + *fill* 0x000000004011bc92 0x2 + .text.lv_btn_set_state + 0x000000004011bc94 0x34 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0x38 (size before relaxing) + 0x000000004011bc94 lv_btn_set_state + .text.lv_btn_set_style + 0x000000004011bcc8 0x4a esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0x000000004011bcc8 lv_btn_set_style + *fill* 0x000000004011bd12 0x2 + .text.lv_btn_create + 0x000000004011bd14 0x11a esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0x14e (size before relaxing) + 0x000000004011bd14 lv_btn_create + *fill* 0x000000004011be2e 0x2 + .text.lv_btn_get_toggle + 0x000000004011be30 0x10 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0x14 (size before relaxing) + 0x000000004011be30 lv_btn_get_toggle + .text.lv_btn_signal + 0x000000004011be40 0x1f6 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0x22e (size before relaxing) + *fill* 0x000000004011c036 0x2 + .text.lv_cont_layout_center + 0x000000004011c038 0xd2 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0xfa (size before relaxing) + *fill* 0x000000004011c10a 0x2 + .text.lv_cont_layout_pretty + 0x000000004011c10c 0x22b esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x286 (size before relaxing) + *fill* 0x000000004011c337 0x1 + .text.lv_cont_layout_grid + 0x000000004011c338 0xff esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x127 (size before relaxing) + *fill* 0x000000004011c437 0x1 + .text.lv_cont_refr_autofit + 0x000000004011c438 0x28b esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x2bf (size before relaxing) + *fill* 0x000000004011c6c3 0x1 + .text.lv_cont_create + 0x000000004011c6c4 0xec esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x108 (size before relaxing) + 0x000000004011c6c4 lv_cont_create + .text.lv_cont_set_layout + 0x000000004011c7b0 0x32 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x36 (size before relaxing) + 0x000000004011c7b0 lv_cont_set_layout + *fill* 0x000000004011c7e2 0x2 + .text.lv_cont_set_fit4 + 0x000000004011c7e4 0x87 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x8e (size before relaxing) + 0x000000004011c7e4 lv_cont_set_fit4 + *fill* 0x000000004011c86b 0x1 + .text.lv_cont_get_layout + 0x000000004011c86c 0x10 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x14 (size before relaxing) + 0x000000004011c86c lv_cont_get_layout + .text.lv_cont_layout_col + 0x000000004011c87c 0xa3 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0xbb (size before relaxing) + *fill* 0x000000004011c91f 0x1 + .text.lv_cont_layout_row + 0x000000004011c920 0x116 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x12e (size before relaxing) + *fill* 0x000000004011ca36 0x2 + .text.lv_cont_refr_layout + 0x000000004011ca38 0x64 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x73 (size before relaxing) + *fill* 0x000000004011ca9c 0x0 + .text.lv_cont_signal + 0x000000004011ca9c 0xab esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0xbe (size before relaxing) + *fill* 0x000000004011cb47 0x1 + .text.lv_cont_get_fit_left + 0x000000004011cb48 0x10 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x14 (size before relaxing) + 0x000000004011cb48 lv_cont_get_fit_left + .text.lv_cont_get_fit_right + 0x000000004011cb58 0x10 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x14 (size before relaxing) + 0x000000004011cb58 lv_cont_get_fit_right + .text.lv_cont_get_fit_top + 0x000000004011cb68 0x10 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x14 (size before relaxing) + 0x000000004011cb68 lv_cont_get_fit_top + .text.lv_img_design + 0x000000004011cb78 0x186 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x1a6 (size before relaxing) + *fill* 0x000000004011ccfe 0x2 + .text.lv_img_get_auto_size + 0x000000004011cd00 0x10 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x14 (size before relaxing) + 0x000000004011cd00 lv_img_get_auto_size + .text.lv_img_set_src + 0x000000004011cd10 0x14b esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x172 (size before relaxing) + 0x000000004011cd10 lv_img_set_src + *fill* 0x000000004011ce5b 0x1 + .text.lv_img_create + 0x000000004011ce5c 0xdc esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x108 (size before relaxing) + 0x000000004011ce5c lv_img_create + .text.lv_img_signal + 0x000000004011cf38 0x78 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x7c (size before relaxing) + .text.scrl_def_event_cb + 0x000000004011cfb0 0x68 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x70 (size before relaxing) + .text.lv_scrl_design + 0x000000004011d018 0xa0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0xb8 (size before relaxing) + .text.lv_page_sb_refresh + 0x000000004011d0b8 0x3d2 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x40a (size before relaxing) + *fill* 0x000000004011d48a 0x2 + .text.edge_flash_anim_end + 0x000000004011d48c 0x2c esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x30 (size before relaxing) + .text.edge_flash_anim + 0x000000004011d4b8 0x17 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x1b (size before relaxing) + *fill* 0x000000004011d4cf 0x1 + .text.lv_page_set_sb_mode + 0x000000004011d4d0 0x86 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x8a (size before relaxing) + 0x000000004011d4d0 lv_page_set_sb_mode + *fill* 0x000000004011d556 0x2 + .text.lv_page_set_style + 0x000000004011d558 0x68 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x7c (size before relaxing) + 0x000000004011d558 lv_page_set_style + .text.lv_page_get_scrl + 0x000000004011d5c0 0xc esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x10 (size before relaxing) + 0x000000004011d5c0 lv_page_get_scrl + .text.lv_page_get_style + 0x000000004011d5cc 0x41 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x45 (size before relaxing) + 0x000000004011d5cc lv_page_get_style + *fill* 0x000000004011d60d 0x3 + .text.lv_page_create + 0x000000004011d610 0x1d4 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x250 (size before relaxing) + 0x000000004011d610 lv_page_create + .text.lv_page_design + 0x000000004011d7e4 0x266 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x296 (size before relaxing) + *fill* 0x000000004011da4a 0x2 + .text.lv_page_scroll_hor + 0x000000004011da4c 0x4b esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x53 (size before relaxing) + 0x000000004011da4c lv_page_scroll_hor + *fill* 0x000000004011da97 0x1 + .text.lv_page_scroll_ver + 0x000000004011da98 0x4b esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x53 (size before relaxing) + 0x000000004011da98 lv_page_scroll_ver + *fill* 0x000000004011dae3 0x1 + .text.lv_page_signal + 0x000000004011dae4 0x342 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x3a2 (size before relaxing) + *fill* 0x000000004011de26 0x2 + .text.lv_page_start_edge_flash + 0x000000004011de28 0x50 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x54 (size before relaxing) + 0x000000004011de28 lv_page_start_edge_flash + .text.lv_page_scrollable_signal + 0x000000004011de78 0x464 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x4a0 (size before relaxing) + .text.select 0x000000004011e2dc 0x14 esp-idf/newlib/libnewlib.a(select.c.obj) + 0x18 (size before relaxing) + 0x000000004011e2dc select + .text.s_get_num_reserved_regions + 0x000000004011e2f0 0x11 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + *fill* 0x000000004011e301 0x3 + .text.s_prepare_reserved_regions + 0x000000004011e304 0x9e esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0xa2 (size before relaxing) + *fill* 0x000000004011e3a2 0x2 + .text.soc_get_available_memory_region_max_count + 0x000000004011e3a4 0x12 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x000000004011e3a4 soc_get_available_memory_region_max_count + *fill* 0x000000004011e3b6 0x2 + .text.soc_get_available_memory_regions + 0x000000004011e3b8 0x100 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x104 (size before relaxing) + 0x000000004011e3b8 soc_get_available_memory_regions + .text.rtcio_hal_isolate + 0x000000004011e4b8 0x12e esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + 0x13a (size before relaxing) + 0x000000004011e4b8 rtcio_hal_isolate + *fill* 0x000000004011e5e6 0x2 + .text.uart_hal_set_baudrate + 0x000000004011e5e8 0x6e esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004011e5e8 uart_hal_set_baudrate + *fill* 0x000000004011e656 0x2 + .text.uart_hal_get_baudrate + 0x000000004011e658 0x44 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004011e658 uart_hal_get_baudrate + .text.uart_hal_set_hw_flow_ctrl + 0x000000004011e69c 0x74 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004011e69c uart_hal_set_hw_flow_ctrl + .text.uart_hal_set_rx_timeout + 0x000000004011e710 0x56 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004011e710 uart_hal_set_rx_timeout + *fill* 0x000000004011e766 0x2 + .text.uart_hal_set_tx_idle_num + 0x000000004011e768 0x22 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004011e768 uart_hal_set_tx_idle_num + *fill* 0x000000004011e78a 0x2 + .text.uart_hal_set_txfifo_empty_thr + 0x000000004011e78c 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004011e78c uart_hal_set_txfifo_empty_thr + .text.uart_hal_init + 0x000000004011e7ac 0x108 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004011e7ac uart_hal_init + .text.mbedtls_clz + 0x000000004011e8b4 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x000000004011e8d1 0x3 + .text.mbedtls_int_div_int + 0x000000004011e8d4 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_zeroize + 0x000000004011e920 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + *fill* 0x000000004011e92d 0x3 + .text.mpi_uint_bigendian_to_host + 0x000000004011e930 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_bigendian_to_host + 0x000000004011e940 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x32 (size before relaxing) + *fill* 0x000000004011e96e 0x2 + .text.mbedtls_mpi_free + 0x000000004011e970 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x26 (size before relaxing) + 0x000000004011e970 mbedtls_mpi_free + *fill* 0x000000004011e992 0x2 + .text.mbedtls_mpi_grow + 0x000000004011e994 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x58 (size before relaxing) + 0x000000004011e994 mbedtls_mpi_grow + .text.mbedtls_mpi_shrink + 0x000000004011e9e0 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7a (size before relaxing) + 0x000000004011e9e0 mbedtls_mpi_shrink + *fill* 0x000000004011ea52 0x2 + .text.mbedtls_mpi_copy + 0x000000004011ea54 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011ea54 mbedtls_mpi_copy + *fill* 0x000000004011eaca 0x2 + .text.mbedtls_mpi_swap + 0x000000004011eacc 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011eacc mbedtls_mpi_swap + *fill* 0x000000004011eaf7 0x1 + .text.mbedtls_mpi_safe_cond_assign + 0x000000004011eaf8 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011eaf8 mbedtls_mpi_safe_cond_assign + .text.mbedtls_mpi_safe_cond_swap + 0x000000004011eb6c 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8e (size before relaxing) + 0x000000004011eb6c mbedtls_mpi_safe_cond_swap + *fill* 0x000000004011ebf6 0x2 + .text.mbedtls_mpi_lset + 0x000000004011ebf8 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011ebf8 mbedtls_mpi_lset + .text.mbedtls_mpi_set_bit + 0x000000004011ec30 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011ec30 mbedtls_mpi_set_bit + *fill* 0x000000004011ec97 0x1 + .text.mbedtls_mpi_bitlen + 0x000000004011ec98 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011ec98 mbedtls_mpi_bitlen + *fill* 0x000000004011ecd5 0x3 + .text.mbedtls_mpi_size + 0x000000004011ecd8 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x13 (size before relaxing) + 0x000000004011ecd8 mbedtls_mpi_size + *fill* 0x000000004011ece7 0x1 + .text.mbedtls_mpi_read_binary + 0x000000004011ece8 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x68 (size before relaxing) + 0x000000004011ece8 mbedtls_mpi_read_binary + .text.mbedtls_mpi_write_binary + 0x000000004011ed44 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011ed44 mbedtls_mpi_write_binary + .text.mbedtls_mpi_shift_l + 0x000000004011edc0 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xb9 (size before relaxing) + 0x000000004011edc0 mbedtls_mpi_shift_l + *fill* 0x000000004011ee71 0x3 + .text.mbedtls_mpi_shift_r + 0x000000004011ee74 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011ee74 mbedtls_mpi_shift_r + *fill* 0x000000004011ef1a 0x2 + .text.mbedtls_mpi_cmp_abs + 0x000000004011ef1c 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011ef1c mbedtls_mpi_cmp_abs + .text.mbedtls_mpi_cmp_mpi + 0x000000004011efa0 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011efa0 mbedtls_mpi_cmp_mpi + *fill* 0x000000004011f046 0x2 + .text.mbedtls_mpi_lt_mpi_ct + 0x000000004011f048 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa4 (size before relaxing) + 0x000000004011f048 mbedtls_mpi_lt_mpi_ct + .text.mbedtls_mpi_cmp_int + 0x000000004011f0e8 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011f0e8 mbedtls_mpi_cmp_int + *fill* 0x000000004011f112 0x2 + .text.mbedtls_mpi_add_abs + 0x000000004011f114 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xb2 (size before relaxing) + 0x000000004011f114 mbedtls_mpi_add_abs + *fill* 0x000000004011f1c2 0x2 + .text.mbedtls_mpi_sub_abs + 0x000000004011f1c4 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7a (size before relaxing) + 0x000000004011f1c4 mbedtls_mpi_sub_abs + *fill* 0x000000004011f232 0x2 + .text.mbedtls_mpi_add_mpi + 0x000000004011f234 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x5a (size before relaxing) + 0x000000004011f234 mbedtls_mpi_add_mpi + *fill* 0x000000004011f286 0x2 + .text.mbedtls_mpi_sub_mpi + 0x000000004011f288 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x5a (size before relaxing) + 0x000000004011f288 mbedtls_mpi_sub_mpi + *fill* 0x000000004011f2da 0x2 + .text.mbedtls_mpi_add_int + 0x000000004011f2dc 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011f2dc mbedtls_mpi_add_int + .text.mbedtls_mpi_sub_int + 0x000000004011f308 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011f308 mbedtls_mpi_sub_int + .text.mbedtls_mpi_mul_int + 0x000000004011f334 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x20 (size before relaxing) + 0x000000004011f334 mbedtls_mpi_mul_int + .text.mbedtls_mpi_read_string + 0x000000004011f350 0x131 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x145 (size before relaxing) + 0x000000004011f350 mbedtls_mpi_read_string + *fill* 0x000000004011f481 0x3 + .text.mbedtls_mpi_div_mpi + 0x000000004011f484 0x380 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3f0 (size before relaxing) + 0x000000004011f484 mbedtls_mpi_div_mpi + .text.mbedtls_mpi_div_int + 0x000000004011f804 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011f804 mbedtls_mpi_div_int + *fill* 0x000000004011f832 0x2 + .text.mbedtls_mpi_mod_mpi + 0x000000004011f834 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x6c (size before relaxing) + 0x000000004011f834 mbedtls_mpi_mod_mpi + .text.mbedtls_mpi_mod_int + 0x000000004011f898 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004011f898 mbedtls_mpi_mod_int + *fill* 0x000000004011f916 0x2 + .text.mpi_write_hlp + 0x000000004011f918 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7e (size before relaxing) + *fill* 0x000000004011f98e 0x2 + .text.mbedtls_mpi_write_string + 0x000000004011f990 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10c (size before relaxing) + 0x000000004011f990 mbedtls_mpi_write_string + .text.mbedtls_mpi_write_file + 0x000000004011fa90 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa0 (size before relaxing) + 0x000000004011fa90 mbedtls_mpi_write_file + .text.mpi_check_small_factors + 0x000000004011fb24 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x54 (size before relaxing) + .text.mbedtls_mpi_gcd + 0x000000004011fb74 0x10b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14b (size before relaxing) + 0x000000004011fb74 mbedtls_mpi_gcd + *fill* 0x000000004011fc7f 0x1 + .text.mbedtls_mpi_fill_random + 0x000000004011fc80 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x68 (size before relaxing) + 0x000000004011fc80 mbedtls_mpi_fill_random + .text.mpi_miller_rabin + 0x000000004011fcdc 0x1b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x205 (size before relaxing) + *fill* 0x000000004011fe91 0x3 + .text.mbedtls_mpi_inv_mod + 0x000000004011fe94 0x2a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x334 (size before relaxing) + 0x000000004011fe94 mbedtls_mpi_inv_mod + .text.mbedtls_mpi_is_prime_ext + 0x0000000040120138 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x64 (size before relaxing) + 0x0000000040120138 mbedtls_mpi_is_prime_ext + .text.mbedtls_mpi_gen_prime + 0x0000000040120190 0x210 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x23c (size before relaxing) + 0x0000000040120190 mbedtls_mpi_gen_prime + .text.block_cipher_df + 0x00000000401203a0 0x1a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x1ba (size before relaxing) + *fill* 0x0000000040120546 0x2 + .text.ctr_drbg_update_internal + 0x0000000040120548 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_init + 0x00000000401205ec 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x00000000401205ec mbedtls_ctr_drbg_init + *fill* 0x00000000401205fe 0x2 + .text.mbedtls_ctr_drbg_free + 0x0000000040120600 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x1a (size before relaxing) + 0x0000000040120600 mbedtls_ctr_drbg_free + *fill* 0x0000000040120616 0x2 + .text.mbedtls_ctr_drbg_reseed + 0x0000000040120618 0x8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x97 (size before relaxing) + 0x0000000040120618 mbedtls_ctr_drbg_reseed + *fill* 0x00000000401206a7 0x1 + .text.mbedtls_ctr_drbg_seed + 0x00000000401206a8 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x54 (size before relaxing) + 0x00000000401206a8 mbedtls_ctr_drbg_seed + .text.mbedtls_ctr_drbg_random_with_add + 0x00000000401206f4 0xf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x103 (size before relaxing) + 0x00000000401206f4 mbedtls_ctr_drbg_random_with_add + *fill* 0x00000000401207e7 0x1 + .text.mbedtls_ctr_drbg_random + 0x00000000401207e8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x18 (size before relaxing) + 0x00000000401207e8 mbedtls_ctr_drbg_random + .text.ecp_check_pubkey_mx + 0x00000000401207fc 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x21 (size before relaxing) + *fill* 0x0000000040120819 0x3 + .text.ecp_modp + 0x000000004012081c 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x9b (size before relaxing) + *fill* 0x00000000401208b3 0x1 + .text.ecp_randomize_mxz + 0x00000000401208b4 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xd1 (size before relaxing) + *fill* 0x0000000040120961 0x3 + .text.ecp_randomize_jac + 0x0000000040120964 0x12d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x161 (size before relaxing) + *fill* 0x0000000040120a91 0x3 + .text.ecp_double_add_mxz + 0x0000000040120a94 0x38f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x427 (size before relaxing) + *fill* 0x0000000040120e23 0x1 + .text.ecp_normalize_mxz + 0x0000000040120e24 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x45 (size before relaxing) + *fill* 0x0000000040120e5d 0x3 + .text.ecp_normalize_jac + 0x0000000040120e60 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xfe (size before relaxing) + *fill* 0x0000000040120f2e 0x2 + .text.ecp_double_jac + 0x0000000040120f30 0x4b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x55e (size before relaxing) + *fill* 0x00000000401213e2 0x2 + .text.ecp_normalize_jac_many + 0x00000000401213e4 0x235 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x28d (size before relaxing) + *fill* 0x0000000040121619 0x3 + .text.ecp_safe_invert_jac + 0x000000004012161c 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x48 (size before relaxing) + *fill* 0x0000000040121655 0x3 + .text.ecp_select_comb + 0x0000000040121658 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x60 (size before relaxing) + .text.ecp_comb_recode_core + 0x00000000401216b0 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8e (size before relaxing) + *fill* 0x000000004012173a 0x2 + .text.ecp_comb_recode_scalar + 0x000000004012173c 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x91 (size before relaxing) + *fill* 0x00000000401217b1 0x3 + .text.ecp_check_pubkey_sw + 0x00000000401217b4 0x168 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x19c (size before relaxing) + .text.mbedtls_ecp_curve_list + 0x000000004012191c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004012191c mbedtls_ecp_curve_list + .text.mbedtls_ecp_grp_id_list + 0x0000000040121924 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040121924 mbedtls_ecp_grp_id_list + *fill* 0x0000000040121965 0x3 + .text.mbedtls_ecp_curve_info_from_grp_id + 0x0000000040121968 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040121968 mbedtls_ecp_curve_info_from_grp_id + .text.mbedtls_ecp_curve_info_from_tls_id + 0x0000000040121984 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + 0x0000000040121984 mbedtls_ecp_curve_info_from_tls_id + .text.mbedtls_ecp_curve_info_from_name + 0x00000000401219a4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x00000000401219a4 mbedtls_ecp_curve_info_from_name + *fill* 0x00000000401219d2 0x2 + .text.mbedtls_ecp_point_init + 0x00000000401219d4 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1f (size before relaxing) + 0x00000000401219d4 mbedtls_ecp_point_init + *fill* 0x00000000401219eb 0x1 + .text.mbedtls_ecp_group_init + 0x00000000401219ec 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x51 (size before relaxing) + 0x00000000401219ec mbedtls_ecp_group_init + *fill* 0x0000000040121a2d 0x3 + .text.mbedtls_ecp_keypair_init + 0x0000000040121a30 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x22 (size before relaxing) + 0x0000000040121a30 mbedtls_ecp_keypair_init + *fill* 0x0000000040121a4a 0x2 + .text.mbedtls_ecp_point_free + 0x0000000040121a4c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + 0x0000000040121a4c mbedtls_ecp_point_free + .text.mbedtls_ecp_group_free + 0x0000000040121a64 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x77 (size before relaxing) + 0x0000000040121a64 mbedtls_ecp_group_free + *fill* 0x0000000040121ac7 0x1 + .text.mbedtls_ecp_keypair_free + 0x0000000040121ac8 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x23 (size before relaxing) + 0x0000000040121ac8 mbedtls_ecp_keypair_free + *fill* 0x0000000040121ae3 0x1 + .text.mbedtls_ecp_copy + 0x0000000040121ae4 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + 0x0000000040121ae4 mbedtls_ecp_copy + .text.ecp_mul_mxz + 0x0000000040121b08 0x101 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x141 (size before relaxing) + *fill* 0x0000000040121c09 0x3 + .text.mbedtls_ecp_group_copy + 0x0000000040121c0c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040121c0c mbedtls_ecp_group_copy + *fill* 0x0000000040121c1d 0x3 + .text.mbedtls_ecp_set_zero + 0x0000000040121c20 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2a (size before relaxing) + 0x0000000040121c20 mbedtls_ecp_set_zero + *fill* 0x0000000040121c42 0x2 + .text.ecp_add_mixed + 0x0000000040121c44 0x411 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4b1 (size before relaxing) + *fill* 0x0000000040122055 0x3 + .text.ecp_precompute_comb + 0x0000000040122058 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.ecp_mul_comb_core + 0x0000000040122180 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xa4 (size before relaxing) + .text.ecp_mul_comb_after_precomp + 0x0000000040122210 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5d (size before relaxing) + *fill* 0x0000000040122261 0x3 + .text.ecp_mul_comb + 0x0000000040122264 0x122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x132 (size before relaxing) + *fill* 0x0000000040122386 0x2 + .text.mbedtls_ecp_is_zero + 0x0000000040122388 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040122388 mbedtls_ecp_is_zero + *fill* 0x000000004012239f 0x1 + .text.mbedtls_ecp_point_cmp + 0x00000000401223a0 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42 (size before relaxing) + 0x00000000401223a0 mbedtls_ecp_point_cmp + *fill* 0x00000000401223da 0x2 + .text.mbedtls_ecp_point_write_binary + 0x00000000401223dc 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xa8 (size before relaxing) + 0x00000000401223dc mbedtls_ecp_point_write_binary + .text.mbedtls_ecp_point_read_binary + 0x0000000040122478 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x7c (size before relaxing) + 0x0000000040122478 mbedtls_ecp_point_read_binary + .text.mbedtls_ecp_tls_read_point + 0x00000000401224e4 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x00000000401224e4 mbedtls_ecp_tls_read_point + *fill* 0x0000000040122521 0x3 + .text.mbedtls_ecp_tls_write_point + 0x0000000040122524 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x32 (size before relaxing) + 0x0000000040122524 mbedtls_ecp_tls_write_point + *fill* 0x0000000040122552 0x2 + .text.mbedtls_ecp_tls_read_group_id + 0x0000000040122554 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040122554 mbedtls_ecp_tls_read_group_id + *fill* 0x000000004012259d 0x3 + .text.mbedtls_ecp_tls_write_group + 0x00000000401225a0 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x39 (size before relaxing) + 0x00000000401225a0 mbedtls_ecp_tls_write_group + *fill* 0x00000000401225d5 0x3 + .text.mbedtls_ecp_check_pubkey + 0x00000000401225d8 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x51 (size before relaxing) + 0x00000000401225d8 mbedtls_ecp_check_pubkey + *fill* 0x0000000040122625 0x3 + .text.mbedtls_ecp_check_privkey + 0x0000000040122628 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x98 (size before relaxing) + 0x0000000040122628 mbedtls_ecp_check_privkey + .text.mbedtls_ecp_mul_restartable + 0x00000000401226b0 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x6e (size before relaxing) + 0x00000000401226b0 mbedtls_ecp_mul_restartable + *fill* 0x0000000040122716 0x2 + .text.mbedtls_ecp_mul + 0x0000000040122718 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040122718 mbedtls_ecp_mul + *fill* 0x0000000040122735 0x3 + .text.mbedtls_ecp_mul_shortcuts + 0x0000000040122738 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x72 (size before relaxing) + *fill* 0x000000004012279a 0x2 + .text.mbedtls_ecp_muladd_restartable + 0x000000004012279c 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x77 (size before relaxing) + 0x000000004012279c mbedtls_ecp_muladd_restartable + *fill* 0x0000000040122803 0x1 + .text.mbedtls_ecp_muladd + 0x0000000040122804 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040122804 mbedtls_ecp_muladd + *fill* 0x0000000040122821 0x3 + .text.mbedtls_ecp_gen_privkey + 0x0000000040122824 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x12a (size before relaxing) + 0x0000000040122824 mbedtls_ecp_gen_privkey + *fill* 0x000000004012292e 0x2 + .text.mbedtls_ecp_gen_keypair_base + 0x0000000040122930 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x29 (size before relaxing) + 0x0000000040122930 mbedtls_ecp_gen_keypair_base + *fill* 0x0000000040122955 0x3 + .text.mbedtls_ecp_gen_keypair + 0x0000000040122958 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040122958 mbedtls_ecp_gen_keypair + *fill* 0x0000000040122972 0x2 + .text.mbedtls_ecp_gen_key + 0x0000000040122974 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x28 (size before relaxing) + 0x0000000040122974 mbedtls_ecp_gen_key + .text.mbedtls_ecp_check_pub_priv + 0x0000000040122998 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xbc (size before relaxing) + 0x0000000040122998 mbedtls_ecp_check_pub_priv .text.ecp_mod_p255 - 0x0000000040110fb4 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x0000000040122a30 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) 0xac (size before relaxing) .text.ecp_mod_p521 - 0x0000000040111050 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - *fill* 0x00000000401110c2 0x2 + 0x0000000040122acc 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x0000000040122b3e 0x2 .text.ecp_mod_p192 - 0x00000000401110c4 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x0000000040122b40 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .text.ecp_mod_p384 - 0x00000000401112e4 0x83c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x0000000040122d60 0x83c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) 0x844 (size before relaxing) .text.ecp_group_load - 0x0000000040111b20 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000004012359c 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) 0x7e (size before relaxing) - *fill* 0x0000000040111b96 0x2 + *fill* 0x0000000040123612 0x2 .text.ecp_use_curve25519 - 0x0000000040111b98 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x0000000040123614 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) 0xb7 (size before relaxing) - *fill* 0x0000000040111c2b 0x1 + *fill* 0x00000000401236a7 0x1 .text.ecp_mod_p224 - 0x0000000040111c2c 0x32c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x00000000401236a8 0x32c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) 0x334 (size before relaxing) .text.ecp_mod_p256 - 0x0000000040111f58 0x65c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x00000000401239d4 0x65c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) 0x660 (size before relaxing) .text.ecp_mod_p192k1 - 0x00000000401125b4 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x0000000040124030 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) 0x116 (size before relaxing) - *fill* 0x00000000401126c2 0x2 + *fill* 0x000000004012413e 0x2 .text.ecp_mod_p256k1 - 0x00000000401126c4 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x0000000040124140 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) 0x116 (size before relaxing) - *fill* 0x00000000401127ce 0x2 + *fill* 0x000000004012424a 0x2 .text.ecp_mod_p224k1 - 0x00000000401127d0 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000004012424c 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) 0x116 (size before relaxing) - *fill* 0x00000000401128de 0x2 + *fill* 0x000000004012435a 0x2 .text.mbedtls_ecp_group_load - 0x00000000401128e0 0x283 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x000000004012435c 0x283 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) 0x28e (size before relaxing) - 0x00000000401128e0 mbedtls_ecp_group_load - *fill* 0x0000000040112b63 0x1 + 0x000000004012435c mbedtls_ecp_group_load + *fill* 0x00000000401245df 0x1 .text.entropy_update - 0x0000000040112b64 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x00000000401245e0 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) 0x6a (size before relaxing) - *fill* 0x0000000040112bc6 0x2 + *fill* 0x0000000040124642 0x2 .text.entropy_gather_internal - 0x0000000040112bc8 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x0000000040124644 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) 0xa2 (size before relaxing) - *fill* 0x0000000040112c66 0x2 + *fill* 0x00000000401246e2 0x2 .text.mbedtls_entropy_free - 0x0000000040112c68 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x00000000401246e4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) 0x24 (size before relaxing) - 0x0000000040112c68 mbedtls_entropy_free + 0x00000000401246e4 mbedtls_entropy_free .text.mbedtls_entropy_init - 0x0000000040112c84 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x0000000040124700 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) 0x36 (size before relaxing) - 0x0000000040112c84 mbedtls_entropy_init - *fill* 0x0000000040112cb6 0x2 + 0x0000000040124700 mbedtls_entropy_init + *fill* 0x0000000040124732 0x2 .text.mbedtls_entropy_func - 0x0000000040112cb8 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x0000000040124734 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) 0xf8 (size before relaxing) - 0x0000000040112cb8 mbedtls_entropy_func + 0x0000000040124734 mbedtls_entropy_func .text.mbedtls_strerror - 0x0000000040112d9c 0xd5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + 0x0000000040124818 0xd5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) 0x102e (size before relaxing) - 0x0000000040112d9c mbedtls_strerror - *fill* 0x0000000040113afa 0x2 + 0x0000000040124818 mbedtls_strerror + *fill* 0x0000000040125576 0x2 .text.mbedtls_md_info_from_type - 0x0000000040113afc 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040113afc mbedtls_md_info_from_type - *fill* 0x0000000040113b3a 0x2 + 0x0000000040125578 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040125578 mbedtls_md_info_from_type + *fill* 0x00000000401255b6 0x2 .text.mbedtls_md_free - 0x0000000040113b3c 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x00000000401255b8 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) 0x38 (size before relaxing) - 0x0000000040113b3c mbedtls_md_free + 0x00000000401255b8 mbedtls_md_free .text.mbedtls_md_setup - 0x0000000040113b70 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x00000000401255ec 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) 0x55 (size before relaxing) - 0x0000000040113b70 mbedtls_md_setup - *fill* 0x0000000040113bc1 0x3 + 0x00000000401255ec mbedtls_md_setup + *fill* 0x000000004012563d 0x3 .text.mbedtls_md_starts - 0x0000000040113bc4 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040113bc4 mbedtls_md_starts - *fill* 0x0000000040113be5 0x3 + 0x0000000040125640 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040125640 mbedtls_md_starts + *fill* 0x0000000040125661 0x3 .text.mbedtls_md_update - 0x0000000040113be8 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040113be8 mbedtls_md_update - *fill* 0x0000000040113c0d 0x3 + 0x0000000040125664 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040125664 mbedtls_md_update + *fill* 0x0000000040125689 0x3 .text.mbedtls_md_finish - 0x0000000040113c10 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040113c10 mbedtls_md_finish - *fill* 0x0000000040113c35 0x3 + 0x000000004012568c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004012568c mbedtls_md_finish + *fill* 0x00000000401256b1 0x3 .text.mbedtls_md - 0x0000000040113c38 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040113c38 mbedtls_md - *fill* 0x0000000040113c52 0x2 + 0x00000000401256b4 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x00000000401256b4 mbedtls_md + *fill* 0x00000000401256ce 0x2 .text.mbedtls_md_hmac_starts - 0x0000000040113c54 0xd3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040113c54 mbedtls_md_hmac_starts - *fill* 0x0000000040113d27 0x1 + 0x00000000401256d0 0xd3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x00000000401256d0 mbedtls_md_hmac_starts + *fill* 0x00000000401257a3 0x1 .text.mbedtls_md_hmac_update - 0x0000000040113d28 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040113d28 mbedtls_md_hmac_update - *fill* 0x0000000040113d59 0x3 + 0x00000000401257a4 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x00000000401257a4 mbedtls_md_hmac_update + *fill* 0x00000000401257d5 0x3 .text.mbedtls_md_hmac_finish - 0x0000000040113d5c 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040113d5c mbedtls_md_hmac_finish + 0x00000000401257d8 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x00000000401257d8 mbedtls_md_hmac_finish .text.mbedtls_md_hmac_reset - 0x0000000040113dd0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040113dd0 mbedtls_md_hmac_reset + 0x000000004012584c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004012584c mbedtls_md_hmac_reset .text.mbedtls_md_process - 0x0000000040113e10 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040113e10 mbedtls_md_process - *fill* 0x0000000040113e32 0x2 + 0x000000004012588c 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004012588c mbedtls_md_process + *fill* 0x00000000401258ae 0x2 .text.md5_process_wrap - 0x0000000040113e34 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113e45 0x3 + 0x00000000401258b0 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x00000000401258c1 0x3 .text.md5_clone_wrap - 0x0000000040113e48 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113e57 0x1 + 0x00000000401258c4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x00000000401258d3 0x1 .text.md5_ctx_free - 0x0000000040113e58 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x00000000401258d4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x16 (size before relaxing) - *fill* 0x0000000040113e6a 0x2 + *fill* 0x00000000401258e6 0x2 .text.md5_ctx_alloc - 0x0000000040113e6c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x00000000401258e8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x1a (size before relaxing) - *fill* 0x0000000040113e82 0x2 + *fill* 0x00000000401258fe 0x2 .text.md5_finish_wrap - 0x0000000040113e84 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113e95 0x3 + 0x0000000040125900 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125911 0x3 .text.md5_update_wrap - 0x0000000040113e98 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x0000000040125914 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x14 (size before relaxing) .text.md5_starts_wrap - 0x0000000040113ea8 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x0000000040125924 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x10 (size before relaxing) .text.sha1_process_wrap - 0x0000000040113eb4 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113ec5 0x3 + 0x0000000040125930 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125941 0x3 .text.sha1_clone_wrap - 0x0000000040113ec8 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113ed7 0x1 + 0x0000000040125944 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125953 0x1 .text.sha1_ctx_free - 0x0000000040113ed8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x0000000040125954 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x16 (size before relaxing) - *fill* 0x0000000040113eea 0x2 + *fill* 0x0000000040125966 0x2 .text.sha1_ctx_alloc - 0x0000000040113eec 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x0000000040125968 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x1a (size before relaxing) - *fill* 0x0000000040113f02 0x2 + *fill* 0x000000004012597e 0x2 .text.sha1_finish_wrap - 0x0000000040113f04 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113f15 0x3 + 0x0000000040125980 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125991 0x3 .text.sha1_update_wrap - 0x0000000040113f18 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x0000000040125994 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x14 (size before relaxing) .text.sha1_starts_wrap - 0x0000000040113f28 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x00000000401259a4 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x10 (size before relaxing) .text.sha224_process_wrap - 0x0000000040113f34 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113f45 0x3 + 0x00000000401259b0 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x00000000401259c1 0x3 .text.sha224_clone_wrap - 0x0000000040113f48 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113f57 0x1 + 0x00000000401259c4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x00000000401259d3 0x1 .text.sha224_ctx_free - 0x0000000040113f58 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x00000000401259d4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x16 (size before relaxing) - *fill* 0x0000000040113f6a 0x2 + *fill* 0x00000000401259e6 0x2 .text.sha224_ctx_alloc - 0x0000000040113f6c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x00000000401259e8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x1a (size before relaxing) - *fill* 0x0000000040113f82 0x2 + *fill* 0x00000000401259fe 0x2 .text.sha224_wrap - 0x0000000040113f84 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113f99 0x3 + 0x0000000040125a00 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125a15 0x3 .text.sha256_wrap - 0x0000000040113f9c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113fb1 0x3 + 0x0000000040125a18 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125a2d 0x3 .text.sha224_finish_wrap - 0x0000000040113fb4 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113fc5 0x3 + 0x0000000040125a30 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125a41 0x3 .text.sha224_update_wrap - 0x0000000040113fc8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x0000000040125a44 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x14 (size before relaxing) .text.sha224_starts_wrap - 0x0000000040113fd8 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113fe9 0x3 + 0x0000000040125a54 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125a65 0x3 .text.sha256_starts_wrap - 0x0000000040113fec 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040113ffd 0x3 + 0x0000000040125a68 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125a79 0x3 .text.sha384_process_wrap - 0x0000000040114000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040114011 0x3 + 0x0000000040125a7c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125a8d 0x3 .text.sha384_clone_wrap - 0x0000000040114014 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040114023 0x1 + 0x0000000040125a90 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125a9f 0x1 .text.sha384_ctx_free - 0x0000000040114024 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x0000000040125aa0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x16 (size before relaxing) - *fill* 0x0000000040114036 0x2 + *fill* 0x0000000040125ab2 0x2 .text.sha384_ctx_alloc - 0x0000000040114038 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x0000000040125ab4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x1a (size before relaxing) - *fill* 0x000000004011404e 0x2 + *fill* 0x0000000040125aca 0x2 .text.sha384_wrap - 0x0000000040114050 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040114065 0x3 + 0x0000000040125acc 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125ae1 0x3 .text.sha512_wrap - 0x0000000040114068 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x000000004011407d 0x3 + 0x0000000040125ae4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125af9 0x3 .text.sha384_finish_wrap - 0x0000000040114080 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x0000000040114091 0x3 + 0x0000000040125afc 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125b0d 0x3 .text.sha384_update_wrap - 0x0000000040114094 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x0000000040125b10 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) 0x14 (size before relaxing) .text.sha384_starts_wrap - 0x00000000401140a4 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x00000000401140b5 0x3 + 0x0000000040125b20 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125b31 0x3 .text.sha512_starts_wrap - 0x00000000401140b8 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - *fill* 0x00000000401140c9 0x3 + 0x0000000040125b34 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x0000000040125b45 0x3 .text.mbedtls_pk_free - 0x00000000401140cc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x00000000401140cc mbedtls_pk_free + 0x0000000040125b48 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125b48 mbedtls_pk_free .text.mbedtls_pk_info_from_type - 0x00000000401140e8 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x00000000401140e8 mbedtls_pk_info_from_type - *fill* 0x0000000040114121 0x3 + 0x0000000040125b64 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125b64 mbedtls_pk_info_from_type + *fill* 0x0000000040125b9d 0x3 .text.mbedtls_pk_setup - 0x0000000040114124 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x0000000040114124 mbedtls_pk_setup - *fill* 0x000000004011414f 0x1 + 0x0000000040125ba0 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125ba0 mbedtls_pk_setup + *fill* 0x0000000040125bcb 0x1 .text.mbedtls_pk_verify_restartable - 0x0000000040114150 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125bcc 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) 0x4f (size before relaxing) - 0x0000000040114150 mbedtls_pk_verify_restartable - *fill* 0x000000004011419b 0x1 + 0x0000000040125bcc mbedtls_pk_verify_restartable + *fill* 0x0000000040125c17 0x1 .text.mbedtls_pk_verify - 0x000000004011419c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x000000004011419c mbedtls_pk_verify - *fill* 0x00000000401141b9 0x3 + 0x0000000040125c18 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125c18 mbedtls_pk_verify + *fill* 0x0000000040125c35 0x3 .text.mbedtls_pk_sign_restartable - 0x00000000401141bc 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125c38 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) 0x59 (size before relaxing) - 0x00000000401141bc mbedtls_pk_sign_restartable - *fill* 0x0000000040114211 0x3 + 0x0000000040125c38 mbedtls_pk_sign_restartable + *fill* 0x0000000040125c8d 0x3 .text.mbedtls_pk_sign - 0x0000000040114214 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x0000000040114214 mbedtls_pk_sign - *fill* 0x0000000040114239 0x3 + 0x0000000040125c90 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125c90 mbedtls_pk_sign + *fill* 0x0000000040125cb5 0x3 .text.mbedtls_pk_decrypt - 0x000000004011423c 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x000000004011423c mbedtls_pk_decrypt - *fill* 0x0000000040114271 0x3 + 0x0000000040125cb8 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125cb8 mbedtls_pk_decrypt + *fill* 0x0000000040125ced 0x3 .text.mbedtls_pk_encrypt - 0x0000000040114274 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x0000000040114274 mbedtls_pk_encrypt - *fill* 0x00000000401142a9 0x3 + 0x0000000040125cf0 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125cf0 mbedtls_pk_encrypt + *fill* 0x0000000040125d25 0x3 .text.mbedtls_pk_check_pair - 0x00000000401142ac 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x00000000401142ac mbedtls_pk_check_pair - *fill* 0x00000000401142f9 0x3 + 0x0000000040125d28 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125d28 mbedtls_pk_check_pair + *fill* 0x0000000040125d75 0x3 .text.mbedtls_pk_verify_ext - 0x00000000401142fc 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040125d78 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) 0xb2 (size before relaxing) - 0x00000000401142fc mbedtls_pk_verify_ext - *fill* 0x00000000401143a2 0x2 + 0x0000000040125d78 mbedtls_pk_verify_ext + *fill* 0x0000000040125e1e 0x2 .text.rsa_debug - 0x00000000401143a4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x00000000401143c2 0x2 + 0x0000000040125e20 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040125e3e 0x2 .text.eckey_debug - 0x00000000401143c4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x00000000401143d9 0x3 + 0x0000000040125e40 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040125e55 0x3 .text.rsa_free_wrap - 0x00000000401143dc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125e58 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x16 (size before relaxing) - *fill* 0x00000000401143ee 0x2 + *fill* 0x0000000040125e6a 0x2 .text.rsa_alloc_wrap - 0x00000000401143f0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125e6c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x1e (size before relaxing) - *fill* 0x000000004011440a 0x2 + *fill* 0x0000000040125e86 0x2 .text.rsa_check_pair_wrap - 0x000000004011440c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x000000004011441d 0x3 + 0x0000000040125e88 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040125e99 0x3 .text.rsa_get_bitlen - 0x0000000040114420 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125e9c 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x11 (size before relaxing) - *fill* 0x000000004011442d 0x3 + *fill* 0x0000000040125ea9 0x3 .text.rsa_encrypt_wrap - 0x0000000040114430 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125eac 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x31 (size before relaxing) - *fill* 0x000000004011445d 0x3 + *fill* 0x0000000040125ed9 0x3 .text.rsa_decrypt_wrap - 0x0000000040114460 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125edc 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x31 (size before relaxing) - *fill* 0x000000004011448d 0x3 + *fill* 0x0000000040125f09 0x3 .text.rsa_sign_wrap - 0x0000000040114490 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125f0c 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x28 (size before relaxing) .text.rsa_verify_wrap - 0x00000000401144b4 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125f30 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x3f (size before relaxing) - *fill* 0x00000000401144eb 0x1 + *fill* 0x0000000040125f67 0x1 .text.eckey_free_wrap - 0x00000000401144ec 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125f68 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x16 (size before relaxing) - *fill* 0x00000000401144fe 0x2 + *fill* 0x0000000040125f7a 0x2 .text.eckey_alloc_wrap - 0x0000000040114500 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125f7c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x1a (size before relaxing) - *fill* 0x0000000040114516 0x2 + *fill* 0x0000000040125f92 0x2 .text.eckey_check_pair - 0x0000000040114518 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x0000000040114529 0x3 + 0x0000000040125f94 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040125fa5 0x3 .text.ecdsa_alloc_wrap - 0x000000004011452c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125fa8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x1a (size before relaxing) - *fill* 0x0000000040114542 0x2 + *fill* 0x0000000040125fbe 0x2 .text.ecdsa_free_wrap - 0x0000000040114544 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125fc0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x16 (size before relaxing) - *fill* 0x0000000040114556 0x2 + *fill* 0x0000000040125fd2 0x2 .text.ecdsa_sign_wrap - 0x0000000040114558 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x0000000040114579 0x3 + 0x0000000040125fd4 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040125ff5 0x3 .text.eckey_sign_wrap - 0x000000004011457c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040125ff8 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x47 (size before relaxing) - *fill* 0x00000000401145b8 0x0 + *fill* 0x0000000040126034 0x0 .text.ecdsa_verify_wrap - 0x00000000401145b8 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040126034 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x21 (size before relaxing) - *fill* 0x00000000401145d5 0x3 + *fill* 0x0000000040126051 0x3 .text.eckey_verify_wrap - 0x00000000401145d8 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000040126054 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) 0x38 (size before relaxing) - *fill* 0x0000000040114605 0x3 + *fill* 0x0000000040126081 0x3 .text.pkcs5_parse_pbkdf2_params - 0x0000000040114608 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x0000000040126084 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) 0xaf (size before relaxing) - *fill* 0x00000000401146b3 0x1 + *fill* 0x000000004012612f 0x1 .text.mbedtls_pkcs5_pbkdf2_hmac - 0x00000000401146b4 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x0000000040126130 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) 0x114 (size before relaxing) - 0x00000000401146b4 mbedtls_pkcs5_pbkdf2_hmac + 0x0000000040126130 mbedtls_pkcs5_pbkdf2_hmac .text.mbedtls_pkcs5_pbes2 - 0x00000000401147b4 0x1ca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x0000000040126230 0x1ca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) 0x1f6 (size before relaxing) - 0x00000000401147b4 mbedtls_pkcs5_pbes2 - *fill* 0x000000004011497e 0x2 + 0x0000000040126230 mbedtls_pkcs5_pbes2 + *fill* 0x00000000401263fa 0x2 .text.pk_get_ecparams - 0x0000000040114980 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - *fill* 0x00000000401149dd 0x3 + 0x00000000401263fc 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + *fill* 0x0000000040126459 0x3 .text.pk_get_pk_alg - 0x00000000401149e0 0x83 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x000000004012645c 0x83 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x87 (size before relaxing) - *fill* 0x0000000040114a63 0x1 + *fill* 0x00000000401264df 0x1 .text.pk_get_rsapubkey - 0x0000000040114a64 0xdd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x00000000401264e0 0xdd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0xe9 (size before relaxing) - *fill* 0x0000000040114b41 0x3 + *fill* 0x00000000401265bd 0x3 .text.pk_group_from_specified - 0x0000000040114b44 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x00000000401265c0 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x212 (size before relaxing) - *fill* 0x0000000040114d26 0x2 + *fill* 0x00000000401267a2 0x2 .text.pk_group_id_from_group - 0x0000000040114d28 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x00000000401267a4 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0xd2 (size before relaxing) - *fill* 0x0000000040114dda 0x2 + *fill* 0x0000000040126856 0x2 .text.pk_group_id_from_specified - 0x0000000040114ddc 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x0000000040126858 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x30 (size before relaxing) - *fill* 0x0000000040114e01 0x3 + *fill* 0x000000004012687d 0x3 .text.pk_use_ecparams - 0x0000000040114e04 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x0000000040126880 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x48 (size before relaxing) .text.pk_get_ecpubkey - 0x0000000040114e48 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x00000000401268c4 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x2a (size before relaxing) - *fill* 0x0000000040114e6e 0x2 + *fill* 0x00000000401268ea 0x2 .text.asn1_get_nonzero_mpi - 0x0000000040114e70 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x00000000401268ec 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x27 (size before relaxing) - *fill* 0x0000000040114e8f 0x1 + *fill* 0x000000004012690b 0x1 .text.pk_parse_key_pkcs1_der - 0x0000000040114e90 0x17e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x000000004012690c 0x17e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x1b6 (size before relaxing) - *fill* 0x000000004011500e 0x2 + *fill* 0x0000000040126a8a 0x2 .text.pk_parse_key_sec1_der - 0x0000000040115010 0x183 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x0000000040126a8c 0x183 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x19f (size before relaxing) - *fill* 0x0000000040115193 0x1 + *fill* 0x0000000040126c0f 0x1 .text.pk_parse_key_pkcs8_unencrypted_der - 0x0000000040115194 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x0000000040126c10 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x102 (size before relaxing) - *fill* 0x000000004011527e 0x2 + *fill* 0x0000000040126cfa 0x2 .text.pk_parse_key_pkcs8_encrypted_der - 0x0000000040115280 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x0000000040126cfc 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x13e (size before relaxing) - *fill* 0x00000000401153b6 0x2 + *fill* 0x0000000040126e32 0x2 .text.mbedtls_pk_load_file - 0x00000000401153b8 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x0000000040126e34 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0xd0 (size before relaxing) - 0x00000000401153b8 mbedtls_pk_load_file + 0x0000000040126e34 mbedtls_pk_load_file .text.mbedtls_pk_parse_subpubkey - 0x0000000040115474 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x0000000040126ef0 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0xde (size before relaxing) - 0x0000000040115474 mbedtls_pk_parse_subpubkey - *fill* 0x000000004011553a 0x2 + 0x0000000040126ef0 mbedtls_pk_parse_subpubkey + *fill* 0x0000000040126fb6 0x2 .text.mbedtls_pk_parse_key - 0x000000004011553c 0x26a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x0000000040126fb8 0x26a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x2d6 (size before relaxing) - 0x000000004011553c mbedtls_pk_parse_key - *fill* 0x00000000401157a6 0x2 + 0x0000000040126fb8 mbedtls_pk_parse_key + *fill* 0x0000000040127222 0x2 .text.mbedtls_pk_parse_keyfile - 0x00000000401157a8 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x0000000040127224 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) 0x5b (size before relaxing) - 0x00000000401157a8 mbedtls_pk_parse_keyfile - *fill* 0x00000000401157f7 0x1 + 0x0000000040127224 mbedtls_pk_parse_keyfile + *fill* 0x0000000040127273 0x1 .text.pk_write_rsa_pubkey - 0x00000000401157f8 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x0000000040127274 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) 0x9a (size before relaxing) - *fill* 0x000000004011587e 0x2 + *fill* 0x00000000401272fa 0x2 .text.pk_write_ec_pubkey - 0x0000000040115880 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x00000000401272fc 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) 0x50 (size before relaxing) .text.pk_write_ec_param - 0x00000000401158cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x0000000040127348 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) 0x24 (size before relaxing) .text.pk_write_ec_private - 0x00000000401158ec 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x0000000040127368 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) 0x3a (size before relaxing) - *fill* 0x0000000040115922 0x2 + *fill* 0x000000004012739e 0x2 .text.mbedtls_pk_write_pubkey - 0x0000000040115924 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x00000000401273a0 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) 0x42 (size before relaxing) - 0x0000000040115924 mbedtls_pk_write_pubkey - *fill* 0x000000004011595a 0x2 + 0x00000000401273a0 mbedtls_pk_write_pubkey + *fill* 0x00000000401273d6 0x2 .text.mbedtls_pk_write_pubkey_der - 0x000000004011595c 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x00000000401273d8 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) 0xd8 (size before relaxing) - 0x000000004011595c mbedtls_pk_write_pubkey_der + 0x00000000401273d8 mbedtls_pk_write_pubkey_der .text.mbedtls_pk_write_key_der - 0x0000000040115a10 0x282 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x000000004012748c 0x282 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) 0x2f6 (size before relaxing) - 0x0000000040115a10 mbedtls_pk_write_key_der - *fill* 0x0000000040115c92 0x2 + 0x000000004012748c mbedtls_pk_write_key_der + *fill* 0x000000004012770e 0x2 .text.mbedtls_pk_write_key_pem - 0x0000000040115c94 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x0000000040127710 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) 0x6e (size before relaxing) - 0x0000000040115c94 mbedtls_pk_write_key_pem - *fill* 0x0000000040115cfa 0x2 + 0x0000000040127710 mbedtls_pk_write_key_pem + *fill* 0x0000000040127776 0x2 .text.mbedtls_calloc - 0x0000000040115cfc 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - 0x0000000040115cfc mbedtls_calloc + 0x0000000040127778 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x0000000040127778 mbedtls_calloc .text.mbedtls_free - 0x0000000040115d10 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - 0x0000000040115d10 mbedtls_free - *fill* 0x0000000040115d1f 0x1 + 0x000000004012778c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x000000004012778c mbedtls_free + *fill* 0x000000004012779b 0x1 .text.mbedtls_platform_zeroize - 0x0000000040115d20 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - 0x0000000040115d20 mbedtls_platform_zeroize - .text.if_int 0x0000000040115d38 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x000000004012779c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x000000004012779c mbedtls_platform_zeroize + .text.if_int 0x00000000401277b4 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x17 (size before relaxing) - *fill* 0x0000000040115d4b 0x1 + *fill* 0x00000000401277c7 0x1 .text.mem_move_to_left - 0x0000000040115d4c 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401277c8 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x64 (size before relaxing) .text.rsa_check_context - 0x0000000040115da8 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040127824 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0xe8 (size before relaxing) .text.rsa_prepare_blinding - 0x0000000040115e70 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401278ec 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0xc8 (size before relaxing) .text.mgf_mask - 0x0000000040115f1c 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040127998 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0xac (size before relaxing) .text.rsa_rsassa_pkcs1_v15_encode - 0x0000000040115fb8 0x152 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040127a34 0x152 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x15a (size before relaxing) - *fill* 0x000000004011610a 0x2 + *fill* 0x0000000040127b86 0x2 .text.mbedtls_rsa_import - 0x000000004011610c 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040127b88 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x75 (size before relaxing) - 0x000000004011610c mbedtls_rsa_import - *fill* 0x0000000040116171 0x3 + 0x0000000040127b88 mbedtls_rsa_import + *fill* 0x0000000040127bed 0x3 .text.mbedtls_rsa_import_raw - 0x0000000040116174 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040127bf0 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x89 (size before relaxing) - 0x0000000040116174 mbedtls_rsa_import_raw - *fill* 0x00000000401161f5 0x3 + 0x0000000040127bf0 mbedtls_rsa_import_raw + *fill* 0x0000000040127c71 0x3 .text.mbedtls_rsa_complete - 0x00000000401161f8 0x1f1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040127c74 0x1f1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x211 (size before relaxing) - 0x00000000401161f8 mbedtls_rsa_complete - *fill* 0x00000000401163e9 0x3 + 0x0000000040127c74 mbedtls_rsa_complete + *fill* 0x0000000040127e65 0x3 .text.mbedtls_rsa_export - 0x00000000401163ec 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040127e68 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0xd0 (size before relaxing) - 0x00000000401163ec mbedtls_rsa_export + 0x0000000040127e68 mbedtls_rsa_export .text.mbedtls_rsa_export_crt - 0x00000000401164a0 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040127f1c 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x8c (size before relaxing) - 0x00000000401164a0 mbedtls_rsa_export_crt + 0x0000000040127f1c mbedtls_rsa_export_crt .text.mbedtls_rsa_init - 0x0000000040116514 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x0000000040116514 mbedtls_rsa_init - *fill* 0x0000000040116532 0x2 + 0x0000000040127f90 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040127f90 mbedtls_rsa_init + *fill* 0x0000000040127fae 0x2 .text.mbedtls_rsa_check_pubkey - 0x0000000040116534 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040127fb0 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x68 (size before relaxing) - 0x0000000040116534 mbedtls_rsa_check_pubkey + 0x0000000040127fb0 mbedtls_rsa_check_pubkey .text.mbedtls_rsa_check_privkey - 0x0000000040116588 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128004 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x6b (size before relaxing) - 0x0000000040116588 mbedtls_rsa_check_privkey - *fill* 0x00000000401165eb 0x1 + 0x0000000040128004 mbedtls_rsa_check_privkey + *fill* 0x0000000040128067 0x1 .text.mbedtls_rsa_check_pub_priv - 0x00000000401165ec 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128068 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x41 (size before relaxing) - 0x00000000401165ec mbedtls_rsa_check_pub_priv - *fill* 0x0000000040116625 0x3 + 0x0000000040128068 mbedtls_rsa_check_pub_priv + *fill* 0x00000000401280a1 0x3 .text.mbedtls_rsa_public - 0x0000000040116628 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401280a4 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x82 (size before relaxing) - 0x0000000040116628 mbedtls_rsa_public - *fill* 0x000000004011669a 0x2 + 0x00000000401280a4 mbedtls_rsa_public + *fill* 0x0000000040128116 0x2 .text.mbedtls_rsa_private - 0x000000004011669c 0x264 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128118 0x264 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x2f4 (size before relaxing) - 0x000000004011669c mbedtls_rsa_private + 0x0000000040128118 mbedtls_rsa_private .text.mbedtls_rsa_rsaes_oaep_encrypt - 0x0000000040116900 0x14c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x000000004012837c 0x14c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x160 (size before relaxing) - 0x0000000040116900 mbedtls_rsa_rsaes_oaep_encrypt + 0x000000004012837c mbedtls_rsa_rsaes_oaep_encrypt .text.mbedtls_rsa_rsaes_pkcs1_v15_encrypt - 0x0000000040116a4c 0xfd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x0000000040116a4c mbedtls_rsa_rsaes_pkcs1_v15_encrypt - *fill* 0x0000000040116b49 0x3 + 0x00000000401284c8 0xfd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401284c8 mbedtls_rsa_rsaes_pkcs1_v15_encrypt + *fill* 0x00000000401285c5 0x3 .text.mbedtls_rsa_pkcs1_encrypt - 0x0000000040116b4c 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x0000000040116b4c mbedtls_rsa_pkcs1_encrypt + 0x00000000401285c8 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401285c8 mbedtls_rsa_pkcs1_encrypt .text.mbedtls_rsa_rsaes_oaep_decrypt - 0x0000000040116b98 0x201 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128614 0x201 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x225 (size before relaxing) - 0x0000000040116b98 mbedtls_rsa_rsaes_oaep_decrypt - *fill* 0x0000000040116d99 0x3 + 0x0000000040128614 mbedtls_rsa_rsaes_oaep_decrypt + *fill* 0x0000000040128815 0x3 .text.mbedtls_rsa_rsaes_pkcs1_v15_decrypt - 0x0000000040116d9c 0x1b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128818 0x1b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x1dd (size before relaxing) - 0x0000000040116d9c mbedtls_rsa_rsaes_pkcs1_v15_decrypt - *fill* 0x0000000040116f4d 0x3 + 0x0000000040128818 mbedtls_rsa_rsaes_pkcs1_v15_decrypt + *fill* 0x00000000401289c9 0x3 .text.mbedtls_rsa_pkcs1_decrypt - 0x0000000040116f50 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x0000000040116f50 mbedtls_rsa_pkcs1_decrypt + 0x00000000401289cc 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401289cc mbedtls_rsa_pkcs1_decrypt .text.mbedtls_rsa_rsassa_pss_sign - 0x0000000040116fa4 0x1e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128a20 0x1e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x218 (size before relaxing) - 0x0000000040116fa4 mbedtls_rsa_rsassa_pss_sign + 0x0000000040128a20 mbedtls_rsa_rsassa_pss_sign .text.mbedtls_rsa_rsassa_pkcs1_v15_sign - 0x0000000040117188 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128c04 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0xda (size before relaxing) - 0x0000000040117188 mbedtls_rsa_rsassa_pkcs1_v15_sign - *fill* 0x000000004011724e 0x2 + 0x0000000040128c04 mbedtls_rsa_rsassa_pkcs1_v15_sign + *fill* 0x0000000040128cca 0x2 .text.mbedtls_rsa_pkcs1_sign - 0x0000000040117250 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x0000000040117250 mbedtls_rsa_pkcs1_sign - *fill* 0x000000004011729d 0x3 + 0x0000000040128ccc 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128ccc mbedtls_rsa_pkcs1_sign + *fill* 0x0000000040128d19 0x3 .text.mbedtls_rsa_rsassa_pss_verify_ext - 0x00000000401172a0 0x222 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128d1c 0x222 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x246 (size before relaxing) - 0x00000000401172a0 mbedtls_rsa_rsassa_pss_verify_ext - *fill* 0x00000000401174c2 0x2 + 0x0000000040128d1c mbedtls_rsa_rsassa_pss_verify_ext + *fill* 0x0000000040128f3e 0x2 .text.mbedtls_rsa_rsassa_pss_verify - 0x00000000401174c4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x00000000401174c4 mbedtls_rsa_rsassa_pss_verify - *fill* 0x00000000401174f2 0x2 + 0x0000000040128f40 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128f40 mbedtls_rsa_rsassa_pss_verify + *fill* 0x0000000040128f6e 0x2 .text.mbedtls_rsa_rsassa_pkcs1_v15_verify - 0x00000000401174f4 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040128f70 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0xce (size before relaxing) - 0x00000000401174f4 mbedtls_rsa_rsassa_pkcs1_v15_verify - *fill* 0x00000000401175b2 0x2 + 0x0000000040128f70 mbedtls_rsa_rsassa_pkcs1_v15_verify + *fill* 0x000000004012902e 0x2 .text.mbedtls_rsa_pkcs1_verify - 0x00000000401175b4 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x00000000401175b4 mbedtls_rsa_pkcs1_verify - *fill* 0x0000000040117601 0x3 + 0x0000000040129030 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040129030 mbedtls_rsa_pkcs1_verify + *fill* 0x000000004012907d 0x3 .text.mbedtls_rsa_free - 0x0000000040117604 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040129080 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x82 (size before relaxing) - 0x0000000040117604 mbedtls_rsa_free - *fill* 0x0000000040117662 0x2 + 0x0000000040129080 mbedtls_rsa_free + *fill* 0x00000000401290de 0x2 .text.mbedtls_rsa_gen_key - 0x0000000040117664 0x1c6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401290e0 0x1c6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) 0x21a (size before relaxing) - 0x0000000040117664 mbedtls_rsa_gen_key - *fill* 0x000000004011782a 0x2 + 0x00000000401290e0 mbedtls_rsa_gen_key + *fill* 0x00000000401292a6 0x2 .text.mbedtls_rsa_deduce_primes - 0x000000004011782c 0x1d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x00000000401292a8 0x1d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) 0x224 (size before relaxing) - 0x000000004011782c mbedtls_rsa_deduce_primes + 0x00000000401292a8 mbedtls_rsa_deduce_primes .text.mbedtls_rsa_deduce_private_exponent - 0x0000000040117a00 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x000000004012947c 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) 0xc8 (size before relaxing) - 0x0000000040117a00 mbedtls_rsa_deduce_private_exponent + 0x000000004012947c mbedtls_rsa_deduce_private_exponent .text.mbedtls_rsa_validate_crt - 0x0000000040117aa0 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x000000004012951c 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) 0x16a (size before relaxing) - 0x0000000040117aa0 mbedtls_rsa_validate_crt - *fill* 0x0000000040117bda 0x2 + 0x000000004012951c mbedtls_rsa_validate_crt + *fill* 0x0000000040129656 0x2 .text.mbedtls_rsa_validate_params - 0x0000000040117bdc 0x1dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x0000000040129658 0x1dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) 0x228 (size before relaxing) - 0x0000000040117bdc mbedtls_rsa_validate_params + 0x0000000040129658 mbedtls_rsa_validate_params .text.mbedtls_rsa_deduce_crt - 0x0000000040117db8 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x0000000040129834 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) 0x7a (size before relaxing) - 0x0000000040117db8 mbedtls_rsa_deduce_crt - *fill* 0x0000000040117e26 0x2 + 0x0000000040129834 mbedtls_rsa_deduce_crt + *fill* 0x00000000401298a2 0x2 .text.mbedtls_sha1_ret - 0x0000000040117e28 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x00000000401298a4 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) 0x40 (size before relaxing) - 0x0000000040117e28 mbedtls_sha1_ret - *fill* 0x0000000040117e59 0x3 + 0x00000000401298a4 mbedtls_sha1_ret + *fill* 0x00000000401298d5 0x3 .text.mbedtls_sha256_ret - 0x0000000040117e5c 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x00000000401298d8 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) 0x42 (size before relaxing) - 0x0000000040117e5c mbedtls_sha256_ret - *fill* 0x0000000040117e8f 0x1 + 0x00000000401298d8 mbedtls_sha256_ret + *fill* 0x000000004012990b 0x1 .text.mbedtls_sha512_ret - 0x0000000040117e90 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x000000004012990c 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) 0x42 (size before relaxing) - 0x0000000040117e90 mbedtls_sha512_ret - *fill* 0x0000000040117ec3 0x1 + 0x000000004012990c mbedtls_sha512_ret + *fill* 0x000000004012993f 0x1 .text.mbedtls_hardware_poll - 0x0000000040117ec4 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - 0x0000000040117ec4 mbedtls_hardware_poll - *fill* 0x0000000040117ed7 0x1 + 0x0000000040129940 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x0000000040129940 mbedtls_hardware_poll + *fill* 0x0000000040129953 0x1 .text.mpi_words - 0x0000000040117ed8 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - *fill* 0x0000000040117ef9 0x3 + 0x0000000040129954 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x0000000040129975 0x3 .text.modular_inverse - 0x0000000040117efc 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x0000000040129978 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) .text.calculate_rinv - 0x0000000040117f78 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x00000000401299f4 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) 0x36 (size before relaxing) - *fill* 0x0000000040117fa3 0x1 + *fill* 0x0000000040129a1f 0x1 .text.esp_mpi_acquire_hardware - 0x0000000040117fa4 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x0000000040129a20 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) 0x14 (size before relaxing) - 0x0000000040117fa4 esp_mpi_acquire_hardware - *fill* 0x0000000040117fb5 0x3 + 0x0000000040129a20 esp_mpi_acquire_hardware + *fill* 0x0000000040129a31 0x3 .text.esp_mpi_release_hardware - 0x0000000040117fb8 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x0000000040129a34 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) 0x14 (size before relaxing) - 0x0000000040117fb8 esp_mpi_release_hardware - *fill* 0x0000000040117fc9 0x3 + 0x0000000040129a34 esp_mpi_release_hardware + *fill* 0x0000000040129a45 0x3 .text.mpi_montgomery_exp_calc - 0x0000000040117fcc 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x0000000040129a48 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) 0x115 (size before relaxing) - *fill* 0x00000000401180b1 0x3 + *fill* 0x0000000040129b2d 0x3 .text.mpi_mult_mpi_failover_mod_mult - 0x00000000401180b4 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x0000000040129b30 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) 0x4c (size before relaxing) - *fill* 0x00000000401180ed 0x3 + *fill* 0x0000000040129b69 0x3 .text.esp_mpi_mul_mpi_mod - 0x00000000401180f0 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x0000000040129b6c 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) 0xbd (size before relaxing) - 0x00000000401180f0 esp_mpi_mul_mpi_mod - *fill* 0x0000000040118185 0x3 + 0x0000000040129b6c esp_mpi_mul_mpi_mod + *fill* 0x0000000040129c01 0x3 .text.mbedtls_mpi_exp_mod - 0x0000000040118188 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x0000000040129c04 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) 0x11a (size before relaxing) - 0x0000000040118188 mbedtls_mpi_exp_mod - *fill* 0x000000004011827a 0x2 + 0x0000000040129c04 mbedtls_mpi_exp_mod + *fill* 0x0000000040129cf6 0x2 .text.mbedtls_mpi_mul_mpi - 0x000000004011827c 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x0000000040129cf8 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) 0x13c (size before relaxing) - 0x000000004011827c mbedtls_mpi_mul_mpi + 0x0000000040129cf8 mbedtls_mpi_mul_mpi .text.mpi_mult_mpi_overlong - 0x000000004011839c 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x0000000040129e18 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) 0x72 (size before relaxing) - *fill* 0x00000000401183fe 0x2 + *fill* 0x0000000040129e7a 0x2 .text.esp_mpi_enable_hardware_hw_op - 0x0000000040118400 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040129e7c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) 0x32 (size before relaxing) - 0x0000000040118400 esp_mpi_enable_hardware_hw_op - *fill* 0x000000004011842e 0x2 + 0x0000000040129e7c esp_mpi_enable_hardware_hw_op + *fill* 0x0000000040129eaa 0x2 .text.esp_mpi_disable_hardware_hw_op - 0x0000000040118430 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x0000000040118430 esp_mpi_disable_hardware_hw_op - *fill* 0x0000000040118452 0x2 + 0x0000000040129eac 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040129eac esp_mpi_disable_hardware_hw_op + *fill* 0x0000000040129ece 0x2 .text.esp_mpi_read_result_hw_op - 0x0000000040118454 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040129ed0 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) 0x55 (size before relaxing) - 0x0000000040118454 esp_mpi_read_result_hw_op - *fill* 0x00000000401184a5 0x3 + 0x0000000040129ed0 esp_mpi_read_result_hw_op + *fill* 0x0000000040129f21 0x3 .text.esp_mpi_mul_mpi_mod_hw_op - 0x00000000401184a8 0x125 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x00000000401184a8 esp_mpi_mul_mpi_mod_hw_op - *fill* 0x00000000401185cd 0x3 + 0x0000000040129f24 0x125 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040129f24 esp_mpi_mul_mpi_mod_hw_op + *fill* 0x000000004012a049 0x3 .text.esp_mpi_mul_mpi_hw_op - 0x00000000401185d0 0x99 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x00000000401185d0 esp_mpi_mul_mpi_hw_op - *fill* 0x0000000040118669 0x3 + 0x000000004012a04c 0x99 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004012a04c esp_mpi_mul_mpi_hw_op + *fill* 0x000000004012a0e5 0x3 .text.esp_mont_hw_op - 0x000000004011866c 0x146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004012a0e8 0x146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) 0x14e (size before relaxing) - 0x000000004011866c esp_mont_hw_op - *fill* 0x00000000401187b2 0x2 + 0x000000004012a0e8 esp_mont_hw_op + *fill* 0x000000004012a22e 0x2 .text.esp_mpi_mult_mpi_failover_mod_mult_hw_op - 0x00000000401187b4 0xfb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x00000000401187b4 esp_mpi_mult_mpi_failover_mod_mult_hw_op - *fill* 0x00000000401188af 0x1 + 0x000000004012a230 0xfb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004012a230 esp_mpi_mult_mpi_failover_mod_mult_hw_op + *fill* 0x000000004012a32b 0x1 .text.esp_aes_setkey_hardware - 0x00000000401188b0 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a32c 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) .text.esp_aes_block - 0x000000004011892c 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a3a8 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) 0xb6 (size before relaxing) - *fill* 0x00000000401189de 0x2 + *fill* 0x000000004012a45a 0x2 .text.esp_aes_acquire_hardware - 0x00000000401189e0 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a45c 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) 0x16 (size before relaxing) - 0x00000000401189e0 esp_aes_acquire_hardware - *fill* 0x00000000401189f3 0x1 + 0x000000004012a45c esp_aes_acquire_hardware + *fill* 0x000000004012a46f 0x1 .text.esp_aes_release_hardware - 0x00000000401189f4 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a470 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) 0x17 (size before relaxing) - 0x00000000401189f4 esp_aes_release_hardware - *fill* 0x0000000040118a07 0x1 + 0x000000004012a470 esp_aes_release_hardware + *fill* 0x000000004012a483 0x1 .text.esp_aes_init - 0x0000000040118a08 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x0000000040118a08 esp_aes_init - *fill* 0x0000000040118a1a 0x2 + 0x000000004012a484 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a484 esp_aes_init + *fill* 0x000000004012a496 0x2 .text.esp_aes_free - 0x0000000040118a1c 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x0000000040118a1c esp_aes_free - *fill* 0x0000000040118a2f 0x1 + 0x000000004012a498 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a498 esp_aes_free + *fill* 0x000000004012a4ab 0x1 .text.esp_aes_setkey - 0x0000000040118a30 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x0000000040118a30 esp_aes_setkey - *fill* 0x0000000040118a75 0x3 + 0x000000004012a4ac 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a4ac esp_aes_setkey + *fill* 0x000000004012a4f1 0x3 .text.esp_internal_aes_encrypt - 0x0000000040118a78 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a4f4 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) 0x61 (size before relaxing) - 0x0000000040118a78 esp_internal_aes_encrypt - *fill* 0x0000000040118acd 0x3 + 0x000000004012a4f4 esp_internal_aes_encrypt + *fill* 0x000000004012a549 0x3 .text.esp_internal_aes_decrypt - 0x0000000040118ad0 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a54c 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) 0x61 (size before relaxing) - 0x0000000040118ad0 esp_internal_aes_decrypt - *fill* 0x0000000040118b25 0x3 + 0x000000004012a54c esp_internal_aes_decrypt + *fill* 0x000000004012a5a1 0x3 .text.esp_aes_crypt_ecb - 0x0000000040118b28 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a5a4 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) 0x61 (size before relaxing) - 0x0000000040118b28 esp_aes_crypt_ecb - *fill* 0x0000000040118b7d 0x3 + 0x000000004012a5a4 esp_aes_crypt_ecb + *fill* 0x000000004012a5f9 0x3 .text.esp_aes_crypt_cbc - 0x0000000040118b80 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a5fc 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) 0xfa (size before relaxing) - 0x0000000040118b80 esp_aes_crypt_cbc - *fill* 0x0000000040118c72 0x2 + 0x000000004012a5fc esp_aes_crypt_cbc + *fill* 0x000000004012a6ee 0x2 .text.esp_aes_crypt_cfb128 - 0x0000000040118c74 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a6f0 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) 0xd6 (size before relaxing) - 0x0000000040118c74 esp_aes_crypt_cfb128 - *fill* 0x0000000040118d46 0x2 + 0x000000004012a6f0 esp_aes_crypt_cfb128 + *fill* 0x000000004012a7c2 0x2 .text.esp_aes_crypt_ctr - 0x0000000040118d48 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a7c4 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) 0xbc (size before relaxing) - 0x0000000040118d48 esp_aes_crypt_ctr + 0x000000004012a7c4 esp_aes_crypt_ctr .text.esp_aes_crypt_ofb - 0x0000000040118e00 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x000000004012a87c 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) 0xf6 (size before relaxing) - 0x0000000040118e00 esp_aes_crypt_ofb - *fill* 0x0000000040118eee 0x2 + 0x000000004012a87c esp_aes_crypt_ofb + *fill* 0x000000004012a96a 0x2 .text.mbedtls_sha1_software_process - 0x0000000040118ef0 0x1118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000004012a96c 0x1118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) .text.mbedtls_sha1_init - 0x000000004011a008 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x000000004011a008 mbedtls_sha1_init - *fill* 0x000000004011a01a 0x2 + 0x000000004012ba84 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000004012ba84 mbedtls_sha1_init + *fill* 0x000000004012ba96 0x2 .text.mbedtls_sha1_free - 0x000000004011a01c 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000004012ba98 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) 0x22 (size before relaxing) - 0x000000004011a01c mbedtls_sha1_free - *fill* 0x000000004011a037 0x1 + 0x000000004012ba98 mbedtls_sha1_free + *fill* 0x000000004012bab3 0x1 .text.mbedtls_sha1_clone - 0x000000004011a038 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x000000004011a038 mbedtls_sha1_clone - *fill* 0x000000004011a05f 0x1 + 0x000000004012bab4 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000004012bab4 mbedtls_sha1_clone + *fill* 0x000000004012badb 0x1 .text.mbedtls_sha1_starts_ret - 0x000000004011a060 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x000000004011a060 mbedtls_sha1_starts_ret - *fill* 0x000000004011a099 0x3 + 0x000000004012badc 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000004012badc mbedtls_sha1_starts_ret + *fill* 0x000000004012bb15 0x3 .text.mbedtls_internal_sha1_process - 0x000000004011a09c 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x000000004011a09c mbedtls_internal_sha1_process - *fill* 0x000000004011a0e5 0x3 + 0x000000004012bb18 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000004012bb18 mbedtls_internal_sha1_process + *fill* 0x000000004012bb61 0x3 .text.mbedtls_sha1_update_ret - 0x000000004011a0e8 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x000000004011a0e8 mbedtls_sha1_update_ret + 0x000000004012bb64 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000004012bb64 mbedtls_sha1_update_ret .text.mbedtls_sha1_finish_ret - 0x000000004011a17c 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000004012bbf8 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) 0x118 (size before relaxing) - 0x000000004011a17c mbedtls_sha1_finish_ret + 0x000000004012bbf8 mbedtls_sha1_finish_ret .text.mbedtls_sha256_software_process - 0x000000004011a284 0x9ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - *fill* 0x000000004011ac31 0x3 + 0x000000004012bd00 0x9ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x000000004012c6ad 0x3 .text.mbedtls_sha256_init - 0x000000004011ac34 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x000000004011ac34 mbedtls_sha256_init - *fill* 0x000000004011ac46 0x2 + 0x000000004012c6b0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x000000004012c6b0 mbedtls_sha256_init + *fill* 0x000000004012c6c2 0x2 .text.mbedtls_sha256_free - 0x000000004011ac48 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x000000004012c6c4 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) 0x22 (size before relaxing) - 0x000000004011ac48 mbedtls_sha256_free - *fill* 0x000000004011ac63 0x1 + 0x000000004012c6c4 mbedtls_sha256_free + *fill* 0x000000004012c6df 0x1 .text.mbedtls_sha256_clone - 0x000000004011ac64 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x000000004011ac64 mbedtls_sha256_clone - *fill* 0x000000004011ac8b 0x1 + 0x000000004012c6e0 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x000000004012c6e0 mbedtls_sha256_clone + *fill* 0x000000004012c707 0x1 .text.mbedtls_sha256_starts_ret - 0x000000004011ac8c 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x000000004011ac8c mbedtls_sha256_starts_ret - *fill* 0x000000004011ad06 0x2 + 0x000000004012c708 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x000000004012c708 mbedtls_sha256_starts_ret + *fill* 0x000000004012c782 0x2 .text.mbedtls_internal_sha256_process - 0x000000004011ad08 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x000000004011ad08 mbedtls_internal_sha256_process - *fill* 0x000000004011ad5a 0x2 + 0x000000004012c784 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x000000004012c784 mbedtls_internal_sha256_process + *fill* 0x000000004012c7d6 0x2 .text.mbedtls_sha256_update_ret - 0x000000004011ad5c 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x000000004011ad5c mbedtls_sha256_update_ret - *fill* 0x000000004011adef 0x1 + 0x000000004012c7d8 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x000000004012c7d8 mbedtls_sha256_update_ret + *fill* 0x000000004012c86b 0x1 .text.mbedtls_sha256_finish_ret - 0x000000004011adf0 0x155 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x000000004012c86c 0x155 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) 0x165 (size before relaxing) - 0x000000004011adf0 mbedtls_sha256_finish_ret - *fill* 0x000000004011af45 0x3 + 0x000000004012c86c mbedtls_sha256_finish_ret + *fill* 0x000000004012c9c1 0x3 .text.mbedtls_sha512_software_process - 0x000000004011af48 0xe93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - *fill* 0x000000004011bddb 0x1 + 0x000000004012c9c4 0xe93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x000000004012d857 0x1 .text.mbedtls_sha512_init - 0x000000004011bddc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - 0x000000004011bddc mbedtls_sha512_init - *fill* 0x000000004011bdee 0x2 + 0x000000004012d858 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000004012d858 mbedtls_sha512_init + *fill* 0x000000004012d86a 0x2 .text.mbedtls_sha512_free - 0x000000004011bdf0 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000004012d86c 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) 0x2a (size before relaxing) - 0x000000004011bdf0 mbedtls_sha512_free - *fill* 0x000000004011be17 0x1 + 0x000000004012d86c mbedtls_sha512_free + *fill* 0x000000004012d893 0x1 .text.mbedtls_sha512_clone - 0x000000004011be18 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - 0x000000004011be18 mbedtls_sha512_clone + 0x000000004012d894 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000004012d894 mbedtls_sha512_clone .text.mbedtls_sha512_starts_ret - 0x000000004011be40 0xde esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000004012d8bc 0xde esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) 0xe1 (size before relaxing) - 0x000000004011be40 mbedtls_sha512_starts_ret - *fill* 0x000000004011bf1e 0x2 + 0x000000004012d8bc mbedtls_sha512_starts_ret + *fill* 0x000000004012d99a 0x2 .text.mbedtls_internal_sha512_process - 0x000000004011bf20 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000004012d99c 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) 0x5e (size before relaxing) - 0x000000004011bf20 mbedtls_internal_sha512_process - *fill* 0x000000004011bf7a 0x2 + 0x000000004012d99c mbedtls_internal_sha512_process + *fill* 0x000000004012d9f6 0x2 .text.mbedtls_sha512_update_ret - 0x000000004011bf7c 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000004012d9f8 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) 0xc0 (size before relaxing) - 0x000000004011bf7c mbedtls_sha512_update_ret + 0x000000004012d9f8 mbedtls_sha512_update_ret .text.mbedtls_sha512_finish_ret - 0x000000004011c038 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000004012dab4 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) 0x27c (size before relaxing) - 0x000000004011c038 mbedtls_sha512_finish_ret + 0x000000004012dab4 mbedtls_sha512_finish_ret .text.mbedtls_asn1_get_tag - 0x000000004011c2ac 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x000000004011c2ac mbedtls_asn1_get_tag - *fill* 0x000000004011c2e1 0x3 + 0x000000004012dd28 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012dd28 mbedtls_asn1_get_tag + *fill* 0x000000004012dd5d 0x3 .text.mbedtls_asn1_get_bool - 0x000000004011c2e4 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x000000004011c2e4 mbedtls_asn1_get_bool + 0x000000004012dd60 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012dd60 mbedtls_asn1_get_bool .text.mbedtls_asn1_get_int - 0x000000004011c31c 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x000000004011c31c mbedtls_asn1_get_int + 0x000000004012dd98 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012dd98 mbedtls_asn1_get_int .text.mbedtls_asn1_get_mpi - 0x000000004011c37c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012ddf8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) 0x2c (size before relaxing) - 0x000000004011c37c mbedtls_asn1_get_mpi + 0x000000004012ddf8 mbedtls_asn1_get_mpi .text.mbedtls_asn1_get_bitstring - 0x000000004011c3a4 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x000000004011c3a4 mbedtls_asn1_get_bitstring - *fill* 0x000000004011c3f5 0x3 + 0x000000004012de20 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012de20 mbedtls_asn1_get_bitstring + *fill* 0x000000004012de71 0x3 .text.mbedtls_asn1_get_bitstring_null - 0x000000004011c3f8 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012de74 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) 0x30 (size before relaxing) - 0x000000004011c3f8 mbedtls_asn1_get_bitstring_null + 0x000000004012de74 mbedtls_asn1_get_bitstring_null .text.mbedtls_asn1_get_sequence_of - 0x000000004011c424 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012dea0 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) 0x82 (size before relaxing) - 0x000000004011c424 mbedtls_asn1_get_sequence_of - *fill* 0x000000004011c4a2 0x2 + 0x000000004012dea0 mbedtls_asn1_get_sequence_of + *fill* 0x000000004012df1e 0x2 .text.mbedtls_asn1_get_alg - 0x000000004011c4a4 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012df20 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) 0x91 (size before relaxing) - 0x000000004011c4a4 mbedtls_asn1_get_alg - *fill* 0x000000004011c52d 0x3 + 0x000000004012df20 mbedtls_asn1_get_alg + *fill* 0x000000004012dfa9 0x3 .text.mbedtls_asn1_get_alg_null - 0x000000004011c530 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x000000004011c530 mbedtls_asn1_get_alg_null - *fill* 0x000000004011c575 0x3 + 0x000000004012dfac 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012dfac mbedtls_asn1_get_alg_null + *fill* 0x000000004012dff1 0x3 .text.mbedtls_asn1_free_named_data - 0x000000004011c578 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012dff4 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) 0x22 (size before relaxing) - 0x000000004011c578 mbedtls_asn1_free_named_data - *fill* 0x000000004011c592 0x2 + 0x000000004012dff4 mbedtls_asn1_free_named_data + *fill* 0x000000004012e00e 0x2 .text.mbedtls_asn1_free_named_data_list - 0x000000004011c594 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004012e010 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) 0x21 (size before relaxing) - 0x000000004011c594 mbedtls_asn1_free_named_data_list - *fill* 0x000000004011c5b1 0x3 + 0x000000004012e010 mbedtls_asn1_free_named_data_list + *fill* 0x000000004012e02d 0x3 .text.asn1_find_named_data - 0x000000004011c5b4 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - *fill* 0x000000004011c5d5 0x3 + 0x000000004012e030 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + *fill* 0x000000004012e051 0x3 .text.mbedtls_asn1_write_len - 0x000000004011c5d8 0x127 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x000000004011c5d8 mbedtls_asn1_write_len - *fill* 0x000000004011c6ff 0x1 + 0x000000004012e054 0x127 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e054 mbedtls_asn1_write_len + *fill* 0x000000004012e17b 0x1 .text.mbedtls_asn1_write_raw_buffer - 0x000000004011c700 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x000000004011c700 mbedtls_asn1_write_raw_buffer - *fill* 0x000000004011c731 0x3 + 0x000000004012e17c 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e17c mbedtls_asn1_write_raw_buffer + *fill* 0x000000004012e1ad 0x3 .text.mbedtls_asn1_write_mpi - 0x000000004011c734 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e1b0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) 0x88 (size before relaxing) - 0x000000004011c734 mbedtls_asn1_write_mpi + 0x000000004012e1b0 mbedtls_asn1_write_mpi .text.mbedtls_asn1_write_null - 0x000000004011c7b4 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e230 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) 0x2a (size before relaxing) - 0x000000004011c7b4 mbedtls_asn1_write_null - *fill* 0x000000004011c7da 0x2 + 0x000000004012e230 mbedtls_asn1_write_null + *fill* 0x000000004012e256 0x2 .text.mbedtls_asn1_write_oid - 0x000000004011c7dc 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e258 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) 0x3e (size before relaxing) - 0x000000004011c7dc mbedtls_asn1_write_oid - *fill* 0x000000004011c812 0x2 + 0x000000004012e258 mbedtls_asn1_write_oid + *fill* 0x000000004012e28e 0x2 .text.mbedtls_asn1_write_algorithm_identifier - 0x000000004011c814 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e290 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) 0x51 (size before relaxing) - 0x000000004011c814 mbedtls_asn1_write_algorithm_identifier - *fill* 0x000000004011c859 0x3 + 0x000000004012e290 mbedtls_asn1_write_algorithm_identifier + *fill* 0x000000004012e2d5 0x3 .text.mbedtls_asn1_write_bool - 0x000000004011c85c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e2d8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) 0x4c (size before relaxing) - 0x000000004011c85c mbedtls_asn1_write_bool + 0x000000004012e2d8 mbedtls_asn1_write_bool .text.mbedtls_asn1_write_int - 0x000000004011c8a0 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e31c 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) 0x70 (size before relaxing) - 0x000000004011c8a0 mbedtls_asn1_write_int + 0x000000004012e31c mbedtls_asn1_write_int .text.mbedtls_asn1_write_tagged_string - 0x000000004011c90c 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e388 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) 0x41 (size before relaxing) - 0x000000004011c90c mbedtls_asn1_write_tagged_string - *fill* 0x000000004011c941 0x3 + 0x000000004012e388 mbedtls_asn1_write_tagged_string + *fill* 0x000000004012e3bd 0x3 .text.mbedtls_asn1_write_bitstring - 0x000000004011c944 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e3c0 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) 0x8c (size before relaxing) - 0x000000004011c944 mbedtls_asn1_write_bitstring + 0x000000004012e3c0 mbedtls_asn1_write_bitstring .text.mbedtls_asn1_write_octet_string - 0x000000004011c9c8 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e444 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) 0x3e (size before relaxing) - 0x000000004011c9c8 mbedtls_asn1_write_octet_string - *fill* 0x000000004011c9fe 0x2 + 0x000000004012e444 mbedtls_asn1_write_octet_string + *fill* 0x000000004012e47a 0x2 .text.mbedtls_asn1_store_named_data - 0x000000004011ca00 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004012e47c 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) 0xbc (size before relaxing) - 0x000000004011ca00 mbedtls_asn1_store_named_data + 0x000000004012e47c mbedtls_asn1_store_named_data .text.get_pkcs_padding - 0x000000004011caa0 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - *fill* 0x000000004011cb16 0x2 + 0x000000004012e51c 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x000000004012e592 0x2 .text.get_one_and_zeros_padding - 0x000000004011cb18 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - *fill* 0x000000004011cb86 0x2 + 0x000000004012e594 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x000000004012e602 0x2 .text.get_zeros_and_len_padding - 0x000000004011cb88 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012e604 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) .text.get_zeros_padding - 0x000000004011cbfc 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - *fill* 0x000000004011cc52 0x2 + 0x000000004012e678 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x000000004012e6ce 0x2 .text.get_no_padding - 0x000000004011cc54 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - *fill* 0x000000004011cc7d 0x3 + 0x000000004012e6d0 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x000000004012e6f9 0x3 .text.mbedtls_cipher_info_from_type - 0x000000004011cc80 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x000000004011cc80 mbedtls_cipher_info_from_type - *fill* 0x000000004011cc99 0x3 + 0x000000004012e6fc 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012e6fc mbedtls_cipher_info_from_type + *fill* 0x000000004012e715 0x3 .text.mbedtls_cipher_info_from_values - 0x000000004011cc9c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x000000004011cc9c mbedtls_cipher_info_from_values - *fill* 0x000000004011ccc1 0x3 + 0x000000004012e718 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012e718 mbedtls_cipher_info_from_values + *fill* 0x000000004012e73d 0x3 .text.mbedtls_cipher_init - 0x000000004011ccc4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x000000004011ccc4 mbedtls_cipher_init - *fill* 0x000000004011ccd6 0x2 + 0x000000004012e740 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012e740 mbedtls_cipher_init + *fill* 0x000000004012e752 0x2 .text.mbedtls_cipher_free - 0x000000004011ccd8 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012e754 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) 0x1e (size before relaxing) - 0x000000004011ccd8 mbedtls_cipher_free - *fill* 0x000000004011ccf3 0x1 + 0x000000004012e754 mbedtls_cipher_free + *fill* 0x000000004012e76f 0x1 .text.mbedtls_cipher_setkey - 0x000000004011ccf4 0x61 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x000000004011ccf4 mbedtls_cipher_setkey - *fill* 0x000000004011cd55 0x3 + 0x000000004012e770 0x61 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012e770 mbedtls_cipher_setkey + *fill* 0x000000004012e7d1 0x3 .text.mbedtls_cipher_set_iv - 0x000000004011cd58 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x000000004011cd58 mbedtls_cipher_set_iv - *fill* 0x000000004011cda2 0x2 + 0x000000004012e7d4 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012e7d4 mbedtls_cipher_set_iv + *fill* 0x000000004012e81e 0x2 .text.mbedtls_cipher_reset - 0x000000004011cda4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x000000004011cda4 mbedtls_cipher_reset - *fill* 0x000000004011cdb9 0x3 + 0x000000004012e820 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012e820 mbedtls_cipher_reset + *fill* 0x000000004012e835 0x3 .text.mbedtls_cipher_update - 0x000000004011cdbc 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012e838 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) 0x220 (size before relaxing) - 0x000000004011cdbc mbedtls_cipher_update + 0x000000004012e838 mbedtls_cipher_update .text.mbedtls_cipher_finish - 0x000000004011cfd8 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x000000004011cfd8 mbedtls_cipher_finish + 0x000000004012ea54 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012ea54 mbedtls_cipher_finish .text.mbedtls_cipher_set_padding_mode - 0x000000004011d0fc 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x000000004011d0fc mbedtls_cipher_set_padding_mode - *fill* 0x000000004011d179 0x3 + 0x000000004012eb78 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012eb78 mbedtls_cipher_set_padding_mode + *fill* 0x000000004012ebf5 0x3 .text.mbedtls_cipher_setup - 0x000000004011d17c 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x000000004011d17c mbedtls_cipher_setup - *fill* 0x000000004011d1b5 0x3 + 0x000000004012ebf8 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012ebf8 mbedtls_cipher_setup + *fill* 0x000000004012ec31 0x3 .text.mbedtls_cipher_crypt - 0x000000004011d1b8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012ec34 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) 0x4c (size before relaxing) - 0x000000004011d1b8 mbedtls_cipher_crypt + 0x000000004012ec34 mbedtls_cipher_crypt .text.mbedtls_cipher_auth_encrypt - 0x000000004011d1f8 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012ec74 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) 0x71 (size before relaxing) - 0x000000004011d1f8 mbedtls_cipher_auth_encrypt - *fill* 0x000000004011d265 0x3 + 0x000000004012ec74 mbedtls_cipher_auth_encrypt + *fill* 0x000000004012ece1 0x3 .text.mbedtls_cipher_auth_decrypt - 0x000000004011d268 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004012ece4 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) 0x76 (size before relaxing) - 0x000000004011d268 mbedtls_cipher_auth_decrypt - *fill* 0x000000004011d2d6 0x2 + 0x000000004012ece4 mbedtls_cipher_auth_decrypt + *fill* 0x000000004012ed52 0x2 .text.ccm_ctx_free - 0x000000004011d2d8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012ed54 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x16 (size before relaxing) - *fill* 0x000000004011d2ea 0x2 + *fill* 0x000000004012ed66 0x2 .text.ccm_ctx_alloc - 0x000000004011d2ec 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012ed68 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x1a (size before relaxing) - *fill* 0x000000004011d302 0x2 + *fill* 0x000000004012ed7e 0x2 .text.ccm_aes_setkey_wrap - 0x000000004011d304 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - *fill* 0x000000004011d319 0x3 + 0x000000004012ed80 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004012ed95 0x3 .text.gcm_ctx_free - 0x000000004011d31c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012ed98 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x16 (size before relaxing) - *fill* 0x000000004011d32e 0x2 + *fill* 0x000000004012edaa 0x2 .text.gcm_ctx_alloc - 0x000000004011d330 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012edac 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x1a (size before relaxing) - *fill* 0x000000004011d346 0x2 + *fill* 0x000000004012edc2 0x2 .text.gcm_aes_setkey_wrap - 0x000000004011d348 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - *fill* 0x000000004011d35d 0x3 + 0x000000004012edc4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004012edd9 0x3 .text.xts_aes_ctx_free - 0x000000004011d360 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012eddc 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x17 (size before relaxing) - *fill* 0x000000004011d373 0x1 + *fill* 0x000000004012edef 0x1 .text.xts_aes_ctx_alloc - 0x000000004011d374 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012edf0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x1a (size before relaxing) - *fill* 0x000000004011d38a 0x2 + *fill* 0x000000004012ee06 0x2 .text.xts_aes_setkey_dec_wrap - 0x000000004011d38c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012ee08 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x14 (size before relaxing) .text.xts_aes_setkey_enc_wrap - 0x000000004011d39c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012ee18 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x14 (size before relaxing) .text.aes_crypt_xts_wrap - 0x000000004011d3ac 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012ee28 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x2a (size before relaxing) - *fill* 0x000000004011d3d2 0x2 + *fill* 0x000000004012ee4e 0x2 .text.aes_ctx_free - 0x000000004011d3d4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012ee50 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x16 (size before relaxing) - *fill* 0x000000004011d3e6 0x2 + *fill* 0x000000004012ee62 0x2 .text.aes_ctx_alloc - 0x000000004011d3e8 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012ee64 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x20 (size before relaxing) .text.aes_setkey_dec_wrap - 0x000000004011d404 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012ee80 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x14 (size before relaxing) .text.aes_setkey_enc_wrap - 0x000000004011d414 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000004012ee90 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) 0x14 (size before relaxing) .text.aes_crypt_ctr_wrap - 0x000000004011d424 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - *fill* 0x000000004011d441 0x3 + 0x000000004012eea0 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004012eebd 0x3 .text.aes_crypt_ofb_wrap - 0x000000004011d444 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - *fill* 0x000000004011d45d 0x3 + 0x000000004012eec0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004012eed9 0x3 .text.aes_crypt_cfb128_wrap - 0x000000004011d460 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - *fill* 0x000000004011d47d 0x3 + 0x000000004012eedc 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004012eef9 0x3 .text.aes_crypt_cbc_wrap - 0x000000004011d480 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - *fill* 0x000000004011d499 0x3 + 0x000000004012eefc 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004012ef15 0x3 .text.aes_crypt_ecb_wrap - 0x000000004011d49c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - *fill* 0x000000004011d4b1 0x3 + 0x000000004012ef18 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004012ef2d 0x3 .text.derive_mpi - 0x000000004011d4b4 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012ef30 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) 0x5e (size before relaxing) - *fill* 0x000000004011d502 0x2 + *fill* 0x000000004012ef7e 0x2 .text.ecdsa_sign_restartable - 0x000000004011d504 0x1ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012ef80 0x1ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) 0x1fd (size before relaxing) - *fill* 0x000000004011d6b1 0x3 + *fill* 0x000000004012f12d 0x3 .text.ecdsa_sign_det_restartable - 0x000000004011d6b4 0x13f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012f130 0x13f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) 0x16f (size before relaxing) - *fill* 0x000000004011d7f3 0x1 + *fill* 0x000000004012f26f 0x1 .text.ecdsa_verify_restartable - 0x000000004011d7f4 0x134 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012f270 0x134 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) 0x17c (size before relaxing) .text.ecdsa_signature_to_asn1 - 0x000000004011d928 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012f3a4 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) 0x72 (size before relaxing) - *fill* 0x000000004011d98e 0x2 + *fill* 0x000000004012f40a 0x2 .text.mbedtls_ecdsa_write_signature_restartable - 0x000000004011d990 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012f40c 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) 0x68 (size before relaxing) - 0x000000004011d990 mbedtls_ecdsa_write_signature_restartable - *fill* 0x000000004011d9e6 0x2 + 0x000000004012f40c mbedtls_ecdsa_write_signature_restartable + *fill* 0x000000004012f462 0x2 .text.mbedtls_ecdsa_write_signature - 0x000000004011d9e8 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x000000004011d9e8 mbedtls_ecdsa_write_signature - *fill* 0x000000004011da0d 0x3 + 0x000000004012f464 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012f464 mbedtls_ecdsa_write_signature + *fill* 0x000000004012f489 0x3 .text.mbedtls_ecdsa_read_signature_restartable - 0x000000004011da10 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012f48c 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) 0xac (size before relaxing) - 0x000000004011da10 mbedtls_ecdsa_read_signature_restartable - *fill* 0x000000004011daa6 0x2 + 0x000000004012f48c mbedtls_ecdsa_read_signature_restartable + *fill* 0x000000004012f522 0x2 .text.mbedtls_ecdsa_read_signature - 0x000000004011daa8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0x000000004011daa8 mbedtls_ecdsa_read_signature - *fill* 0x000000004011dac1 0x3 + 0x000000004012f524 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012f524 mbedtls_ecdsa_read_signature + *fill* 0x000000004012f53d 0x3 .text.mbedtls_ecdsa_init - 0x000000004011dac4 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012f540 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) 0xe (size before relaxing) - 0x000000004011dac4 mbedtls_ecdsa_init - *fill* 0x000000004011dace 0x2 + 0x000000004012f540 mbedtls_ecdsa_init + *fill* 0x000000004012f54a 0x2 .text.mbedtls_ecdsa_free - 0x000000004011dad0 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012f54c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) 0xf (size before relaxing) - 0x000000004011dad0 mbedtls_ecdsa_free - *fill* 0x000000004011dadc 0x0 + 0x000000004012f54c mbedtls_ecdsa_free + *fill* 0x000000004012f558 0x0 .text.mbedtls_ecdsa_from_keypair - 0x000000004011dadc 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004012f558 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) 0x3f (size before relaxing) - 0x000000004011dadc mbedtls_ecdsa_from_keypair - *fill* 0x000000004011db10 0x0 + 0x000000004012f558 mbedtls_ecdsa_from_keypair + *fill* 0x000000004012f58c 0x0 .text.gcm_mult - 0x000000004011db10 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004012f58c 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) .text.gcm_gen_table - 0x000000004011dc48 0x17c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004012f6c4 0x17c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) .text.mbedtls_gcm_init - 0x000000004011ddc4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x000000004011ddc4 mbedtls_gcm_init - *fill* 0x000000004011ddd6 0x2 + 0x000000004012f840 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004012f840 mbedtls_gcm_init + *fill* 0x000000004012f852 0x2 .text.mbedtls_gcm_setkey - 0x000000004011ddd8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004012f854 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) 0x58 (size before relaxing) - 0x000000004011ddd8 mbedtls_gcm_setkey + 0x000000004012f854 mbedtls_gcm_setkey .text.mbedtls_gcm_starts - 0x000000004011de20 0x162 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004012f89c 0x162 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) 0x166 (size before relaxing) - 0x000000004011de20 mbedtls_gcm_starts - *fill* 0x000000004011df82 0x2 + 0x000000004012f89c mbedtls_gcm_starts + *fill* 0x000000004012f9fe 0x2 .text.mbedtls_gcm_update - 0x000000004011df84 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004012fa00 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) 0x10c (size before relaxing) - 0x000000004011df84 mbedtls_gcm_update + 0x000000004012fa00 mbedtls_gcm_update .text.mbedtls_gcm_finish - 0x000000004011e08c 0x105 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x000000004011e08c mbedtls_gcm_finish - *fill* 0x000000004011e191 0x3 + 0x000000004012fb08 0x105 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004012fb08 mbedtls_gcm_finish + *fill* 0x000000004012fc0d 0x3 .text.mbedtls_gcm_crypt_and_tag - 0x000000004011e194 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004012fc10 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) 0x38 (size before relaxing) - 0x000000004011e194 mbedtls_gcm_crypt_and_tag + 0x000000004012fc10 mbedtls_gcm_crypt_and_tag .text.mbedtls_gcm_auth_decrypt - 0x000000004011e1c4 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x000000004011e1c4 mbedtls_gcm_auth_decrypt + 0x000000004012fc40 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004012fc40 mbedtls_gcm_auth_decrypt .text.mbedtls_gcm_free - 0x000000004011e228 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004012fca4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) 0x1a (size before relaxing) - 0x000000004011e228 mbedtls_gcm_free - *fill* 0x000000004011e23e 0x2 + 0x000000004012fca4 mbedtls_gcm_free + *fill* 0x000000004012fcba 0x2 .text.mbedtls_hmac_drbg_init - 0x000000004011e240 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x000000004011e240 mbedtls_hmac_drbg_init - *fill* 0x000000004011e252 0x2 + 0x000000004012fcbc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004012fcbc mbedtls_hmac_drbg_init + *fill* 0x000000004012fcce 0x2 .text.mbedtls_hmac_drbg_update_ret - 0x000000004011e254 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004012fcd0 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) 0xe0 (size before relaxing) - 0x000000004011e254 mbedtls_hmac_drbg_update_ret + 0x000000004012fcd0 mbedtls_hmac_drbg_update_ret .text.hmac_drbg_reseed_core - 0x000000004011e31c 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004012fd98 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) 0xca (size before relaxing) - *fill* 0x000000004011e3e2 0x2 + *fill* 0x000000004012fe5e 0x2 .text.mbedtls_hmac_drbg_seed_buf - 0x000000004011e3e4 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004012fe60 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) 0x4e (size before relaxing) - 0x000000004011e3e4 mbedtls_hmac_drbg_seed_buf - *fill* 0x000000004011e422 0x2 + 0x000000004012fe60 mbedtls_hmac_drbg_seed_buf + *fill* 0x000000004012fe9e 0x2 .text.mbedtls_hmac_drbg_reseed - 0x000000004011e424 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0x000000004011e424 mbedtls_hmac_drbg_reseed - *fill* 0x000000004011e439 0x3 + 0x000000004012fea0 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004012fea0 mbedtls_hmac_drbg_reseed + *fill* 0x000000004012feb5 0x3 .text.mbedtls_hmac_drbg_random_with_add - 0x000000004011e43c 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004012feb8 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) 0xdc (size before relaxing) - 0x000000004011e43c mbedtls_hmac_drbg_random_with_add + 0x000000004012feb8 mbedtls_hmac_drbg_random_with_add .text.mbedtls_hmac_drbg_random - 0x000000004011e508 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004012ff84 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) 0x18 (size before relaxing) - 0x000000004011e508 mbedtls_hmac_drbg_random + 0x000000004012ff84 mbedtls_hmac_drbg_random .text.mbedtls_hmac_drbg_free - 0x000000004011e51c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004012ff98 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) 0x1a (size before relaxing) - 0x000000004011e51c mbedtls_hmac_drbg_free - *fill* 0x000000004011e532 0x2 + 0x000000004012ff98 mbedtls_hmac_drbg_free + *fill* 0x000000004012ffae 0x2 .text.mbedtls_md5_init - 0x000000004011e534 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x000000004011e534 mbedtls_md5_init - *fill* 0x000000004011e546 0x2 + 0x000000004012ffb0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x000000004012ffb0 mbedtls_md5_init + *fill* 0x000000004012ffc2 0x2 .text.mbedtls_md5_free - 0x000000004011e548 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x000000004012ffc4 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) 0x12 (size before relaxing) - 0x000000004011e548 mbedtls_md5_free - *fill* 0x000000004011e556 0x2 + 0x000000004012ffc4 mbedtls_md5_free + *fill* 0x000000004012ffd2 0x2 .text.mbedtls_md5_clone - 0x000000004011e558 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x000000004011e558 mbedtls_md5_clone - *fill* 0x000000004011e56a 0x2 + 0x000000004012ffd4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x000000004012ffd4 mbedtls_md5_clone + *fill* 0x000000004012ffe6 0x2 .text.mbedtls_md5_starts_ret - 0x000000004011e56c 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x000000004011e56c mbedtls_md5_starts_ret - *fill* 0x000000004011e58d 0x3 + 0x000000004012ffe8 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x000000004012ffe8 mbedtls_md5_starts_ret + *fill* 0x0000000040130009 0x3 .text.mbedtls_internal_md5_process - 0x000000004011e590 0x8bf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x000000004011e590 mbedtls_internal_md5_process - *fill* 0x000000004011ee4f 0x1 + 0x000000004013000c 0x8bf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x000000004013000c mbedtls_internal_md5_process + *fill* 0x00000000401308cb 0x1 .text.mbedtls_md5_update_ret - 0x000000004011ee50 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x000000004011ee50 mbedtls_md5_update_ret + 0x00000000401308cc 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x00000000401308cc mbedtls_md5_update_ret .text.mbedtls_md5_finish_ret - 0x000000004011eee4 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x0000000040130960 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) 0x104 (size before relaxing) - 0x000000004011eee4 mbedtls_md5_finish_ret + 0x0000000040130960 mbedtls_md5_finish_ret .text.mbedtls_md5_ret - 0x000000004011efe4 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x0000000040130a60 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) 0x40 (size before relaxing) - 0x000000004011efe4 mbedtls_md5_ret - *fill* 0x000000004011f015 0x3 + 0x0000000040130a60 mbedtls_md5_ret + *fill* 0x0000000040130a91 0x3 .text.oid_x520_attr_from_asn1 - 0x000000004011f018 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - *fill* 0x000000004011f04a 0x2 + 0x0000000040130a94 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040130ac6 0x2 .text.oid_x509_ext_from_asn1 - 0x000000004011f04c 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - *fill* 0x000000004011f07e 0x2 + 0x0000000040130ac8 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040130afa 0x2 .text.oid_sig_alg_from_asn1 - 0x000000004011f080 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - *fill* 0x000000004011f0b1 0x3 + 0x0000000040130afc 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040130b2d 0x3 .text.oid_pk_alg_from_asn1 - 0x000000004011f0b4 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - *fill* 0x000000004011f0e6 0x2 + 0x0000000040130b30 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040130b62 0x2 .text.oid_grp_id_from_asn1 - 0x000000004011f0e8 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - *fill* 0x000000004011f11a 0x2 + 0x0000000040130b64 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040130b96 0x2 .text.oid_cipher_alg_from_asn1 - 0x000000004011f11c 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - *fill* 0x000000004011f14e 0x2 + 0x0000000040130b98 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040130bca 0x2 .text.oid_md_alg_from_asn1 - 0x000000004011f150 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - *fill* 0x000000004011f182 0x2 + 0x0000000040130bcc 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040130bfe 0x2 .text.oid_md_hmac_from_asn1 - 0x000000004011f184 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - *fill* 0x000000004011f1b6 0x2 + 0x0000000040130c00 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040130c32 0x2 .text.oid_pkcs12_pbe_alg_from_asn1 - 0x000000004011f1b8 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - *fill* 0x000000004011f1ea 0x2 + 0x0000000040130c34 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040130c66 0x2 .text.mbedtls_oid_get_attr_short_name - 0x000000004011f1ec 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130c68 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) 0x1d (size before relaxing) - 0x000000004011f1ec mbedtls_oid_get_attr_short_name - *fill* 0x000000004011f205 0x3 + 0x0000000040130c68 mbedtls_oid_get_attr_short_name + *fill* 0x0000000040130c81 0x3 .text.mbedtls_oid_get_x509_ext_type - 0x000000004011f208 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130c84 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) 0x1c (size before relaxing) - 0x000000004011f208 mbedtls_oid_get_x509_ext_type + 0x0000000040130c84 mbedtls_oid_get_x509_ext_type .text.mbedtls_oid_get_sig_alg - 0x000000004011f220 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130c9c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) 0x21 (size before relaxing) - 0x000000004011f220 mbedtls_oid_get_sig_alg - *fill* 0x000000004011f23d 0x3 + 0x0000000040130c9c mbedtls_oid_get_sig_alg + *fill* 0x0000000040130cb9 0x3 .text.mbedtls_oid_get_oid_by_sig_alg - 0x000000004011f240 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x000000004011f240 mbedtls_oid_get_oid_by_sig_alg - *fill* 0x000000004011f26d 0x3 + 0x0000000040130cbc 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130cbc mbedtls_oid_get_oid_by_sig_alg + *fill* 0x0000000040130ce9 0x3 .text.mbedtls_oid_get_pk_alg - 0x000000004011f270 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130cec 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) 0x1c (size before relaxing) - 0x000000004011f270 mbedtls_oid_get_pk_alg + 0x0000000040130cec mbedtls_oid_get_pk_alg .text.mbedtls_oid_get_oid_by_pk_alg - 0x000000004011f288 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x000000004011f288 mbedtls_oid_get_oid_by_pk_alg - *fill* 0x000000004011f2ae 0x2 + 0x0000000040130d04 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130d04 mbedtls_oid_get_oid_by_pk_alg + *fill* 0x0000000040130d2a 0x2 .text.mbedtls_oid_get_ec_grp - 0x000000004011f2b0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130d2c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) 0x1d (size before relaxing) - 0x000000004011f2b0 mbedtls_oid_get_ec_grp - *fill* 0x000000004011f2c9 0x3 + 0x0000000040130d2c mbedtls_oid_get_ec_grp + *fill* 0x0000000040130d45 0x3 .text.mbedtls_oid_get_oid_by_ec_grp - 0x000000004011f2cc 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x000000004011f2cc mbedtls_oid_get_oid_by_ec_grp - *fill* 0x000000004011f2f2 0x2 + 0x0000000040130d48 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130d48 mbedtls_oid_get_oid_by_ec_grp + *fill* 0x0000000040130d6e 0x2 .text.mbedtls_oid_get_cipher_alg - 0x000000004011f2f4 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130d70 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) 0x1d (size before relaxing) - 0x000000004011f2f4 mbedtls_oid_get_cipher_alg - *fill* 0x000000004011f30d 0x3 + 0x0000000040130d70 mbedtls_oid_get_cipher_alg + *fill* 0x0000000040130d89 0x3 .text.mbedtls_oid_get_md_alg - 0x000000004011f310 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130d8c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) 0x1d (size before relaxing) - 0x000000004011f310 mbedtls_oid_get_md_alg - *fill* 0x000000004011f329 0x3 + 0x0000000040130d8c mbedtls_oid_get_md_alg + *fill* 0x0000000040130da5 0x3 .text.mbedtls_oid_get_oid_by_md - 0x000000004011f32c 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x000000004011f32c mbedtls_oid_get_oid_by_md - *fill* 0x000000004011f352 0x2 + 0x0000000040130da8 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130da8 mbedtls_oid_get_oid_by_md + *fill* 0x0000000040130dce 0x2 .text.mbedtls_oid_get_md_hmac - 0x000000004011f354 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130dd0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) 0x1d (size before relaxing) - 0x000000004011f354 mbedtls_oid_get_md_hmac - *fill* 0x000000004011f36d 0x3 + 0x0000000040130dd0 mbedtls_oid_get_md_hmac + *fill* 0x0000000040130de9 0x3 .text.mbedtls_oid_get_pkcs12_pbe_alg - 0x000000004011f370 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040130dec 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) 0x21 (size before relaxing) - 0x000000004011f370 mbedtls_oid_get_pkcs12_pbe_alg - *fill* 0x000000004011f38d 0x3 + 0x0000000040130dec mbedtls_oid_get_pkcs12_pbe_alg + *fill* 0x0000000040130e09 0x3 .text.pem_get_iv - 0x000000004011f390 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - *fill* 0x000000004011f3fd 0x3 + 0x0000000040130e0c 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + *fill* 0x0000000040130e79 0x3 .text.pem_pbkdf1 - 0x000000004011f400 0xcf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x0000000040130e7c 0xcf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) 0xef (size before relaxing) - *fill* 0x000000004011f4cf 0x1 + *fill* 0x0000000040130f4b 0x1 .text.pem_aes_decrypt - 0x000000004011f4d0 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x0000000040130f4c 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) 0x61 (size before relaxing) - *fill* 0x000000004011f51d 0x3 + *fill* 0x0000000040130f99 0x3 .text.mbedtls_pem_read_buffer - 0x000000004011f520 0x2c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x0000000040130f9c 0x2c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) 0x2e5 (size before relaxing) - 0x000000004011f520 mbedtls_pem_read_buffer - *fill* 0x000000004011f7e9 0x3 + 0x0000000040130f9c mbedtls_pem_read_buffer + *fill* 0x0000000040131265 0x3 .text.mbedtls_pem_free - 0x000000004011f7ec 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x0000000040131268 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) 0x2c (size before relaxing) - 0x000000004011f7ec mbedtls_pem_free + 0x0000000040131268 mbedtls_pem_free .text.mbedtls_pem_write_buffer - 0x000000004011f810 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x000000004013128c 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) 0x106 (size before relaxing) - 0x000000004011f810 mbedtls_pem_write_buffer - *fill* 0x000000004011f90e 0x2 + 0x000000004013128c mbedtls_pem_write_buffer + *fill* 0x000000004013138a 0x2 .text.pkcs12_parse_pbe_params - 0x000000004011f910 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - *fill* 0x000000004011f973 0x1 + 0x000000004013138c 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + *fill* 0x00000000401313ef 0x1 .text.pkcs12_fill_buffer - 0x000000004011f974 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - *fill* 0x000000004011f996 0x2 + 0x00000000401313f0 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + *fill* 0x0000000040131412 0x2 .text.mbedtls_pkcs12_pbe_sha1_rc4_128 - 0x000000004011f998 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - 0x000000004011f998 mbedtls_pkcs12_pbe_sha1_rc4_128 + 0x0000000040131414 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x0000000040131414 mbedtls_pkcs12_pbe_sha1_rc4_128 .text.mbedtls_pkcs12_derivation - 0x000000004011f9a0 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x000000004013141c 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) 0x26b (size before relaxing) - 0x000000004011f9a0 mbedtls_pkcs12_derivation - *fill* 0x000000004011fbd7 0x1 + 0x000000004013141c mbedtls_pkcs12_derivation + *fill* 0x0000000040131653 0x1 .text.pkcs12_pbe_derive_key_iv - 0x000000004011fbd8 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x0000000040131654 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) 0xbc (size before relaxing) .text.mbedtls_pkcs12_pbe - 0x000000004011fc90 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x000000004013170c 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) 0xfa (size before relaxing) - 0x000000004011fc90 mbedtls_pkcs12_pbe - *fill* 0x000000004011fd62 0x2 + 0x000000004013170c mbedtls_pkcs12_pbe + *fill* 0x00000000401317de 0x2 .text.esp_aes_xts_init - 0x000000004011fd64 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x00000000401317e0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) 0x17 (size before relaxing) - 0x000000004011fd64 esp_aes_xts_init - *fill* 0x000000004011fd74 0x0 + 0x00000000401317e0 esp_aes_xts_init + *fill* 0x00000000401317f0 0x0 .text.esp_aes_xts_free - 0x000000004011fd74 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x00000000401317f0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) 0x17 (size before relaxing) - 0x000000004011fd74 esp_aes_xts_free - *fill* 0x000000004011fd84 0x0 + 0x00000000401317f0 esp_aes_xts_free + *fill* 0x0000000040131800 0x0 .text.esp_aes_xts_setkey_enc - 0x000000004011fd84 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x0000000040131800 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) 0x36 (size before relaxing) - 0x000000004011fd84 esp_aes_xts_setkey_enc - *fill* 0x000000004011fdb2 0x2 + 0x0000000040131800 esp_aes_xts_setkey_enc + *fill* 0x000000004013182e 0x2 .text.esp_aes_xts_setkey_dec - 0x000000004011fdb4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x0000000040131830 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) 0x36 (size before relaxing) - 0x000000004011fdb4 esp_aes_xts_setkey_dec - *fill* 0x000000004011fde2 0x2 + 0x0000000040131830 esp_aes_xts_setkey_dec + *fill* 0x000000004013185e 0x2 .text.esp_aes_crypt_xts - 0x000000004011fde4 0x182 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x0000000040131860 0x182 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) 0x186 (size before relaxing) - 0x000000004011fde4 esp_aes_crypt_xts - *fill* 0x000000004011ff66 0x2 + 0x0000000040131860 esp_aes_crypt_xts + *fill* 0x00000000401319e2 0x2 .text.sha_get_engine_state - 0x000000004011ff68 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - *fill* 0x000000004011ffdf 0x1 + 0x00000000401319e4 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x0000000040131a5b 0x1 .text.esp_sha_lock_engine_common - 0x000000004011ffe0 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000040131a5c 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) 0x6e (size before relaxing) - *fill* 0x0000000040120042 0x2 + *fill* 0x0000000040131abe 0x2 .text.esp_sha_lock_memory_block - 0x0000000040120044 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x0000000040120044 esp_sha_lock_memory_block - *fill* 0x0000000040120052 0x2 + 0x0000000040131ac0 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000040131ac0 esp_sha_lock_memory_block + *fill* 0x0000000040131ace 0x2 .text.esp_sha_unlock_memory_block - 0x0000000040120054 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x0000000040120054 esp_sha_unlock_memory_block - *fill* 0x0000000040120062 0x2 + 0x0000000040131ad0 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000040131ad0 esp_sha_unlock_memory_block + *fill* 0x0000000040131ade 0x2 .text.esp_sha_try_lock_engine - 0x0000000040120064 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x0000000040120064 esp_sha_try_lock_engine - *fill* 0x0000000040120075 0x3 + 0x0000000040131ae0 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000040131ae0 esp_sha_try_lock_engine + *fill* 0x0000000040131af1 0x3 .text.esp_sha_unlock_engine - 0x0000000040120078 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000040131af4 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) 0x4a (size before relaxing) - 0x0000000040120078 esp_sha_unlock_engine - *fill* 0x00000000401200ba 0x2 + 0x0000000040131af4 esp_sha_unlock_engine + *fill* 0x0000000040131b36 0x2 .text.esp_sha_wait_idle - 0x00000000401200bc 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x00000000401200bc esp_sha_wait_idle - *fill* 0x00000000401200f1 0x3 + 0x0000000040131b38 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000040131b38 esp_sha_wait_idle + *fill* 0x0000000040131b6d 0x3 .text.esp_sha_read_digest_state - 0x00000000401200f4 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000040131b70 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) 0xfa (size before relaxing) - 0x00000000401200f4 esp_sha_read_digest_state - *fill* 0x00000000401201e2 0x2 + 0x0000000040131b70 esp_sha_read_digest_state + *fill* 0x0000000040131c5e 0x2 .text.esp_sha_block - 0x00000000401201e4 0x9b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000040131c60 0x9b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) 0xa7 (size before relaxing) - 0x00000000401201e4 esp_sha_block - *fill* 0x000000004012027f 0x1 + 0x0000000040131c60 esp_sha_block + *fill* 0x0000000040131cfb 0x1 .text.mbedtls_base64_encode - 0x0000000040120280 0x122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - 0x0000000040120280 mbedtls_base64_encode - *fill* 0x00000000401203a2 0x2 + 0x0000000040131cfc 0x122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x0000000040131cfc mbedtls_base64_encode + *fill* 0x0000000040131e1e 0x2 .text.mbedtls_base64_decode - 0x00000000401203a4 0x171 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - 0x00000000401203a4 mbedtls_base64_decode - *fill* 0x0000000040120515 0x3 + 0x0000000040131e20 0x171 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x0000000040131e20 mbedtls_base64_decode + *fill* 0x0000000040131f91 0x3 .text.ccm_auth_crypt - 0x0000000040120518 0x3da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x0000000040131f94 0x3da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) 0x3e6 (size before relaxing) - *fill* 0x00000000401208f2 0x2 + *fill* 0x000000004013236e 0x2 .text.mbedtls_ccm_init - 0x00000000401208f4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x00000000401208f4 mbedtls_ccm_init - *fill* 0x0000000040120906 0x2 + 0x0000000040132370 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x0000000040132370 mbedtls_ccm_init + *fill* 0x0000000040132382 0x2 .text.mbedtls_ccm_setkey - 0x0000000040120908 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x0000000040132384 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) 0x4c (size before relaxing) - 0x0000000040120908 mbedtls_ccm_setkey + 0x0000000040132384 mbedtls_ccm_setkey .text.mbedtls_ccm_free - 0x0000000040120948 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x00000000401323c4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) 0x1a (size before relaxing) - 0x0000000040120948 mbedtls_ccm_free - *fill* 0x000000004012095e 0x2 + 0x00000000401323c4 mbedtls_ccm_free + *fill* 0x00000000401323da 0x2 .text.mbedtls_ccm_star_encrypt_and_tag - 0x0000000040120960 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x00000000401323dc 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) 0x30 (size before relaxing) - 0x0000000040120960 mbedtls_ccm_star_encrypt_and_tag + 0x00000000401323dc mbedtls_ccm_star_encrypt_and_tag .text.mbedtls_ccm_encrypt_and_tag - 0x000000004012098c 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x0000000040132408 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) 0x31 (size before relaxing) - 0x000000004012098c mbedtls_ccm_encrypt_and_tag - *fill* 0x00000000401209b9 0x3 + 0x0000000040132408 mbedtls_ccm_encrypt_and_tag + *fill* 0x0000000040132435 0x3 .text.mbedtls_ccm_star_auth_decrypt - 0x00000000401209bc 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x0000000040132438 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) 0x68 (size before relaxing) - 0x00000000401209bc mbedtls_ccm_star_auth_decrypt + 0x0000000040132438 mbedtls_ccm_star_auth_decrypt .text.mbedtls_ccm_auth_decrypt - 0x0000000040120a20 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x000000004013249c 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) 0x31 (size before relaxing) - 0x0000000040120a20 mbedtls_ccm_auth_decrypt - *fill* 0x0000000040120a4d 0x3 + 0x000000004013249c mbedtls_ccm_auth_decrypt + *fill* 0x00000000401324c9 0x3 .text.x509_parse_int - 0x0000000040120a50 0x49 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - *fill* 0x0000000040120a99 0x3 + 0x00000000401324cc 0x49 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + *fill* 0x0000000040132515 0x3 .text.x509_date_is_valid - 0x0000000040120a9c 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - *fill* 0x0000000040120b75 0x3 + 0x0000000040132518 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + *fill* 0x00000000401325f1 0x3 .text.x509_parse_time - 0x0000000040120b78 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x00000000401325f4 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) 0xc8 (size before relaxing) .text.x509_get_attr_type_value - 0x0000000040120c28 0xd7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x00000000401326a4 0xd7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) 0xdb (size before relaxing) - *fill* 0x0000000040120cff 0x1 + *fill* 0x000000004013277b 0x1 .text.x509_get_hash_alg - 0x0000000040120d00 0x8a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000004013277c 0x8a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) 0x8e (size before relaxing) - *fill* 0x0000000040120d8a 0x2 + *fill* 0x0000000040132806 0x2 .text.mbedtls_x509_get_serial - 0x0000000040120d8c 0x5f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x0000000040120d8c mbedtls_x509_get_serial - *fill* 0x0000000040120deb 0x1 + 0x0000000040132808 0x5f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x0000000040132808 mbedtls_x509_get_serial + *fill* 0x0000000040132867 0x1 .text.mbedtls_x509_get_alg_null - 0x0000000040120dec 0x15 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x0000000040132868 0x15 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) 0x19 (size before relaxing) - 0x0000000040120dec mbedtls_x509_get_alg_null - *fill* 0x0000000040120e01 0x3 + 0x0000000040132868 mbedtls_x509_get_alg_null + *fill* 0x000000004013287d 0x3 .text.mbedtls_x509_get_alg - 0x0000000040120e04 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x0000000040120e04 mbedtls_x509_get_alg - *fill* 0x0000000040120e1e 0x2 + 0x0000000040132880 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x0000000040132880 mbedtls_x509_get_alg + *fill* 0x000000004013289a 0x2 .text.mbedtls_x509_get_rsassa_pss_params - 0x0000000040120e20 0x1be esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000004013289c 0x1be esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) 0x1da (size before relaxing) - 0x0000000040120e20 mbedtls_x509_get_rsassa_pss_params - *fill* 0x0000000040120fde 0x2 + 0x000000004013289c mbedtls_x509_get_rsassa_pss_params + *fill* 0x0000000040132a5a 0x2 .text.mbedtls_x509_get_name - 0x0000000040120fe0 0x6d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x0000000040132a5c 0x6d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) 0x71 (size before relaxing) - 0x0000000040120fe0 mbedtls_x509_get_name - *fill* 0x000000004012104d 0x3 + 0x0000000040132a5c mbedtls_x509_get_name + *fill* 0x0000000040132ac9 0x3 .text.mbedtls_x509_get_time - 0x0000000040121050 0x59 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x0000000040121050 mbedtls_x509_get_time - *fill* 0x00000000401210a9 0x3 + 0x0000000040132acc 0x59 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x0000000040132acc mbedtls_x509_get_time + *fill* 0x0000000040132b25 0x3 .text.mbedtls_x509_get_sig - 0x00000000401210ac 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x00000000401210ac mbedtls_x509_get_sig + 0x0000000040132b28 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x0000000040132b28 mbedtls_x509_get_sig .text.mbedtls_x509_get_sig_alg - 0x00000000401210e8 0x87 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x0000000040132b64 0x87 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) 0x8f (size before relaxing) - 0x00000000401210e8 mbedtls_x509_get_sig_alg - *fill* 0x000000004012116f 0x1 + 0x0000000040132b64 mbedtls_x509_get_sig_alg + *fill* 0x0000000040132beb 0x1 .text.mbedtls_x509_get_ext - 0x0000000040121170 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x0000000040132bec 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) 0x50 (size before relaxing) - 0x0000000040121170 mbedtls_x509_get_ext + 0x0000000040132bec mbedtls_x509_get_ext .text.mbedtls_x509_dn_gets - 0x00000000401211bc 0x141 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x0000000040132c38 0x141 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) 0x14d (size before relaxing) - 0x00000000401211bc mbedtls_x509_dn_gets - *fill* 0x00000000401212fd 0x3 + 0x0000000040132c38 mbedtls_x509_dn_gets + *fill* 0x0000000040132d79 0x3 .text.x509_get_uid - 0x0000000040121300 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040132d7c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x48 (size before relaxing) .text.x509_string_cmp - 0x0000000040121344 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040132dc0 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x78 (size before relaxing) .text.x509_name_cmp - 0x00000000401213b8 0x8c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040132e34 0x8c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x90 (size before relaxing) .text.x509_crt_check_ee_locally_trusted - 0x0000000040121444 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040132ec0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x3c (size before relaxing) .text.x509_get_version - 0x000000004012147c 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040132ef8 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) .text.x509_get_dates - 0x00000000401214cc 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040132f48 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x48 (size before relaxing) .text.x509_get_basic_constraints - 0x0000000040121510 0x86 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040132f8c 0x86 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x8a (size before relaxing) - *fill* 0x0000000040121596 0x2 + *fill* 0x0000000040133012 0x2 .text.x509_get_key_usage - 0x0000000040121598 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133014 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) .text.x509_get_ns_cert_type - 0x00000000401215f0 0x37 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - *fill* 0x0000000040121627 0x1 + 0x000000004013306c 0x37 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x00000000401330a3 0x1 .text.x509_get_ext_key_usage - 0x0000000040121628 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x00000000401330a4 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) .text.x509_get_subject_alt_name - 0x000000004012164c 0xcc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x00000000401330c8 0xcc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) .text.x509_get_crt_ext - 0x0000000040121718 0x1c6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133194 0x1c6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x1ca (size before relaxing) - *fill* 0x00000000401218de 0x2 + *fill* 0x000000004013335a 0x2 .text.x509_profile_check_key - 0x00000000401218e0 0x84 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x000000004013335c 0x84 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x88 (size before relaxing) .text.x509_check_wildcard - 0x0000000040121964 0x70 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x00000000401333e0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) .text.x509_crt_check_cn - 0x00000000401219d4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133450 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) .text.x509_crt_verify_name - 0x00000000401219fc 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133478 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) .text.x509_crt_check_signature - 0x0000000040121a74 0x60 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x00000000401334f0 0x60 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x70 (size before relaxing) .text.mbedtls_x509_crt_check_key_usage - 0x0000000040121ad4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x0000000040121ad4 mbedtls_x509_crt_check_key_usage + 0x0000000040133550 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133550 mbedtls_x509_crt_check_key_usage .text.x509_crt_check_parent - 0x0000000040121b14 0x3d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133590 0x3d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x41 (size before relaxing) - *fill* 0x0000000040121b51 0x3 + *fill* 0x00000000401335cd 0x3 .text.x509_crt_find_parent_in - 0x0000000040121b54 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x00000000401335d0 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0xa8 (size before relaxing) .text.x509_crt_find_parent - 0x0000000040121bf4 0x46 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - *fill* 0x0000000040121c3a 0x2 + 0x0000000040133670 0x46 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x00000000401336b6 0x2 .text.mbedtls_x509_crt_check_extended_key_usage - 0x0000000040121c3c 0x4a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x0000000040121c3c mbedtls_x509_crt_check_extended_key_usage - *fill* 0x0000000040121c86 0x2 + 0x00000000401336b8 0x4a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x00000000401336b8 mbedtls_x509_crt_check_extended_key_usage + *fill* 0x0000000040133702 0x2 .text.mbedtls_x509_crt_is_revoked - 0x0000000040121c88 0x41 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x0000000040121c88 mbedtls_x509_crt_is_revoked - *fill* 0x0000000040121cc9 0x3 + 0x0000000040133704 0x41 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133704 mbedtls_x509_crt_is_revoked + *fill* 0x0000000040133745 0x3 .text.x509_crt_verifycrl - 0x0000000040121ccc 0x119 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133748 0x119 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x129 (size before relaxing) - *fill* 0x0000000040121de5 0x3 + *fill* 0x0000000040133861 0x3 .text.x509_crt_verify_chain - 0x0000000040121de8 0x15b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133864 0x15b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x167 (size before relaxing) - *fill* 0x0000000040121f43 0x1 + *fill* 0x00000000401339bf 0x1 .text.mbedtls_x509_crt_verify_restartable - 0x0000000040121f44 0xac esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x00000000401339c0 0xac esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0xc0 (size before relaxing) - 0x0000000040121f44 mbedtls_x509_crt_verify_restartable + 0x00000000401339c0 mbedtls_x509_crt_verify_restartable .text.mbedtls_x509_crt_init - 0x0000000040121ff0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x0000000040121ff0 mbedtls_x509_crt_init - *fill* 0x0000000040122002 0x2 + 0x0000000040133a6c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133a6c mbedtls_x509_crt_init + *fill* 0x0000000040133a7e 0x2 .text.mbedtls_x509_crt_free - 0x0000000040122004 0xb7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133a80 0xb7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0xdb (size before relaxing) - 0x0000000040122004 mbedtls_x509_crt_free - *fill* 0x00000000401220bb 0x1 + 0x0000000040133a80 mbedtls_x509_crt_free + *fill* 0x0000000040133b37 0x1 .text.x509_crt_parse_der_core - 0x00000000401220bc 0x306 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133b38 0x306 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x35a (size before relaxing) - *fill* 0x00000000401223c2 0x2 + *fill* 0x0000000040133e3e 0x2 .text.mbedtls_x509_crt_parse_der - 0x00000000401223c4 0x80 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133e40 0x80 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x8c (size before relaxing) - 0x00000000401223c4 mbedtls_x509_crt_parse_der + 0x0000000040133e40 mbedtls_x509_crt_parse_der .text.mbedtls_x509_crt_parse - 0x0000000040122444 0xfc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133ec0 0xfc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x108 (size before relaxing) - 0x0000000040122444 mbedtls_x509_crt_parse + 0x0000000040133ec0 mbedtls_x509_crt_parse .text.mbedtls_x509_crt_parse_file - 0x0000000040122540 0x2b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x0000000040133fbc 0x2b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) 0x37 (size before relaxing) - 0x0000000040122540 mbedtls_x509_crt_parse_file - *fill* 0x000000004012256b 0x1 + 0x0000000040133fbc mbedtls_x509_crt_parse_file + *fill* 0x0000000040133fe7 0x1 .text.x509_csr_get_version - 0x000000004012256c 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x0000000040133fe8 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) 0x28 (size before relaxing) .text.mbedtls_x509_csr_init - 0x0000000040122590 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - 0x0000000040122590 mbedtls_x509_csr_init - *fill* 0x00000000401225a2 0x2 + 0x000000004013400c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x000000004013400c mbedtls_x509_csr_init + *fill* 0x000000004013401e 0x2 .text.mbedtls_x509_csr_free - 0x00000000401225a4 0x47 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x0000000040134020 0x47 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) 0x5a (size before relaxing) - 0x00000000401225a4 mbedtls_x509_csr_free - *fill* 0x00000000401225eb 0x1 + 0x0000000040134020 mbedtls_x509_csr_free + *fill* 0x0000000040134067 0x1 .text.mbedtls_x509_csr_parse_der - 0x00000000401225ec 0x1f2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x0000000040134068 0x1f2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) 0x226 (size before relaxing) - 0x00000000401225ec mbedtls_x509_csr_parse_der - *fill* 0x00000000401227de 0x2 + 0x0000000040134068 mbedtls_x509_csr_parse_der + *fill* 0x000000004013425a 0x2 .text.mbedtls_x509_csr_parse - 0x00000000401227e0 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x000000004013425c 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) 0xb8 (size before relaxing) - 0x00000000401227e0 mbedtls_x509_csr_parse + 0x000000004013425c mbedtls_x509_csr_parse .text.mbedtls_x509_csr_parse_file - 0x0000000040122888 0x2b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x0000000040134304 0x2b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) 0x37 (size before relaxing) - 0x0000000040122888 mbedtls_x509_csr_parse_file - *fill* 0x00000000401228b3 0x1 + 0x0000000040134304 mbedtls_x509_csr_parse_file + *fill* 0x000000004013432f 0x1 .text.x509_write_time - 0x00000000401228b4 0x81 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040134330 0x81 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) 0x95 (size before relaxing) - *fill* 0x0000000040122935 0x3 + *fill* 0x00000000401343b1 0x3 .text.mbedtls_x509write_crt_init - 0x0000000040122938 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x00000000401343b4 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) 0x1e (size before relaxing) - 0x0000000040122938 mbedtls_x509write_crt_init - *fill* 0x0000000040122952 0x2 + 0x00000000401343b4 mbedtls_x509write_crt_init + *fill* 0x00000000401343ce 0x2 .text.mbedtls_x509write_crt_free - 0x0000000040122954 0x23 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x00000000401343d0 0x23 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) 0x33 (size before relaxing) - 0x0000000040122954 mbedtls_x509write_crt_free - *fill* 0x0000000040122977 0x1 + 0x00000000401343d0 mbedtls_x509write_crt_free + *fill* 0x00000000401343f3 0x1 .text.mbedtls_x509write_crt_set_subject_name - 0x0000000040122978 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x0000000040122978 mbedtls_x509write_crt_set_subject_name - *fill* 0x000000004012298a 0x2 + 0x00000000401343f4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x00000000401343f4 mbedtls_x509write_crt_set_subject_name + *fill* 0x0000000040134406 0x2 .text.mbedtls_x509write_crt_set_issuer_name - 0x000000004012298c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x000000004012298c mbedtls_x509write_crt_set_issuer_name - *fill* 0x000000004012299e 0x2 + 0x0000000040134408 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040134408 mbedtls_x509write_crt_set_issuer_name + *fill* 0x000000004013441a 0x2 .text.mbedtls_x509write_crt_set_serial - 0x00000000401229a0 0x11 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x00000000401229a0 mbedtls_x509write_crt_set_serial - *fill* 0x00000000401229b1 0x3 + 0x000000004013441c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000004013441c mbedtls_x509write_crt_set_serial + *fill* 0x000000004013442d 0x3 .text.mbedtls_x509write_crt_set_validity - 0x00000000401229b4 0x55 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x00000000401229b4 mbedtls_x509write_crt_set_validity - *fill* 0x0000000040122a09 0x3 + 0x0000000040134430 0x55 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040134430 mbedtls_x509write_crt_set_validity + *fill* 0x0000000040134485 0x3 .text.mbedtls_x509write_crt_set_extension - 0x0000000040122a0c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x0000000040122a0c mbedtls_x509write_crt_set_extension - *fill* 0x0000000040122a26 0x2 + 0x0000000040134488 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040134488 mbedtls_x509write_crt_set_extension + *fill* 0x00000000401344a2 0x2 .text.mbedtls_x509write_crt_set_basic_constraints - 0x0000000040122a28 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x00000000401344a4 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) 0xa4 (size before relaxing) - 0x0000000040122a28 mbedtls_x509write_crt_set_basic_constraints + 0x00000000401344a4 mbedtls_x509write_crt_set_basic_constraints .text.mbedtls_x509write_crt_set_subject_key_identifier - 0x0000000040122ac4 0x79 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040134540 0x79 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) 0x89 (size before relaxing) - 0x0000000040122ac4 mbedtls_x509write_crt_set_subject_key_identifier - *fill* 0x0000000040122b3d 0x3 + 0x0000000040134540 mbedtls_x509write_crt_set_subject_key_identifier + *fill* 0x00000000401345b9 0x3 .text.mbedtls_x509write_crt_set_authority_key_identifier - 0x0000000040122b40 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x00000000401345bc 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) 0xb4 (size before relaxing) - 0x0000000040122b40 mbedtls_x509write_crt_set_authority_key_identifier + 0x00000000401345bc mbedtls_x509write_crt_set_authority_key_identifier .text.mbedtls_x509write_crt_set_key_usage - 0x0000000040122bdc 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040134658 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) 0x60 (size before relaxing) - 0x0000000040122bdc mbedtls_x509write_crt_set_key_usage + 0x0000000040134658 mbedtls_x509write_crt_set_key_usage .text.mbedtls_x509write_crt_set_ns_cert_type - 0x0000000040122c30 0x3d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x00000000401346ac 0x3d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) 0x45 (size before relaxing) - 0x0000000040122c30 mbedtls_x509write_crt_set_ns_cert_type - *fill* 0x0000000040122c6d 0x3 + 0x00000000401346ac mbedtls_x509write_crt_set_ns_cert_type + *fill* 0x00000000401346e9 0x3 .text.mbedtls_x509write_crt_der - 0x0000000040122c70 0x3e6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x00000000401346ec 0x3e6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) 0x442 (size before relaxing) - 0x0000000040122c70 mbedtls_x509write_crt_der - *fill* 0x0000000040123056 0x2 + 0x00000000401346ec mbedtls_x509write_crt_der + *fill* 0x0000000040134ad2 0x2 .text.mbedtls_x509write_crt_pem - 0x0000000040123058 0x45 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040134ad4 0x45 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) 0x49 (size before relaxing) - 0x0000000040123058 mbedtls_x509write_crt_pem - *fill* 0x000000004012309d 0x3 + 0x0000000040134ad4 mbedtls_x509write_crt_pem + *fill* 0x0000000040134b19 0x3 .text.x509_attr_descr_from_name - 0x00000000401230a0 0x2e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - *fill* 0x00000000401230ce 0x2 + 0x0000000040134b1c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + *fill* 0x0000000040134b4a 0x2 .text.x509_write_name - 0x00000000401230d0 0x65 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x0000000040134b4c 0x65 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) 0x7d (size before relaxing) - *fill* 0x0000000040123135 0x3 + *fill* 0x0000000040134bb1 0x3 .text.x509_write_extension - 0x0000000040123138 0x99 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x0000000040134bb4 0x99 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) 0xb5 (size before relaxing) - *fill* 0x00000000401231d1 0x3 + *fill* 0x0000000040134c4d 0x3 .text.mbedtls_x509_string_to_names - 0x00000000401231d4 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x0000000040134c50 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) 0xed (size before relaxing) - 0x00000000401231d4 mbedtls_x509_string_to_names - *fill* 0x00000000401232b9 0x3 + 0x0000000040134c50 mbedtls_x509_string_to_names + *fill* 0x0000000040134d35 0x3 .text.mbedtls_x509_set_extension - 0x00000000401232bc 0x31 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x0000000040134d38 0x31 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) 0x35 (size before relaxing) - 0x00000000401232bc mbedtls_x509_set_extension - *fill* 0x00000000401232ed 0x3 + 0x0000000040134d38 mbedtls_x509_set_extension + *fill* 0x0000000040134d69 0x3 .text.mbedtls_x509_write_names - 0x00000000401232f0 0x3e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x0000000040134d6c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) 0x46 (size before relaxing) - 0x00000000401232f0 mbedtls_x509_write_names - *fill* 0x000000004012332e 0x2 + 0x0000000040134d6c mbedtls_x509_write_names + *fill* 0x0000000040134daa 0x2 .text.mbedtls_x509_write_sig - 0x0000000040123330 0x7c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x0000000040134dac 0x7c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) 0x84 (size before relaxing) - 0x0000000040123330 mbedtls_x509_write_sig + 0x0000000040134dac mbedtls_x509_write_sig .text.mbedtls_x509_write_extensions - 0x00000000401233ac 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x00000000401233ac mbedtls_x509_write_extensions + 0x0000000040134e28 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x0000000040134e28 mbedtls_x509_write_extensions .text.esp_ota_get_running_partition - 0x00000000401233d0 0x7c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x0000000040134e4c 0x7c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) 0x8f (size before relaxing) - 0x00000000401233d0 esp_ota_get_running_partition - *fill* 0x000000004012344c 0x0 + 0x0000000040134e4c esp_ota_get_running_partition + *fill* 0x0000000040134ec8 0x0 .text.esp_netif_action_start - 0x000000004012344c 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x0000000040134ec8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) 0xe (size before relaxing) - 0x000000004012344c esp_netif_action_start - *fill* 0x0000000040123456 0x2 + 0x0000000040134ec8 esp_netif_action_start + *fill* 0x0000000040134ed2 0x2 .text.esp_netif_action_stop - 0x0000000040123458 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x0000000040134ed4 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) 0xe (size before relaxing) - 0x0000000040123458 esp_netif_action_stop - *fill* 0x0000000040123462 0x2 + 0x0000000040134ed4 esp_netif_action_stop + *fill* 0x0000000040134ede 0x2 .text.esp_netif_action_connected - 0x0000000040123464 0xde esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x0000000040134ee0 0xde esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) 0xf6 (size before relaxing) - 0x0000000040123464 esp_netif_action_connected - *fill* 0x0000000040123542 0x2 + 0x0000000040134ee0 esp_netif_action_connected + *fill* 0x0000000040134fbe 0x2 .text.esp_netif_action_disconnected - 0x0000000040123544 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x0000000040134fc0 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) 0xe (size before relaxing) - 0x0000000040123544 esp_netif_action_disconnected - *fill* 0x000000004012354e 0x2 + 0x0000000040134fc0 esp_netif_action_disconnected + *fill* 0x0000000040134fca 0x2 .text.esp_netif_action_got_ip - 0x0000000040123550 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x0000000040134fcc 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) 0x66 (size before relaxing) - 0x0000000040123550 esp_netif_action_got_ip - *fill* 0x00000000401235b2 0x2 + 0x0000000040134fcc esp_netif_action_got_ip + *fill* 0x000000004013502e 0x2 .text.wifi_create_and_start_sta - 0x00000000401235b4 0x2f esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x0000000040135030 0x2f esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) 0x37 (size before relaxing) - *fill* 0x00000000401235e3 0x1 + *fill* 0x000000004013505f 0x1 .text.wifi_create_and_start_ap - 0x00000000401235e4 0x2f esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x0000000040135060 0x2f esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) 0x37 (size before relaxing) - *fill* 0x0000000040123613 0x1 + *fill* 0x000000004013508f 0x1 .text.tcpip_adapter_set_default_wifi_handlers - 0x0000000040123614 0x3c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x0000000040135090 0x3c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) 0x48 (size before relaxing) - 0x0000000040123614 tcpip_adapter_set_default_wifi_handlers + 0x0000000040135090 tcpip_adapter_set_default_wifi_handlers .text.tcpip_adapter_clear_default_wifi_handlers - 0x0000000040123650 0xa esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x00000000401350cc 0xa esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) 0xd (size before relaxing) - 0x0000000040123650 tcpip_adapter_clear_default_wifi_handlers - *fill* 0x000000004012365a 0x2 + 0x00000000401350cc tcpip_adapter_clear_default_wifi_handlers + *fill* 0x00000000401350d6 0x2 .text.os_get_time - 0x000000004012365c 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x000000004012365c os_get_time - *fill* 0x0000000040123675 0x3 + 0x00000000401350d8 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x00000000401350d8 os_get_time + *fill* 0x00000000401350f1 0x3 .text.os_random - 0x0000000040123678 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x0000000040123678 os_random - *fill* 0x0000000040123685 0x3 + 0x00000000401350f4 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x00000000401350f4 os_random + *fill* 0x0000000040135101 0x3 .text.os_get_random - 0x0000000040123688 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x0000000040123688 os_get_random - *fill* 0x0000000040123699 0x3 + 0x0000000040135104 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x0000000040135104 os_get_random + *fill* 0x0000000040135115 0x3 .text.wpa_install_key - 0x000000004012369c 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x000000004012369c wpa_install_key - *fill* 0x00000000401236bf 0x1 + 0x0000000040135118 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040135118 wpa_install_key + *fill* 0x000000004013513b 0x1 .text.wpa_get_key - 0x00000000401236c0 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x00000000401236c0 wpa_get_key - *fill* 0x00000000401236dd 0x3 + 0x000000004013513c 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000004013513c wpa_get_key + *fill* 0x0000000040135159 0x3 .text.wpa_sendto_wrapper - 0x00000000401236e0 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x00000000401236e0 wpa_sendto_wrapper - *fill* 0x00000000401236f2 0x2 + 0x000000004013515c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000004013515c wpa_sendto_wrapper + *fill* 0x000000004013516e 0x2 .text.wpa_deauthenticate - 0x00000000401236f4 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040135170 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0xe (size before relaxing) - 0x00000000401236f4 wpa_deauthenticate - *fill* 0x00000000401236ff 0x1 + 0x0000000040135170 wpa_deauthenticate + *fill* 0x000000004013517b 0x1 .text.wpa_config_assoc_ie - 0x0000000040123700 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x0000000040123700 wpa_config_assoc_ie - *fill* 0x000000004012372b 0x1 + 0x000000004013517c 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000004013517c wpa_config_assoc_ie + *fill* 0x00000000401351a7 0x1 .text.wpa_neg_complete - 0x000000004012372c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x00000000401351a8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0xb (size before relaxing) - 0x000000004012372c wpa_neg_complete - *fill* 0x0000000040123734 0x0 + 0x00000000401351a8 wpa_neg_complete + *fill* 0x00000000401351b0 0x0 .text.wpa_attach - 0x0000000040123734 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x00000000401351b0 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0x3c (size before relaxing) - 0x0000000040123734 wpa_attach + 0x00000000401351b0 wpa_attach .text.wpa_ap_get_wpa_ie - 0x0000000040123768 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x0000000040123768 wpa_ap_get_wpa_ie - *fill* 0x0000000040123799 0x3 + 0x00000000401351e4 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x00000000401351e4 wpa_ap_get_wpa_ie + *fill* 0x0000000040135215 0x3 .text.wpa_ap_rx_eapol - 0x000000004012379c 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x000000004012379c wpa_ap_rx_eapol - *fill* 0x00000000401237ce 0x2 + 0x0000000040135218 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040135218 wpa_ap_rx_eapol + *fill* 0x000000004013524a 0x2 .text.wpa_deattach - 0x00000000401237d0 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000004013524c 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0xd (size before relaxing) - 0x00000000401237d0 wpa_deattach - *fill* 0x00000000401237da 0x2 + 0x000000004013524c wpa_deattach + *fill* 0x0000000040135256 0x2 .text.wpa_parse_wpa_ie_wrapper - 0x00000000401237dc 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040135258 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0x42 (size before relaxing) - 0x00000000401237dc wpa_parse_wpa_ie_wrapper - *fill* 0x0000000040123812 0x2 + 0x0000000040135258 wpa_parse_wpa_ie_wrapper + *fill* 0x000000004013528e 0x2 .text.wpa_sta_disconnected_cb - 0x0000000040123814 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040135290 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0x46 (size before relaxing) - *fill* 0x0000000040123857 0x1 + *fill* 0x00000000401352d3 0x1 .text.wpa_config_profile - 0x0000000040123858 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x00000000401352d4 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0x57 (size before relaxing) - 0x0000000040123858 wpa_config_profile - *fill* 0x000000004012389c 0x0 + 0x00000000401352d4 wpa_config_profile + *fill* 0x0000000040135318 0x0 .text.wpa_config_bss - 0x000000004012389c 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040135318 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0x49 (size before relaxing) - 0x000000004012389c wpa_config_bss - *fill* 0x00000000401238d1 0x3 + 0x0000000040135318 wpa_config_bss + *fill* 0x000000004013534d 0x3 .text.wpa_sta_connect - 0x00000000401238d4 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040135350 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0x27 (size before relaxing) - 0x00000000401238d4 wpa_sta_connect - *fill* 0x00000000401238f3 0x1 + 0x0000000040135350 wpa_sta_connect + *fill* 0x000000004013536f 0x1 .text.esp_supplicant_init - 0x00000000401238f4 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000040135370 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0x76 (size before relaxing) - 0x00000000401238f4 esp_supplicant_init - *fill* 0x0000000040123966 0x2 + 0x0000000040135370 esp_supplicant_init + *fill* 0x00000000401353e2 0x2 .text.esp_supplicant_deinit - 0x0000000040123968 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x00000000401353e4 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) 0xd (size before relaxing) - 0x0000000040123968 esp_supplicant_deinit - *fill* 0x0000000040123972 0x2 + 0x00000000401353e4 esp_supplicant_deinit + *fill* 0x00000000401353ee 0x2 .text.wpa3_parse_sae_commit - 0x0000000040123974 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x00000000401353f0 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) 0x5e (size before relaxing) - *fill* 0x00000000401239ce 0x2 + *fill* 0x000000004013544a 0x2 .text.wpa3_parse_sae_confirm - 0x00000000401239d0 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x000000004013544c 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) 0x51 (size before relaxing) - *fill* 0x0000000040123a19 0x3 + *fill* 0x0000000040135495 0x3 .text.wpa3_parse_sae_msg - 0x0000000040123a1c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x0000000040135498 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) .text.wpa3_build_sae_commit - 0x0000000040123a4c 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x00000000401354c8 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) 0xc6 (size before relaxing) - *fill* 0x0000000040123af2 0x2 + *fill* 0x000000004013556e 0x2 .text.wpa3_build_sae_confirm - 0x0000000040123af4 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x0000000040135570 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) 0x42 (size before relaxing) - *fill* 0x0000000040123b2e 0x2 + *fill* 0x00000000401355aa 0x2 .text.wpa3_build_sae_msg - 0x0000000040123b30 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x00000000401355ac 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) 0x32 (size before relaxing) - *fill* 0x0000000040123b5e 0x2 + *fill* 0x00000000401355da 0x2 .text.esp_wifi_register_wpa3_cb - 0x0000000040123b60 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x0000000040123b60 esp_wifi_register_wpa3_cb - *fill* 0x0000000040123b71 0x3 + 0x00000000401355dc 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x00000000401355dc esp_wifi_register_wpa3_cb + *fill* 0x00000000401355ed 0x3 .text.wpa_sm_pmksa_free_cb - 0x0000000040123b74 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401355f0 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x5e (size before relaxing) - *fill* 0x0000000040123bce 0x2 + *fill* 0x000000004013564a 0x2 .text.wpa_supplicant_clr_countermeasures - 0x0000000040123bd0 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004013564c 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x1a (size before relaxing) - 0x0000000040123bd0 wpa_supplicant_clr_countermeasures - *fill* 0x0000000040123be6 0x2 + 0x000000004013564c wpa_supplicant_clr_countermeasures + *fill* 0x0000000040135662 0x2 .text.cipher_type_map_public_to_supp - 0x0000000040123be8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040123be8 cipher_type_map_public_to_supp + 0x0000000040135664 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135664 cipher_type_map_public_to_supp .text.wpa_eapol_key_send - 0x0000000040123c20 0xaf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004013569c 0xaf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xb3 (size before relaxing) - 0x0000000040123c20 wpa_eapol_key_send - *fill* 0x0000000040123ccf 0x1 + 0x000000004013569c wpa_eapol_key_send + *fill* 0x000000004013574b 0x1 .text.wpa_sm_key_request - 0x0000000040123cd0 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004013574c 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x10c (size before relaxing) - 0x0000000040123cd0 wpa_sm_key_request + 0x000000004013574c wpa_sm_key_request .text.wpa_sm_rekey_ptk - 0x0000000040123dd8 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135854 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x12 (size before relaxing) - 0x0000000040123dd8 wpa_sm_rekey_ptk - *fill* 0x0000000040123de6 0x2 + 0x0000000040135854 wpa_sm_rekey_ptk + *fill* 0x0000000040135862 0x2 .text.wpa_supplicant_send_2_of_4 - 0x0000000040123de8 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135864 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xe0 (size before relaxing) - 0x0000000040123de8 wpa_supplicant_send_2_of_4 + 0x0000000040135864 wpa_supplicant_send_2_of_4 .text.wpa_derive_ptk - 0x0000000040123ec4 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040123ec4 wpa_derive_ptk + 0x0000000040135940 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135940 wpa_derive_ptk .text.wpa_supplicant_pairwise_gtk - 0x0000000040123f0c 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135988 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x72 (size before relaxing) - 0x0000000040123f0c wpa_supplicant_pairwise_gtk - *fill* 0x0000000040123f76 0x2 + 0x0000000040135988 wpa_supplicant_pairwise_gtk + *fill* 0x00000000401359f2 0x2 .text.wpa_report_ie_mismatch - 0x0000000040123f78 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040123f78 wpa_report_ie_mismatch - *fill* 0x0000000040123f87 0x1 + 0x00000000401359f4 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401359f4 wpa_report_ie_mismatch + *fill* 0x0000000040135a03 0x1 .text.ieee80211w_set_keys - 0x0000000040123f88 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040123f88 ieee80211w_set_keys - *fill* 0x0000000040123fd2 0x2 + 0x0000000040135a04 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135a04 ieee80211w_set_keys + *fill* 0x0000000040135a4e 0x2 .text.wpa_supplicant_validate_ie - 0x0000000040123fd4 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135a50 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xce (size before relaxing) - 0x0000000040123fd4 wpa_supplicant_validate_ie - *fill* 0x000000004012409e 0x2 + 0x0000000040135a50 wpa_supplicant_validate_ie + *fill* 0x0000000040135b1a 0x2 .text.wpa_supplicant_send_4_of_4 - 0x00000000401240a0 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135b1c 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xec (size before relaxing) - 0x00000000401240a0 wpa_supplicant_send_4_of_4 + 0x0000000040135b1c wpa_supplicant_send_4_of_4 .text.wpa_sm_set_seq - 0x0000000040124188 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040124188 wpa_sm_set_seq - *fill* 0x00000000401241bb 0x1 + 0x0000000040135c04 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135c04 wpa_sm_set_seq + *fill* 0x0000000040135c37 0x1 .text.wpa_supplicant_process_1_of_2_rsn - 0x00000000401241bc 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135c38 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x8e (size before relaxing) - 0x00000000401241bc wpa_supplicant_process_1_of_2_rsn - *fill* 0x0000000040124242 0x2 + 0x0000000040135c38 wpa_supplicant_process_1_of_2_rsn + *fill* 0x0000000040135cbe 0x2 .text.wpa_supplicant_process_1_of_2_wpa - 0x0000000040124244 0x113 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135cc0 0x113 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x11f (size before relaxing) - 0x0000000040124244 wpa_supplicant_process_1_of_2_wpa - *fill* 0x0000000040124357 0x1 + 0x0000000040135cc0 wpa_supplicant_process_1_of_2_wpa + *fill* 0x0000000040135dd3 0x1 .text.wpa_supplicant_send_2_of_2 - 0x0000000040124358 0xc1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135dd4 0xc1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xc5 (size before relaxing) - 0x0000000040124358 wpa_supplicant_send_2_of_2 - *fill* 0x0000000040124419 0x3 + 0x0000000040135dd4 wpa_supplicant_send_2_of_2 + *fill* 0x0000000040135e95 0x3 .text.wpa_supplicant_verify_eapol_key_mic - 0x000000004012441c 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135e98 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xd2 (size before relaxing) - 0x000000004012441c wpa_supplicant_verify_eapol_key_mic - *fill* 0x00000000401244ea 0x2 + 0x0000000040135e98 wpa_supplicant_verify_eapol_key_mic + *fill* 0x0000000040135f66 0x2 .text.wpa_supplicant_decrypt_key_data - 0x00000000401244ec 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040135f68 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xbc (size before relaxing) - 0x00000000401244ec wpa_supplicant_decrypt_key_data + 0x0000000040135f68 wpa_supplicant_decrypt_key_data .text.wpa_sm_set_state - 0x00000000401245a0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x00000000401245a0 wpa_sm_set_state + 0x000000004013601c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004013601c wpa_sm_set_state .text.wpa_supplicant_key_neg_complete - 0x00000000401245c0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004013603c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x24 (size before relaxing) - 0x00000000401245c0 wpa_supplicant_key_neg_complete + 0x000000004013603c wpa_supplicant_key_neg_complete .text.wpa_supplicant_process_3_of_4 - 0x00000000401245e0 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004013605c 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x108 (size before relaxing) - 0x00000000401245e0 wpa_supplicant_process_3_of_4 + 0x000000004013605c wpa_supplicant_process_3_of_4 .text.wpa_supplicant_process_1_of_2 - 0x00000000401246cc 0x83 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136148 0x83 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x96 (size before relaxing) - 0x00000000401246cc wpa_supplicant_process_1_of_2 - *fill* 0x000000004012474f 0x1 + 0x0000000040136148 wpa_supplicant_process_1_of_2 + *fill* 0x00000000401361cb 0x1 .text.wpa_supplicant_stop_countermeasures - 0x0000000040124750 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401361cc 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x2c (size before relaxing) - 0x0000000040124750 wpa_supplicant_stop_countermeasures - *fill* 0x0000000040124775 0x3 + 0x00000000401361cc wpa_supplicant_stop_countermeasures + *fill* 0x00000000401361f1 0x3 .text.wpa_sm_set_pmk_from_pmksa - 0x0000000040124778 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040124778 wpa_sm_set_pmk_from_pmksa + 0x00000000401361f4 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401361f4 wpa_sm_set_pmk_from_pmksa .text.wpa_supplicant_get_pmk - 0x00000000401247a4 0x1a2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136220 0x1a2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x1a6 (size before relaxing) - *fill* 0x0000000040124946 0x2 + *fill* 0x00000000401363c2 0x2 .text.wpa_supplicant_process_1_of_4 - 0x0000000040124948 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401363c4 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x100 (size before relaxing) - 0x0000000040124948 wpa_supplicant_process_1_of_4 + 0x00000000401363c4 wpa_supplicant_process_1_of_4 .text.wpa_sm_rx_eapol - 0x0000000040124a2c 0x214 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401364a8 0x214 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x21c (size before relaxing) - 0x0000000040124a2c wpa_sm_rx_eapol + 0x00000000401364a8 wpa_sm_rx_eapol .text.wpa_sm_init - 0x0000000040124c40 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401366bc 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x4e (size before relaxing) - 0x0000000040124c40 wpa_sm_init - *fill* 0x0000000040124c8a 0x2 + 0x00000000401366bc wpa_sm_init + *fill* 0x0000000040136706 0x2 .text.wpa_sm_deinit - 0x0000000040124c8c 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136708 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x11 (size before relaxing) - 0x0000000040124c8c wpa_sm_deinit - *fill* 0x0000000040124c9a 0x2 + 0x0000000040136708 wpa_sm_deinit + *fill* 0x0000000040136716 0x2 .text.wpa_set_profile - 0x0000000040124c9c 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040124c9c wpa_set_profile - *fill* 0x0000000040124cdf 0x1 + 0x0000000040136718 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136718 wpa_set_profile + *fill* 0x000000004013675b 0x1 .text.wpa_set_pmk - 0x0000000040124ce0 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004013675c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x48 (size before relaxing) - 0x0000000040124ce0 wpa_set_pmk + 0x000000004013675c wpa_set_pmk .text.wpa_set_passphrase - 0x0000000040124d24 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401367a0 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xac (size before relaxing) - 0x0000000040124d24 wpa_set_passphrase + 0x00000000401367a0 wpa_set_passphrase .text.set_assoc_ie - 0x0000000040124db0 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040124db0 set_assoc_ie - *fill* 0x0000000040124de6 0x2 + 0x000000004013682c 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004013682c set_assoc_ie + *fill* 0x0000000040136862 0x2 .text.wpa_set_bss - 0x0000000040124de8 0xd1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136864 0xd1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xf9 (size before relaxing) - 0x0000000040124de8 wpa_set_bss - *fill* 0x0000000040124eb9 0x3 + 0x0000000040136864 wpa_set_bss + *fill* 0x0000000040136935 0x3 .text.wpa_sm_set_key - 0x0000000040124ebc 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040124ebc wpa_sm_set_key - *fill* 0x0000000040124f35 0x3 + 0x0000000040136938 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136938 wpa_sm_set_key + *fill* 0x00000000401369b1 0x3 .text.wpa_supplicant_install_ptk - 0x0000000040124f38 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401369b4 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x85 (size before relaxing) - 0x0000000040124f38 wpa_supplicant_install_ptk - *fill* 0x0000000040124fb5 0x3 + 0x00000000401369b4 wpa_supplicant_install_ptk + *fill* 0x0000000040136a31 0x3 .text.wpa_supplicant_install_gtk - 0x0000000040124fb8 0xa9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136a34 0xa9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xad (size before relaxing) - 0x0000000040124fb8 wpa_supplicant_install_gtk - *fill* 0x0000000040125061 0x3 + 0x0000000040136a34 wpa_supplicant_install_gtk + *fill* 0x0000000040136add 0x3 .text.wpa_supplicant_send_4_of_4_txcallback - 0x0000000040125064 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136ae0 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x82 (size before relaxing) - 0x0000000040125064 wpa_supplicant_send_4_of_4_txcallback - *fill* 0x00000000401250da 0x2 + 0x0000000040136ae0 wpa_supplicant_send_4_of_4_txcallback + *fill* 0x0000000040136b56 0x2 .text.wpa_sm_get_key - 0x00000000401250dc 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x00000000401250dc wpa_sm_get_key + 0x0000000040136b58 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136b58 wpa_sm_get_key .text.wpa_supplicant_gtk_in_use - 0x00000000401250fc 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136b78 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x122 (size before relaxing) - 0x00000000401250fc wpa_supplicant_gtk_in_use - *fill* 0x0000000040125216 0x2 + 0x0000000040136b78 wpa_supplicant_gtk_in_use + *fill* 0x0000000040136c92 0x2 .text.wpa_supplicant_send_2_of_2_txcallback - 0x0000000040125218 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136c94 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x62 (size before relaxing) - 0x0000000040125218 wpa_supplicant_send_2_of_2_txcallback - *fill* 0x0000000040125272 0x2 + 0x0000000040136c94 wpa_supplicant_send_2_of_2_txcallback + *fill* 0x0000000040136cee 0x2 .text.wpa_michael_mic_failure - 0x0000000040125274 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136cf0 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0xce (size before relaxing) - 0x0000000040125274 wpa_michael_mic_failure - *fill* 0x0000000040125322 0x2 + 0x0000000040136cf0 wpa_michael_mic_failure + *fill* 0x0000000040136d9e 0x2 .text.eapol_txcb - 0x0000000040125324 0x73 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136da0 0x73 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x7a (size before relaxing) - 0x0000000040125324 eapol_txcb - *fill* 0x0000000040125397 0x1 + 0x0000000040136da0 eapol_txcb + *fill* 0x0000000040136e13 0x1 .text.wpa_sta_in_4way_handshake - 0x0000000040125398 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040125398 wpa_sta_in_4way_handshake - *fill* 0x00000000401253c7 0x1 + 0x0000000040136e14 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136e14 wpa_sta_in_4way_handshake + *fill* 0x0000000040136e43 0x1 .text.wpa_sta_is_cur_pmksa_set - 0x00000000401253c8 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x00000000401253c8 wpa_sta_is_cur_pmksa_set - *fill* 0x00000000401253dd 0x3 + 0x0000000040136e44 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136e44 wpa_sta_is_cur_pmksa_set + *fill* 0x0000000040136e59 0x3 .text.wpa_sta_clear_curr_pmksa - 0x00000000401253e0 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040136e5c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) 0x23 (size before relaxing) - 0x00000000401253e0 wpa_sta_clear_curr_pmksa - *fill* 0x00000000401253fc 0x0 + 0x0000000040136e5c wpa_sta_clear_curr_pmksa + *fill* 0x0000000040136e78 0x0 .text.wpa_parse_generic - 0x00000000401253fc 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - *fill* 0x0000000040125532 0x2 + 0x0000000040136e78 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x0000000040136fae 0x2 .text.wpa_gen_wpa_ie_rsn - 0x0000000040125534 0x254 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x0000000040136fb0 0x254 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) .text.wpa_gen_wpa_ie_wpa - 0x0000000040125788 0x16c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x0000000040137204 0x16c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) 0x170 (size before relaxing) .text.wpa_parse_wpa_ie - 0x00000000401258f4 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0x00000000401258f4 wpa_parse_wpa_ie - *fill* 0x0000000040125922 0x2 + 0x0000000040137370 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x0000000040137370 wpa_parse_wpa_ie + *fill* 0x000000004013739e 0x2 .text.wpa_gen_wpa_ie - 0x0000000040125924 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x00000000401373a0 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) 0x3c (size before relaxing) - 0x0000000040125924 wpa_gen_wpa_ie - *fill* 0x000000004012595d 0x3 + 0x00000000401373a0 wpa_gen_wpa_ie + *fill* 0x00000000401373d9 0x3 .text.wpa_supplicant_parse_ies - 0x0000000040125960 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x00000000401373dc 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) 0x80 (size before relaxing) - 0x0000000040125960 wpa_supplicant_parse_ies + 0x00000000401373dc wpa_supplicant_parse_ies .text.hex2byte - 0x00000000401259dc 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000040137458 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) 0x30 (size before relaxing) - 0x00000000401259dc hex2byte + 0x0000000040137458 hex2byte .text.hexstr2bin - 0x0000000040125a08 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x0000000040125a08 hexstr2bin + 0x0000000040137484 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000040137484 hexstr2bin .text.wpa_get_ntp_timestamp - 0x0000000040125a30 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x00000000401374ac 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) 0x91 (size before relaxing) - 0x0000000040125a30 wpa_get_ntp_timestamp - *fill* 0x0000000040125abd 0x3 + 0x00000000401374ac wpa_get_ntp_timestamp + *fill* 0x0000000040137539 0x3 .text.printf_decode - 0x0000000040125ac0 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004013753c 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) 0x11e (size before relaxing) - 0x0000000040125ac0 printf_decode - *fill* 0x0000000040125bda 0x2 + 0x000000004013753c printf_decode + *fill* 0x0000000040137656 0x2 .text.dup_binstr - 0x0000000040125bdc 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x0000000040125bdc dup_binstr + 0x0000000040137658 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000040137658 dup_binstr .text.wpa_config_parse_string - 0x0000000040125c08 0x13a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000040137684 0x13a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) 0x146 (size before relaxing) - 0x0000000040125c08 wpa_config_parse_string - *fill* 0x0000000040125d42 0x2 + 0x0000000040137684 wpa_config_parse_string + *fill* 0x00000000401377be 0x2 .text.wpa_bin_clear_free - 0x0000000040125d44 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x0000000040125d44 wpa_bin_clear_free - *fill* 0x0000000040125d53 0x1 + 0x00000000401377c0 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x00000000401377c0 wpa_bin_clear_free + *fill* 0x00000000401377cf 0x1 .text.wpabuf_alloc - 0x0000000040125d54 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x0000000040125d54 wpabuf_alloc - *fill* 0x0000000040125d69 0x3 + 0x00000000401377d0 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x00000000401377d0 wpabuf_alloc + *fill* 0x00000000401377e5 0x3 .text.wpabuf_free - 0x0000000040125d6c 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x0000000040125d6c wpabuf_free - *fill* 0x0000000040125d83 0x1 + 0x00000000401377e8 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x00000000401377e8 wpabuf_free + *fill* 0x00000000401377ff 0x1 .text.wpabuf_alloc_copy - 0x0000000040125d84 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x0000000040137800 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) 0x28 (size before relaxing) - 0x0000000040125d84 wpabuf_alloc_copy + 0x0000000040137800 wpabuf_alloc_copy .text.wpa_auth_get_sm - 0x0000000040125da8 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040125dce 0x2 + 0x0000000040137824 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004013784a 0x2 .text.wpa_auth_add_sm - 0x0000000040125dd0 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040125e11 0x3 + 0x000000004013784c 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004013788d 0x3 .text.wpa_auth_del_sm - 0x0000000040125e14 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040125e46 0x2 + 0x0000000040137890 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401378c2 0x2 .text.wpa_use_aes_cmac - 0x0000000040125e48 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040125e5d 0x3 + 0x00000000401378c4 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401378d9 0x3 .text.wpa_receive_error_report - 0x0000000040125e60 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000401378dc 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x10 (size before relaxing) .text.wpa_free_sta_sm - 0x0000000040125e6c 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000401378e8 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x36 (size before relaxing) - *fill* 0x0000000040125e9e 0x2 + *fill* 0x000000004013791a 0x2 .text.wpa_group_init_gmk_and_counter - 0x0000000040125ea0 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000004013791c 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x76 (size before relaxing) - *fill* 0x0000000040125f0a 0x2 + *fill* 0x0000000040137986 0x2 .text.sm_WPA_PTK_AUTHENTICATION_Enter - 0x0000000040125f0c 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040125f42 0x2 + 0x0000000040137988 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401379be 0x2 .text.wpa_gmk_to_gtk - 0x0000000040125f44 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000401379c0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x54 (size before relaxing) .text.wpa_gtk_update - 0x0000000040125f94 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137a10 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x9c (size before relaxing) .text.wpa_group_gtk_init - 0x0000000040126024 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137aa0 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .text.wpa_group_setkeys - 0x0000000040126058 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x000000004012608f 0x1 + 0x0000000040137ad4 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040137b0b 0x1 .text.wpa_group_config_group_keys - 0x0000000040126090 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137b0c 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x55 (size before relaxing) - *fill* 0x00000000401260dd 0x3 + *fill* 0x0000000040137b59 0x3 .text.wpa_group_setkeysdone - 0x00000000401260e0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137b5c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x24 (size before relaxing) .text.wpa_group_sm_step - 0x0000000040126100 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137b7c 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .text.wpa_group_init - 0x0000000040126164 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137be0 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x5b (size before relaxing) - *fill* 0x00000000401261b7 0x1 + *fill* 0x0000000040137c33 0x1 .text.wpa_group_ensure_init - 0x00000000401261b8 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137c34 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x32 (size before relaxing) - *fill* 0x00000000401261e2 0x2 + *fill* 0x0000000040137c5e 0x2 .text.wpa_sta_disconnect - 0x00000000401261e4 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x00000000401261f3 0x1 + 0x0000000040137c60 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040137c6f 0x1 .text.sm_WPA_PTK_AUTHENTICATION2_Enter - 0x00000000401261f4 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137c70 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x4c (size before relaxing) .text.sm_WPA_PTK_DISCONNECT_Enter - 0x0000000040126238 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040126266 0x2 + 0x0000000040137cb4 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040137ce2 0x2 .text.wpa_rekey_gtk - 0x0000000040126268 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137ce4 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x3c (size before relaxing) .text.wpa_derive_ptk - 0x00000000401262a0 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x00000000401262e6 0x2 + 0x0000000040137d1c 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040137d62 0x2 .text.wpa_verify_key_mic - 0x00000000401262e8 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137d64 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x78 (size before relaxing) .text.wpa_replay_counter_valid - 0x000000004012635c 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040126391 0x3 + 0x0000000040137dd8 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040137e0d 0x3 .text.wpa_replay_counter_mark_invalid - 0x0000000040126394 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x00000000401263c5 0x3 + 0x0000000040137e10 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040137e41 0x3 .text.sm_WPA_PTK_PTKINITDONE_Enter - 0x00000000401263c8 0x94 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137e44 0x94 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0xa7 (size before relaxing) - *fill* 0x000000004012645c 0x0 + *fill* 0x0000000040137ed8 0x0 .text.ieee80211w_kde_add - 0x000000004012645c 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137ed8 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x70 (size before relaxing) .text.resend_eapol_handle - 0x00000000401264c4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x00000000401264c4 resend_eapol_handle + 0x0000000040137f40 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137f40 resend_eapol_handle .text.sm_WPA_PTK_INITPSK_Enter - 0x00000000401264dc 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137f58 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x53 (size before relaxing) - *fill* 0x000000004012652b 0x1 + *fill* 0x0000000040137fa7 0x1 .text.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter - 0x000000004012652c 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040137fa8 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0xda (size before relaxing) - *fill* 0x00000000401265fe 0x2 + *fill* 0x000000004013807a 0x2 .text.wpa_init - 0x0000000040126600 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000004013807c 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x6e (size before relaxing) - 0x0000000040126600 wpa_init - *fill* 0x000000004012666a 0x2 + 0x000000004013807c wpa_init + *fill* 0x00000000401380e6 0x2 .text.wpa_auth_sta_init - 0x000000004012666c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x000000004012666c wpa_auth_sta_init + 0x00000000401380e8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000401380e8 wpa_auth_sta_init .text.wpa_auth_sta_deinit - 0x000000004012669c 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040138118 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x3e (size before relaxing) - 0x000000004012669c wpa_auth_sta_deinit - *fill* 0x00000000401266d7 0x1 + 0x0000000040138118 wpa_auth_sta_deinit + *fill* 0x0000000040138153 0x1 .text.__wpa_send_eapol - 0x00000000401266d8 0x36f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040138154 0x36f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x37b (size before relaxing) - 0x00000000401266d8 __wpa_send_eapol - *fill* 0x0000000040126a47 0x1 + 0x0000000040138154 __wpa_send_eapol + *fill* 0x00000000401384c3 0x1 .text.wpa_send_eapol - 0x0000000040126a48 0xd7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000401384c4 0xd7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0xdb (size before relaxing) - *fill* 0x0000000040126b1f 0x1 + *fill* 0x000000004013859b 0x1 .text.sm_WPA_PTK_PTKSTART_Enter - 0x0000000040126b20 0xb3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040126bd3 0x1 + 0x000000004013859c 0xb3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004013864f 0x1 .text.sm_WPA_PTK_PTKINITNEGOTIATING_Enter - 0x0000000040126bd4 0x15e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040138650 0x15e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x162 (size before relaxing) - *fill* 0x0000000040126d32 0x2 + *fill* 0x00000000401387ae 0x2 .text.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter - 0x0000000040126d34 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000401387b0 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0xf8 (size before relaxing) .text.sm_WPA_PTK_GROUP_Step - 0x0000000040126e1c 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040138898 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0xb0 (size before relaxing) .text.wpa_remove_ptk - 0x0000000040126ec8 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040138944 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x3a (size before relaxing) - 0x0000000040126ec8 wpa_remove_ptk - *fill* 0x0000000040126efe 0x2 + 0x0000000040138944 wpa_remove_ptk + *fill* 0x000000004013897a 0x2 .text.sm_WPA_PTK_INITIALIZE_Enter - 0x0000000040126f00 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040126f63 0x1 + 0x000000004013897c 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401389df 0x1 .text.sm_WPA_PTK_Step - 0x0000000040126f64 0x1eb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000401389e0 0x1eb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x207 (size before relaxing) - *fill* 0x000000004012714f 0x1 + *fill* 0x0000000040138bcb 0x1 .text.wpa_sm_step - 0x0000000040127150 0xa1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040138bcc 0xa1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0xa9 (size before relaxing) - *fill* 0x00000000401271f1 0x3 + *fill* 0x0000000040138c6d 0x3 .text.wpa_send_eapol_timeout - 0x00000000401271f4 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x000000004012720a 0x2 + 0x0000000040138c70 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040138c86 0x2 .text.wpa_rekey_ptk - 0x000000004012720c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040138c88 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x16 (size before relaxing) - *fill* 0x000000004012721e 0x2 + *fill* 0x0000000040138c9a 0x2 .text.wpa_auth_sta_associated - 0x0000000040127220 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040138c9c 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x7c (size before relaxing) - 0x0000000040127220 wpa_auth_sta_associated + 0x0000000040138c9c wpa_auth_sta_associated .text.wpa_receive - 0x0000000040127290 0x3df esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040138d0c 0x3df esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x407 (size before relaxing) - 0x0000000040127290 wpa_receive - *fill* 0x000000004012766f 0x1 + 0x0000000040138d0c wpa_receive + *fill* 0x00000000401390eb 0x1 .text.hostap_eapol_resend_process - 0x0000000040127670 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000401390ec 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x30 (size before relaxing) - 0x0000000040127670 hostap_eapol_resend_process + 0x00000000401390ec hostap_eapol_resend_process .text.wpa_ap_join - 0x0000000040127698 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040139114 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) 0x76 (size before relaxing) - 0x0000000040127698 wpa_ap_join - *fill* 0x0000000040127706 0x2 + 0x0000000040139114 wpa_ap_join + *fill* 0x0000000040139182 0x2 .text.wpa_ap_remove - 0x0000000040127708 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x0000000040127708 wpa_ap_remove - *fill* 0x000000004012771e 0x2 + 0x0000000040139184 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040139184 wpa_ap_remove + *fill* 0x000000004013919a 0x2 .text.wpa_parse_generic - 0x0000000040127720 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - *fill* 0x0000000040127856 0x2 + 0x000000004013919c 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + *fill* 0x00000000401392d2 0x2 .text.wpa_write_wpa_ie - 0x0000000040127858 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x00000000401392d4 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) 0xca (size before relaxing) - *fill* 0x000000004012791e 0x2 + *fill* 0x000000004013939a 0x2 .text.wpa_write_rsn_ie - 0x0000000040127920 0x18d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x000000004013939c 0x18d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) 0x191 (size before relaxing) - 0x0000000040127920 wpa_write_rsn_ie - *fill* 0x0000000040127aad 0x3 + 0x000000004013939c wpa_write_rsn_ie + *fill* 0x0000000040139529 0x3 .text.wpa_auth_gen_wpa_ie - 0x0000000040127ab0 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x000000004013952c 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) 0x70 (size before relaxing) - 0x0000000040127ab0 wpa_auth_gen_wpa_ie + 0x000000004013952c wpa_auth_gen_wpa_ie .text.wpa_add_kde - 0x0000000040127b1c 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x0000000040127b1c wpa_add_kde + 0x0000000040139598 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x0000000040139598 wpa_add_kde .text.wpa_validate_wpa_ie - 0x0000000040127b64 0x1c6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x00000000401395e0 0x1c6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) 0x1d6 (size before relaxing) - 0x0000000040127b64 wpa_validate_wpa_ie - *fill* 0x0000000040127d2a 0x2 + 0x00000000401395e0 wpa_validate_wpa_ie + *fill* 0x00000000401397a6 0x2 .text.wpa_parse_kde_ies - 0x0000000040127d2c 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x00000000401397a8 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) 0x80 (size before relaxing) - 0x0000000040127d2c wpa_parse_kde_ies + 0x00000000401397a8 wpa_parse_kde_ies .text.sae_parse_commit_token - 0x0000000040127da8 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139824 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x76 (size before relaxing) - *fill* 0x0000000040127e1a 0x2 + *fill* 0x0000000040139896 0x2 .text.sae_cn_confirm - 0x0000000040127e1c 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139898 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x74 (size before relaxing) .text.sae_cn_confirm_ffc - 0x0000000040127e88 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139904 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x6c (size before relaxing) .text.get_random_qr_qnr - 0x0000000040127eec 0x9d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139968 0x9d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xa5 (size before relaxing) - *fill* 0x0000000040127f89 0x3 + *fill* 0x0000000040139a05 0x3 .text.sae_pwd_seed_key - 0x0000000040127f8c 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139a08 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) .text.get_rand_1_to_p_1 - 0x0000000040127fd8 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139a54 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x70 (size before relaxing) .text.is_quadratic_residue_blind - 0x0000000040128038 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139ab4 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xdc (size before relaxing) .text.sae_test_pwd_seed_ecc - 0x00000000401280fc 0xc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139b78 0xc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xde (size before relaxing) - *fill* 0x00000000401281be 0x2 + *fill* 0x0000000040139c3a 0x2 .text.sae_derive_pwe_ecc - 0x00000000401281c0 0x194 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139c3c 0x194 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x1ac (size before relaxing) .text.sae_test_pwd_seed_ffc - 0x0000000040128354 0x11d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139dd0 0x11d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x139 (size before relaxing) - *fill* 0x0000000040128471 0x3 + *fill* 0x0000000040139eed 0x3 .text.sae_derive_pwe_ffc - 0x0000000040128474 0xb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139ef0 0xb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xb9 (size before relaxing) - *fill* 0x0000000040128525 0x3 + *fill* 0x0000000040139fa1 0x3 .text.sae_derive_k_ffc - 0x0000000040128528 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040139fa4 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x8a (size before relaxing) - *fill* 0x000000004012859e 0x2 + *fill* 0x000000004013a01a 0x2 .text.sae_get_rand - 0x00000000401285a0 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a01c 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xac (size before relaxing) .text.sae_get_rand_and_mask - 0x0000000040128638 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a0b4 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x31 (size before relaxing) - *fill* 0x0000000040128661 0x3 + *fill* 0x000000004013a0dd 0x3 .text.sae_parse_commit_scalar - 0x0000000040128664 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a0e0 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x9e (size before relaxing) - *fill* 0x00000000401286f2 0x2 + *fill* 0x000000004013a16e 0x2 .text.sae_parse_commit_element_ffc - 0x00000000401286f4 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a170 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x11e (size before relaxing) - *fill* 0x00000000401287ee 0x2 + *fill* 0x000000004013a26a 0x2 .text.sae_derive_commit_element_ecc - 0x00000000401287f0 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a26c 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x52 (size before relaxing) - *fill* 0x000000004012883e 0x2 + *fill* 0x000000004013a2ba 0x2 .text.sae_derive_commit_element_ffc - 0x0000000040128840 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a2bc 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x52 (size before relaxing) - *fill* 0x000000004012888a 0x2 + *fill* 0x000000004013a306 0x2 .text.sae_derive_commit - 0x000000004012888c 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a308 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xc4 (size before relaxing) .text.sae_derive_k_ecc - 0x0000000040128934 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a3b0 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x96 (size before relaxing) - *fill* 0x00000000401289b2 0x2 + *fill* 0x000000004013a42e 0x2 .text.sae_cn_confirm_ecc - 0x00000000401289b4 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a430 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x78 (size before relaxing) .text.sae_derive_keys - 0x0000000040128a20 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a49c 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x104 (size before relaxing) .text.sae_parse_commit_element_ecc - 0x0000000040128b10 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a58c 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xaa (size before relaxing) - *fill* 0x0000000040128bae 0x2 + *fill* 0x000000004013a62a 0x2 .text.sae_parse_commit_element - 0x0000000040128bb0 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a62c 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x2d (size before relaxing) - *fill* 0x0000000040128bd9 0x3 + *fill* 0x000000004013a655 0x3 .text.sae_parse_password_identifier - 0x0000000040128bdc 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a658 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xb6 (size before relaxing) - *fill* 0x0000000040128c8e 0x2 + *fill* 0x000000004013a70a 0x2 .text.bin_clear_free - 0x0000000040128c90 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x0000000040128c90 bin_clear_free - *fill* 0x0000000040128c9f 0x1 + 0x000000004013a70c 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a70c bin_clear_free + *fill* 0x000000004013a71b 0x1 .text.sae_clear_temp_data - 0x0000000040128ca0 0x73 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a71c 0x73 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x97 (size before relaxing) - 0x0000000040128ca0 sae_clear_temp_data - *fill* 0x0000000040128d13 0x1 + 0x000000004013a71c sae_clear_temp_data + *fill* 0x000000004013a78f 0x1 .text.sae_clear_data - 0x0000000040128d14 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a790 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x26 (size before relaxing) - 0x0000000040128d14 sae_clear_data - *fill* 0x0000000040128d36 0x2 + 0x000000004013a790 sae_clear_data + *fill* 0x000000004013a7b2 0x2 .text.sae_set_group - 0x0000000040128d38 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a7b4 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xd5 (size before relaxing) - 0x0000000040128d38 sae_set_group - *fill* 0x0000000040128df1 0x3 + 0x000000004013a7b4 sae_set_group + *fill* 0x000000004013a86d 0x3 .text.sae_prepare_commit - 0x0000000040128df4 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a870 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x58 (size before relaxing) - 0x0000000040128df4 sae_prepare_commit + 0x000000004013a870 sae_prepare_commit .text.sae_process_commit - 0x0000000040128e44 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a8c0 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x4a (size before relaxing) - 0x0000000040128e44 sae_process_commit - *fill* 0x0000000040128e86 0x2 + 0x000000004013a8c0 sae_process_commit + *fill* 0x000000004013a902 0x2 .text.sae_write_commit - 0x0000000040128e88 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013a904 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x142 (size before relaxing) - 0x0000000040128e88 sae_write_commit - *fill* 0x0000000040128fa2 0x2 + 0x000000004013a904 sae_write_commit + *fill* 0x000000004013aa1e 0x2 .text.sae_group_allowed - 0x0000000040128fa4 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x0000000040128fa4 sae_group_allowed - *fill* 0x0000000040129011 0x3 + 0x000000004013aa20 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013aa20 sae_group_allowed + *fill* 0x000000004013aa8d 0x3 .text.sae_parse_commit - 0x0000000040129014 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013aa90 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xcc (size before relaxing) - 0x0000000040129014 sae_parse_commit + 0x000000004013aa90 sae_parse_commit .text.sae_write_confirm - 0x00000000401290c8 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013ab44 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0xb2 (size before relaxing) - 0x00000000401290c8 sae_write_confirm - *fill* 0x000000004012916a 0x2 + 0x000000004013ab44 sae_write_confirm + *fill* 0x000000004013abe6 0x2 .text.sae_check_confirm - 0x000000004012916c 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004013abe8 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) 0x7a (size before relaxing) - 0x000000004012916c sae_check_confirm - *fill* 0x00000000401291e2 0x2 + 0x000000004013abe8 sae_check_confirm + *fill* 0x000000004013ac5e 0x2 .text.rsn_selector_to_bitfield - 0x00000000401291e4 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004013ac60 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) .text.rsn_key_mgmt_to_bitfield - 0x0000000040129250 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - *fill* 0x00000000401292b1 0x3 + 0x000000004013accc 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000004013ad2d 0x3 .text.wpa_selector_to_bitfield - 0x00000000401292b4 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - *fill* 0x0000000040129315 0x3 + 0x000000004013ad30 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000004013ad91 0x3 .text.wpa_key_mgmt_to_bitfield - 0x0000000040129318 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - *fill* 0x000000004012935e 0x2 + 0x000000004013ad94 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000004013adda 0x2 .text.wpa_parse_wpa_ie_rsn - 0x0000000040129360 0x18d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004013addc 0x18d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) 0x191 (size before relaxing) - 0x0000000040129360 wpa_parse_wpa_ie_rsn - *fill* 0x00000000401294ed 0x3 + 0x000000004013addc wpa_parse_wpa_ie_rsn + *fill* 0x000000004013af69 0x3 .text.wpa_parse_wpa_ie_wpa - 0x00000000401294f0 0x18a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x00000000401294f0 wpa_parse_wpa_ie_wpa - *fill* 0x000000004012967a 0x2 + 0x000000004013af6c 0x18a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004013af6c wpa_parse_wpa_ie_wpa + *fill* 0x000000004013b0f6 0x2 .text.wpa_eapol_key_mic - 0x000000004012967c 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x000000004012967c wpa_eapol_key_mic + 0x000000004013b0f8 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004013b0f8 wpa_eapol_key_mic .text.wpa_compare_rsn_ie - 0x00000000401296e8 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x00000000401296e8 wpa_compare_rsn_ie - *fill* 0x0000000040129726 0x2 + 0x000000004013b164 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004013b164 wpa_compare_rsn_ie + *fill* 0x000000004013b1a2 0x2 .text.wpa_pmk_to_ptk - 0x0000000040129728 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x0000000040129728 wpa_pmk_to_ptk + 0x000000004013b1a4 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004013b1a4 wpa_pmk_to_ptk .text.rsn_pmkid - 0x000000004012980c 0x5b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004013b288 0x5b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) 0x63 (size before relaxing) - 0x000000004012980c rsn_pmkid - *fill* 0x0000000040129867 0x1 + 0x000000004013b288 rsn_pmkid + *fill* 0x000000004013b2e3 0x1 .text.wpa_cipher_to_suite - 0x0000000040129868 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x0000000040129868 wpa_cipher_to_suite - *fill* 0x00000000401298de 0x2 - .text.ecp_opp 0x00000000401298e0 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b2e4 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004013b2e4 wpa_cipher_to_suite + *fill* 0x000000004013b35a 0x2 + .text.ecp_opp 0x000000004013b35c 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x3a (size before relaxing) - *fill* 0x0000000040129916 0x2 + *fill* 0x000000004013b392 0x2 .text.crypto_bignum_init - 0x0000000040129918 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b394 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x20 (size before relaxing) - 0x0000000040129918 crypto_bignum_init + 0x000000004013b394 crypto_bignum_init .text.crypto_bignum_init_set - 0x0000000040129934 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b3b0 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x32 (size before relaxing) - 0x0000000040129934 crypto_bignum_init_set - *fill* 0x0000000040129962 0x2 + 0x000000004013b3b0 crypto_bignum_init_set + *fill* 0x000000004013b3de 0x2 .text.crypto_bignum_deinit - 0x0000000040129964 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b3e0 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x16 (size before relaxing) - 0x0000000040129964 crypto_bignum_deinit - *fill* 0x0000000040129976 0x2 + 0x000000004013b3e0 crypto_bignum_deinit + *fill* 0x000000004013b3f2 0x2 .text.crypto_bignum_to_bin - 0x0000000040129978 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b3f4 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x4e (size before relaxing) - 0x0000000040129978 crypto_bignum_to_bin - *fill* 0x00000000401299c2 0x2 + 0x000000004013b3f4 crypto_bignum_to_bin + *fill* 0x000000004013b43e 0x2 .text.crypto_bignum_add - 0x00000000401299c4 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b440 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x18 (size before relaxing) - 0x00000000401299c4 crypto_bignum_add + 0x000000004013b440 crypto_bignum_add .text.crypto_bignum_mod - 0x00000000401299d8 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b454 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x18 (size before relaxing) - 0x00000000401299d8 crypto_bignum_mod + 0x000000004013b454 crypto_bignum_mod .text.crypto_bignum_exptmod - 0x00000000401299ec 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b468 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x1c (size before relaxing) - 0x00000000401299ec crypto_bignum_exptmod + 0x000000004013b468 crypto_bignum_exptmod .text.crypto_bignum_inverse - 0x0000000040129a04 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b480 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x18 (size before relaxing) - 0x0000000040129a04 crypto_bignum_inverse + 0x000000004013b480 crypto_bignum_inverse .text.crypto_bignum_sub - 0x0000000040129a18 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b494 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x18 (size before relaxing) - 0x0000000040129a18 crypto_bignum_sub + 0x000000004013b494 crypto_bignum_sub .text.crypto_bignum_div - 0x0000000040129a2c 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x0000000040129a2c crypto_bignum_div - *fill* 0x0000000040129a45 0x3 + 0x000000004013b4a8 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b4a8 crypto_bignum_div + *fill* 0x000000004013b4c1 0x3 .text.crypto_bignum_mulmod - 0x0000000040129a48 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x0000000040129a48 crypto_bignum_mulmod - *fill* 0x0000000040129a61 0x3 + 0x000000004013b4c4 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b4c4 crypto_bignum_mulmod + *fill* 0x000000004013b4dd 0x3 .text.crypto_bignum_cmp - 0x0000000040129a64 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x0000000040129a64 crypto_bignum_cmp - *fill* 0x0000000040129a75 0x3 + 0x000000004013b4e0 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b4e0 crypto_bignum_cmp + *fill* 0x000000004013b4f1 0x3 .text.crypto_bignum_bits - 0x0000000040129a78 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b4f4 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x10 (size before relaxing) - 0x0000000040129a78 crypto_bignum_bits + 0x000000004013b4f4 crypto_bignum_bits .text.crypto_bignum_is_zero - 0x0000000040129a84 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x0000000040129a84 crypto_bignum_is_zero - *fill* 0x0000000040129a9a 0x2 + 0x000000004013b500 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b500 crypto_bignum_is_zero + *fill* 0x000000004013b516 0x2 .text.crypto_bignum_is_one - 0x0000000040129a9c 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x0000000040129a9c crypto_bignum_is_one - *fill* 0x0000000040129ab2 0x2 + 0x000000004013b518 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b518 crypto_bignum_is_one + *fill* 0x000000004013b52e 0x2 .text.crypto_bignum_legendre - 0x0000000040129ab4 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b530 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x94 (size before relaxing) - 0x0000000040129ab4 crypto_bignum_legendre + 0x000000004013b530 crypto_bignum_legendre .text.crypto_ec_deinit - 0x0000000040129b2c 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x0000000040129b2c crypto_ec_deinit - *fill* 0x0000000040129b43 0x1 + 0x000000004013b5a8 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b5a8 crypto_ec_deinit + *fill* 0x000000004013b5bf 0x1 .text.crypto_ec_init - 0x0000000040129b44 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b5c0 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x3c (size before relaxing) - 0x0000000040129b44 crypto_ec_init + 0x000000004013b5c0 crypto_ec_init .text.crypto_ec_point_init - 0x0000000040129b78 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b5f4 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x26 (size before relaxing) - 0x0000000040129b78 crypto_ec_point_init - *fill* 0x0000000040129b9a 0x2 + 0x000000004013b5f4 crypto_ec_point_init + *fill* 0x000000004013b616 0x2 .text.crypto_ec_prime_len - 0x0000000040129b9c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b618 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x10 (size before relaxing) - 0x0000000040129b9c crypto_ec_prime_len + 0x000000004013b618 crypto_ec_prime_len .text.crypto_ec_prime_len_bits - 0x0000000040129ba8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b624 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x10 (size before relaxing) - 0x0000000040129ba8 crypto_ec_prime_len_bits + 0x000000004013b624 crypto_ec_prime_len_bits .text.crypto_ec_point_deinit - 0x0000000040129bb4 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b630 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x16 (size before relaxing) - 0x0000000040129bb4 crypto_ec_point_deinit - *fill* 0x0000000040129bc6 0x2 + 0x000000004013b630 crypto_ec_point_deinit + *fill* 0x000000004013b642 0x2 .text.crypto_ec_point_to_bin - 0x0000000040129bc8 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b644 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x4a (size before relaxing) - 0x0000000040129bc8 crypto_ec_point_to_bin - *fill* 0x0000000040129c0a 0x2 + 0x000000004013b644 crypto_ec_point_to_bin + *fill* 0x000000004013b686 0x2 .text.crypto_ec_point_from_bin - 0x0000000040129c0c 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b688 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x66 (size before relaxing) - 0x0000000040129c0c crypto_ec_point_from_bin - *fill* 0x0000000040129c62 0x2 + 0x000000004013b688 crypto_ec_point_from_bin + *fill* 0x000000004013b6de 0x2 .text.crypto_ec_point_add - 0x0000000040129c64 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b6e0 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x3e (size before relaxing) - 0x0000000040129c64 crypto_ec_point_add - *fill* 0x0000000040129c9a 0x2 + 0x000000004013b6e0 crypto_ec_point_add + *fill* 0x000000004013b716 0x2 .text.crypto_ec_point_mul - 0x0000000040129c9c 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b718 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x66 (size before relaxing) - 0x0000000040129c9c crypto_ec_point_mul - *fill* 0x0000000040129cee 0x2 + 0x000000004013b718 crypto_ec_point_mul + *fill* 0x000000004013b76a 0x2 .text.crypto_ec_point_invert - 0x0000000040129cf0 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b76c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x18 (size before relaxing) - 0x0000000040129cf0 crypto_ec_point_invert + 0x000000004013b76c crypto_ec_point_invert .text.crypto_ec_point_compute_y_sqr - 0x0000000040129d04 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b780 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x106 (size before relaxing) - 0x0000000040129d04 crypto_ec_point_compute_y_sqr - *fill* 0x0000000040129dd6 0x2 + 0x000000004013b780 crypto_ec_point_compute_y_sqr + *fill* 0x000000004013b852 0x2 .text.crypto_ec_point_solve_y_coord - 0x0000000040129dd8 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b854 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0xc6 (size before relaxing) - 0x0000000040129dd8 crypto_ec_point_solve_y_coord - *fill* 0x0000000040129e7e 0x2 + 0x000000004013b854 crypto_ec_point_solve_y_coord + *fill* 0x000000004013b8fa 0x2 .text.crypto_ec_point_is_at_infinity - 0x0000000040129e80 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b8fc 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0x10 (size before relaxing) - 0x0000000040129e80 crypto_ec_point_is_at_infinity + 0x000000004013b8fc crypto_ec_point_is_at_infinity .text.crypto_ec_point_is_on_curve - 0x0000000040129e8c 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b908 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) 0xa1 (size before relaxing) - 0x0000000040129e8c crypto_ec_point_is_on_curve - *fill* 0x0000000040129f19 0x3 + 0x000000004013b908 crypto_ec_point_is_on_curve + *fill* 0x000000004013b995 0x3 .text.crypto_ec_point_cmp - 0x0000000040129f1c 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x0000000040129f1c crypto_ec_point_cmp - *fill* 0x0000000040129f2d 0x3 + 0x000000004013b998 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004013b998 crypto_ec_point_cmp + *fill* 0x000000004013b9a9 0x3 .text.dh_groups_get - 0x0000000040129f30 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - 0x0000000040129f30 dh_groups_get - *fill* 0x0000000040129f56 0x2 + 0x000000004013b9ac 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x000000004013b9ac dh_groups_get + *fill* 0x000000004013b9d2 0x2 .text.hostap_init - 0x0000000040129f58 0x12c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x000000004013b9d4 0x12c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) 0x144 (size before relaxing) - 0x0000000040129f58 hostap_init + 0x000000004013b9d4 hostap_init .text.hostap_deinit - 0x000000004012a084 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x000000004012a084 hostap_deinit + 0x000000004013bb00 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x000000004013bb00 hostap_deinit .text.wpa_sm_alloc_eapol - 0x000000004012a0dc 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x000000004012a0dc wpa_sm_alloc_eapol + 0x000000004013bb58 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x000000004013bb58 wpa_sm_alloc_eapol .text.wpa_sm_free_eapol - 0x000000004012a154 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x000000004012a154 wpa_sm_free_eapol - *fill* 0x000000004012a162 0x2 + 0x000000004013bbd0 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x000000004013bbd0 wpa_sm_free_eapol + *fill* 0x000000004013bbde 0x2 .text.wpa_sm_deauthenticate - 0x000000004012a164 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x000000004013bbe0 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) 0x1e (size before relaxing) - 0x000000004012a164 wpa_sm_deauthenticate - *fill* 0x000000004012a17f 0x1 + 0x000000004013bbe0 wpa_sm_deauthenticate + *fill* 0x000000004013bbfb 0x1 .text._pmksa_cache_free_entry - 0x000000004012a180 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - *fill* 0x000000004012a18f 0x1 + 0x000000004013bbfc 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x000000004013bc0b 0x1 .text.pmksa_cache_free_entry - 0x000000004012a190 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - *fill* 0x000000004012a1ae 0x2 + 0x000000004013bc0c 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x000000004013bc2a 0x2 .text.pmksa_cache_set_expiration - 0x000000004012a1b0 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - *fill* 0x000000004012a212 0x2 + 0x000000004013bc2c 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x000000004013bc8e 0x2 .text.pmksa_cache_expire - 0x000000004012a214 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004013bc90 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) 0x52 (size before relaxing) - *fill* 0x000000004012a263 0x1 + *fill* 0x000000004013bcdf 0x1 .text.pmksa_cache_flush - 0x000000004012a264 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x000000004012a264 pmksa_cache_flush - *fill* 0x000000004012a2ba 0x2 + 0x000000004013bce0 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004013bce0 pmksa_cache_flush + *fill* 0x000000004013bd36 0x2 .text.pmksa_cache_add - 0x000000004012a2bc 0x1ac esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004013bd38 0x1ac esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) 0x1b0 (size before relaxing) - 0x000000004012a2bc pmksa_cache_add + 0x000000004013bd38 pmksa_cache_add .text.pmksa_cache_clone_entry - 0x000000004012a468 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - *fill* 0x000000004012a4a1 0x3 + 0x000000004013bee4 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x000000004013bf1d 0x3 .text.pmksa_cache_deinit - 0x000000004012a4a4 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004013bf20 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) 0x3e (size before relaxing) - 0x000000004012a4a4 pmksa_cache_deinit - *fill* 0x000000004012a4de 0x2 + 0x000000004013bf20 pmksa_cache_deinit + *fill* 0x000000004013bf5a 0x2 .text.pmksa_cache_get - 0x000000004012a4e0 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x000000004012a4e0 pmksa_cache_get - *fill* 0x000000004012a519 0x3 + 0x000000004013bf5c 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004013bf5c pmksa_cache_get + *fill* 0x000000004013bf95 0x3 .text.pmksa_cache_get_opportunistic - 0x000000004012a51c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x000000004012a51c pmksa_cache_get_opportunistic + 0x000000004013bf98 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004013bf98 pmksa_cache_get_opportunistic .text.pmksa_cache_set_current - 0x000000004012a54c 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004013bfc8 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) 0x72 (size before relaxing) - 0x000000004012a54c pmksa_cache_set_current - *fill* 0x000000004012a5ba 0x2 + 0x000000004013bfc8 pmksa_cache_set_current + *fill* 0x000000004013c036 0x2 .text.pmksa_cache_init - 0x000000004012a5bc 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004013c038 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) 0x3a (size before relaxing) - 0x000000004012a5bc pmksa_cache_init - *fill* 0x000000004012a5f2 0x2 + 0x000000004013c038 pmksa_cache_init + *fill* 0x000000004013c06e 0x2 .text.hostapd_derive_psk - 0x000000004012a5f4 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - *fill* 0x000000004012a622 0x2 + 0x000000004013c070 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + *fill* 0x000000004013c09e 0x2 .text.hostapd_setup_wpa_psk - 0x000000004012a624 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - 0x000000004012a624 hostapd_setup_wpa_psk - *fill* 0x000000004012a651 0x3 + 0x000000004013c0a0 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x000000004013c0a0 hostapd_setup_wpa_psk + *fill* 0x000000004013c0cd 0x3 .text.hostapd_get_psk - 0x000000004012a654 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - 0x000000004012a654 hostapd_get_psk - *fill* 0x000000004012a68f 0x1 + 0x000000004013c0d0 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x000000004013c0d0 hostapd_get_psk + *fill* 0x000000004013c10b 0x1 .text.wifi_softap_get_config_local - 0x000000004012a690 0x148 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c10c 0x148 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x178 (size before relaxing) .text.wifi_station_get_config_local$part$0 - 0x000000004012a7d8 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c254 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x10c (size before relaxing) .text.wifi_api_unlock$part$2 - 0x000000004012a8c8 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - *fill* 0x000000004012a8e7 0x1 + 0x000000004013c344 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000004013c363 0x1 .text.wifi_get_init_state - 0x000000004012a8e8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000004012a8ec wifi_get_init_state - *fill* 0x000000004012a8f6 0x2 + 0x000000004013c364 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c368 wifi_get_init_state + *fill* 0x000000004013c372 0x2 .text.wifi_is_stop_in_progress - 0x000000004012a8f8 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000004012a8fc wifi_is_stop_in_progress - *fill* 0x000000004012a907 0x1 + 0x000000004013c374 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c378 wifi_is_stop_in_progress + *fill* 0x000000004013c383 0x1 .text.wifi_api_lock - 0x000000004012a908 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c384 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x54 (size before relaxing) - 0x000000004012a90c wifi_api_lock + 0x000000004013c388 wifi_api_lock .text.wifi_init_completed - 0x000000004012a94c 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c3c8 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x58 (size before relaxing) - 0x000000004012a94c wifi_init_completed + 0x000000004013c3c8 wifi_init_completed .text.wifi_api_unlock - 0x000000004012a984 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c400 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x1d (size before relaxing) - 0x000000004012a984 wifi_api_unlock - *fill* 0x000000004012a996 0x2 + 0x000000004013c400 wifi_api_unlock + *fill* 0x000000004013c412 0x2 .text.wifi_softap_deauth - 0x000000004012a998 0xa4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c414 0xa4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0xc0 (size before relaxing) - 0x000000004012a9a0 wifi_softap_deauth + 0x000000004013c41c wifi_softap_deauth .text.wifi_check_chan_param - 0x000000004012aa3c 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c4b8 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x66 (size before relaxing) - 0x000000004012aa3c wifi_check_chan_param - *fill* 0x000000004012aa92 0x2 + 0x000000004013c4b8 wifi_check_chan_param + *fill* 0x000000004013c50e 0x2 .text.wifi_deinit_in_caller_task - 0x000000004012aa94 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c510 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x42 (size before relaxing) - 0x000000004012aa98 wifi_deinit_in_caller_task - *fill* 0x000000004012aabe 0x2 + 0x000000004013c514 wifi_deinit_in_caller_task + *fill* 0x000000004013c53a 0x2 .text.wifi_init_in_caller_task - 0x000000004012aac0 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c53c 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0xb3 (size before relaxing) - 0x000000004012aac8 wifi_init_in_caller_task - *fill* 0x000000004012ab44 0x0 + 0x000000004013c544 wifi_init_in_caller_task + *fill* 0x000000004013c5c0 0x0 .text.wifi_osi_funcs_register - 0x000000004012ab44 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c5c0 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x76 (size before relaxing) - 0x000000004012ab54 wifi_osi_funcs_register - *fill* 0x000000004012aba2 0x2 + 0x000000004013c5d0 wifi_osi_funcs_register + *fill* 0x000000004013c61e 0x2 .text.esp_wifi_init_internal - 0x000000004012aba4 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c620 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x174 (size before relaxing) - 0x000000004012abb4 esp_wifi_init_internal + 0x000000004013c630 esp_wifi_init_internal .text.esp_wifi_deinit_internal - 0x000000004012ac94 0xe6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c710 0xe6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x17a (size before relaxing) - 0x000000004012aca4 esp_wifi_deinit_internal - *fill* 0x000000004012ad7a 0x2 + 0x000000004013c720 esp_wifi_deinit_internal + *fill* 0x000000004013c7f6 0x2 .text.esp_wifi_set_mode - 0x000000004012ad7c 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c7f8 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x48 (size before relaxing) - 0x000000004012ad7c esp_wifi_set_mode + 0x000000004013c7f8 esp_wifi_set_mode .text.esp_wifi_start - 0x000000004012adb0 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c82c 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x44 (size before relaxing) - 0x000000004012adb0 esp_wifi_start + 0x000000004013c82c esp_wifi_start .text.esp_wifi_stop - 0x000000004012addc 0x197 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c858 0x197 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x20b (size before relaxing) - 0x000000004012adfc esp_wifi_stop - *fill* 0x000000004012af73 0x1 + 0x000000004013c878 esp_wifi_stop + *fill* 0x000000004013c9ef 0x1 .text.esp_wifi_connect - 0x000000004012af74 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013c9f0 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x5a (size before relaxing) - 0x000000004012af74 esp_wifi_connect - *fill* 0x000000004012afb2 0x2 + 0x000000004013c9f0 esp_wifi_connect + *fill* 0x000000004013ca2e 0x2 .text.esp_wifi_deauth_sta - 0x000000004012afb4 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013ca30 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x64 (size before relaxing) - 0x000000004012afb4 esp_wifi_deauth_sta + 0x000000004013ca30 esp_wifi_deauth_sta .text.esp_wifi_set_config - 0x000000004012affc 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013ca78 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x76 (size before relaxing) - 0x000000004012b000 esp_wifi_set_config - *fill* 0x000000004012b05a 0x2 + 0x000000004013ca7c esp_wifi_set_config + *fill* 0x000000004013cad6 0x2 .text.esp_wifi_get_config - 0x000000004012b05c 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cad8 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x49 (size before relaxing) - 0x000000004012b05c esp_wifi_get_config - *fill* 0x000000004012b08d 0x3 + 0x000000004013cad8 esp_wifi_get_config + *fill* 0x000000004013cb09 0x3 .text.esp_wifi_get_channel - 0x000000004012b090 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cb0c 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x68 (size before relaxing) - 0x000000004012b090 esp_wifi_get_channel + 0x000000004013cb0c esp_wifi_get_channel .text.esp_wifi_get_mac - 0x000000004012b0e4 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cb60 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x3a (size before relaxing) - 0x000000004012b0e4 esp_wifi_get_mac - *fill* 0x000000004012b10a 0x2 + 0x000000004013cb60 esp_wifi_get_mac + *fill* 0x000000004013cb86 0x2 .text.esp_wifi_set_storage - 0x000000004012b10c 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cb88 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x5c (size before relaxing) - 0x000000004012b10c esp_wifi_set_storage + 0x000000004013cb88 esp_wifi_set_storage .text.esp_wifi_internal_reg_rxcb - 0x000000004012b154 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cbd0 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x5a (size before relaxing) - 0x000000004012b154 esp_wifi_internal_reg_rxcb - *fill* 0x000000004012b196 0x2 + 0x000000004013cbd0 esp_wifi_internal_reg_rxcb + *fill* 0x000000004013cc12 0x2 .text.esp_wifi_internal_set_sta_ip - 0x000000004012b198 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cc14 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x3c (size before relaxing) - 0x000000004012b198 esp_wifi_internal_set_sta_ip + 0x000000004013cc14 esp_wifi_internal_set_sta_ip .text.wifi_set_event_handler - 0x000000004012b1c4 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x000000004012b1c8 wifi_set_event_handler + 0x000000004013cc40 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cc44 wifi_set_event_handler .text.wifi_event_post - 0x000000004012b1d4 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cc50 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x29 (size before relaxing) - 0x000000004012b1d4 wifi_event_post - *fill* 0x000000004012b1f5 0x3 + 0x000000004013cc50 wifi_event_post + *fill* 0x000000004013cc71 0x3 .text.wifi_mesh_event_post - 0x000000004012b1f8 0x3f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cc74 0x3f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x4b (size before relaxing) - 0x000000004012b200 wifi_mesh_event_post - *fill* 0x000000004012b237 0x1 + 0x000000004013cc7c wifi_mesh_event_post + *fill* 0x000000004013ccb3 0x1 .text.esp_wifi_vnd_lora_enable - 0x000000004012b238 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013ccb4 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0xe8 (size before relaxing) - 0x000000004012b238 esp_wifi_vnd_lora_enable + 0x000000004013ccb4 esp_wifi_vnd_lora_enable .text.esp_wifi_vnd_lora_disable - 0x000000004012b30c 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cd88 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x58 (size before relaxing) - 0x000000004012b30c esp_wifi_vnd_lora_disable + 0x000000004013cd88 esp_wifi_vnd_lora_disable .text.esp_wifi_get_event_mask - 0x000000004012b358 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cdd4 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x2c (size before relaxing) - 0x000000004012b35c esp_wifi_get_event_mask + 0x000000004013cdd8 esp_wifi_get_event_mask .text.esp_wifi_ipc_internal - 0x000000004012b37c 0x100 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cdf8 0x100 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x12c (size before relaxing) - 0x000000004012b380 esp_wifi_ipc_internal + 0x000000004013cdfc esp_wifi_ipc_internal .text.esp_mesh_map_deauth - 0x000000004012b47c 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004013cef8 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) 0x68 (size before relaxing) - 0x000000004012b47c esp_mesh_map_deauth + 0x000000004013cef8 esp_mesh_map_deauth .text.ieee80211_freedom_inside_cb - 0x000000004012b4c8 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000004013cf44 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) 0x3c (size before relaxing) - 0x000000004012b4c8 ieee80211_freedom_inside_cb + 0x000000004013cf44 ieee80211_freedom_inside_cb .text.ieee80211_freedom_init - 0x000000004012b500 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000004013cf7c 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) 0x2c (size before relaxing) - 0x000000004012b504 ieee80211_freedom_init + 0x000000004013cf80 ieee80211_freedom_init .text.ieee80211_user_ie_init - 0x000000004012b524 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000004013cfa0 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) 0x41 (size before relaxing) - 0x000000004012b528 ieee80211_user_ie_init - *fill* 0x000000004012b561 0x3 + 0x000000004013cfa4 ieee80211_user_ie_init + *fill* 0x000000004013cfdd 0x3 .text.ieee80211_ifattach - 0x000000004012b564 0x11e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000004013cfe0 0x11e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) 0x186 (size before relaxing) - 0x000000004012b564 ieee80211_ifattach - *fill* 0x000000004012b682 0x2 + 0x000000004013cfe0 ieee80211_ifattach + *fill* 0x000000004013d0fe 0x2 .text.ieee80211_ifdetach - 0x000000004012b684 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000004013d100 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) 0x1b (size before relaxing) - 0x000000004012b684 ieee80211_ifdetach - *fill* 0x000000004012b693 0x1 + 0x000000004013d100 ieee80211_ifdetach + *fill* 0x000000004013d10f 0x1 .text.wifi_create_softap - 0x000000004012b694 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000004013d110 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) 0x118 (size before relaxing) - 0x000000004012b69c wifi_create_softap + 0x000000004013d118 wifi_create_softap .text.wifi_destroy_softap - 0x000000004012b784 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000004013d200 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) 0x82 (size before relaxing) - 0x000000004012b784 wifi_destroy_softap - *fill* 0x000000004012b7ea 0x2 + 0x000000004013d200 wifi_destroy_softap + *fill* 0x000000004013d266 0x2 .text.wifi_create_sta - 0x000000004012b7ec 0x104 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000004013d268 0x104 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) 0x144 (size before relaxing) - 0x000000004012b7f4 wifi_create_sta + 0x000000004013d270 wifi_create_sta .text.wifi_destroy_sta - 0x000000004012b8f0 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000004013d36c 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) 0x96 (size before relaxing) - 0x000000004012b8f0 wifi_destroy_sta - *fill* 0x000000004012b95e 0x2 + 0x000000004013d36c wifi_destroy_sta + *fill* 0x000000004013d3da 0x2 .text.wifi_mode_set - 0x000000004012b960 0x145 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000004013d3dc 0x145 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) 0x18c (size before relaxing) - 0x000000004012b970 wifi_mode_set - *fill* 0x000000004012baa5 0x3 + 0x000000004013d3ec wifi_mode_set + *fill* 0x000000004013d521 0x3 .text.ieee80211_crypto_encap - 0x000000004012baa8 0x75 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x000000004013d524 0x75 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) 0x81 (size before relaxing) - 0x000000004012bab0 ieee80211_crypto_encap - *fill* 0x000000004012bb1d 0x3 + 0x000000004013d52c ieee80211_crypto_encap + *fill* 0x000000004013d599 0x3 .text.ieee80211_crypto_decap - 0x000000004012bb20 0x89 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x000000004013d59c 0x89 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) 0x9d (size before relaxing) - 0x000000004012bb20 ieee80211_crypto_decap - *fill* 0x000000004012bba9 0x3 + 0x000000004013d59c ieee80211_crypto_decap + *fill* 0x000000004013d625 0x3 .text.ieee80211_crypto_aes_128_cmac_decrypt - 0x000000004012bbac 0x14a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x000000004013d628 0x14a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) 0x17a (size before relaxing) - 0x000000004012bbc4 ieee80211_crypto_aes_128_cmac_decrypt - *fill* 0x000000004012bcf6 0x2 + 0x000000004013d640 ieee80211_crypto_aes_128_cmac_decrypt + *fill* 0x000000004013d772 0x2 .text.ccmp_encap - 0x000000004012bcf8 0xb6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) - *fill* 0x000000004012bdae 0x2 + 0x000000004013d774 0xb6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + *fill* 0x000000004013d82a 0x2 .text.ieee80211_ccmp_decrypt - 0x000000004012bdb0 0x2c8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x000000004013d82c 0x2c8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) 0x2ec (size before relaxing) - 0x000000004012bdc0 ieee80211_ccmp_decrypt + 0x000000004013d83c ieee80211_ccmp_decrypt .text.ieee80211_ccmp_encrypt - 0x000000004012c078 0x107 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x000000004013daf4 0x107 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) 0x11b (size before relaxing) - 0x000000004012c080 ieee80211_ccmp_encrypt - *fill* 0x000000004012c17f 0x1 + 0x000000004013dafc ieee80211_ccmp_encrypt + *fill* 0x000000004013dbfb 0x1 .text.tkip_decap - 0x000000004012c180 0xc9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0x000000004013dbfc 0xc9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) 0xcd (size before relaxing) - *fill* 0x000000004012c249 0x3 + *fill* 0x000000004013dcc5 0x3 .text.tkip_encap - 0x000000004012c24c 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0x000000004013dcc8 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) 0xd2 (size before relaxing) - *fill* 0x000000004012c31a 0x2 + *fill* 0x000000004013dd96 0x2 .text.wep_encap - 0x000000004012c31c 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x000000004013dd98 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) .text.wifi_log - 0x000000004012c398 0x9e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0x000000004013de14 0x9e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) 0xa2 (size before relaxing) - 0x000000004012c3b0 wifi_log - *fill* 0x000000004012c436 0x2 + 0x000000004013de2c wifi_log + *fill* 0x000000004013deb2 0x2 .text.ieee80211_hostap_send_beacon - 0x000000004012c438 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013deb4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x16 (size before relaxing) - *fill* 0x000000004012c446 0x2 + *fill* 0x000000004013dec2 0x2 .text.hostap_handle_timer - 0x000000004012c448 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013dec4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x16 (size before relaxing) - 0x000000004012c448 hostap_handle_timer - *fill* 0x000000004012c456 0x2 + 0x000000004013dec4 hostap_handle_timer + *fill* 0x000000004013ded2 0x2 .text.ieee80211_hostapd_ps_txcb - 0x000000004012c458 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013ded4 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x30 (size before relaxing) - 0x000000004012c45c ieee80211_hostapd_ps_txcb + 0x000000004013ded8 ieee80211_hostapd_ps_txcb .text.ieee80211_hostap_send_beacon_process - 0x000000004012c480 0x3c2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013defc 0x3c2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x3fa (size before relaxing) - 0x000000004012c4c0 ieee80211_hostap_send_beacon_process - *fill* 0x000000004012c842 0x2 + 0x000000004013df3c ieee80211_hostap_send_beacon_process + *fill* 0x000000004013e2be 0x2 .text.ieee80211_hostap_attach - 0x000000004012c844 0x1b0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013e2c0 0x1b0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x224 (size before relaxing) - 0x000000004012c860 ieee80211_hostap_attach + 0x000000004013e2dc ieee80211_hostap_attach .text.hostap_handle_timer_process - 0x000000004012c9f4 0x12c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013e470 0x12c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x17f (size before relaxing) - 0x000000004012ca10 hostap_handle_timer_process - *fill* 0x000000004012cb20 0x0 + 0x000000004013e48c hostap_handle_timer_process + *fill* 0x000000004013e59c 0x0 .text.wifi_ap_reg_rxcb - 0x000000004012cb20 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) - 0x000000004012cb24 wifi_ap_reg_rxcb - *fill* 0x000000004012cb2e 0x2 + 0x000000004013e59c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013e5a0 wifi_ap_reg_rxcb + *fill* 0x000000004013e5aa 0x2 .text.hostap_input - 0x000000004012cb30 0x15a2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013e5ac 0x15a2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x176e (size before relaxing) - 0x000000004012cb88 hostap_input - *fill* 0x000000004012e0d2 0x2 + 0x000000004013e604 hostap_input + *fill* 0x000000004013fb4e 0x2 .text.ap_rx_cb - 0x000000004012e0d4 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013fb50 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x22 (size before relaxing) - 0x000000004012e0d4 ap_rx_cb - *fill* 0x000000004012e0ee 0x2 + 0x000000004013fb50 ap_rx_cb + *fill* 0x000000004013fb6a 0x2 .text.wifi_softap_start - 0x000000004012e0f0 0x2db /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013fb6c 0x2db /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x36b (size before relaxing) - 0x000000004012e118 wifi_softap_start - *fill* 0x000000004012e3cb 0x1 + 0x000000004013fb94 wifi_softap_start + *fill* 0x000000004013fe47 0x1 .text.ieee80211_hostapd_beacon_txcb - 0x000000004012e3cc 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013fe48 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0xae (size before relaxing) - 0x000000004012e3cc ieee80211_hostapd_beacon_txcb - *fill* 0x000000004012e44a 0x2 + 0x000000004013fe48 ieee80211_hostapd_beacon_txcb + *fill* 0x000000004013fec6 0x2 .text.wifi_softap_stop - 0x000000004012e44c 0x159 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000004013fec8 0x159 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) 0x1bd (size before relaxing) - 0x000000004012e44c wifi_softap_stop - *fill* 0x000000004012e5a5 0x3 + 0x000000004013fec8 wifi_softap_stop + *fill* 0x0000000040140021 0x3 .text.ampdu_tx_stop - 0x000000004012e5a8 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140024 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x92 (size before relaxing) - *fill* 0x000000004012e622 0x2 + *fill* 0x000000004014009e 0x2 .text.addba_response_txcb - 0x000000004012e624 0x19f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401400a0 0x19f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x1cb (size before relaxing) - *fill* 0x000000004012e7c3 0x1 + *fill* 0x000000004014023f 0x1 .text.ieee80211_ampdu_timeout - 0x000000004012e7c4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140240 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x16 (size before relaxing) - *fill* 0x000000004012e7d2 0x2 + *fill* 0x000000004014024e 0x2 .text.addba_timeout - 0x000000004012e7d4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140250 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x16 (size before relaxing) - *fill* 0x000000004012e7e2 0x2 + *fill* 0x000000004014025e 0x2 .text.ieee80211_add_htinfo_body - 0x000000004012e7e4 0x175 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140260 0x175 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x189 (size before relaxing) - *fill* 0x000000004012e959 0x3 + *fill* 0x00000000401403d5 0x3 .text.ieee80211_add_htcap_body - 0x000000004012e95c 0x200 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401403d8 0x200 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x21c (size before relaxing) .text.ht_recv_action_ba_addba_response - 0x000000004012eb5c 0x12c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401405d8 0x12c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x14c (size before relaxing) .text.ampdu_rx_stop - 0x000000004012ec88 0x123 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140704 0x123 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x14b (size before relaxing) - *fill* 0x000000004012edab 0x1 + *fill* 0x0000000040140827 0x1 .text.ht_recv_action_ba_delba - 0x000000004012edac 0x43 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140828 0x43 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x62 (size before relaxing) - *fill* 0x000000004012edef 0x1 + *fill* 0x000000004014086b 0x1 .text.ht_action_output - 0x000000004012edf0 0xe5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x000000004014086c 0xe1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0xfd (size before relaxing) - *fill* 0x000000004012eed5 0x3 + *fill* 0x000000004014094d 0x3 .text.ht_send_action_ba_delba - 0x000000004012eed8 0x118 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140950 0x118 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x144 (size before relaxing) .text.ht_send_action_ba_addba - 0x000000004012eff0 0x1c6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140a68 0x1c6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x1f6 (size before relaxing) - *fill* 0x000000004012f1b6 0x2 + *fill* 0x0000000040140c2e 0x2 .text.ieee80211_ht_attach - 0x000000004012f1b8 0x226 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140c30 0x21e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x27a (size before relaxing) - 0x000000004012f200 ieee80211_ht_attach - *fill* 0x000000004012f3de 0x2 + 0x0000000040140c70 ieee80211_ht_attach + *fill* 0x0000000040140e4e 0x2 .text.ampdu_alloc_rx_ba_index - 0x000000004012f3e0 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140e50 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x88 (size before relaxing) - 0x000000004012f3e0 ampdu_alloc_rx_ba_index + 0x0000000040140e50 ampdu_alloc_rx_ba_index .text.ht_recv_action_ba_addba_request - 0x000000004012f450 0x1e8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040140ec0 0x1e8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x22c (size before relaxing) .text.ieee80211_ht_deattach - 0x000000004012f638 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401410a8 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x40 (size before relaxing) - 0x000000004012f638 ieee80211_ht_deattach + 0x00000000401410a8 ieee80211_ht_deattach .text.ieee80211_cal_tx_pps - 0x000000004012f664 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401410d4 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x5a (size before relaxing) - 0x000000004012f664 ieee80211_cal_tx_pps - *fill* 0x000000004012f6b2 0x2 + 0x00000000401410d4 ieee80211_cal_tx_pps + *fill* 0x0000000040141122 0x2 .text.ieee80211_ampdu_enable - 0x000000004012f6b4 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040141124 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x2e (size before relaxing) - 0x000000004012f6b4 ieee80211_ampdu_enable - *fill* 0x000000004012f6de 0x2 + 0x0000000040141124 ieee80211_ampdu_enable + *fill* 0x000000004014114e 0x2 .text.addba_timeout_process - 0x000000004012f6e0 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040141150 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x56 (size before relaxing) - 0x000000004012f6e0 addba_timeout_process - *fill* 0x000000004012f732 0x2 + 0x0000000040141150 addba_timeout_process + *fill* 0x00000000401411a2 0x2 .text.ieee80211_ampdu_request - 0x000000004012f734 0x204 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401411a4 0x204 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x244 (size before relaxing) - 0x000000004012f754 ieee80211_ampdu_request + 0x00000000401411c4 ieee80211_ampdu_request .text.ieee80211_ampdu_age_all - 0x000000004012f938 0x30a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401413a8 0x30a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x34a (size before relaxing) - 0x000000004012f948 ieee80211_ampdu_age_all - *fill* 0x000000004012fc42 0x2 + 0x00000000401413b8 ieee80211_ampdu_age_all + *fill* 0x00000000401416b2 0x2 .text.ieee80211_ampdu_deinit_age_timer - 0x000000004012fc44 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401416b4 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x52 (size before relaxing) - 0x000000004012fc44 ieee80211_ampdu_deinit_age_timer - *fill* 0x000000004012fc86 0x2 + 0x00000000401416b4 ieee80211_ampdu_deinit_age_timer + *fill* 0x00000000401416f6 0x2 .text.ieee80211_recv_bar - 0x000000004012fc88 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401416f8 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x88 (size before relaxing) - 0x000000004012fc88 ieee80211_recv_bar + 0x00000000401416f8 ieee80211_recv_bar .text.ieee80211_ht_node_cleanup - 0x000000004012fcf8 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040141768 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x3c (size before relaxing) - 0x000000004012fcf8 ieee80211_ht_node_cleanup + 0x0000000040141768 ieee80211_ht_node_cleanup .text.ieee80211_ht_node_init - 0x000000004012fd24 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040141794 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x7e (size before relaxing) - 0x000000004012fd28 ieee80211_ht_node_init - *fill* 0x000000004012fd86 0x2 + 0x0000000040141798 ieee80211_ht_node_init + *fill* 0x00000000401417f6 0x2 .text.ieee80211_parse_htcap - 0x000000004012fd88 0xf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401417f8 0xf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x10f (size before relaxing) - 0x000000004012fd90 ieee80211_parse_htcap - *fill* 0x000000004012fe7b 0x1 + 0x0000000040141800 ieee80211_parse_htcap + *fill* 0x00000000401418eb 0x1 .text.ieee80211_has_ht40_bss - 0x000000004012fe7c 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401418ec 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0xba (size before relaxing) - 0x000000004012fe7c ieee80211_has_ht40_bss - *fill* 0x000000004012ff2e 0x2 + 0x00000000401418ec ieee80211_has_ht40_bss + *fill* 0x000000004014199e 0x2 .text.ieee80211_update_channel - 0x000000004012ff30 0x356 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401419a0 0x356 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x3aa (size before relaxing) - 0x000000004012ff40 ieee80211_update_channel - *fill* 0x0000000040130286 0x2 + 0x00000000401419b0 ieee80211_update_channel + *fill* 0x0000000040141cf6 0x2 .text.ieee80211_ht_updatehtcap - 0x0000000040130288 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040141cf8 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x3e (size before relaxing) - 0x0000000040130288 ieee80211_ht_updatehtcap - *fill* 0x00000000401302b7 0x1 + 0x0000000040141cf8 ieee80211_ht_updatehtcap + *fill* 0x0000000040141d27 0x1 .text.ieee80211_ht_updateparams - 0x00000000401302b8 0x1fb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040141d28 0x1fb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x24b (size before relaxing) - 0x00000000401302cc ieee80211_ht_updateparams - *fill* 0x00000000401304b3 0x1 + 0x0000000040141d3c ieee80211_ht_updateparams + *fill* 0x0000000040141f23 0x1 .text.ieee80211_setup_htrates - 0x00000000401304b4 0xbf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040141f24 0xbf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0xdb (size before relaxing) - 0x00000000401304b4 ieee80211_setup_htrates - *fill* 0x0000000040130573 0x1 + 0x0000000040141f24 ieee80211_setup_htrates + *fill* 0x0000000040141fe3 0x1 .text.ieee80211_setup_basic_htrates - 0x0000000040130574 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040141fe4 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0xa7 (size before relaxing) - 0x0000000040130578 ieee80211_setup_basic_htrates - *fill* 0x0000000040130603 0x1 + 0x0000000040141fe8 ieee80211_setup_basic_htrates + *fill* 0x0000000040142073 0x1 .text.ieee80211_add_htcap - 0x0000000040130604 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040142074 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x51 (size before relaxing) - 0x0000000040130608 ieee80211_add_htcap - *fill* 0x0000000040130641 0x3 + 0x0000000040142078 ieee80211_add_htcap + *fill* 0x00000000401420b1 0x3 .text.ieee80211_add_htcap_vendor - 0x0000000040130644 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401420b4 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x38 (size before relaxing) - 0x0000000040130644 ieee80211_add_htcap_vendor + 0x00000000401420b4 ieee80211_add_htcap_vendor .text.ieee80211_add_htinfo - 0x0000000040130678 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401420e8 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x51 (size before relaxing) - 0x000000004013067c ieee80211_add_htinfo - *fill* 0x00000000401306b5 0x3 + 0x00000000401420ec ieee80211_add_htinfo + *fill* 0x0000000040142125 0x3 .text.ieee80211_add_htinfo_vendor - 0x00000000401306b8 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x0000000040142128 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x68 (size before relaxing) - 0x00000000401306bc ieee80211_add_htinfo_vendor + 0x000000004014212c ieee80211_add_htinfo_vendor .text.ieee80211_decap1 - 0x000000004013070c 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) - 0x0000000040130710 ieee80211_decap1 + 0x000000004014217c 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x70 (size before relaxing) + 0x000000004014217c ieee80211_decap1 .text.ieee80211_decap_amsdu - 0x000000004013077c 0x107 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x00000000401421e8 0x107 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) 0x133 (size before relaxing) - 0x0000000040130780 ieee80211_decap_amsdu - *fill* 0x0000000040130883 0x1 + 0x00000000401421ec ieee80211_decap_amsdu + *fill* 0x00000000401422ef 0x1 .text.ieee80211_add_ie_vendor_esp_head - 0x0000000040130884 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) - 0x0000000040130888 ieee80211_add_ie_vendor_esp_head + 0x00000000401422f0 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x00000000401422f4 ieee80211_add_ie_vendor_esp_head .text.ieee80211_add_ie_vendor_esp_manufacturer - 0x00000000401308b8 0x6f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x0000000040142324 0x6f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) 0x77 (size before relaxing) - 0x00000000401308b8 ieee80211_add_ie_vendor_esp_manufacturer - *fill* 0x0000000040130927 0x1 + 0x0000000040142324 ieee80211_add_ie_vendor_esp_manufacturer + *fill* 0x0000000040142393 0x1 .text.wpa_cipher - 0x0000000040130928 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040142394 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0x8a (size before relaxing) - *fill* 0x00000000401309aa 0x2 + *fill* 0x0000000040142416 0x2 .text.rsn_cipher - 0x00000000401309ac 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040142418 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) .text.ieee80211_decap - 0x0000000040130a4c 0x1a7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x00000000401424b8 0x1a7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0x1cf (size before relaxing) - 0x0000000040130a58 ieee80211_decap - *fill* 0x0000000040130bf3 0x1 + 0x00000000401424c4 ieee80211_decap + *fill* 0x000000004014265f 0x1 .text.ieee80211_setup_phy_mode - 0x0000000040130bf4 0xe4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040142660 0xe4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0xf0 (size before relaxing) - 0x0000000040130c00 ieee80211_setup_phy_mode + 0x000000004014266c ieee80211_setup_phy_mode .text.ieee80211_setup_rates - 0x0000000040130cd8 0x129 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040142744 0x129 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0x131 (size before relaxing) - 0x0000000040130cd8 ieee80211_setup_rates - *fill* 0x0000000040130e01 0x3 + 0x0000000040142744 ieee80211_setup_rates + *fill* 0x000000004014286d 0x3 .text.ieee80211_set_max_rate - 0x0000000040130e04 0x11d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040142870 0x11d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0x139 (size before relaxing) - 0x0000000040130e10 ieee80211_set_max_rate - *fill* 0x0000000040130f21 0x3 + 0x000000004014287c ieee80211_set_max_rate + *fill* 0x000000004014298d 0x3 .text.ieee80211_alloc_challenge - 0x0000000040130f24 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040142990 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0x49 (size before relaxing) - 0x0000000040130f28 ieee80211_alloc_challenge - *fill* 0x0000000040130f61 0x3 + 0x0000000040142994 ieee80211_alloc_challenge + *fill* 0x00000000401429cd 0x3 .text.ieee80211_parse_beacon - 0x0000000040130f64 0x683 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x00000000401429d0 0x683 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0x6cb (size before relaxing) - 0x0000000040130f74 ieee80211_parse_beacon - *fill* 0x00000000401315e7 0x1 + 0x00000000401429e0 ieee80211_parse_beacon + *fill* 0x0000000040143053 0x1 .text.ieee80211_parse_wpa - 0x00000000401315e8 0x122 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040143054 0x122 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0x13a (size before relaxing) - 0x00000000401315e8 ieee80211_parse_wpa - *fill* 0x000000004013170a 0x2 + 0x0000000040143054 ieee80211_parse_wpa + *fill* 0x0000000040143176 0x2 .text.ieee80211_better_rsn_pairwise_cipher - 0x000000004013170c 0xb3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040143178 0xb3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0xb7 (size before relaxing) - 0x0000000040131710 ieee80211_better_rsn_pairwise_cipher - *fill* 0x00000000401317bf 0x1 + 0x000000004014317c ieee80211_better_rsn_pairwise_cipher + *fill* 0x000000004014322b 0x1 .text.ieee80211_parse_rsn - 0x00000000401317c0 0x5a5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x000000004014322c 0x5a5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0x629 (size before relaxing) - 0x000000004013182c ieee80211_parse_rsn - *fill* 0x0000000040131d65 0x3 + 0x0000000040143298 ieee80211_parse_rsn + *fill* 0x00000000401437d1 0x3 .text.ieee80211_is_ht_cipher - 0x0000000040131d68 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x00000000401437d4 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0x2b (size before relaxing) - 0x0000000040131d68 ieee80211_is_ht_cipher - *fill* 0x0000000040131d8f 0x1 + 0x00000000401437d4 ieee80211_is_ht_cipher + *fill* 0x00000000401437fb 0x1 .text.ieee80211_parse_action - 0x0000000040131d90 0xdc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x00000000401437fc 0xdc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) 0xf8 (size before relaxing) - 0x0000000040131d90 ieee80211_parse_action + 0x00000000401437fc ieee80211_parse_action .text.wifi_get_bw_process - 0x0000000040131e6c 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401438d8 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x2e (size before relaxing) - 0x0000000040131e6c wifi_get_bw_process - *fill* 0x0000000040131e96 0x2 + 0x00000000401438d8 wifi_get_bw_process + *fill* 0x0000000040143902 0x2 .text.wifi_set_vnd_ie_cb_process - 0x0000000040131e98 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143904 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x20 (size before relaxing) - 0x0000000040131e98 wifi_set_vnd_ie_cb_process + 0x0000000040143904 wifi_set_vnd_ie_cb_process .text.wifi_set_event_mask - 0x0000000040131eb4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143920 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x12 (size before relaxing) - 0x0000000040131eb4 wifi_set_event_mask - *fill* 0x0000000040131ec2 0x2 + 0x0000000040143920 wifi_set_event_mask + *fill* 0x000000004014392e 0x2 .text.wifi_set_wps_cb_process - 0x0000000040131ec4 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143930 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x29 (size before relaxing) - 0x0000000040131ec4 wifi_set_wps_cb_process - *fill* 0x0000000040131ee5 0x3 + 0x0000000040143930 wifi_set_wps_cb_process + *fill* 0x0000000040143951 0x3 .text.wifi_ioctl_ht2040_get - 0x0000000040131ee8 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143954 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x1a (size before relaxing) - 0x0000000040131ee8 wifi_ioctl_ht2040_get - *fill* 0x0000000040131efe 0x2 + 0x0000000040143954 wifi_ioctl_ht2040_get + *fill* 0x000000004014396a 0x2 .text.wifi_restart_process - 0x0000000040131f00 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004014396c 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x35 (size before relaxing) - 0x0000000040131f00 wifi_restart_process - *fill* 0x0000000040131f26 0x2 + 0x000000004014396c wifi_restart_process + *fill* 0x0000000040143992 0x2 .text.wifi_pmk_is_valid - 0x0000000040131f28 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143994 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x2d (size before relaxing) - *fill* 0x0000000040131f4d 0x3 + *fill* 0x00000000401439b9 0x3 .text.wifi_set_ant_gpio - 0x0000000040131f50 0xb7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401439bc 0xb7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xc3 (size before relaxing) - 0x0000000040131f5c wifi_set_ant_gpio - *fill* 0x0000000040132007 0x1 + 0x00000000401439c8 wifi_set_ant_gpio + *fill* 0x0000000040143a73 0x1 .text.wifi_wpa2_ent_enable_process - 0x0000000040132008 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143a74 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x41 (size before relaxing) - 0x0000000040132010 wifi_wpa2_ent_enable_process - *fill* 0x0000000040132045 0x3 + 0x0000000040143a7c wifi_wpa2_ent_enable_process + *fill* 0x0000000040143ab1 0x3 .text.wifi_wpa2_ent_disable_process - 0x0000000040132048 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143ab4 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x41 (size before relaxing) - 0x0000000040132048 wifi_wpa2_ent_disable_process - *fill* 0x000000004013207d 0x3 + 0x0000000040143ab4 wifi_wpa2_ent_disable_process + *fill* 0x0000000040143ae9 0x3 .text.wifi_set_wps_type_process - 0x0000000040132080 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143aec 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x38 (size before relaxing) - 0x0000000040132088 wifi_set_wps_type_process + 0x0000000040143af4 wifi_set_wps_type_process .text.wifi_set_wps_status_process - 0x00000000401320b0 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143b1c 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x34 (size before relaxing) - 0x00000000401320b4 wifi_set_wps_status_process + 0x0000000040143b20 wifi_set_wps_status_process .text.ieee80211_ioctl_process - 0x00000000401320dc 0xc8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143b48 0xc8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xd4 (size before relaxing) - 0x00000000401320e8 ieee80211_ioctl_process + 0x0000000040143b54 ieee80211_ioctl_process .text.wifi_scan_stop_process - 0x00000000401321a4 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143c10 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x39 (size before relaxing) - 0x00000000401321a8 wifi_scan_stop_process - *fill* 0x00000000401321c9 0x3 + 0x0000000040143c14 wifi_scan_stop_process + *fill* 0x0000000040143c35 0x3 .text.wifi_scan_start_process - 0x00000000401321cc 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143c38 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xc0 (size before relaxing) - 0x00000000401321dc wifi_scan_start_process + 0x0000000040143c48 wifi_scan_start_process .text.wifi_get_sta_list_process - 0x000000004013226c 0x130 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143cd8 0x130 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x148 (size before relaxing) - 0x0000000040132270 wifi_get_sta_list_process + 0x0000000040143cdc wifi_get_sta_list_process .text.wifi_set_vnd_ie_process - 0x000000004013239c 0x11c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143e08 0x11c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x128 (size before relaxing) - 0x000000004013239c wifi_set_vnd_ie_process + 0x0000000040143e08 wifi_set_vnd_ie_process .text.wifi_get_ap_info_process - 0x00000000401324b8 0x17c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040143f24 0x17c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x198 (size before relaxing) - 0x00000000401324c4 wifi_get_ap_info_process + 0x0000000040143f30 wifi_get_ap_info_process .text.wifi_set_promis_filter_process - 0x0000000040132634 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401440a0 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x13 (size before relaxing) - 0x0000000040132634 wifi_set_promis_filter_process - *fill* 0x0000000040132643 0x1 + 0x00000000401440a0 wifi_set_promis_filter_process + *fill* 0x00000000401440af 0x1 .text.wifi_set_promis_ctrl_filter_process - 0x0000000040132644 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401440b0 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x13 (size before relaxing) - 0x0000000040132644 wifi_set_promis_ctrl_filter_process - *fill* 0x0000000040132653 0x1 + 0x00000000401440b0 wifi_set_promis_ctrl_filter_process + *fill* 0x00000000401440bf 0x1 .text.wifi_deinit_process - 0x0000000040132654 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401440c0 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x37 (size before relaxing) - 0x0000000040132654 wifi_deinit_process - *fill* 0x0000000040132673 0x1 + 0x00000000401440c0 wifi_deinit_process + *fill* 0x00000000401440df 0x1 .text.wifi_get_ap_list_process - 0x0000000040132674 0x303 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401440e0 0x303 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x346 (size before relaxing) - 0x0000000040132684 wifi_get_ap_list_process - *fill* 0x0000000040132977 0x1 + 0x00000000401440f0 wifi_get_ap_list_process + *fill* 0x00000000401443e3 0x1 .text.wifi_station_set_config_local_2 - 0x0000000040132978 0x332 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401443e4 0x332 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x3c6 (size before relaxing) - *fill* 0x0000000040132caa 0x2 + *fill* 0x0000000040144716 0x2 .text.wifi_set_config_process - 0x0000000040132cac 0x726 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040144718 0x726 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x84e (size before relaxing) - 0x0000000040132ccc wifi_set_config_process - *fill* 0x00000000401333d2 0x2 + 0x0000000040144738 wifi_set_config_process + *fill* 0x0000000040144e3e 0x2 .text.wifi_get_protocol_process - 0x00000000401333d4 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040144e40 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x80 (size before relaxing) - 0x00000000401333d4 wifi_get_protocol_process + 0x0000000040144e40 wifi_get_protocol_process .text.wifi_set_home_channel_process - 0x0000000040133448 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040144eb4 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x36 (size before relaxing) - 0x0000000040133448 wifi_set_home_channel_process - *fill* 0x0000000040133472 0x2 + 0x0000000040144eb4 wifi_set_home_channel_process + *fill* 0x0000000040144ede 0x2 .text.wifi_set_channel_process - 0x0000000040133474 0x101 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040144ee0 0x101 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x121 (size before relaxing) - 0x0000000040133478 wifi_set_channel_process - *fill* 0x0000000040133575 0x3 + 0x0000000040144ee4 wifi_set_channel_process + *fill* 0x0000000040144fe1 0x3 .text.wifi_get_channel_process - 0x0000000040133578 0x41 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040144fe4 0x41 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x45 (size before relaxing) - 0x0000000040133578 wifi_get_channel_process - *fill* 0x00000000401335b9 0x3 + 0x0000000040144fe4 wifi_get_channel_process + *fill* 0x0000000040145025 0x3 .text.wifi_set_ps_process - 0x00000000401335bc 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145028 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x14 (size before relaxing) - 0x00000000401335bc wifi_set_ps_process - *fill* 0x00000000401335c9 0x3 + 0x0000000040145028 wifi_set_ps_process + *fill* 0x0000000040145035 0x3 .text.wifi_get_country - 0x00000000401335cc 0x77 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145038 0x77 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x83 (size before relaxing) - 0x00000000401335cc wifi_get_country - *fill* 0x0000000040133643 0x1 + 0x0000000040145038 wifi_get_country + *fill* 0x00000000401450af 0x1 .text.wifi_set_rxcb_process - 0x0000000040133644 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401450b0 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x2c (size before relaxing) - 0x0000000040133644 wifi_set_rxcb_process + 0x00000000401450b0 wifi_set_rxcb_process .text.wifi_set_csi - 0x0000000040133668 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401450d4 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x1c (size before relaxing) - 0x0000000040133668 wifi_set_csi + 0x00000000401450d4 wifi_set_csi .text.wifi_csi_set_config - 0x000000004013367c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401450e8 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x14 (size before relaxing) - 0x000000004013367c wifi_csi_set_config - *fill* 0x0000000040133689 0x3 + 0x00000000401450e8 wifi_csi_set_config + *fill* 0x00000000401450f5 0x3 .text.wifi_deauth_sta_process - 0x000000004013368c 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401450f8 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x109 (size before relaxing) - 0x0000000040133690 wifi_deauth_sta_process - *fill* 0x0000000040133762 0x2 + 0x00000000401450fc wifi_deauth_sta_process + *fill* 0x00000000401451ce 0x2 .text.wifi_set_log_mod_process - 0x0000000040133764 0x92 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - 0x0000000040133768 wifi_set_log_mod_process - *fill* 0x00000000401337f6 0x2 + 0x00000000401451d0 0x92 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401451d4 wifi_set_log_mod_process + *fill* 0x0000000040145262 0x2 .text.wifi_set_auto_connect_process - 0x00000000401337f8 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145264 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x7e (size before relaxing) - 0x00000000401337f8 wifi_set_auto_connect_process - *fill* 0x0000000040133856 0x2 + 0x0000000040145264 wifi_set_auto_connect_process + *fill* 0x00000000401452c2 0x2 .text.wifi_internal_ioctl_process - 0x0000000040133858 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401452c4 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x85 (size before relaxing) - 0x000000004013386c wifi_internal_ioctl_process - *fill* 0x00000000401338d1 0x3 + 0x00000000401452d8 wifi_internal_ioctl_process + *fill* 0x000000004014533d 0x3 .text.wifi_set_max_tpw - 0x00000000401338d4 0x49 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145340 0x49 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x6d (size before relaxing) - 0x00000000401338d4 wifi_set_max_tpw - *fill* 0x000000004013391d 0x3 + 0x0000000040145340 wifi_set_max_tpw + *fill* 0x0000000040145389 0x3 .text.wifi_set_fix_rate_process - 0x0000000040133920 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004014538c 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x76 (size before relaxing) - 0x0000000040133928 wifi_set_fix_rate_process - *fill* 0x000000004013397e 0x2 + 0x0000000040145394 wifi_set_fix_rate_process + *fill* 0x00000000401453ea 0x2 .text.wifi_ipc_process - 0x0000000040133980 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401453ec 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x64 (size before relaxing) - 0x0000000040133984 wifi_ipc_process + 0x00000000401453f0 wifi_ipc_process .text.wifi_ioctl_ht2040_set - 0x00000000401339d4 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145440 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x74 (size before relaxing) - 0x00000000401339dc wifi_ioctl_ht2040_set + 0x0000000040145448 wifi_ioctl_ht2040_set .text.wifi_mesh_map_deauth_progress - 0x0000000040133a2c 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145498 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x9e (size before relaxing) - 0x0000000040133a2c wifi_mesh_map_deauth_progress - *fill* 0x0000000040133ab2 0x2 + 0x0000000040145498 wifi_mesh_map_deauth_progress + *fill* 0x000000004014551e 0x2 .text._do_wifi_stop$part$14 - 0x0000000040133ab4 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145520 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x40 (size before relaxing) .text.ieee80211_set_appie$part$30 - 0x0000000040133ae4 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145550 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xc4 (size before relaxing) .text.wifi_set_appie_process - 0x0000000040133b98 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145604 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x26 (size before relaxing) - 0x0000000040133b98 wifi_set_appie_process - *fill* 0x0000000040133bb6 0x2 + 0x0000000040145604 wifi_set_appie_process + *fill* 0x0000000040145622 0x2 .text.current_task_is_wifi_task - 0x0000000040133bb8 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145624 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x27 (size before relaxing) - 0x0000000040133bbc current_task_is_wifi_task - *fill* 0x0000000040133bdb 0x1 + 0x0000000040145628 current_task_is_wifi_task + *fill* 0x0000000040145647 0x1 .text._do_wifi_start - 0x0000000040133bdc 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145648 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xb6 (size before relaxing) - 0x0000000040133be0 _do_wifi_start - *fill* 0x0000000040133c6a 0x2 + 0x000000004014564c _do_wifi_start + *fill* 0x00000000401456d6 0x2 .text.wifi_set_mac_process - 0x0000000040133c6c 0x117 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401456d8 0x117 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x183 (size before relaxing) - 0x0000000040133c70 wifi_set_mac_process - *fill* 0x0000000040133d83 0x1 + 0x00000000401456dc wifi_set_mac_process + *fill* 0x00000000401457ef 0x1 .text.ieee80211_set_phy_bw - 0x0000000040133d84 0x11c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401457f0 0x11c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x138 (size before relaxing) - 0x0000000040133d84 ieee80211_set_phy_bw + 0x00000000401457f0 ieee80211_set_phy_bw .text.ieee80211_set_phy_mode - 0x0000000040133ea0 0x11e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004014590c 0x11e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x16d (size before relaxing) - 0x0000000040133ea0 ieee80211_set_phy_mode - *fill* 0x0000000040133fbe 0x2 + 0x000000004014590c ieee80211_set_phy_mode + *fill* 0x0000000040145a2a 0x2 .text.wifi_set_protocol_process - 0x0000000040133fc0 0xaa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145a2c 0xaa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xc2 (size before relaxing) - 0x0000000040133fc0 wifi_set_protocol_process - *fill* 0x000000004013406a 0x2 + 0x0000000040145a2c wifi_set_protocol_process + *fill* 0x0000000040145ad6 0x2 .text.wifi_set_bw_process - 0x000000004013406c 0xc6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145ad8 0xc6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xde (size before relaxing) - 0x000000004013406c wifi_set_bw_process - *fill* 0x0000000040134132 0x2 + 0x0000000040145ad8 wifi_set_bw_process + *fill* 0x0000000040145b9e 0x2 .text.wifi_station_save_ap_channel - 0x0000000040134134 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145ba0 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x86 (size before relaxing) - 0x0000000040134134 wifi_station_save_ap_channel - *fill* 0x000000004013419a 0x2 + 0x0000000040145ba0 wifi_station_save_ap_channel + *fill* 0x0000000040145c06 0x2 .text.ieee80211_sta_connect - 0x000000004013419c 0xd1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145c08 0xd1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x10d (size before relaxing) - 0x00000000401341b8 ieee80211_sta_connect - *fill* 0x000000004013426d 0x3 + 0x0000000040145c24 ieee80211_sta_connect + *fill* 0x0000000040145cd9 0x3 .text._do_wifi_connect - 0x0000000040134270 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145cdc 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x4a (size before relaxing) - *fill* 0x00000000401342a7 0x1 + *fill* 0x0000000040145d13 0x1 .text.wifi_connect_process - 0x00000000401342a8 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145d14 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x5a (size before relaxing) - 0x00000000401342b0 wifi_connect_process - *fill* 0x00000000401342ea 0x2 + 0x0000000040145d1c wifi_connect_process + *fill* 0x0000000040145d56 0x2 .text.ieee80211_sta_disconnect - 0x00000000401342ec 0x97 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145d58 0x97 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xbf (size before relaxing) - 0x00000000401342ec ieee80211_sta_disconnect - *fill* 0x0000000040134383 0x1 + 0x0000000040145d58 ieee80211_sta_disconnect + *fill* 0x0000000040145def 0x1 .text._do_wifi_disconnect - 0x0000000040134384 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145df0 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xac (size before relaxing) .text.wifi_disconnect_process - 0x0000000040134400 0x5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145e6c 0x5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x7c (size before relaxing) - 0x0000000040134404 wifi_disconnect_process + 0x0000000040145e70 wifi_disconnect_process .text.wifi_get_macaddr - 0x000000004013445c 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145ec8 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x3c (size before relaxing) - 0x000000004013445c wifi_get_macaddr + 0x0000000040145ec8 wifi_get_macaddr .text.chip_enable - 0x0000000040134490 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145efc 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x34 (size before relaxing) - 0x0000000040134490 chip_enable + 0x0000000040145efc chip_enable .text.chip_disable - 0x00000000401344ac 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145f18 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x34 (size before relaxing) - 0x00000000401344ac chip_disable + 0x0000000040145f18 chip_disable .text.wifi_reset_mac - 0x00000000401344c8 0x69 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145f34 0x61 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x6d (size before relaxing) - 0x00000000401344dc wifi_reset_mac - *fill* 0x0000000040134531 0x3 + 0x0000000040145f40 wifi_reset_mac + *fill* 0x0000000040145f95 0x3 .text.wifi_rf_phy_disable - 0x0000000040134534 0x10c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040145f98 0x10c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x138 (size before relaxing) - 0x0000000040134544 wifi_rf_phy_disable + 0x0000000040145fa8 wifi_rf_phy_disable .text.wifi_txq_empty - 0x0000000040134640 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401460a4 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x34 (size before relaxing) - 0x0000000040134640 wifi_txq_empty + 0x00000000401460a4 wifi_txq_empty .text.wifi_stop_sw_txq - 0x0000000040134664 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401460c8 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x4c (size before relaxing) - 0x0000000040134668 wifi_stop_sw_txq + 0x00000000401460cc wifi_stop_sw_txq .text.wifi_hw_stop - 0x0000000040134690 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401460f4 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xc2 (size before relaxing) - 0x0000000040134694 wifi_hw_stop - *fill* 0x0000000040134702 0x2 + 0x00000000401460f8 wifi_hw_stop + *fill* 0x0000000040146166 0x2 .text.wifi_stop_process - 0x0000000040134704 0xc1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146168 0xc1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x131 (size before relaxing) - 0x0000000040134708 wifi_stop_process - *fill* 0x00000000401347c5 0x3 + 0x000000004014616c wifi_stop_process + *fill* 0x0000000040146229 0x3 .text.wifi_menuconfig_init - 0x00000000401347c8 0x21c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004014622c 0x220 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x258 (size before relaxing) - 0x00000000401347fc wifi_menuconfig_init + 0x0000000040146264 wifi_menuconfig_init .text.wpa_crypto_funcs_init - 0x00000000401349e4 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004014644c 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x43 (size before relaxing) - 0x00000000401349ec wpa_crypto_funcs_init - *fill* 0x0000000040134a1b 0x1 + 0x0000000040146458 wpa_crypto_funcs_init + *fill* 0x0000000040146487 0x1 .text.wifi_lmac_init - 0x0000000040134a1c 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146488 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x116 (size before relaxing) - 0x0000000040134a3c wifi_lmac_init - *fill* 0x0000000040134aea 0x2 + 0x00000000401464a8 wifi_lmac_init + *fill* 0x0000000040146556 0x2 .text.wifi_init_process - 0x0000000040134aec 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146558 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x14a (size before relaxing) - 0x0000000040134af8 wifi_init_process - *fill* 0x0000000040134bba 0x2 + 0x0000000040146564 wifi_init_process + *fill* 0x0000000040146626 0x2 .text.wifi_set_chan_range - 0x0000000040134bbc 0x95 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146628 0x95 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xd1 (size before relaxing) - 0x0000000040134bc0 wifi_set_chan_range - *fill* 0x0000000040134c51 0x3 + 0x000000004014662c wifi_set_chan_range + *fill* 0x00000000401466bd 0x3 .text.wifi_set_country - 0x0000000040134c54 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401466c0 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x160 (size before relaxing) - 0x0000000040134c60 wifi_set_country + 0x00000000401466cc wifi_set_country .text.wifi_mac_restore - 0x0000000040134d74 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x00000000401467e0 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x4e (size before relaxing) - 0x0000000040134d74 wifi_mac_restore - *fill* 0x0000000040134daa 0x2 + 0x00000000401467e0 wifi_mac_restore + *fill* 0x0000000040146816 0x2 .text.wifi_restore_process - 0x0000000040134dac 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146818 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x25 (size before relaxing) - 0x0000000040134dac wifi_restore_process - *fill* 0x0000000040134dbd 0x3 + 0x0000000040146818 wifi_restore_process + *fill* 0x0000000040146829 0x3 .text.wifi_ant_config_check - 0x0000000040134dc0 0x49 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004014682c 0x49 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x59 (size before relaxing) - 0x0000000040134dc8 wifi_ant_config_check - *fill* 0x0000000040134e09 0x3 + 0x0000000040146834 wifi_ant_config_check + *fill* 0x0000000040146875 0x3 .text.wifi_ant_update - 0x0000000040134e0c 0x8d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146878 0x8d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xa9 (size before relaxing) - 0x0000000040134e10 wifi_ant_update - *fill* 0x0000000040134e99 0x3 + 0x000000004014687c wifi_ant_update + *fill* 0x0000000040146905 0x3 .text.wifi_rf_phy_enable - 0x0000000040134e9c 0xfb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146908 0xfb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x137 (size before relaxing) - 0x0000000040134e9c wifi_rf_phy_enable - *fill* 0x0000000040134f97 0x1 + 0x0000000040146908 wifi_rf_phy_enable + *fill* 0x0000000040146a03 0x1 .text.wifi_hw_start - 0x0000000040134f98 0x5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146a04 0x5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xa4 (size before relaxing) - 0x0000000040134f98 wifi_hw_start + 0x0000000040146a04 wifi_hw_start .text.wifi_set_promis_process - 0x0000000040134ff4 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146a60 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x96 (size before relaxing) - 0x0000000040134ff8 wifi_set_promis_process - *fill* 0x0000000040135066 0x2 + 0x0000000040146a64 wifi_set_promis_process + *fill* 0x0000000040146ad2 0x2 .text.wifi_set_mode_process - 0x0000000040135068 0x1a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146ad4 0x1a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x274 (size before relaxing) - 0x0000000040135068 wifi_set_mode_process + 0x0000000040146ad4 wifi_set_mode_process .text.wifi_start_process - 0x0000000040135210 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146c7c 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xd8 (size before relaxing) - 0x0000000040135210 wifi_start_process + 0x0000000040146c7c wifi_start_process .text.wifi_set_ant - 0x0000000040135294 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146d00 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x4f (size before relaxing) - 0x0000000040135294 wifi_set_ant - *fill* 0x00000000401352cb 0x1 + 0x0000000040146d00 wifi_set_ant + *fill* 0x0000000040146d37 0x1 .text.wifi_wps_is_started - 0x00000000401352cc 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - 0x00000000401352d0 wifi_wps_is_started - *fill* 0x00000000401352db 0x1 + 0x0000000040146d38 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146d3c wifi_wps_is_started + *fill* 0x0000000040146d47 0x1 .text.wifi_wpa2_is_started - 0x00000000401352dc 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146d48 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0xf (size before relaxing) - 0x00000000401352dc wifi_wpa2_is_started - *fill* 0x00000000401352e7 0x1 + 0x0000000040146d48 wifi_wpa2_is_started + *fill* 0x0000000040146d53 0x1 .text.ieee80211_ioctl_init - 0x00000000401352e8 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146d54 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x3c (size before relaxing) - 0x00000000401352f0 ieee80211_ioctl_init + 0x0000000040146d5c ieee80211_ioctl_init .text.ieee80211_ioctl_deinit - 0x000000004013530c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146d78 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x12 (size before relaxing) - 0x000000004013530c ieee80211_ioctl_deinit - *fill* 0x000000004013531a 0x2 + 0x0000000040146d78 ieee80211_ioctl_deinit + *fill* 0x0000000040146d86 0x2 .text.ieee80211_ioctl - 0x000000004013531c 0x1b3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040146d88 0x1b3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) 0x20a (size before relaxing) - 0x0000000040135330 ieee80211_ioctl - *fill* 0x00000000401354cf 0x1 + 0x0000000040146d9c ieee80211_ioctl + *fill* 0x0000000040146f3b 0x1 .text.is_esp_mesh_assoc - 0x00000000401354d0 0xc2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) - 0x00000000401354dc is_esp_mesh_assoc - *fill* 0x0000000040135592 0x2 + 0x0000000040146f3c 0xc2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x0000000040146f48 is_esp_mesh_assoc + *fill* 0x0000000040146ffe 0x2 .text.wifi_nvs_commit$part$2 - 0x0000000040135594 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x0000000040147000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x2c (size before relaxing) .text.wifi_nvs_cfg_item_init - 0x00000000401355b8 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x0000000040147024 0xac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0xb8 (size before relaxing) - 0x00000000401355c4 wifi_nvs_cfg_item_init + 0x0000000040147034 wifi_nvs_cfg_item_init .text.wifi_nvs_cfg_init - 0x0000000040135660 0x5b2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x00000000401470d0 0x5b6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x6ea (size before relaxing) - 0x0000000040135790 wifi_nvs_cfg_init - *fill* 0x0000000040135c12 0x2 + 0x0000000040147204 wifi_nvs_cfg_init + *fill* 0x0000000040147686 0x2 .text.wifi_nvs_get - 0x0000000040135c14 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x0000000040147688 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0xe (size before relaxing) - 0x0000000040135c14 wifi_nvs_get - *fill* 0x0000000040135c1e 0x2 + 0x0000000040147688 wifi_nvs_get + *fill* 0x0000000040147692 0x2 .text.ieee80211_adjust_2nd_chan - 0x0000000040135c20 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x0000000040147694 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x56 (size before relaxing) - 0x0000000040135c20 ieee80211_adjust_2nd_chan - *fill* 0x0000000040135c66 0x2 + 0x0000000040147694 ieee80211_adjust_2nd_chan + *fill* 0x00000000401476da 0x2 .text.wifi_nvs_commit - 0x0000000040135c68 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x00000000401476dc 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x30 (size before relaxing) - 0x0000000040135c68 wifi_nvs_commit + 0x00000000401476dc wifi_nvs_commit .text.wifi_nvs_set - 0x0000000040135c88 0x1e3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x00000000401476fc 0x1e3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x20f (size before relaxing) - 0x0000000040135ca0 wifi_nvs_set - *fill* 0x0000000040135e6b 0x1 + 0x0000000040147714 wifi_nvs_set + *fill* 0x00000000401478df 0x1 .text.wifi_set_default_ssid - 0x0000000040135e6c 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x00000000401478e0 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x5e (size before relaxing) - 0x0000000040135e70 wifi_set_default_ssid - *fill* 0x0000000040135eb6 0x2 + 0x00000000401478e4 wifi_set_default_ssid + *fill* 0x000000004014792a 0x2 .text.wifi_nvs_validate_ap_password - 0x0000000040135eb8 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x000000004014792c 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x48 (size before relaxing) - 0x0000000040135eb8 wifi_nvs_validate_ap_password + 0x000000004014792c wifi_nvs_validate_ap_password .text.wifi_nvs_validate_sta_password - 0x0000000040135ef0 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x0000000040147964 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x4e (size before relaxing) - 0x0000000040135ef0 wifi_nvs_validate_sta_password - *fill* 0x0000000040135f2e 0x2 + 0x0000000040147964 wifi_nvs_validate_sta_password + *fill* 0x00000000401479a2 0x2 .text.wifi_nvs_validate_country - 0x0000000040135f30 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x00000000401479a4 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x56 (size before relaxing) - 0x0000000040135f30 wifi_nvs_validate_country - *fill* 0x0000000040135f82 0x2 + 0x00000000401479a4 wifi_nvs_validate_country + *fill* 0x00000000401479f6 0x2 .text.wifi_nvs_validate_ap_chan - 0x0000000040135f84 0x4b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x00000000401479f8 0x4b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x6b (size before relaxing) - 0x0000000040135f84 wifi_nvs_validate_ap_chan - *fill* 0x0000000040135fcf 0x1 + 0x00000000401479f8 wifi_nvs_validate_ap_chan + *fill* 0x0000000040147a43 0x1 .text.wifi_nvs_load - 0x0000000040135fd0 0x375 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x0000000040147a44 0x375 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x3d7 (size before relaxing) - *fill* 0x0000000040136345 0x3 + *fill* 0x0000000040147db9 0x3 .text.wifi_nvs_restore - 0x0000000040136348 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x0000000040147dbc 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x14 (size before relaxing) - 0x0000000040136348 wifi_nvs_restore + 0x0000000040147dbc wifi_nvs_restore .text.wifi_nvs_get_sta_listen_interval - 0x0000000040136354 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x0000000040147dc8 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x11 (size before relaxing) - 0x0000000040136354 wifi_nvs_get_sta_listen_interval - *fill* 0x0000000040136361 0x3 + 0x0000000040147dc8 wifi_nvs_get_sta_listen_interval + *fill* 0x0000000040147dd5 0x3 .text.wifi_nvs_deinit - 0x0000000040136364 0x4b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x0000000040147dd8 0x4b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x5b (size before relaxing) - 0x0000000040136364 wifi_nvs_deinit - *fill* 0x00000000401363af 0x1 + 0x0000000040147dd8 wifi_nvs_deinit + *fill* 0x0000000040147e23 0x1 .text.wifi_nvs_init - 0x00000000401363b0 0x71 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x0000000040147e24 0x71 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) 0x9d (size before relaxing) - 0x00000000401363bc wifi_nvs_init - *fill* 0x0000000040136421 0x3 + 0x0000000040147e30 wifi_nvs_init + *fill* 0x0000000040147e95 0x3 .text.ieee80211_classify - 0x0000000040136424 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040147e98 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0xba (size before relaxing) - *fill* 0x00000000401364d6 0x2 + *fill* 0x0000000040147f4a 0x2 .text.ieee80211_add_wme_param$isra$2 - 0x00000000401364d8 0x8d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040147f4c 0x8d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x91 (size before relaxing) - *fill* 0x0000000040136565 0x3 + *fill* 0x0000000040147fd9 0x3 .text.ieee80211_output_pending_eb$part$6 - 0x0000000040136568 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040147fdc 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x6e (size before relaxing) - *fill* 0x00000000401365ca 0x2 + *fill* 0x000000004014803e 0x2 .text.ieee80211_vnd_ie_size$part$7 - 0x00000000401365cc 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040148040 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x35 (size before relaxing) - *fill* 0x00000000401365fd 0x3 + *fill* 0x0000000040148071 0x3 .text.ieee80211_vnd_ie_set$part$8 - 0x0000000040136600 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040148074 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x40 (size before relaxing) .text.ieee80211_set_hmac_stop - 0x0000000040136638 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x00000000401480ac 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x37 (size before relaxing) - 0x000000004013663c ieee80211_set_hmac_stop - *fill* 0x0000000040136667 0x1 + 0x00000000401480b0 ieee80211_set_hmac_stop + *fill* 0x00000000401480db 0x1 .text.ieee80211_output - 0x0000000040136668 0x2f1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x00000000401480dc 0x2f5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x345 (size before relaxing) - 0x0000000040136680 ieee80211_output - *fill* 0x0000000040136959 0x3 + 0x00000000401480f8 ieee80211_output + *fill* 0x00000000401483d1 0x3 .text.esp_wifi_internal_tx - 0x000000004013695c 0x2e1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x00000000401483d4 0x2e1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x34d (size before relaxing) - 0x000000004013695c esp_wifi_internal_tx - *fill* 0x0000000040136c3d 0x3 + 0x00000000401483d4 esp_wifi_internal_tx + *fill* 0x00000000401486b5 0x3 .text.ieee80211_empty_txq - 0x0000000040136c40 0xc8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x00000000401486b8 0xc8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0xe0 (size before relaxing) - 0x0000000040136c40 ieee80211_empty_txq + 0x00000000401486b8 ieee80211_empty_txq .text.ieee80211_output_init - 0x0000000040136d08 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040148780 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x33 (size before relaxing) - 0x0000000040136d10 ieee80211_output_init - *fill* 0x0000000040136d2b 0x1 + 0x0000000040148788 ieee80211_output_init + *fill* 0x00000000401487a3 0x1 .text.ieee80211_send_setup - 0x0000000040136d2c 0x150 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x00000000401487a4 0x150 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x184 (size before relaxing) - 0x0000000040136d34 ieee80211_send_setup + 0x00000000401487ac ieee80211_send_setup .text.ieee80211_mgmt_output - 0x0000000040136e7c 0x169 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x00000000401488f4 0x169 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x1a1 (size before relaxing) - 0x0000000040136e8c ieee80211_mgmt_output - *fill* 0x0000000040136fe5 0x3 + 0x0000000040148904 ieee80211_mgmt_output + *fill* 0x0000000040148a5d 0x3 .text.ieee80211_tx_mgt_cb - 0x0000000040136fe8 0x8c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040148a60 0x8c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x9c (size before relaxing) - 0x0000000040136fe8 ieee80211_tx_mgt_cb + 0x0000000040148a60 ieee80211_tx_mgt_cb .text.ieee80211_send_nulldata - 0x0000000040137074 0x1f0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040148aec 0x1f4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x250 (size before relaxing) - 0x0000000040137078 ieee80211_send_nulldata + 0x0000000040148af4 ieee80211_send_nulldata .text.ieee80211_add_xrates - 0x0000000040137264 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040148ce0 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x30 (size before relaxing) - 0x0000000040137264 ieee80211_add_xrates + 0x0000000040148ce0 ieee80211_add_xrates .text.ieee80211_vnd_lora_ie_set - 0x0000000040137290 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040148d0c 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x2f (size before relaxing) - 0x0000000040137290 ieee80211_vnd_lora_ie_set - *fill* 0x00000000401372b7 0x1 + 0x0000000040148d0c ieee80211_vnd_lora_ie_set + *fill* 0x0000000040148d33 0x1 .text.ieee80211_send_probereq - 0x00000000401372b8 0x3ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040148d34 0x3ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x43a (size before relaxing) - 0x00000000401372c0 ieee80211_send_probereq - *fill* 0x0000000040137672 0x2 + 0x0000000040148d3c ieee80211_send_probereq + *fill* 0x00000000401490ee 0x2 .text.ieee80211_getcapinfo - 0x0000000040137674 0x92 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x00000000401490f0 0x92 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0xaa (size before relaxing) - 0x0000000040137678 ieee80211_getcapinfo - *fill* 0x0000000040137706 0x2 + 0x00000000401490f4 ieee80211_getcapinfo + *fill* 0x0000000040149182 0x2 .text.ieee80211_send_mgmt - 0x0000000040137708 0xa7d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040149184 0xa81 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0xbed (size before relaxing) - 0x0000000040137730 ieee80211_send_mgmt - *fill* 0x0000000040138185 0x3 + 0x00000000401491b0 ieee80211_send_mgmt + *fill* 0x0000000040149c05 0x3 .text.ieee80211_alloc_proberesp - 0x0000000040138188 0x39a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040149c08 0x39a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x426 (size before relaxing) - 0x0000000040138194 ieee80211_alloc_proberesp - *fill* 0x0000000040138522 0x2 + 0x0000000040149c14 ieee80211_alloc_proberesp + *fill* 0x0000000040149fa2 0x2 .text.ieee80211_send_proberesp - 0x0000000040138524 0x1d1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x0000000040149fa4 0x1d1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x23c (size before relaxing) - 0x0000000040138528 ieee80211_send_proberesp - *fill* 0x00000000401386f5 0x3 + 0x0000000040149fa8 ieee80211_send_proberesp + *fill* 0x000000004014a175 0x3 .text.ieee80211_alloc_deauth - 0x00000000401386f8 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000004014a178 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x50 (size before relaxing) - 0x00000000401386f8 ieee80211_alloc_deauth + 0x000000004014a178 ieee80211_alloc_deauth .text.ieee80211_send_deauth - 0x0000000040138738 0x1f2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000004014a1b8 0x1f2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x256 (size before relaxing) - 0x000000004013873c ieee80211_send_deauth - *fill* 0x000000004013892a 0x2 + 0x000000004014a1bc ieee80211_send_deauth + *fill* 0x000000004014a3aa 0x2 .text.ieee80211_beacon_alloc - 0x000000004013892c 0x5d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000004014a3ac 0x5d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x6bc (size before relaxing) - 0x0000000040138944 ieee80211_beacon_alloc + 0x000000004014a3c4 ieee80211_beacon_alloc .text.ieee80211_encap_null_data - 0x0000000040138f04 0x1fe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000004014a984 0x1fe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x24e (size before relaxing) - 0x0000000040138f0c ieee80211_encap_null_data - *fill* 0x0000000040139102 0x2 + 0x000000004014a98c ieee80211_encap_null_data + *fill* 0x000000004014ab82 0x2 .text.ieee80211_pm_tx_null_process - 0x0000000040139104 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x000000004014ab84 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) 0x32 (size before relaxing) - 0x0000000040139104 ieee80211_pm_tx_null_process - *fill* 0x000000004013912a 0x2 + 0x000000004014ab84 ieee80211_pm_tx_null_process + *fill* 0x000000004014abaa 0x2 .text.ieee80211_phy_deinit - 0x000000004013912c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x000000004014abac 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) 0x11 (size before relaxing) - 0x000000004013912c ieee80211_phy_deinit - *fill* 0x0000000040139136 0x2 + 0x000000004014abac ieee80211_phy_deinit + *fill* 0x000000004014abb6 0x2 .text.ieee80211_phy_type_get - 0x0000000040139138 0x67 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) - 0x6b (size before relaxing) - 0x0000000040139138 ieee80211_phy_type_get - *fill* 0x000000004013919f 0x1 + 0x000000004014abb8 0x6b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x000000004014abbc ieee80211_phy_type_get + *fill* 0x000000004014ac23 0x1 .text.ieee80211_phy_mode_show - 0x00000000401391a0 0xbb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x000000004014ac24 0xbb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) 0xd7 (size before relaxing) - 0x00000000401391bc ieee80211_phy_mode_show - *fill* 0x000000004013925b 0x1 + 0x000000004014ac40 ieee80211_phy_mode_show + *fill* 0x000000004014acdf 0x1 .text.ieee80211_setup_ratetable - 0x000000004013925c 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x000000004014ace0 0x124 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) 0x144 (size before relaxing) - 0x0000000040139270 ieee80211_setup_ratetable + 0x000000004014acf8 ieee80211_setup_ratetable .text.ieee80211_phy_init - 0x000000004013937c 0x9e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x000000004014ae04 0x9e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) 0xe6 (size before relaxing) - 0x000000004013937c ieee80211_phy_init - *fill* 0x000000004013941a 0x2 + 0x000000004014ae04 ieee80211_phy_init + *fill* 0x000000004014aea2 0x2 .text.ieee80211_psq_init - 0x000000004013941c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014aea4 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0x1a (size before relaxing) - 0x000000004013941c ieee80211_psq_init - *fill* 0x0000000040139432 0x2 + 0x000000004014aea4 ieee80211_psq_init + *fill* 0x000000004014aeba 0x2 .text.ieee80211_gpsq_init - 0x0000000040139434 0x3f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014aebc 0x3f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0x4b (size before relaxing) - 0x0000000040139438 ieee80211_gpsq_init - *fill* 0x0000000040139473 0x1 + 0x000000004014aec0 ieee80211_gpsq_init + *fill* 0x000000004014aefb 0x1 .text.ieee80211_set_tim - 0x0000000040139474 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014aefc 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0x98 (size before relaxing) - 0x0000000040139474 ieee80211_set_tim + 0x000000004014aefc ieee80211_set_tim .text.ieee80211_psq_drop_one_pkt - 0x0000000040139504 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014af8c 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0x72 (size before relaxing) - 0x0000000040139504 ieee80211_psq_drop_one_pkt - *fill* 0x0000000040139566 0x2 + 0x000000004014af8c ieee80211_psq_drop_one_pkt + *fill* 0x000000004014afee 0x2 .text.ieee80211_psq_send_one_pkt - 0x0000000040139568 0x93 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014aff0 0x93 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0xa7 (size before relaxing) - 0x0000000040139568 ieee80211_psq_send_one_pkt - *fill* 0x00000000401395fb 0x1 + 0x000000004014aff0 ieee80211_psq_send_one_pkt + *fill* 0x000000004014b083 0x1 .text.ieee80211_psq_is_buff_pkt - 0x00000000401395fc 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014b084 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0x7a (size before relaxing) - 0x00000000401395fc ieee80211_psq_is_buff_pkt - *fill* 0x0000000040139662 0x2 + 0x000000004014b084 ieee80211_psq_is_buff_pkt + *fill* 0x000000004014b0ea 0x2 .text.ieee80211_pwrsave - 0x0000000040139664 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014b0ec 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0x91 (size before relaxing) - 0x0000000040139664 ieee80211_pwrsave - *fill* 0x00000000401396dd 0x3 + 0x000000004014b0ec ieee80211_pwrsave + *fill* 0x000000004014b165 0x3 .text.pwrsave_flushq - 0x00000000401396e0 0xfe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014b168 0xfe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0x12a (size before relaxing) - 0x00000000401396e0 pwrsave_flushq - *fill* 0x00000000401397de 0x2 + 0x000000004014b168 pwrsave_flushq + *fill* 0x000000004014b266 0x2 .text.ieee80211_node_pwrsave - 0x00000000401397e0 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014b268 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0x86 (size before relaxing) - 0x00000000401397e0 ieee80211_node_pwrsave - *fill* 0x0000000040139852 0x2 + 0x000000004014b268 ieee80211_node_pwrsave + *fill* 0x000000004014b2da 0x2 .text.ieee80211_pwrsave_node_cleanup - 0x0000000040139854 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014b2dc 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0x48 (size before relaxing) - 0x0000000040139854 ieee80211_pwrsave_node_cleanup + 0x000000004014b2dc ieee80211_pwrsave_node_cleanup .text.ieee80211_pwrsave_txcb - 0x000000004013988c 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x000000004014b314 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) 0x3c (size before relaxing) - 0x000000004013988c ieee80211_pwrsave_txcb + 0x000000004014b314 ieee80211_pwrsave_txcb .text.ieee80211_proto_attach - 0x00000000401398c0 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x000000004014b348 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) 0x2a (size before relaxing) - 0x00000000401398c4 ieee80211_proto_attach - *fill* 0x00000000401398e2 0x2 + 0x000000004014b350 ieee80211_proto_attach + *fill* 0x000000004014b36e 0x2 .text.ieee80211_wme_updateparams - 0x00000000401398e4 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x000000004014b370 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) 0x4a (size before relaxing) - 0x00000000401398e8 ieee80211_wme_updateparams - *fill* 0x0000000040139922 0x2 + 0x000000004014b374 ieee80211_wme_updateparams + *fill* 0x000000004014b3ae 0x2 .text.ieee80211_mlme_connect_bss - 0x0000000040139924 0xbe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x000000004014b3b0 0xbe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) 0xee (size before relaxing) - 0x0000000040139930 ieee80211_mlme_connect_bss - *fill* 0x00000000401399e2 0x2 + 0x000000004014b3bc ieee80211_mlme_connect_bss + *fill* 0x000000004014b46e 0x2 .text.ieee80211_regdomain_max_tx_power - 0x00000000401399e4 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b470 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x4e (size before relaxing) - 0x00000000401399ec ieee80211_regdomain_max_tx_power - *fill* 0x0000000040139a2a 0x2 + 0x000000004014b478 ieee80211_regdomain_max_tx_power + *fill* 0x000000004014b4b6 0x2 .text.ieee80211_update_phy_country - 0x0000000040139a2c 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b4b8 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x54 (size before relaxing) - 0x0000000040139a2c ieee80211_update_phy_country + 0x000000004014b4b8 ieee80211_update_phy_country .text.ieee80211_regdomain_update - 0x0000000040139a74 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b500 0x100 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x114 (size before relaxing) - 0x0000000040139a78 ieee80211_regdomain_update + 0x000000004014b508 ieee80211_regdomain_update .text.ieee80211_regdomain_update_in_scan - 0x0000000040139b70 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b600 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x16 (size before relaxing) - 0x0000000040139b70 ieee80211_regdomain_update_in_scan - *fill* 0x0000000040139b82 0x2 + 0x000000004014b600 ieee80211_regdomain_update_in_scan + *fill* 0x000000004014b612 0x2 .text.ieee80211_regdomain_update_in_connect - 0x0000000040139b84 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b614 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x18 (size before relaxing) - 0x0000000040139b84 ieee80211_regdomain_update_in_connect + 0x000000004014b614 ieee80211_regdomain_update_in_connect .text.ieee80211_regdomain_get_country - 0x0000000040139b98 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b628 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x3a (size before relaxing) - 0x0000000040139b98 ieee80211_regdomain_get_country - *fill* 0x0000000040139bca 0x2 + 0x000000004014b628 ieee80211_regdomain_get_country + *fill* 0x000000004014b65a 0x2 .text.ieee80211_add_countryie - 0x0000000040139bcc 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b65c 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x116 (size before relaxing) - 0x0000000040139bcc ieee80211_add_countryie - *fill* 0x0000000040139cce 0x2 + 0x000000004014b65c ieee80211_add_countryie + *fill* 0x000000004014b75e 0x2 .text.ieee80211_regdomain_max_chan - 0x0000000040139cd0 0x45 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b760 0x45 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x4d (size before relaxing) - 0x0000000040139cd0 ieee80211_regdomain_max_chan - *fill* 0x0000000040139d15 0x3 + 0x000000004014b760 ieee80211_regdomain_max_chan + *fill* 0x000000004014b7a5 0x3 .text.ieee80211_regdomain_min_chan - 0x0000000040139d18 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b7a8 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x3a (size before relaxing) - 0x0000000040139d18 ieee80211_regdomain_min_chan - *fill* 0x0000000040139d4a 0x2 + 0x000000004014b7a8 ieee80211_regdomain_min_chan + *fill* 0x000000004014b7da 0x2 .text.ieee80211_regdomain_chan_in_range - 0x0000000040139d4c 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b7dc 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x2e (size before relaxing) - 0x0000000040139d4c ieee80211_regdomain_chan_in_range - *fill* 0x0000000040139d6a 0x2 + 0x000000004014b7dc ieee80211_regdomain_chan_in_range + *fill* 0x000000004014b7fa 0x2 .text.ieee80211_regdomain_is_active_scan - 0x0000000040139d6c 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000004014b7fc 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) 0x4a (size before relaxing) - 0x0000000040139d6c ieee80211_regdomain_is_active_scan - *fill* 0x0000000040139da6 0x2 + 0x000000004014b7fc ieee80211_regdomain_is_active_scan + *fill* 0x000000004014b836 0x2 .text.ieee80211_rfid_locp_recv_reset - 0x0000000040139da8 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x000000004014b838 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) 0x11 (size before relaxing) - 0x0000000040139da8 ieee80211_rfid_locp_recv_reset - *fill* 0x0000000040139db5 0x3 + 0x000000004014b838 ieee80211_rfid_locp_recv_reset + *fill* 0x000000004014b845 0x3 .text.ieee80211_rfid_locp_recv - 0x0000000040139db8 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x000000004014b848 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) 0x20 (size before relaxing) - 0x0000000040139db8 ieee80211_rfid_locp_recv + 0x000000004014b848 ieee80211_rfid_locp_recv .text.scan_enter_oper_channel - 0x0000000040139dd4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014b864 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x16 (size before relaxing) - *fill* 0x0000000040139de2 0x2 + *fill* 0x000000004014b872 0x2 .text.scan_inter_channel_timeout - 0x0000000040139de4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014b874 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x16 (size before relaxing) - *fill* 0x0000000040139df2 0x2 + *fill* 0x000000004014b882 0x2 .text.scan_op_start - 0x0000000040139df4 0x1f2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014b884 0x1f2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x256 (size before relaxing) - *fill* 0x0000000040139fe6 0x2 + *fill* 0x000000004014ba76 0x2 .text.unlikely.scan_add_ssid_do - 0x0000000040139fe8 0x273 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014ba78 0x273 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x293 (size before relaxing) - *fill* 0x000000004013a25b 0x1 + *fill* 0x000000004014bceb 0x1 .text.unlikely.scan_add_ssid - 0x000000004013a25c 0x126 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014bcec 0x126 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x146 (size before relaxing) - *fill* 0x000000004013a382 0x2 + *fill* 0x000000004014be12 0x2 .text.ieee80211_scan_attach - 0x000000004013a384 0xc4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014be14 0xc4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0xd0 (size before relaxing) - 0x000000004013a39c ieee80211_scan_attach + 0x000000004014be2c ieee80211_scan_attach .text.ieee80211_scan_deattach - 0x000000004013a448 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014bed8 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x2a (size before relaxing) - 0x000000004013a448 ieee80211_scan_deattach - *fill* 0x000000004013a466 0x2 + 0x000000004014bed8 ieee80211_scan_deattach + *fill* 0x000000004014bef6 0x2 .text.scan_get_apnum - 0x000000004013a468 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014bef8 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0xf (size before relaxing) - 0x000000004013a468 scan_get_apnum - *fill* 0x000000004013a473 0x1 + 0x000000004014bef8 scan_get_apnum + *fill* 0x000000004014bf03 0x1 .text.scan_freq_cal - 0x000000004013a474 0xcf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014bf04 0xcf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0xd3 (size before relaxing) - 0x000000004013a480 scan_freq_cal - *fill* 0x000000004013a543 0x1 + 0x000000004014bf10 scan_freq_cal + *fill* 0x000000004014bfd3 0x1 .text.scan_flush_all_tx_buf - 0x000000004013a544 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014bfd4 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x8c (size before relaxing) - 0x000000004013a54c scan_flush_all_tx_buf + 0x000000004014bfdc scan_flush_all_tx_buf .text.scan_cancel - 0x000000004013a5b0 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c040 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x84 (size before relaxing) - 0x000000004013a5b4 scan_cancel + 0x000000004014c044 scan_cancel .text.scan_add_bssid - 0x000000004013a610 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c0a0 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x27 (size before relaxing) - 0x000000004013a610 scan_add_bssid - *fill* 0x000000004013a62f 0x1 + 0x000000004014c0a0 scan_add_bssid + *fill* 0x000000004014c0bf 0x1 .text.scan_remove_bssid - 0x000000004013a630 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c0c0 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x14 (size before relaxing) - 0x000000004013a630 scan_remove_bssid + 0x000000004014c0c0 scan_remove_bssid .text.scan_hidden_ssid - 0x000000004013a640 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c0d0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x12 (size before relaxing) - 0x000000004013a640 scan_hidden_ssid - *fill* 0x000000004013a64e 0x2 + 0x000000004014c0d0 scan_hidden_ssid + *fill* 0x000000004014c0de 0x2 .text.scan_set_act_duration - 0x000000004013a650 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c0e0 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x10 (size before relaxing) - 0x000000004013a650 scan_set_act_duration + 0x000000004014c0e0 scan_set_act_duration .text.scan_set_pas_duration - 0x000000004013a65c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c0ec 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0xe (size before relaxing) - 0x000000004013a65c scan_set_pas_duration - *fill* 0x000000004013a666 0x2 + 0x000000004014c0ec scan_set_pas_duration + *fill* 0x000000004014c0f6 0x2 .text.scan_add_probe_ssid - 0x000000004013a668 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c0f8 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x6a (size before relaxing) - 0x000000004013a668 scan_add_probe_ssid - *fill* 0x000000004013a6ca 0x2 + 0x000000004014c0f8 scan_add_probe_ssid + *fill* 0x000000004014c15a 0x2 .text.scan_remove_probe_ssid - 0x000000004013a6cc 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c15c 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x2a (size before relaxing) - 0x000000004013a6cc scan_remove_probe_ssid - *fill* 0x000000004013a6f2 0x2 + 0x000000004014c15c scan_remove_probe_ssid + *fill* 0x000000004014c182 0x2 .text.scan_prefer_chan - 0x000000004013a6f4 0x1d3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c184 0x1db /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x22b (size before relaxing) - 0x000000004013a710 scan_prefer_chan - *fill* 0x000000004013a8c7 0x1 + 0x000000004014c1a8 scan_prefer_chan + *fill* 0x000000004014c35f 0x1 .text.scan_update_scan_history - 0x000000004013a8c8 0x171 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c360 0x171 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x191 (size before relaxing) - 0x000000004013a8dc scan_update_scan_history - *fill* 0x000000004013aa39 0x3 + 0x000000004014c374 scan_update_scan_history + *fill* 0x000000004014c4d1 0x3 .text.scan_build_chan_list - 0x000000004013aa3c 0x8b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c4d4 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x97 (size before relaxing) - 0x000000004013aa40 scan_build_chan_list - *fill* 0x000000004013aac7 0x1 + 0x000000004014c4dc scan_build_chan_list + *fill* 0x000000004014c563 0x1 .text.scan_set_desChan - 0x000000004013aac8 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c564 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x14 (size before relaxing) - 0x000000004013aac8 scan_set_desChan + 0x000000004014c564 scan_set_desChan .text.scan_get_type - 0x000000004013aad8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c574 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0xe (size before relaxing) - 0x000000004013aad8 scan_get_type - *fill* 0x000000004013aae2 0x2 + 0x000000004014c574 scan_get_type + *fill* 0x000000004014c57e 0x2 .text.scan_profile_check - 0x000000004013aae4 0x2d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c580 0x2d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x320 (size before relaxing) - 0x000000004013aaf8 scan_profile_check + 0x000000004014c594 scan_profile_check .text.free_bss_info - 0x000000004013adbc 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c858 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x3d (size before relaxing) - 0x000000004013adbc free_bss_info - *fill* 0x000000004013adf1 0x3 + 0x000000004014c858 free_bss_info + *fill* 0x000000004014c88d 0x3 .text.clear_bss_queue - 0x000000004013adf4 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c890 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x4c (size before relaxing) - 0x000000004013adf8 clear_bss_queue + 0x000000004014c894 clear_bss_queue .text.scan_done - 0x000000004013ae2c 0x218 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014c8c8 0x218 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x2b8 (size before relaxing) .text.scan_next_channel - 0x000000004013b044 0x1c3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014cae0 0x1c3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x22f (size before relaxing) - *fill* 0x000000004013b207 0x1 + *fill* 0x000000004014cca3 0x1 .text.scan_enter_oper_channel_process - 0x000000004013b208 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014cca4 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x40 (size before relaxing) - 0x000000004013b20c scan_enter_oper_channel_process + 0x000000004014cca8 scan_enter_oper_channel_process .text.scan_inter_channel_timeout_process - 0x000000004013b234 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014ccd0 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x89 (size before relaxing) - 0x000000004013b23c scan_inter_channel_timeout_process - *fill* 0x000000004013b29a 0x2 + 0x000000004014ccd8 scan_inter_channel_timeout_process + *fill* 0x000000004014cd36 0x2 .text.scan_op_end - 0x000000004013b29c 0x192 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014cd38 0x192 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x206 (size before relaxing) - *fill* 0x000000004013b42e 0x2 + *fill* 0x000000004014ceca 0x2 .text.scan_start - 0x000000004013b430 0x136 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014cecc 0x13a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x1b2 (size before relaxing) - 0x000000004013b440 scan_start - *fill* 0x000000004013b566 0x2 + 0x000000004014cee0 scan_start + *fill* 0x000000004014d006 0x2 .text.check_bss_queue - 0x000000004013b568 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014d008 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x30 (size before relaxing) - 0x000000004013b568 check_bss_queue + 0x000000004014d008 check_bss_queue .text.scan_parse_ht2040_coex - 0x000000004013b590 0x75 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014d030 0x75 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x85 (size before relaxing) - 0x000000004013b598 scan_parse_ht2040_coex - *fill* 0x000000004013b605 0x3 + 0x000000004014d038 scan_parse_ht2040_coex + *fill* 0x000000004014d0a5 0x3 .text.scan_parse_beacon - 0x000000004013b608 0x6c5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000004014d0a8 0x6c9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) 0x845 (size before relaxing) - 0x000000004013b644 scan_parse_beacon - *fill* 0x000000004013bccd 0x3 + 0x000000004014d0e8 scan_parse_beacon + *fill* 0x000000004014d771 0x3 .text.sta_recv_sa_query_resp - 0x000000004013bcd0 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014d774 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x66 (size before relaxing) - *fill* 0x000000004013bd2e 0x2 + *fill* 0x000000004014d7d2 0x2 .text.sta_assoc_comeback - 0x000000004013bd30 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014d7d4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x16 (size before relaxing) - *fill* 0x000000004013bd3e 0x2 + *fill* 0x000000004014d7e2 0x2 .text.sta_try_sa_query - 0x000000004013bd40 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014d7e4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x16 (size before relaxing) - *fill* 0x000000004013bd4e 0x2 + *fill* 0x000000004014d7f2 0x2 .text.sta_sa_query_timeout - 0x000000004013bd50 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014d7f4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x16 (size before relaxing) - *fill* 0x000000004013bd5e 0x2 + *fill* 0x000000004014d802 0x2 .text.sta_recv_sa_query_req - 0x000000004013bd60 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014d804 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x19 (size before relaxing) - *fill* 0x000000004013bd75 0x3 + *fill* 0x000000004014d819 0x3 .text.sta_action_output - 0x000000004013bd78 0xd9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014d81c 0xd9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0xfd (size before relaxing) - *fill* 0x000000004013be51 0x3 + *fill* 0x000000004014d8f5 0x3 .text.sta_send_sa_query_resp - 0x000000004013be54 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014d8f8 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x7e (size before relaxing) - *fill* 0x000000004013bebe 0x2 + *fill* 0x000000004014d962 0x2 .text.sta_send_sa_query_req - 0x000000004013bec0 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014d964 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x7e (size before relaxing) - *fill* 0x000000004013bf2a 0x2 + *fill* 0x000000004014d9ce 0x2 .text.ieee80211_sta_new_state - 0x000000004013bf2c 0xca4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014d9d0 0xca8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0xefc (size before relaxing) - 0x000000004013bf90 ieee80211_sta_new_state + 0x000000004014da38 ieee80211_sta_new_state .text.sta_rx_eapol - 0x000000004013cbd0 0x179 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014e678 0x179 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x1a1 (size before relaxing) - 0x000000004013cbe4 sta_rx_eapol - *fill* 0x000000004013cd49 0x3 + 0x000000004014e68c sta_rx_eapol + *fill* 0x000000004014e7f1 0x3 .text.wifi_sta_reg_rxcb - 0x000000004013cd4c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014e7f4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0xe (size before relaxing) - 0x000000004013cd4c wifi_sta_reg_rxcb - *fill* 0x000000004013cd56 0x2 + 0x000000004014e7f4 wifi_sta_reg_rxcb + *fill* 0x000000004014e7fe 0x2 .text.sta_michael_mic_failure - 0x000000004013cd58 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014e800 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x38 (size before relaxing) - 0x000000004013cd5c sta_michael_mic_failure + 0x000000004014e804 sta_michael_mic_failure .text.ieee80211_parse_wmeparams - 0x000000004013cd88 0xe4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) - 0x000000004013cd8c ieee80211_parse_wmeparams + 0x000000004014e830 0xe4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014e834 ieee80211_parse_wmeparams .text.sta_rx_csa - 0x000000004013ce6c 0x22c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014e914 0x22c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x268 (size before relaxing) - 0x000000004013ce90 sta_rx_csa + 0x000000004014e938 sta_rx_csa .text.ieee80211_parse_obss_scan_param - 0x000000004013d098 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014eb40 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x2a (size before relaxing) - 0x000000004013d098 ieee80211_parse_obss_scan_param - *fill* 0x000000004013d0be 0x2 + 0x000000004014eb40 ieee80211_parse_obss_scan_param + *fill* 0x000000004014eb66 0x2 .text.sta_retry_assoc - 0x000000004013d0c0 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014eb68 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x62 (size before relaxing) - 0x000000004013d0c0 sta_retry_assoc - *fill* 0x000000004013d10a 0x2 + 0x000000004014eb68 sta_retry_assoc + *fill* 0x000000004014ebb2 0x2 .text.wifi_station_start - 0x000000004013d10c 0x8d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014ebb4 0x8d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0xa9 (size before relaxing) - 0x000000004013d10c wifi_station_start - *fill* 0x000000004013d199 0x3 + 0x000000004014ebb4 wifi_station_start + *fill* 0x000000004014ec41 0x3 .text.wifi_station_stop - 0x000000004013d19c 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014ec44 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x8a (size before relaxing) - 0x000000004013d19c wifi_station_stop - *fill* 0x000000004013d20a 0x2 + 0x000000004014ec44 wifi_station_stop + *fill* 0x000000004014ecb2 0x2 .text.sta_sa_query_process_timeout - 0x000000004013d20c 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014ecb4 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x9e (size before relaxing) - 0x000000004013d218 sta_sa_query_process_timeout - *fill* 0x000000004013d28a 0x2 + 0x000000004014ecc0 sta_sa_query_process_timeout + *fill* 0x000000004014ed32 0x2 .text.sta_try_sa_query_process - 0x000000004013d28c 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014ed34 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0xcc (size before relaxing) - 0x000000004013d298 sta_try_sa_query_process + 0x000000004014ed40 sta_try_sa_query_process .text.ieee80211_setup_pmf - 0x000000004013d33c 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014ede4 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x5a (size before relaxing) - 0x000000004013d34c ieee80211_setup_pmf - *fill* 0x000000004013d37a 0x2 + 0x000000004014edf4 ieee80211_setup_pmf + *fill* 0x000000004014ee22 0x2 .text.sta_is_wpa3_enabled - 0x000000004013d37c 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004014ee24 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) 0x26 (size before relaxing) - 0x000000004013d37c sta_is_wpa3_enabled - *fill* 0x000000004013d39a 0x2 + 0x000000004014ee24 sta_is_wpa3_enabled + *fill* 0x000000004014ee42 0x2 .text.ieee80211_set_key$part$0 - 0x000000004013d39c 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ee44 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x31 (size before relaxing) - *fill* 0x000000004013d3c5 0x3 + *fill* 0x000000004014ee6d 0x3 .text.esp_wifi_set_appie_internal$part$2 - 0x000000004013d3c8 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ee70 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x40 (size before relaxing) .text.esp_wifi_ap_get_prof_pmk_internal - 0x000000004013d3fc 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014eea4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x13 (size before relaxing) - 0x000000004013d3fc esp_wifi_ap_get_prof_pmk_internal - *fill* 0x000000004013d40b 0x1 + 0x000000004014eea4 esp_wifi_ap_get_prof_pmk_internal + *fill* 0x000000004014eeb3 0x1 .text.esp_wifi_sta_update_ap_info_internal - 0x000000004013d40c 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014eeb4 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x3d (size before relaxing) - 0x000000004013d40c esp_wifi_sta_update_ap_info_internal - *fill* 0x000000004013d435 0x3 + 0x000000004014eeb4 esp_wifi_sta_update_ap_info_internal + *fill* 0x000000004014eedd 0x3 .text.esp_wifi_sta_get_ap_info_prof_pmk_internal - 0x000000004013d438 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014eee0 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x22 (size before relaxing) - 0x000000004013d438 esp_wifi_sta_get_ap_info_prof_pmk_internal - *fill* 0x000000004013d456 0x2 + 0x000000004014eee0 esp_wifi_sta_get_ap_info_prof_pmk_internal + *fill* 0x000000004014eefe 0x2 .text.esp_wifi_ap_get_prof_ap_ssid_internal - 0x000000004013d458 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ef00 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x13 (size before relaxing) - 0x000000004013d458 esp_wifi_ap_get_prof_ap_ssid_internal - *fill* 0x000000004013d467 0x1 + 0x000000004014ef00 esp_wifi_ap_get_prof_ap_ssid_internal + *fill* 0x000000004014ef0f 0x1 .text.esp_wifi_sta_get_prof_ssid_internal - 0x000000004013d468 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ef10 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x10 (size before relaxing) - 0x000000004013d468 esp_wifi_sta_get_prof_ssid_internal + 0x000000004014ef10 esp_wifi_sta_get_prof_ssid_internal .text.esp_wifi_ap_get_prof_authmode_internal - 0x000000004013d474 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ef1c 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x14 (size before relaxing) - 0x000000004013d474 esp_wifi_ap_get_prof_authmode_internal + 0x000000004014ef1c esp_wifi_ap_get_prof_authmode_internal .text.esp_wifi_sta_get_prof_authmode_internal - 0x000000004013d484 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ef2c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x12 (size before relaxing) - 0x000000004013d484 esp_wifi_sta_get_prof_authmode_internal - *fill* 0x000000004013d492 0x2 + 0x000000004014ef2c esp_wifi_sta_get_prof_authmode_internal + *fill* 0x000000004014ef3a 0x2 .text.esp_wifi_sta_is_ap_notify_completed_rsne_internal - 0x000000004013d494 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ef3c 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x19 (size before relaxing) - 0x000000004013d494 esp_wifi_sta_is_ap_notify_completed_rsne_internal - *fill* 0x000000004013d4a9 0x3 + 0x000000004014ef3c esp_wifi_sta_is_ap_notify_completed_rsne_internal + *fill* 0x000000004014ef51 0x3 .text.esp_wifi_ap_get_prof_password_internal - 0x000000004013d4ac 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ef54 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x13 (size before relaxing) - 0x000000004013d4ac esp_wifi_ap_get_prof_password_internal - *fill* 0x000000004013d4bb 0x1 + 0x000000004014ef54 esp_wifi_ap_get_prof_password_internal + *fill* 0x000000004014ef63 0x1 .text.wifi_sta_get_prof_password - 0x000000004013d4bc 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ef64 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x11 (size before relaxing) - 0x000000004013d4bc wifi_sta_get_prof_password - *fill* 0x000000004013d4c9 0x3 + 0x000000004014ef64 wifi_sta_get_prof_password + *fill* 0x000000004014ef71 0x3 .text.esp_wifi_sta_get_prof_password_internal - 0x000000004013d4cc 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ef74 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x11 (size before relaxing) - 0x000000004013d4cc esp_wifi_sta_get_prof_password_internal - *fill* 0x000000004013d4d9 0x3 + 0x000000004014ef74 esp_wifi_sta_get_prof_password_internal + *fill* 0x000000004014ef81 0x3 .text.esp_wifi_sta_get_reset_param_internal - 0x000000004013d4dc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ef84 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x12 (size before relaxing) - 0x000000004013d4dc esp_wifi_sta_get_reset_param_internal - *fill* 0x000000004013d4ea 0x2 + 0x000000004014ef84 esp_wifi_sta_get_reset_param_internal + *fill* 0x000000004014ef92 0x2 .text.esp_wifi_sta_set_reset_param_internal - 0x000000004013d4ec 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014ef94 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x17 (size before relaxing) - 0x000000004013d4ec esp_wifi_sta_set_reset_param_internal - *fill* 0x000000004013d4ff 0x1 + 0x000000004014ef94 esp_wifi_sta_set_reset_param_internal + *fill* 0x000000004014efa7 0x1 .text.esp_wifi_sta_prof_is_wpa_internal - 0x000000004013d500 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014efa8 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x2f (size before relaxing) - 0x000000004013d500 esp_wifi_sta_prof_is_wpa_internal - *fill* 0x000000004013d52b 0x1 + 0x000000004014efa8 esp_wifi_sta_prof_is_wpa_internal + *fill* 0x000000004014efd3 0x1 .text.esp_wifi_sta_prof_is_wpa2_internal - 0x000000004013d52c 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014efd4 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x34 (size before relaxing) - 0x000000004013d52c esp_wifi_sta_prof_is_wpa2_internal + 0x000000004014efd4 esp_wifi_sta_prof_is_wpa2_internal .text.esp_wifi_sta_prof_is_wpa3_internal - 0x000000004013d55c 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f004 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x1c (size before relaxing) - 0x000000004013d55c esp_wifi_sta_prof_is_wpa3_internal + 0x000000004014f004 esp_wifi_sta_prof_is_wpa3_internal .text.esp_wifi_sta_get_pairwise_cipher_internal - 0x000000004013d574 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f01c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x12 (size before relaxing) - 0x000000004013d574 esp_wifi_sta_get_pairwise_cipher_internal - *fill* 0x000000004013d582 0x2 + 0x000000004014f01c esp_wifi_sta_get_pairwise_cipher_internal + *fill* 0x000000004014f02a 0x2 .text.esp_wifi_sta_get_group_cipher_internal - 0x000000004013d584 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f02c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x12 (size before relaxing) - 0x000000004013d584 esp_wifi_sta_get_group_cipher_internal - *fill* 0x000000004013d592 0x2 + 0x000000004014f02c esp_wifi_sta_get_group_cipher_internal + *fill* 0x000000004014f03a 0x2 .text.ieee80211_set_gtk - 0x000000004013d594 0x45 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f03c 0x45 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x51 (size before relaxing) - 0x000000004013d59c ieee80211_set_gtk - *fill* 0x000000004013d5d9 0x3 + 0x000000004014f044 ieee80211_set_gtk + *fill* 0x000000004014f081 0x3 .text.esp_wifi_wpa_ptk_init_done_internal - 0x000000004013d5dc 0x5b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f084 0x5b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x7b (size before relaxing) - 0x000000004013d5dc esp_wifi_wpa_ptk_init_done_internal - *fill* 0x000000004013d637 0x1 + 0x000000004014f084 esp_wifi_wpa_ptk_init_done_internal + *fill* 0x000000004014f0df 0x1 .text.esp_wifi_sta_is_running_internal - 0x000000004013d638 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f0e0 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x20 (size before relaxing) - 0x000000004013d638 esp_wifi_sta_is_running_internal + 0x000000004014f0e0 esp_wifi_sta_is_running_internal .text.esp_wifi_auth_done_internal - 0x000000004013d654 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f0fc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x11 (size before relaxing) - 0x000000004013d654 esp_wifi_auth_done_internal - *fill* 0x000000004013d65e 0x2 + 0x000000004014f0fc esp_wifi_auth_done_internal + *fill* 0x000000004014f106 0x2 .text.esp_wifi_unregister_wpa_cb_internal - 0x000000004013d660 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f108 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x27 (size before relaxing) - 0x000000004013d660 esp_wifi_unregister_wpa_cb_internal - *fill* 0x000000004013d67f 0x1 + 0x000000004014f108 esp_wifi_unregister_wpa_cb_internal + *fill* 0x000000004014f127 0x1 .text.esp_wifi_register_wpa_cb_internal - 0x000000004013d680 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f128 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x27 (size before relaxing) - 0x000000004013d680 esp_wifi_register_wpa_cb_internal - *fill* 0x000000004013d69f 0x1 + 0x000000004014f128 esp_wifi_register_wpa_cb_internal + *fill* 0x000000004014f147 0x1 .text.esp_wifi_get_hostap_private_internal - 0x000000004013d6a0 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f148 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x13 (size before relaxing) - 0x000000004013d6a0 esp_wifi_get_hostap_private_internal - *fill* 0x000000004013d6af 0x1 + 0x000000004014f148 esp_wifi_get_hostap_private_internal + *fill* 0x000000004014f157 0x1 .text.esp_wifi_deauthenticate_internal - 0x000000004013d6b0 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f158 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x4a (size before relaxing) - 0x000000004013d6b0 esp_wifi_deauthenticate_internal - *fill* 0x000000004013d6ea 0x2 + 0x000000004014f158 esp_wifi_deauthenticate_internal + *fill* 0x000000004014f192 0x2 .text.wifi_set_rx_policy - 0x000000004013d6ec 0x178 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f194 0x178 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x204 (size before relaxing) - 0x000000004013d6f0 wifi_set_rx_policy + 0x000000004014f198 wifi_set_rx_policy .text.esp_wifi_register_tx_cb_internal - 0x000000004013d864 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f30c 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x16 (size before relaxing) - 0x000000004013d864 esp_wifi_register_tx_cb_internal - *fill* 0x000000004013d876 0x2 + 0x000000004014f30c esp_wifi_register_tx_cb_internal + *fill* 0x000000004014f31e 0x2 .text.esp_wifi_get_macaddr_internal - 0x000000004013d878 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f320 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x1f (size before relaxing) - 0x000000004013d878 esp_wifi_get_macaddr_internal - *fill* 0x000000004013d893 0x1 + 0x000000004014f320 esp_wifi_get_macaddr_internal + *fill* 0x000000004014f33b 0x1 .text.esp_wifi_ap_deauth_internal - 0x000000004013d894 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f33c 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x15 (size before relaxing) - 0x000000004013d894 esp_wifi_ap_deauth_internal - *fill* 0x000000004013d8a5 0x3 + 0x000000004014f33c esp_wifi_ap_deauth_internal + *fill* 0x000000004014f34d 0x3 .text.esp_wifi_set_ap_key_internal - 0x000000004013d8a8 0x150 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f350 0x154 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x19c (size before relaxing) - 0x000000004013d8b0 esp_wifi_set_ap_key_internal + 0x000000004014f35c esp_wifi_set_ap_key_internal .text.ppInstallKey - 0x000000004013d9f8 0x198 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f4a4 0x198 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x1e4 (size before relaxing) - 0x000000004013d9f8 ppInstallKey + 0x000000004014f4a4 ppInstallKey .text.esp_wifi_set_sta_key_internal - 0x000000004013db90 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f63c 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x35 (size before relaxing) - 0x000000004013db90 esp_wifi_set_sta_key_internal - *fill* 0x000000004013dbc1 0x3 + 0x000000004014f63c esp_wifi_set_sta_key_internal + *fill* 0x000000004014f66d 0x3 .text.esp_wifi_get_sta_key_internal - 0x000000004013dbc4 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f670 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x2e (size before relaxing) - 0x000000004013dbc4 esp_wifi_get_sta_key_internal - *fill* 0x000000004013dbee 0x2 + 0x000000004014f670 esp_wifi_get_sta_key_internal + *fill* 0x000000004014f69a 0x2 .text.esp_wifi_set_appie_internal - 0x000000004013dbf0 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f69c 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x32 (size before relaxing) - 0x000000004013dbf0 esp_wifi_set_appie_internal - *fill* 0x000000004013dc12 0x2 + 0x000000004014f69c esp_wifi_set_appie_internal + *fill* 0x000000004014f6be 0x2 .text.esp_wifi_sta_pmf_enabled - 0x000000004013dc14 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f6c0 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0xf (size before relaxing) - 0x000000004013dc14 esp_wifi_sta_pmf_enabled - *fill* 0x000000004013dc1f 0x1 + 0x000000004014f6c0 esp_wifi_sta_pmf_enabled + *fill* 0x000000004014f6cb 0x1 .text.esp_wifi_sta_get_mgmt_group_cipher - 0x000000004013dc20 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f6cc 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x1c (size before relaxing) - 0x000000004013dc20 esp_wifi_sta_get_mgmt_group_cipher + 0x000000004014f6cc esp_wifi_sta_get_mgmt_group_cipher .text.esp_wifi_set_igtk_internal - 0x000000004013dc38 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f6e4 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x66 (size before relaxing) - 0x000000004013dc40 esp_wifi_set_igtk_internal - *fill* 0x000000004013dc96 0x2 + 0x000000004014f6ec esp_wifi_set_igtk_internal + *fill* 0x000000004014f742 0x2 .text.ieee80211w_get_active_igtk_key_id - 0x000000004013dc98 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f744 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x1b (size before relaxing) - 0x000000004013dc98 ieee80211w_get_active_igtk_key_id - *fill* 0x000000004013dcab 0x1 + 0x000000004014f744 ieee80211w_get_active_igtk_key_id + *fill* 0x000000004014f757 0x1 .text.ieee80211w_get_igtk_from_keyidx - 0x000000004013dcac 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x000000004014f758 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) 0x2a (size before relaxing) - 0x000000004013dcb0 ieee80211w_get_igtk_from_keyidx - *fill* 0x000000004013dcd2 0x2 + 0x000000004014f75c ieee80211w_get_igtk_from_keyidx + *fill* 0x000000004014f77e 0x2 .text.ieee80211_ampdu_age_handle - 0x000000004013dcd4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f780 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x13 (size before relaxing) - *fill* 0x000000004013dce3 0x1 + *fill* 0x000000004014f78f 0x1 .text.ieee80211_addba - 0x000000004013dce4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f790 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x13 (size before relaxing) - *fill* 0x000000004013dcf3 0x1 + *fill* 0x000000004014f79f 0x1 .text.ieee80211_coexist - 0x000000004013dcf4 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f7a0 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x46 (size before relaxing) - *fill* 0x000000004013dd26 0x2 + *fill* 0x000000004014f7d2 0x2 .text.ieee80211_sta_retry_assoc - 0x000000004013dd28 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f7d4 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x42 (size before relaxing) - *fill* 0x000000004013dd53 0x1 + *fill* 0x000000004014f7ff 0x1 .text.ieee80211_sta_sa_query_timeout - 0x000000004013dd54 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f800 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x42 (size before relaxing) - *fill* 0x000000004013dd7f 0x1 + *fill* 0x000000004014f82b 0x1 .text.ieee80211_sta_try_sa_query - 0x000000004013dd80 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f82c 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x42 (size before relaxing) - *fill* 0x000000004013ddab 0x1 + *fill* 0x000000004014f857 0x1 .text.ieee80211_assoc - 0x000000004013ddac 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f858 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x41 (size before relaxing) - *fill* 0x000000004013ddd6 0x2 + *fill* 0x000000004014f882 0x2 .text.ieee80211_hostap_handle - 0x000000004013ddd8 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f884 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x46 (size before relaxing) - *fill* 0x000000004013de0a 0x2 + *fill* 0x000000004014f8b6 0x2 .text.ieee80211_auth - 0x000000004013de0c 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f8b8 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x42 (size before relaxing) - *fill* 0x000000004013de37 0x1 + *fill* 0x000000004014f8e3 0x1 .text.ieee80211_send_beacon - 0x000000004013de38 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f8e4 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x44 (size before relaxing) .text.ieee80211_chm_dwell - 0x000000004013de68 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f914 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x46 (size before relaxing) - *fill* 0x000000004013de96 0x2 + *fill* 0x000000004014f942 0x2 .text.ieee80211_handshake - 0x000000004013de98 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f944 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x42 (size before relaxing) - *fill* 0x000000004013dec3 0x1 + *fill* 0x000000004014f96f 0x1 .text.ieee80211_beacon - 0x000000004013dec4 0x4b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f970 0x4b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x66 (size before relaxing) - *fill* 0x000000004013df0f 0x1 + *fill* 0x000000004014f9bb 0x1 .text.ieee80211_probe_send - 0x000000004013df10 0x47 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014f9bc 0x47 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x66 (size before relaxing) - *fill* 0x000000004013df57 0x1 + *fill* 0x000000004014fa03 0x1 .text.ieee80211_csa - 0x000000004013df58 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014fa04 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x42 (size before relaxing) - *fill* 0x000000004013df83 0x1 + *fill* 0x000000004014fa2f 0x1 .text.ieee80211_scan_enter_op_chan - 0x000000004013df84 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014fa30 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x46 (size before relaxing) - *fill* 0x000000004013dfb2 0x2 + *fill* 0x000000004014fa5e 0x2 .text.ieee80211_scan_inter_chan - 0x000000004013dfb4 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014fa60 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x46 (size before relaxing) - *fill* 0x000000004013dfe2 0x2 + *fill* 0x000000004014fa8e 0x2 .text.ieee80211_timer_connect - 0x000000004013dfe4 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014fa90 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x42 (size before relaxing) - *fill* 0x000000004013e00f 0x1 + *fill* 0x000000004014fabb 0x1 .text.ieee80211_timer_do_process - 0x000000004013e010 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014fabc 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0xa6 (size before relaxing) - 0x000000004013e01c ieee80211_timer_do_process - *fill* 0x000000004013e0a6 0x2 + 0x000000004014fac8 ieee80211_timer_do_process + *fill* 0x000000004014fb52 0x2 .text.ieee80211_timer_process - 0x000000004013e0a8 0xbc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000004014fb54 0xbc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) 0x108 (size before relaxing) - 0x000000004013e0b8 ieee80211_timer_process + 0x000000004014fb64 ieee80211_timer_process .text.chm_end_op_timeout - 0x000000004013e164 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fc10 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x16 (size before relaxing) - *fill* 0x000000004013e172 0x2 + *fill* 0x000000004014fc1e 0x2 .text.chm_mhz2num - 0x000000004013e174 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) - 0x000000004013e18c chm_mhz2num + 0x000000004014fc20 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fc38 chm_mhz2num .text.chm_deinit - 0x000000004013e1dc 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fc88 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x2e (size before relaxing) - 0x000000004013e1dc chm_deinit - *fill* 0x000000004013e202 0x2 + 0x000000004014fc88 chm_deinit + *fill* 0x000000004014fcae 0x2 .text.chm_release_lock - 0x000000004013e204 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fcb0 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x1d (size before relaxing) - 0x000000004013e204 chm_release_lock - *fill* 0x000000004013e21d 0x3 + 0x000000004014fcb0 chm_release_lock + *fill* 0x000000004014fcc9 0x3 .text.chm_end_op - 0x000000004013e220 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fccc 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x3a (size before relaxing) - 0x000000004013e220 chm_end_op - *fill* 0x000000004013e252 0x2 + 0x000000004014fccc chm_end_op + *fill* 0x000000004014fcfe 0x2 .text.chm_end_op_timeout_process - 0x000000004013e254 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fd00 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x2e (size before relaxing) - 0x000000004013e254 chm_end_op_timeout_process - *fill* 0x000000004013e273 0x1 + 0x000000004014fd00 chm_end_op_timeout_process + *fill* 0x000000004014fd1f 0x1 .text.chm_cancel_op - 0x000000004013e274 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fd20 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x52 (size before relaxing) - 0x000000004013e274 chm_cancel_op - *fill* 0x000000004013e2b6 0x2 + 0x000000004014fd20 chm_cancel_op + *fill* 0x000000004014fd62 0x2 .text.chm_acquire_lock - 0x000000004013e2b8 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fd64 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x38 (size before relaxing) - 0x000000004013e2b8 chm_acquire_lock + 0x000000004014fd64 chm_acquire_lock .text.chm_get_current_channel - 0x000000004013e2e8 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fd94 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x11 (size before relaxing) - 0x000000004013e2e8 chm_get_current_channel - *fill* 0x000000004013e2f5 0x3 + 0x000000004014fd94 chm_get_current_channel + *fill* 0x000000004014fda1 0x3 .text.chm_set_current_channel - 0x000000004013e2f8 0x13c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fda4 0x13c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x1a4 (size before relaxing) - 0x000000004013e30c chm_set_current_channel + 0x000000004014fdb8 chm_set_current_channel .text.chm_change_channel - 0x000000004013e434 0xea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014fee0 0xea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x116 (size before relaxing) - *fill* 0x000000004013e51e 0x2 + *fill* 0x000000004014ffca 0x2 .text.chm_start_op - 0x000000004013e520 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004014ffcc 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x48 (size before relaxing) - 0x000000004013e520 chm_start_op + 0x000000004014ffcc chm_start_op .text.chm_return_home_channel - 0x000000004013e560 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004015000c 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x60 (size before relaxing) - 0x000000004013e564 chm_return_home_channel + 0x0000000040150010 chm_return_home_channel .text.chm_get_home_channel - 0x000000004013e5b0 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004015005c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x11 (size before relaxing) - 0x000000004013e5b0 chm_get_home_channel - *fill* 0x000000004013e5bd 0x3 + 0x000000004015005c chm_get_home_channel + *fill* 0x0000000040150069 0x3 .text.chm_set_home_channel - 0x000000004013e5c0 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004015006c 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x9a (size before relaxing) - 0x000000004013e5c0 chm_set_home_channel - *fill* 0x000000004013e636 0x2 + 0x000000004015006c chm_set_home_channel + *fill* 0x00000000401500e2 0x2 .text.chm_init - 0x000000004013e638 0x10e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x00000000401500e4 0x10e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x132 (size before relaxing) - 0x000000004013e63c chm_init - *fill* 0x000000004013e746 0x2 + 0x00000000401500e8 chm_init + *fill* 0x00000000401501f2 0x2 .text.chm_get_chan_info - 0x000000004013e748 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x00000000401501f4 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) 0x28 (size before relaxing) - 0x000000004013e748 chm_get_chan_info + 0x00000000401501f4 chm_get_chan_info .text.cnx_cal_rc_util - 0x000000004013e76c 0x57 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150218 0x57 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x5b (size before relaxing) - *fill* 0x000000004013e7c3 0x1 + *fill* 0x000000004015026f 0x1 .text.cnx_get_next_rc - 0x000000004013e7c4 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150270 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x52 (size before relaxing) - *fill* 0x000000004013e80a 0x2 + *fill* 0x00000000401502b6 0x2 .text.cnx_traverse_rc_lis_done - 0x000000004013e80c 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401502b8 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x3f (size before relaxing) - *fill* 0x000000004013e83b 0x1 + *fill* 0x00000000401502e7 0x1 .text.cnx_sta_connect_led_timer_cb - 0x000000004013e83c 0x73 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401502e8 0x73 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x7f (size before relaxing) - 0x000000004013e83c cnx_sta_connect_led_timer_cb - *fill* 0x000000004013e8af 0x1 + 0x00000000401502e8 cnx_sta_connect_led_timer_cb + *fill* 0x000000004015035b 0x1 .text.cnx_connect_op - 0x000000004013e8b0 0x17e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000004015035c 0x17e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x1f6 (size before relaxing) - *fill* 0x000000004013ea2e 0x2 + *fill* 0x00000000401504da 0x2 .text.cnx_connect_to_bss - 0x000000004013ea30 0x3f6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401504dc 0x3f6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x492 (size before relaxing) - *fill* 0x000000004013ee26 0x2 + *fill* 0x00000000401508d2 0x2 .text.cnx_connect_timeout - 0x000000004013ee28 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401508d4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x16 (size before relaxing) - 0x000000004013ee28 cnx_connect_timeout - *fill* 0x000000004013ee36 0x2 + 0x00000000401508d4 cnx_connect_timeout + *fill* 0x00000000401508e2 0x2 .text.cnx_handshake_timeout - 0x000000004013ee38 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401508e4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x16 (size before relaxing) - 0x000000004013ee38 cnx_handshake_timeout - *fill* 0x000000004013ee46 0x2 + 0x00000000401508e4 cnx_handshake_timeout + *fill* 0x00000000401508f2 0x2 .text.cnx_csa_fn - 0x000000004013ee48 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401508f4 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x18 (size before relaxing) - 0x000000004013ee48 cnx_csa_fn + 0x00000000401508f4 cnx_csa_fn .text.mgd_probe_send_timeout - 0x000000004013ee58 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150904 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x16 (size before relaxing) - *fill* 0x000000004013ee66 0x2 + *fill* 0x0000000040150912 0x2 .text.cnx_beacon_timeout - 0x000000004013ee68 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150914 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x16 (size before relaxing) - *fill* 0x000000004013ee76 0x2 + *fill* 0x0000000040150922 0x2 .text.cnx_sta_pm - 0x000000004013ee78 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150924 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x36 (size before relaxing) - *fill* 0x000000004013eea3 0x1 + *fill* 0x000000004015094f 0x1 .text.send_ap_probe - 0x000000004013eea4 0xae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150950 0xae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0xde (size before relaxing) - *fill* 0x000000004013ef52 0x2 + *fill* 0x00000000401509fe 0x2 .text.cnx_probe_rc - 0x000000004013ef54 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150a00 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x74 (size before relaxing) .text.ieee80211_cnx_attach - 0x000000004013efac 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150a58 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x4e (size before relaxing) - 0x000000004013efb4 ieee80211_cnx_attach - *fill* 0x000000004013efe6 0x2 + 0x0000000040150a60 ieee80211_cnx_attach + *fill* 0x0000000040150a92 0x2 .text._cnx_start_connect_without_scan - 0x000000004013efe8 0x5d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150a94 0x5d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x79 (size before relaxing) - 0x000000004013efec _cnx_start_connect_without_scan - *fill* 0x000000004013f045 0x3 + 0x0000000040150a98 _cnx_start_connect_without_scan + *fill* 0x0000000040150af1 0x3 .text.cnx_can_do_obss_scan - 0x000000004013f048 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150af4 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x8e (size before relaxing) - 0x000000004013f058 cnx_can_do_obss_scan - *fill* 0x000000004013f0be 0x2 + 0x0000000040150b04 cnx_can_do_obss_scan + *fill* 0x0000000040150b6a 0x2 .text.cnx_obss_scan - 0x000000004013f0c0 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150b6c 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0xca (size before relaxing) - 0x000000004013f0d0 cnx_obss_scan - *fill* 0x000000004013f146 0x2 + 0x0000000040150b7c cnx_obss_scan + *fill* 0x0000000040150bf2 0x2 .text.cnx_obss_scan_timeout - 0x000000004013f148 0x61 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150bf4 0x61 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x89 (size before relaxing) - 0x000000004013f14c cnx_obss_scan_timeout - *fill* 0x000000004013f1a9 0x3 + 0x0000000040150bf8 cnx_obss_scan_timeout + *fill* 0x0000000040150c55 0x3 .text.cnx_sta_scan_cmd - 0x000000004013f1ac 0x2a6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150c58 0x2aa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x382 (size before relaxing) - 0x000000004013f1dc cnx_sta_scan_cmd - *fill* 0x000000004013f452 0x2 + 0x0000000040150c8c cnx_sta_scan_cmd + *fill* 0x0000000040150f02 0x2 .text.cnx_auth_timeout - 0x000000004013f454 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150f04 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x16 (size before relaxing) - 0x000000004013f454 cnx_auth_timeout - *fill* 0x000000004013f462 0x2 + 0x0000000040150f04 cnx_auth_timeout + *fill* 0x0000000040150f12 0x2 .text.cnx_assoc_timeout - 0x000000004013f464 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150f14 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x16 (size before relaxing) - 0x000000004013f464 cnx_assoc_timeout - *fill* 0x000000004013f472 0x2 + 0x0000000040150f14 cnx_assoc_timeout + *fill* 0x0000000040150f22 0x2 .text.cnx_coexist_timeout - 0x000000004013f474 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150f24 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x16 (size before relaxing) - 0x000000004013f474 cnx_coexist_timeout - *fill* 0x000000004013f482 0x2 + 0x0000000040150f24 cnx_coexist_timeout + *fill* 0x0000000040150f32 0x2 .text.cnx_coexist_timeout_process - 0x000000004013f484 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150f34 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x5c (size before relaxing) - 0x000000004013f484 cnx_coexist_timeout_process + 0x0000000040150f34 cnx_coexist_timeout_process .text.wl_is_ap_no_lr - 0x000000004013f4c8 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - 0x000000004013f4cc wl_is_ap_no_lr - *fill* 0x000000004013f4d7 0x1 + 0x0000000040150f78 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150f7c wl_is_ap_no_lr + *fill* 0x0000000040150f87 0x1 .text.wl_clear_ap_no_lr - 0x000000004013f4d8 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150f88 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x14 (size before relaxing) - 0x000000004013f4d8 wl_clear_ap_no_lr + 0x0000000040150f88 wl_clear_ap_no_lr .text.cnx_csa_fn_process - 0x000000004013f4e8 0xf1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040150f98 0xf1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x135 (size before relaxing) - 0x000000004013f4f8 cnx_csa_fn_process - *fill* 0x000000004013f5d9 0x3 + 0x0000000040150fa8 cnx_csa_fn_process + *fill* 0x0000000040151089 0x3 .text.cnx_bss_init - 0x000000004013f5dc 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000004015108c 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x9b (size before relaxing) - 0x000000004013f5e4 cnx_bss_init - *fill* 0x000000004013f66b 0x1 + 0x0000000040151094 cnx_bss_init + *fill* 0x000000004015111b 0x1 .text.cnx_check_bssid_in_blacklist - 0x000000004013f66c 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000004015111c 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x31 (size before relaxing) - 0x000000004013f66c cnx_check_bssid_in_blacklist - *fill* 0x000000004013f695 0x3 + 0x000000004015111c cnx_check_bssid_in_blacklist + *fill* 0x0000000040151145 0x3 .text.cnx_add_to_blacklist - 0x000000004013f698 0xb8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151148 0xb8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0xd8 (size before relaxing) - 0x000000004013f6a4 cnx_add_to_blacklist + 0x0000000040151154 cnx_add_to_blacklist .text.cnx_clear_blacklist - 0x000000004013f750 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151200 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x9a (size before relaxing) - 0x000000004013f754 cnx_clear_blacklist - *fill* 0x000000004013f7da 0x2 + 0x0000000040151204 cnx_clear_blacklist + *fill* 0x000000004015128a 0x2 .text.cnx_choose_rc - 0x000000004013f7dc 0x1f2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000004015128c 0x1f2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x252 (size before relaxing) - *fill* 0x000000004013f9ce 0x2 + *fill* 0x000000004015147e 0x2 .text.cnx_rc_search - 0x000000004013f9d0 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151480 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x4c (size before relaxing) - 0x000000004013f9d0 cnx_rc_search + 0x0000000040151480 cnx_rc_search .text.cnx_add_rc - 0x000000004013fa10 0xa5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401514c0 0xa5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0xad (size before relaxing) - 0x000000004013fa10 cnx_add_rc - *fill* 0x000000004013fab5 0x3 + 0x00000000401514c0 cnx_add_rc + *fill* 0x0000000040151565 0x3 .text.cnx_remove_all_rc - 0x000000004013fab8 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151568 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x64 (size before relaxing) - 0x000000004013fabc cnx_remove_all_rc + 0x000000004015156c cnx_remove_all_rc .text.cnx_do_handoff - 0x000000004013fb0c 0x32d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401515bc 0x32d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x3e5 (size before relaxing) - *fill* 0x000000004013fe39 0x3 + *fill* 0x00000000401518e9 0x3 .text.cnx_connect_next_ap - 0x000000004013fe3c 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401518ec 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x54 (size before relaxing) - 0x000000004013fe40 cnx_connect_next_ap + 0x00000000401518f0 cnx_connect_next_ap .text.cnx_start_handoff_cb - 0x000000004013fe74 0x3f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151924 0x3f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x53 (size before relaxing) - 0x000000004013fe78 cnx_start_handoff_cb - *fill* 0x000000004013feb3 0x1 + 0x0000000040151928 cnx_start_handoff_cb + *fill* 0x0000000040151963 0x1 .text.cnx_remove_rc - 0x000000004013feb4 0xc2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151964 0xc2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0xd6 (size before relaxing) - 0x000000004013feb8 cnx_remove_rc - *fill* 0x000000004013ff76 0x2 + 0x0000000040151968 cnx_remove_rc + *fill* 0x0000000040151a26 0x2 .text.cnx_sta_connect_cmd - 0x000000004013ff78 0x232 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151a28 0x232 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x2fa (size before relaxing) - 0x000000004013ff94 cnx_sta_connect_cmd - *fill* 0x00000000401401aa 0x2 + 0x0000000040151a44 cnx_sta_connect_cmd + *fill* 0x0000000040151c5a 0x2 .text.cnx_connect_timeout_process - 0x00000000401401ac 0x88 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151c5c 0x88 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0xb3 (size before relaxing) - 0x00000000401401b4 cnx_connect_timeout_process - *fill* 0x0000000040140234 0x0 + 0x0000000040151c64 cnx_connect_timeout_process + *fill* 0x0000000040151ce4 0x0 .text.cnx_auth_timeout_process - 0x0000000040140234 0x39 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151ce4 0x39 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x61 (size before relaxing) - 0x000000004014023c cnx_auth_timeout_process - *fill* 0x000000004014026d 0x3 + 0x0000000040151cec cnx_auth_timeout_process + *fill* 0x0000000040151d1d 0x3 .text.cnx_assoc_timeout_process - 0x0000000040140270 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151d20 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x4a (size before relaxing) - 0x0000000040140274 cnx_assoc_timeout_process - *fill* 0x000000004014029a 0x2 + 0x0000000040151d24 cnx_assoc_timeout_process + *fill* 0x0000000040151d4a 0x2 .text.cnx_handshake_timeout_process - 0x000000004014029c 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151d4c 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x8c (size before relaxing) - 0x00000000401402a4 cnx_handshake_timeout_process + 0x0000000040151d54 cnx_handshake_timeout_process .text.cnx_bss_alloc - 0x0000000040140300 0x2f6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040151db0 0x2f6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x34a (size before relaxing) - 0x0000000040140318 cnx_bss_alloc - *fill* 0x00000000401405f6 0x2 + 0x0000000040151dc8 cnx_bss_alloc + *fill* 0x00000000401520a6 0x2 .text.cnx_remove_rc_except - 0x00000000401405f8 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401520a8 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x86 (size before relaxing) - 0x00000000401405fc cnx_remove_rc_except - *fill* 0x000000004014066e 0x2 + 0x00000000401520ac cnx_remove_rc_except + *fill* 0x000000004015211e 0x2 .text.cnx_rc_update_rssi - 0x0000000040140670 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040152120 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x8a (size before relaxing) - 0x0000000040140670 cnx_rc_update_rssi - *fill* 0x00000000401406f6 0x2 + 0x0000000040152120 cnx_rc_update_rssi + *fill* 0x00000000401521a6 0x2 .text.cnx_rc_update_state_metric - 0x00000000401406f8 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401521a8 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x81 (size before relaxing) - 0x00000000401406f8 cnx_rc_update_state_metric - *fill* 0x0000000040140771 0x3 + 0x00000000401521a8 cnx_rc_update_state_metric + *fill* 0x0000000040152221 0x3 .text.cnx_probe_rc_tx_cb - 0x0000000040140774 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040152224 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x7c (size before relaxing) - *fill* 0x00000000401407c9 0x3 + *fill* 0x0000000040152279 0x3 .text.cnx_update_bss - 0x00000000401407cc 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000004015227c 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x2a (size before relaxing) - 0x00000000401407cc cnx_update_bss - *fill* 0x00000000401407ea 0x2 + 0x000000004015227c cnx_update_bss + *fill* 0x000000004015229a 0x2 .text.cnx_update_bss_more - 0x00000000401407ec 0x376 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000004015229c 0x376 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x3fe (size before relaxing) - 0x0000000040140804 cnx_update_bss_more - *fill* 0x0000000040140b62 0x2 + 0x00000000401522b4 cnx_update_bss_more + *fill* 0x0000000040152612 0x2 .text.cnx_beacon_timeout_process - 0x0000000040140b64 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040152614 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x6c (size before relaxing) - 0x0000000040140b6c cnx_beacon_timeout_process + 0x000000004015261c cnx_beacon_timeout_process .text.mgd_probe_send_timeout_process - 0x0000000040140bb8 0x12e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040152668 0x12e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x16e (size before relaxing) - 0x0000000040140bc4 mgd_probe_send_timeout_process - *fill* 0x0000000040140ce6 0x2 + 0x0000000040152674 mgd_probe_send_timeout_process + *fill* 0x0000000040152796 0x2 .text.cnx_node_alloc - 0x0000000040140ce8 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040152798 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0xc2 (size before relaxing) - 0x0000000040140ce8 cnx_node_alloc - *fill* 0x0000000040140d8e 0x2 + 0x0000000040152798 cnx_node_alloc + *fill* 0x000000004015283e 0x2 .text.cnx_node_remove - 0x0000000040140d90 0xe7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040152840 0xe7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x10f (size before relaxing) - 0x0000000040140d90 cnx_node_remove - *fill* 0x0000000040140e77 0x1 + 0x0000000040152840 cnx_node_remove + *fill* 0x0000000040152927 0x1 .text.ic_set_sta - 0x0000000040140e78 0xcc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040152928 0xcc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0xe8 (size before relaxing) - 0x0000000040140e78 ic_set_sta + 0x0000000040152928 ic_set_sta .text.cnx_sta_leave - 0x0000000040140f44 0x1de /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401529f4 0x1de /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x25a (size before relaxing) - 0x0000000040140f4c cnx_sta_leave - *fill* 0x0000000040141122 0x2 + 0x00000000401529fc cnx_sta_leave + *fill* 0x0000000040152bd2 0x2 .text.cnx_sta_associated - 0x0000000040141124 0x14a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040152bd4 0x14a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x18a (size before relaxing) - 0x0000000040141144 cnx_sta_associated - *fill* 0x000000004014126e 0x2 + 0x0000000040152bf4 cnx_sta_associated + *fill* 0x0000000040152d1e 0x2 .text.cnx_node_leave - 0x0000000040141270 0x160 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040152d20 0x160 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x1b2 (size before relaxing) - 0x000000004014127c cnx_node_leave - *fill* 0x00000000401413d0 0x0 + 0x0000000040152d2c cnx_node_leave + *fill* 0x0000000040152e80 0x0 .text.cnx_node_join - 0x00000000401413d0 0x27a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040152e80 0x27a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x30a (size before relaxing) - 0x00000000401413fc cnx_node_join - *fill* 0x000000004014164a 0x2 + 0x0000000040152eac cnx_node_join + *fill* 0x00000000401530fa 0x2 .text.cnx_start_obss_scan - 0x000000004014164c 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401530fc 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0xf4 (size before relaxing) - 0x000000004014165c cnx_start_obss_scan + 0x000000004015310c cnx_start_obss_scan .text.cnx_obss_scan_done_cb - 0x0000000040141720 0x215 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401531d0 0x215 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x26d (size before relaxing) - 0x0000000040141734 cnx_obss_scan_done_cb - *fill* 0x0000000040141935 0x3 + 0x00000000401531e4 cnx_obss_scan_done_cb + *fill* 0x00000000401533e5 0x3 .text.cnx_stop_obss_scan - 0x0000000040141938 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401533e8 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x36 (size before relaxing) - 0x0000000040141938 cnx_stop_obss_scan - *fill* 0x0000000040141966 0x2 + 0x00000000401533e8 cnx_stop_obss_scan + *fill* 0x0000000040153416 0x2 .text.cnx_auth_done - 0x0000000040141968 0x3b2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x0000000040153418 0x3b2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) 0x472 (size before relaxing) - 0x000000004014198c cnx_auth_done - *fill* 0x0000000040141d1a 0x2 + 0x000000004015343c cnx_auth_done + *fill* 0x00000000401537ca 0x2 .text.ieee80211_send_action_register - 0x0000000040141d1c 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) - 0x0000000040141d2c ieee80211_send_action_register + 0x00000000401537cc 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x00000000401537dc ieee80211_send_action_register .text.ieee80211_send_action - 0x0000000040141d84 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x0000000040153834 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) 0x84 (size before relaxing) - 0x0000000040141d88 ieee80211_send_action + 0x0000000040153838 ieee80211_send_action .text.ieee80211_recv_action_register - 0x0000000040141df8 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) - 0x0000000040141e08 ieee80211_recv_action_register - *fill* 0x0000000040141e5e 0x2 + 0x00000000401538a8 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x00000000401538b8 ieee80211_recv_action_register + *fill* 0x000000004015390e 0x2 .text.ieee80211_recv_action - 0x0000000040141e60 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x0000000040153910 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) 0xc8 (size before relaxing) - 0x0000000040141e6c ieee80211_recv_action + 0x000000004015391c ieee80211_recv_action .text.ieee80211_recv_action_vendor_spec - 0x0000000040141f08 0x10e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x00000000401539b8 0x10e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) 0x116 (size before relaxing) - 0x0000000040141f14 ieee80211_recv_action_vendor_spec - *fill* 0x0000000040142016 0x2 + 0x00000000401539c4 ieee80211_recv_action_vendor_spec + *fill* 0x0000000040153ac6 0x2 .text.ieee80211_action_vendor_spec_attach - 0x0000000040142018 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x0000000040153ac8 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) 0x35 (size before relaxing) - 0x000000004014201c ieee80211_action_vendor_spec_attach - *fill* 0x0000000040142045 0x3 + 0x0000000040153acc ieee80211_action_vendor_spec_attach + *fill* 0x0000000040153af5 0x3 .text.ieee80211_getmgtframe - 0x0000000040142048 0x6f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x0000000040153af8 0x6f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) 0x7b (size before relaxing) - 0x0000000040142050 ieee80211_getmgtframe - *fill* 0x00000000401420b7 0x1 + 0x0000000040153b00 ieee80211_getmgtframe + *fill* 0x0000000040153b67 0x1 .text.ieee80211_getbcnframe - 0x00000000401420b8 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x0000000040153b68 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) 0x86 (size before relaxing) - 0x00000000401420c0 ieee80211_getbcnframe - *fill* 0x0000000040142122 0x2 + 0x0000000040153b70 ieee80211_getbcnframe + *fill* 0x0000000040153bd2 0x2 .text.esf_buf_free_static$part$4 - 0x0000000040142124 0x8b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x0000000040153bd4 0x8b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) 0x9b (size before relaxing) - *fill* 0x00000000401421af 0x1 + *fill* 0x0000000040153c5f 0x1 .text.esf_buf_setup - 0x00000000401421b0 0x385 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x0000000040153c60 0x385 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) 0x3d9 (size before relaxing) - 0x00000000401421ec esf_buf_setup - *fill* 0x0000000040142535 0x3 + 0x0000000040153c9c esf_buf_setup + *fill* 0x0000000040153fe5 0x3 .text.esf_buf_setdown - 0x0000000040142538 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x0000000040153fe8 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) 0x1b (size before relaxing) - 0x0000000040142538 esf_buf_setdown - *fill* 0x000000004014254f 0x1 + 0x0000000040153fe8 esf_buf_setdown + *fill* 0x0000000040153fff 0x1 .text.ic_get_addr - 0x0000000040142550 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) - 0x0000000040142554 ic_get_addr - *fill* 0x0000000040142565 0x3 + 0x0000000040154000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154004 ic_get_addr + *fill* 0x0000000040154015 0x3 .text.ic_get_ptk_alg - 0x0000000040142568 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154018 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x18 (size before relaxing) - 0x0000000040142568 ic_get_ptk_alg + 0x0000000040154018 ic_get_ptk_alg .text.ic_disable_crypto - 0x000000004014257c 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015402c 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x2e (size before relaxing) - 0x000000004014257c ic_disable_crypto - *fill* 0x000000004014259f 0x1 + 0x000000004015402c ic_disable_crypto + *fill* 0x000000004015404f 0x1 .text.ic_set_vif - 0x00000000401425a0 0x18b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154050 0x18f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x1ff (size before relaxing) - 0x00000000401425b0 ic_set_vif - *fill* 0x000000004014272b 0x1 + 0x0000000040154064 ic_set_vif + *fill* 0x00000000401541df 0x1 .text.ic_set_key - 0x000000004014272c 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401541e0 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x66 (size before relaxing) - 0x000000004014272c ic_set_key - *fill* 0x0000000040142782 0x2 + 0x00000000401541e0 ic_set_key + *fill* 0x0000000040154236 0x2 .text.ic_get_key - 0x0000000040142784 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154238 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x24 (size before relaxing) - 0x0000000040142784 ic_get_key + 0x0000000040154238 ic_get_key .text.ic_tx_pkt - 0x00000000401427a0 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154254 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x15 (size before relaxing) - 0x00000000401427a0 ic_tx_pkt - *fill* 0x00000000401427b1 0x3 + 0x0000000040154254 ic_tx_pkt + *fill* 0x0000000040154265 0x3 .text.ic_ebuf_alloc - 0x00000000401427b4 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) - 0x00000000401427b8 ic_ebuf_alloc + 0x0000000040154268 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015426c ic_ebuf_alloc .text.ic_ebuf_recycle_tx - 0x00000000401427cc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154280 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x12 (size before relaxing) - 0x00000000401427cc ic_ebuf_recycle_tx - *fill* 0x00000000401427da 0x2 + 0x0000000040154280 ic_ebuf_recycle_tx + *fill* 0x000000004015428e 0x2 .text.ic_ebuf_recycle_rx - 0x00000000401427dc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154290 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x12 (size before relaxing) - 0x00000000401427dc ic_ebuf_recycle_rx - *fill* 0x00000000401427e6 0x2 + 0x0000000040154290 ic_ebuf_recycle_rx + *fill* 0x000000004015429a 0x2 .text.esp_wifi_internal_free_rx_buffer - 0x00000000401427e8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015429c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x12 (size before relaxing) - 0x00000000401427e8 esp_wifi_internal_free_rx_buffer - *fill* 0x00000000401427f2 0x2 + 0x000000004015429c esp_wifi_internal_free_rx_buffer + *fill* 0x00000000401542a6 0x2 .text.ic_register_tx_cb - 0x00000000401427f4 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401542a8 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x16 (size before relaxing) - 0x00000000401427f4 ic_register_tx_cb - *fill* 0x0000000040142806 0x2 + 0x00000000401542a8 ic_register_tx_cb + *fill* 0x00000000401542ba 0x2 .text.ic_register_rx_cb - 0x0000000040142808 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401542bc 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x16 (size before relaxing) - 0x0000000040142808 ic_register_rx_cb - *fill* 0x000000004014281a 0x2 + 0x00000000401542bc ic_register_rx_cb + *fill* 0x00000000401542ce 0x2 .text.ic_register_timer_post_cb - 0x000000004014281c 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401542d0 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x000000004014281c ic_register_timer_post_cb + 0x00000000401542d0 ic_register_timer_post_cb .text.ic_register_michael_mic_failure_cb - 0x0000000040142828 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401542dc 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x0000000040142828 ic_register_michael_mic_failure_cb + 0x00000000401542dc ic_register_michael_mic_failure_cb .text.ic_set_promis_filter - 0x0000000040142834 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401542e8 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x0000000040142834 ic_set_promis_filter + 0x00000000401542e8 ic_set_promis_filter .text.ic_set_promis_ctrl_filter - 0x0000000040142840 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401542f4 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x0000000040142840 ic_set_promis_ctrl_filter + 0x00000000401542f4 ic_set_promis_ctrl_filter .text.ic_register_config_cb - 0x000000004014284c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154300 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x1a (size before relaxing) - 0x000000004014284c ic_register_config_cb - *fill* 0x0000000040142862 0x2 + 0x0000000040154300 ic_register_config_cb + *fill* 0x0000000040154316 0x2 .text.ic_register_pm_tx_null_cb - 0x0000000040142864 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154318 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x1a (size before relaxing) - 0x0000000040142864 ic_register_pm_tx_null_cb - *fill* 0x000000004014287a 0x2 + 0x0000000040154318 ic_register_pm_tx_null_cb + *fill* 0x000000004015432e 0x2 .text.ic_register_net80211_tx_cb - 0x000000004014287c 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154330 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x18 (size before relaxing) - 0x000000004014287c ic_register_net80211_tx_cb - *fill* 0x000000004014288d 0x3 + 0x0000000040154330 ic_register_net80211_tx_cb + *fill* 0x0000000040154341 0x3 .text.ic_register_timer_cb - 0x0000000040142890 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154344 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x18 (size before relaxing) - 0x0000000040142890 ic_register_timer_cb - *fill* 0x00000000401428a1 0x3 + 0x0000000040154344 ic_register_timer_cb + *fill* 0x0000000040154355 0x3 .text.ic_get_next_tbtt - 0x00000000401428a4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154358 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x11 (size before relaxing) - 0x00000000401428a4 ic_get_next_tbtt - *fill* 0x00000000401428ae 0x2 + 0x0000000040154358 ic_get_next_tbtt + *fill* 0x0000000040154362 0x2 .text.ic_del_rx_ba - 0x00000000401428b0 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154364 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x12 (size before relaxing) - 0x00000000401428b0 ic_del_rx_ba - *fill* 0x00000000401428bb 0x1 + 0x0000000040154364 ic_del_rx_ba + *fill* 0x000000004015436f 0x1 .text.ic_reset_rx_ba - 0x00000000401428bc 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154370 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x1b (size before relaxing) - 0x00000000401428bc ic_reset_rx_ba - *fill* 0x00000000401428d0 0x0 + 0x0000000040154370 ic_reset_rx_ba + *fill* 0x0000000040154384 0x0 .text.ic_add_rx_ba - 0x00000000401428d0 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154384 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x20 (size before relaxing) - 0x00000000401428d0 ic_add_rx_ba - *fill* 0x00000000401428e9 0x3 + 0x0000000040154384 ic_add_rx_ba + *fill* 0x000000004015439d 0x3 .text.ic_reset_tbtt - 0x00000000401428ec 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401543a0 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0xf (size before relaxing) - 0x00000000401428ec ic_reset_tbtt - *fill* 0x00000000401428f4 0x0 + 0x00000000401543a0 ic_reset_tbtt + *fill* 0x00000000401543a8 0x0 .text.ic_del_key_all - 0x00000000401428f4 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401543a8 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x00000000401428f4 ic_del_key_all - *fill* 0x0000000040142901 0x3 + 0x00000000401543a8 ic_del_key_all + *fill* 0x00000000401543b5 0x3 .text.ic_del_key - 0x0000000040142904 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401543b8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x12 (size before relaxing) - 0x0000000040142904 ic_del_key - *fill* 0x000000004014290e 0x2 + 0x00000000401543b8 ic_del_key + *fill* 0x00000000401543c2 0x2 .text.ic_set_ac_param - 0x0000000040142910 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401543c4 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x1e (size before relaxing) - 0x0000000040142910 ic_set_ac_param - *fill* 0x0000000040142927 0x1 + 0x00000000401543c4 ic_set_ac_param + *fill* 0x00000000401543db 0x1 .text.ic_ampdu_op - 0x0000000040142928 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401543dc 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x3a (size before relaxing) - 0x0000000040142928 ic_ampdu_op - *fill* 0x000000004014294f 0x1 + 0x00000000401543dc ic_ampdu_op + *fill* 0x0000000040154403 0x1 .text.ic_set_trc - 0x0000000040142950 0x108 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154404 0x108 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x12c (size before relaxing) - 0x0000000040142958 ic_set_trc + 0x000000004015440c ic_set_trc .text.ic_deinit - 0x0000000040142a58 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015450c 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x2f (size before relaxing) - 0x0000000040142a58 ic_deinit - *fill* 0x0000000040142a6b 0x1 - .text.ic_init 0x0000000040142a6c 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015450c ic_deinit + *fill* 0x000000004015451f 0x1 + .text.ic_init 0x0000000040154520 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x54 (size before relaxing) - 0x0000000040142a70 ic_init - *fill* 0x0000000040142a9d 0x3 + 0x0000000040154524 ic_init + *fill* 0x0000000040154551 0x3 .text.ic_enable - 0x0000000040142aa0 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154554 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x48 (size before relaxing) - 0x0000000040142aa8 ic_enable + 0x000000004015455c ic_enable .text.ic_disable - 0x0000000040142adc 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154590 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x30 (size before relaxing) - 0x0000000040142adc ic_disable + 0x0000000040154590 ic_disable .text.ic_enable_rx - 0x0000000040142b00 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401545b4 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x20 (size before relaxing) - 0x0000000040142b00 ic_enable_rx + 0x00000000401545b4 ic_enable_rx .text.ic_disable_rx - 0x0000000040142b18 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401545cc 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x20 (size before relaxing) - 0x0000000040142b18 ic_disable_rx + 0x00000000401545cc ic_disable_rx .text.ic_set_beacon_int - 0x0000000040142b30 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401545e4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x12 (size before relaxing) - 0x0000000040142b30 ic_set_beacon_int - *fill* 0x0000000040142b3a 0x2 + 0x00000000401545e4 ic_set_beacon_int + *fill* 0x00000000401545ee 0x2 .text.ic_set_mac - 0x0000000040142b3c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401545f0 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x0000000040142b3c ic_set_mac - *fill* 0x0000000040142b49 0x3 + 0x00000000401545f0 ic_set_mac + *fill* 0x00000000401545fd 0x3 .text.ic_set_bssid - 0x0000000040142b4c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154600 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x0000000040142b4c ic_set_bssid - *fill* 0x0000000040142b59 0x3 + 0x0000000040154600 ic_set_bssid + *fill* 0x000000004015460d 0x3 .text.ic_set_current_channel - 0x0000000040142b5c 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154610 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x13 (size before relaxing) - 0x0000000040142b5c ic_set_current_channel - *fill* 0x0000000040142b68 0x0 + 0x0000000040154610 ic_set_current_channel + *fill* 0x000000004015461c 0x0 .text.ic_get_trc - 0x0000000040142b68 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015461c 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x17 (size before relaxing) - 0x0000000040142b68 ic_get_trc - *fill* 0x0000000040142b78 0x0 + 0x000000004015461c ic_get_trc + *fill* 0x000000004015462c 0x0 .text.ic_tx_is_idle - 0x0000000040142b78 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015462c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x0000000040142b78 ic_tx_is_idle - *fill* 0x0000000040142b85 0x3 + 0x000000004015462c ic_tx_is_idle + *fill* 0x0000000040154639 0x3 .text.ic_get_pp_hdl - 0x0000000040142b88 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015463c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x11 (size before relaxing) - 0x0000000040142b88 ic_get_pp_hdl - *fill* 0x0000000040142b92 0x2 + 0x000000004015463c ic_get_pp_hdl + *fill* 0x0000000040154646 0x2 .text.ic_set_rx_policy_ubssid_check - 0x0000000040142b94 0x4b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) - 0x0000000040142b98 ic_set_rx_policy_ubssid_check - *fill* 0x0000000040142bdf 0x1 + 0x0000000040154648 0x4b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015464c ic_set_rx_policy_ubssid_check + *fill* 0x0000000040154693 0x1 .text.ic_set_rx_policy - 0x0000000040142be0 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154694 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0xea (size before relaxing) - 0x0000000040142bec ic_set_rx_policy - *fill* 0x0000000040142cb6 0x2 + 0x00000000401546a0 ic_set_rx_policy + *fill* 0x000000004015476a 0x2 .text.ic_set_sta_auth_flag - 0x0000000040142cb8 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015476c 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x12 (size before relaxing) - 0x0000000040142cb8 ic_set_sta_auth_flag - *fill* 0x0000000040142cc3 0x1 + 0x000000004015476c ic_set_sta_auth_flag + *fill* 0x0000000040154777 0x1 .text.ic_set_opmode - 0x0000000040142cc4 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154778 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x12 (size before relaxing) - 0x0000000040142cc4 ic_set_opmode - *fill* 0x0000000040142ccf 0x1 + 0x0000000040154778 ic_set_opmode + *fill* 0x0000000040154783 0x1 .text.ic_set_interface - 0x0000000040142cd0 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154784 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x0000000040142cd0 ic_set_interface - *fill* 0x0000000040142cdd 0x3 + 0x0000000040154784 ic_set_interface + *fill* 0x0000000040154791 0x3 .text.ic_trc_update_conn_phy_mode - 0x0000000040142ce0 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154794 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x13 (size before relaxing) - 0x0000000040142ce0 ic_trc_update_conn_phy_mode - *fill* 0x0000000040142cef 0x1 + 0x0000000040154794 ic_trc_update_conn_phy_mode + *fill* 0x00000000401547a3 0x1 .text.ic_stop_hw_txq - 0x0000000040142cf0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401547a4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x11 (size before relaxing) - 0x0000000040142cf0 ic_stop_hw_txq - *fill* 0x0000000040142cfa 0x2 + 0x00000000401547a4 ic_stop_hw_txq + *fill* 0x00000000401547ae 0x2 .text.ic_stop_sw_txq - 0x0000000040142cfc 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401547b0 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x28 (size before relaxing) - 0x0000000040142d00 ic_stop_sw_txq + 0x00000000401547b4 ic_stop_sw_txq .text.ic_txq_empty - 0x0000000040142d18 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401547cc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x11 (size before relaxing) - 0x0000000040142d18 ic_txq_empty - *fill* 0x0000000040142d22 0x2 + 0x00000000401547cc ic_txq_empty + *fill* 0x00000000401547d6 0x2 .text.ic_set_fix_rate - 0x0000000040142d24 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401547d8 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x18 (size before relaxing) - 0x0000000040142d24 ic_set_fix_rate + 0x00000000401547d8 ic_set_fix_rate .text.ic_set_lmac_stop - 0x0000000040142d38 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401547ec 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x0000000040142d38 ic_set_lmac_stop - *fill* 0x0000000040142d45 0x3 + 0x00000000401547ec ic_set_lmac_stop + *fill* 0x00000000401547f9 0x3 .text.ic_create_wifi_task - 0x0000000040142d48 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x00000000401547fc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x11 (size before relaxing) - 0x0000000040142d48 ic_create_wifi_task - *fill* 0x0000000040142d52 0x2 + 0x00000000401547fc ic_create_wifi_task + *fill* 0x0000000040154806 0x2 .text.ic_delete_wifi_task - 0x0000000040142d54 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154808 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x11 (size before relaxing) - 0x0000000040142d54 ic_delete_wifi_task - *fill* 0x0000000040142d5e 0x2 + 0x0000000040154808 ic_delete_wifi_task + *fill* 0x0000000040154812 0x2 .text.ic_set_csi - 0x0000000040142d60 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154814 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x14 (size before relaxing) - 0x0000000040142d60 ic_set_csi - *fill* 0x0000000040142d6d 0x3 + 0x0000000040154814 ic_set_csi + *fill* 0x0000000040154821 0x3 .text.ic_mac_init - 0x0000000040142d70 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154824 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x11 (size before relaxing) - 0x0000000040142d70 ic_mac_init - *fill* 0x0000000040142d7a 0x2 + 0x0000000040154824 ic_mac_init + *fill* 0x000000004015482e 0x2 .text.ic_mac_deinit - 0x0000000040142d7c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x0000000040154830 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x11 (size before relaxing) - 0x0000000040142d7c ic_mac_deinit - *fill* 0x0000000040142d86 0x2 + 0x0000000040154830 ic_mac_deinit + *fill* 0x000000004015483a 0x2 .text.ic_csi_set_config - 0x0000000040142d88 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004015483c 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) 0x32 (size before relaxing) - 0x0000000040142d88 ic_csi_set_config - *fill* 0x0000000040142dae 0x2 + 0x000000004015483c ic_csi_set_config + *fill* 0x0000000040154862 0x2 .text.lmacSetTxFrame - 0x0000000040142db0 0x7af /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040154864 0x7b7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x7ef (size before relaxing) - *fill* 0x000000004014355f 0x1 + *fill* 0x000000004015501b 0x1 .text.lmacClearWaitQueue - 0x0000000040143560 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000004015501c 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x6a (size before relaxing) - *fill* 0x00000000401435ae 0x2 + *fill* 0x000000004015506a 0x2 .text.unlikely.lmacEndRetryAMPDUFail$isra$4 - 0x00000000401435b0 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000004015506c 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x90 (size before relaxing) .text.lmacDiscardMSDU - 0x0000000040143624 0xe7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x00000000401550e0 0xe7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x113 (size before relaxing) - *fill* 0x000000004014370b 0x1 + *fill* 0x00000000401551c7 0x1 .text.lmacDiscardFrameExchangeSequence - 0x000000004014370c 0xee /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x00000000401551c8 0xee /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x11e (size before relaxing) - *fill* 0x00000000401437fa 0x2 + *fill* 0x00000000401552b6 0x2 .text.lmacIsIdle - 0x00000000401437fc 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x00000000401552b8 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x1f (size before relaxing) - 0x00000000401437fc lmacIsIdle - *fill* 0x0000000040143817 0x1 + 0x00000000401552b8 lmacIsIdle + *fill* 0x00000000401552d3 0x1 .text.lmacSetAcParam - 0x0000000040143818 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x00000000401552d4 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x78 (size before relaxing) - 0x0000000040143818 lmacSetAcParam + 0x00000000401552d4 lmacSetAcParam .text.lmacInit - 0x0000000040143884 0x118 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040155340 0x11c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x134 (size before relaxing) - 0x0000000040143888 lmacInit + 0x0000000040155348 lmacInit .text.lmacDiscardAgedMSDU - 0x000000004014399c 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000004015545c 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x32 (size before relaxing) - 0x000000004014399c lmacDiscardAgedMSDU - *fill* 0x00000000401439c2 0x2 + 0x000000004015545c lmacDiscardAgedMSDU + *fill* 0x0000000040155482 0x2 .text.lmacRetryTxFrame - 0x00000000401439c4 0x148 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040155484 0x148 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x18c (size before relaxing) .text.lmacEndTxopFrameExchangeSequence - 0x0000000040143b0c 0x652 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x00000000401555cc 0x652 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x72e (size before relaxing) - *fill* 0x000000004014415e 0x2 + *fill* 0x0000000040155c1e 0x2 .text.lmacProcessLongRetryFail - 0x0000000040144160 0x1c4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040155c20 0x1c4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x1fc (size before relaxing) .text.lmacProcessShortRetryFail - 0x0000000040144324 0x210 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040155de4 0x210 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x260 (size before relaxing) .text.lmacProcessCtsTimeout - 0x0000000040144534 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040155ff4 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x90 (size before relaxing) - 0x0000000040144538 lmacProcessCtsTimeout + 0x0000000040155ff8 lmacProcessCtsTimeout .text.lmacProcessCollision - 0x00000000401445a0 0xb1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040156060 0xb1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0xdc (size before relaxing) - 0x00000000401445a4 lmacProcessCollision - *fill* 0x0000000040144651 0x3 + 0x0000000040156064 lmacProcessCollision + *fill* 0x0000000040156111 0x3 .text.lmacProcessCollisions_task - 0x0000000040144654 0x53 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040156114 0x53 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x5f (size before relaxing) - 0x000000004014465c lmacProcessCollisions_task - *fill* 0x00000000401446a7 0x1 + 0x000000004015611c lmacProcessCollisions_task + *fill* 0x0000000040156167 0x1 .text.lmacProcessTxRtsError - 0x00000000401446a8 0xaf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040156168 0xaf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0xe3 (size before relaxing) - 0x00000000401446b0 lmacProcessTxRtsError - *fill* 0x0000000040144757 0x1 + 0x0000000040156170 lmacProcessTxRtsError + *fill* 0x0000000040156217 0x1 .text.lmacProcessAckTimeout - 0x0000000040144758 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040156218 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x106 (size before relaxing) - 0x000000004014475c lmacProcessAckTimeout - *fill* 0x0000000040144826 0x2 + 0x000000004015621c lmacProcessAckTimeout + *fill* 0x00000000401562e6 0x2 .text.lmacProcessTxError - 0x0000000040144828 0xa1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x00000000401562e8 0xa1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0xdc (size before relaxing) - 0x000000004014482c lmacProcessTxError - *fill* 0x00000000401448c9 0x3 + 0x00000000401562ec lmacProcessTxError + *fill* 0x0000000040156389 0x3 .text.lmacProcessTxSuccess - 0x00000000401448cc 0xff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000004015638c 0xff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x127 (size before relaxing) - 0x00000000401448d0 lmacProcessTxSuccess - *fill* 0x00000000401449cb 0x1 + 0x0000000040156390 lmacProcessTxSuccess + *fill* 0x000000004015648b 0x1 .text.lmacProcessTxComplete - 0x00000000401449cc 0x1da /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000004015648c 0x1da /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x20e (size before relaxing) - 0x00000000401449ec lmacProcessTxComplete - *fill* 0x0000000040144ba6 0x2 + 0x00000000401564ac lmacProcessTxComplete + *fill* 0x0000000040156666 0x2 .text.lmacRxDone - 0x0000000040144ba8 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040156668 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x20 (size before relaxing) - 0x0000000040144bac lmacRxDone + 0x000000004015666c lmacRxDone .text.lmacDisableTransmit - 0x0000000040144bc4 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040156684 0x112 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x132 (size before relaxing) - 0x0000000040144bcc lmacDisableTransmit - *fill* 0x0000000040144cce 0x2 + 0x0000000040156694 lmacDisableTransmit + *fill* 0x0000000040156796 0x2 .text.lmacProcessTxTimeout - 0x0000000040144cd0 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x0000000040156798 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0x74 (size before relaxing) - 0x0000000040144cd0 lmacProcessTxTimeout + 0x0000000040156798 lmacProcessTxTimeout .text.lmac_stop_hw_txq - 0x0000000040144d34 0xb1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x00000000401567fc 0xb1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) 0xe1 (size before relaxing) - 0x0000000040144d40 lmac_stop_hw_txq - *fill* 0x0000000040144de5 0x3 + 0x0000000040156808 lmac_stop_hw_txq + *fill* 0x00000000401568ad 0x3 .text.pm_coex_schm_process - 0x0000000040144de8 0xf6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401568b0 0xf6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x116 (size before relaxing) - *fill* 0x0000000040144ede 0x2 + *fill* 0x00000000401569a6 0x2 .text.pm_coex_schm_process_restart - 0x0000000040144ee0 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401569a8 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x3a (size before relaxing) - *fill* 0x0000000040144f0a 0x2 + *fill* 0x00000000401569d2 0x2 .text.pm_coex_slice_wifi_timeout - 0x0000000040144f0c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401569d4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x13 (size before relaxing) - *fill* 0x0000000040144f1b 0x1 + *fill* 0x00000000401569e3 0x1 .text.pm_coex_schm_timeout - 0x0000000040144f1c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401569e4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x13 (size before relaxing) - *fill* 0x0000000040144f2b 0x1 + *fill* 0x00000000401569f3 0x1 .text.pm_noise_check_timeout - 0x0000000040144f2c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401569f4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x13 (size before relaxing) - *fill* 0x0000000040144f3b 0x1 + *fill* 0x0000000040156a03 0x1 .text.pm_sleep_delay_timeout - 0x0000000040144f3c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156a04 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x13 (size before relaxing) - *fill* 0x0000000040144f4b 0x1 + *fill* 0x0000000040156a13 0x1 .text.pm_active_timeout - 0x0000000040144f4c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156a14 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x13 (size before relaxing) - *fill* 0x0000000040144f5b 0x1 + *fill* 0x0000000040156a23 0x1 .text.pm_dream_timeout - 0x0000000040144f5c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156a24 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x13 (size before relaxing) - *fill* 0x0000000040144f6b 0x1 + *fill* 0x0000000040156a33 0x1 .text.pm_tbtt_timeout - 0x0000000040144f6c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156a34 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x13 (size before relaxing) - *fill* 0x0000000040144f7b 0x1 + *fill* 0x0000000040156a43 0x1 .text.pm_sleep$part$1 - 0x0000000040144f7c 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156a44 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0xfc (size before relaxing) .text.pm_is_open - 0x000000004014505c 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156b24 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0xf (size before relaxing) - 0x000000004014505c pm_is_open - *fill* 0x0000000040145067 0x1 + 0x0000000040156b24 pm_is_open + *fill* 0x0000000040156b2f 0x1 .text.pm_is_on_channel - 0x0000000040145068 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156b30 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0xf (size before relaxing) - 0x0000000040145068 pm_is_on_channel - *fill* 0x0000000040145073 0x1 + 0x0000000040156b30 pm_is_on_channel + *fill* 0x0000000040156b3b 0x1 .text.pm_allow_tx - 0x0000000040145074 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156b3c 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x24 (size before relaxing) - 0x0000000040145074 pm_allow_tx + 0x0000000040156b3c pm_allow_tx .text.pm_allow_sleep - 0x0000000040145094 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156b5c 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x3e (size before relaxing) - 0x0000000040145094 pm_allow_sleep - *fill* 0x00000000401450ce 0x2 + 0x0000000040156b5c pm_allow_sleep + *fill* 0x0000000040156b96 0x2 .text.pm_noise_check_disable - 0x00000000401450d0 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156b98 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x2a (size before relaxing) - 0x00000000401450d4 pm_noise_check_disable - *fill* 0x00000000401450f2 0x2 + 0x0000000040156b9c pm_noise_check_disable + *fill* 0x0000000040156bba 0x2 .text.pm_noise_check_enable - 0x00000000401450f4 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156bbc 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x3e (size before relaxing) - 0x00000000401450f4 pm_noise_check_enable - *fill* 0x0000000040145126 0x2 + 0x0000000040156bbc pm_noise_check_enable + *fill* 0x0000000040156bee 0x2 .text.pm_noise_check - 0x0000000040145128 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156bf0 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x54 (size before relaxing) - 0x000000004014512c pm_noise_check + 0x0000000040156bf4 pm_noise_check .text.pm_noise_check_process - 0x000000004014516c 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156c34 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x3a (size before relaxing) - 0x000000004014516c pm_noise_check_process - *fill* 0x0000000040145196 0x2 + 0x0000000040156c34 pm_noise_check_process + *fill* 0x0000000040156c5e 0x2 .text.pm_register_pm_tx_null_cb - 0x0000000040145198 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) - 0x000000004014519c pm_register_pm_tx_null_cb + 0x0000000040156c60 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156c64 pm_register_pm_tx_null_cb .text.pm_send_probe_start - 0x00000000401451a8 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156c70 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x44 (size before relaxing) - 0x00000000401451b0 pm_send_probe_start + 0x0000000040156c78 pm_send_probe_start .text.pm_send_probe_stop - 0x00000000401451e4 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156cac 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x28 (size before relaxing) - 0x00000000401451e8 pm_send_probe_stop + 0x0000000040156cb0 pm_send_probe_stop .text.pm_off_channel - 0x0000000040145208 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156cd0 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x68 (size before relaxing) - 0x0000000040145208 pm_off_channel + 0x0000000040156cd0 pm_off_channel .text.pm_on_channel - 0x000000004014525c 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156d24 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x4c (size before relaxing) - 0x000000004014525c pm_on_channel + 0x0000000040156d24 pm_on_channel .text.pm_wake_up - 0x000000004014529c 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156d64 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x28 (size before relaxing) - 0x000000004014529c pm_wake_up + 0x0000000040156d64 pm_wake_up .text.pm_go_to_sleep - 0x00000000401452bc 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156d84 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x42 (size before relaxing) - 0x00000000401452c0 pm_go_to_sleep - *fill* 0x00000000401452f6 0x2 + 0x0000000040156d88 pm_go_to_sleep + *fill* 0x0000000040156dbe 0x2 .text.pm_go_to_wake - 0x00000000401452f8 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156dc0 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x42 (size before relaxing) - 0x00000000401452f8 pm_go_to_wake - *fill* 0x000000004014532e 0x2 + 0x0000000040156dc0 pm_go_to_wake + *fill* 0x0000000040156df6 0x2 .text.pm_coex_schm_timeout_process - 0x0000000040145330 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156df8 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x54 (size before relaxing) - 0x0000000040145330 pm_coex_schm_timeout_process + 0x0000000040156df8 pm_coex_schm_timeout_process .text.pm_coex_slice_timeout_process - 0x0000000040145364 0xc8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156e2c 0xc8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0xe8 (size before relaxing) - 0x000000004014536c pm_coex_slice_timeout_process + 0x0000000040156e34 pm_coex_slice_timeout_process .text.pm_active_timeout_process - 0x000000004014542c 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156ef4 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0xa7 (size before relaxing) - 0x000000004014542c pm_active_timeout_process - *fill* 0x00000000401454b0 0x0 + 0x0000000040156ef4 pm_active_timeout_process + *fill* 0x0000000040156f78 0x0 .text.pm_sleep_delay_timeout_process - 0x00000000401454b0 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156f78 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x28 (size before relaxing) - 0x00000000401454b0 pm_sleep_delay_timeout_process + 0x0000000040156f78 pm_sleep_delay_timeout_process .text.pm_tbtt_process - 0x00000000401454cc 0x272 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040156f94 0x276 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x2ba (size before relaxing) - 0x00000000401454dc pm_tbtt_process - *fill* 0x000000004014573e 0x2 + 0x0000000040156fa8 pm_tbtt_process + *fill* 0x000000004015720a 0x2 .text.pm_rx_beacon_process - 0x0000000040145740 0x2c9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004015720c 0x2c9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x301 (size before relaxing) - 0x0000000040145748 pm_rx_beacon_process - *fill* 0x0000000040145a09 0x3 + 0x0000000040157214 pm_rx_beacon_process + *fill* 0x00000000401574d5 0x3 .text.pm_tx_data_process - 0x0000000040145a0c 0x1bb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401574d8 0x1bb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x1df (size before relaxing) - 0x0000000040145a0c pm_tx_data_process - *fill* 0x0000000040145bc7 0x1 + 0x00000000401574d8 pm_tx_data_process + *fill* 0x0000000040157693 0x1 .text.pm_tx_data_done_process - 0x0000000040145bc8 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040157694 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x52 (size before relaxing) - 0x0000000040145bc8 pm_tx_data_done_process - *fill* 0x0000000040145c0a 0x2 + 0x0000000040157694 pm_tx_data_done_process + *fill* 0x00000000401576d6 0x2 .text.pm_tx_null_data_done_process - 0x0000000040145c0c 0x203 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401576d8 0x203 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x233 (size before relaxing) - 0x0000000040145c0c pm_tx_null_data_done_process - *fill* 0x0000000040145e0f 0x1 + 0x00000000401576d8 pm_tx_null_data_done_process + *fill* 0x00000000401578db 0x1 .text.pm_send_sleep_null_cb - 0x0000000040145e10 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401578dc 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x16 (size before relaxing) - 0x0000000040145e10 pm_send_sleep_null_cb - *fill* 0x0000000040145e22 0x2 + 0x00000000401578dc pm_send_sleep_null_cb + *fill* 0x00000000401578ee 0x2 .text.pm_send_wake_null_cb - 0x0000000040145e24 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401578f0 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x16 (size before relaxing) - 0x0000000040145e24 pm_send_wake_null_cb - *fill* 0x0000000040145e36 0x2 + 0x00000000401578f0 pm_send_wake_null_cb + *fill* 0x0000000040157902 0x2 .text.pm_on_coex_schm_process_restart - 0x0000000040145e38 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040157904 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0xf (size before relaxing) - 0x0000000040145e38 pm_on_coex_schm_process_restart - *fill* 0x0000000040145e40 0x0 + 0x0000000040157904 pm_on_coex_schm_process_restart + *fill* 0x000000004015790c 0x0 .text.pm_on_beacon_rx - 0x0000000040145e40 0x32a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004015790c 0x32e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x376 (size before relaxing) - 0x0000000040145e5c pm_on_beacon_rx - *fill* 0x000000004014616a 0x2 + 0x000000004015792c pm_on_beacon_rx + *fill* 0x0000000040157c3a 0x2 .text.pm_on_data_tx - 0x000000004014616c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040157c3c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x14 (size before relaxing) - 0x000000004014616c pm_on_data_tx - *fill* 0x0000000040146179 0x3 + 0x0000000040157c3c pm_on_data_tx + *fill* 0x0000000040157c49 0x3 .text.pm_on_data_tx_done - 0x000000004014617c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040157c4c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x15 (size before relaxing) - 0x000000004014617c pm_on_data_tx_done - *fill* 0x000000004014618a 0x2 + 0x0000000040157c4c pm_on_data_tx_done + *fill* 0x0000000040157c5a 0x2 .text.pm_start - 0x000000004014618c 0x234 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040157c5c 0x230 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x2a4 (size before relaxing) - 0x000000004014619c pm_start - .text.pm_stop 0x00000000401463c0 0xf7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040157c68 pm_start + .text.pm_stop 0x0000000040157e8c 0xf7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x14b (size before relaxing) - 0x00000000401463c4 pm_stop - *fill* 0x00000000401464b7 0x1 + 0x0000000040157e90 pm_stop + *fill* 0x0000000040157f83 0x1 .text.pm_attach - 0x00000000401464b8 0x11c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040157f84 0x118 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x15c (size before relaxing) - 0x00000000401464e8 pm_attach + 0x0000000040157fb0 pm_attach .text.pm_deattach - 0x00000000401465d4 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004015809c 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0x8e (size before relaxing) - 0x00000000401465d4 pm_deattach - *fill* 0x000000004014663e 0x2 + 0x000000004015809c pm_deattach + *fill* 0x0000000040158106 0x2 .text.pm_set_sleep_type - 0x0000000040146640 0xbc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040158108 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) 0xec (size before relaxing) - 0x0000000040146648 pm_set_sleep_type + 0x0000000040158114 pm_set_sleep_type .text.pp_delete_task_manually - 0x00000000401466fc 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401581c8 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x48 (size before relaxing) .text.pp_register_net80211_tx_cb - 0x0000000040146740 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x0000000040146744 pp_register_net80211_tx_cb + 0x000000004015820c 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158210 pp_register_net80211_tx_cb .text.pp_register_config_cb - 0x0000000040146750 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x0000000040146754 pp_register_config_cb + 0x000000004015821c 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158220 pp_register_config_cb .text.pp_register_timer_cb - 0x0000000040146760 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x0000000040146764 pp_register_timer_cb + 0x000000004015822c 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158230 pp_register_timer_cb .text.pp_register_michael_mic_failure_cb - 0x0000000040146770 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x0000000040146774 pp_register_michael_mic_failure_cb + 0x000000004015823c 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158240 pp_register_michael_mic_failure_cb .text.ppSetStop - 0x0000000040146780 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004015824c 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x37 (size before relaxing) - 0x0000000040146784 ppSetStop - *fill* 0x00000000401467af 0x1 + 0x0000000040158250 ppSetStop + *fill* 0x000000004015827b 0x1 .text.ppRegisterRxCallback - 0x00000000401467b0 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004015827c 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x20 (size before relaxing) - 0x00000000401467b0 ppRegisterRxCallback + 0x000000004015827c ppRegisterRxCallback .text.pp_register_tx_cb - 0x00000000401467cc 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158298 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x31 (size before relaxing) - 0x00000000401467cc pp_register_tx_cb - *fill* 0x00000000401467f9 0x3 + 0x0000000040158298 pp_register_tx_cb + *fill* 0x00000000401582c5 0x3 .text.ppRegisterTxCallback - 0x00000000401467fc 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401582c8 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x16 (size before relaxing) - 0x00000000401467fc ppRegisterTxCallback - *fill* 0x000000004014680e 0x2 + 0x00000000401582c8 ppRegisterTxCallback + *fill* 0x00000000401582da 0x2 .text.ppRecycleRxPkt - 0x0000000040146810 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401582dc 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x72 (size before relaxing) - 0x0000000040146820 ppRecycleRxPkt - *fill* 0x0000000040146876 0x2 + 0x00000000401582ec ppRecycleRxPkt + *fill* 0x0000000040158342 0x2 .text.ppSetInterface - 0x0000000040146878 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) - 0x000000004014687c ppSetInterface + 0x0000000040158344 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158348 ppSetInterface .text.ppClearRxFragment - 0x000000004014688c 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158358 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x9e (size before relaxing) - 0x0000000040146894 ppClearRxFragment - *fill* 0x0000000040146902 0x2 + 0x0000000040158360 ppClearRxFragment + *fill* 0x00000000401583ce 0x2 .text.ppGetTxQFirstAvail_Locked - 0x0000000040146904 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401583d0 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x5a (size before relaxing) - 0x0000000040146904 ppGetTxQFirstAvail_Locked - *fill* 0x0000000040146952 0x2 + 0x00000000401583d0 ppGetTxQFirstAvail_Locked + *fill* 0x000000004015841e 0x2 .text.ppFetchTxQFirstAvail - 0x0000000040146954 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158420 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x74 (size before relaxing) - 0x0000000040146954 ppFetchTxQFirstAvail + 0x0000000040158420 ppFetchTxQFirstAvail .text.ppDequeueTxQ - 0x00000000401469bc 0x47 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158488 0x47 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x4f (size before relaxing) - 0x00000000401469bc ppDequeueTxQ - *fill* 0x0000000040146a03 0x1 + 0x0000000040158488 ppDequeueTxQ + *fill* 0x00000000401584cf 0x1 .text.ppRollBackTxQ - 0x0000000040146a04 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401584d0 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x4a (size before relaxing) - 0x0000000040146a04 ppRollBackTxQ - *fill* 0x0000000040146a46 0x2 + 0x00000000401584d0 ppRollBackTxQ + *fill* 0x0000000040158512 0x2 .text.ppFillAMPDUBar - 0x0000000040146a48 0x11c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158514 0x11c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x13c (size before relaxing) - 0x0000000040146a4c ppFillAMPDUBar + 0x0000000040158518 ppFillAMPDUBar .text.ppReSendBar - 0x0000000040146b64 0x136 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158630 0x136 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x15e (size before relaxing) - 0x0000000040146b68 ppReSendBar - *fill* 0x0000000040146c9a 0x2 + 0x0000000040158634 ppReSendBar + *fill* 0x0000000040158766 0x2 .text.ppRecordBarRRC - 0x0000000040146c9c 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158768 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x20 (size before relaxing) - 0x0000000040146c9c ppRecordBarRRC + 0x0000000040158768 ppRecordBarRRC .text.ppTxqUpdateBitmap - 0x0000000040146cb8 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158784 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x2c (size before relaxing) - 0x0000000040146cb8 ppTxqUpdateBitmap + 0x0000000040158784 ppTxqUpdateBitmap .text.ppGetTxqInfo - 0x0000000040146ce0 0x33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401587ac 0x33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x3b (size before relaxing) - 0x0000000040146ce0 ppGetTxqInfo - *fill* 0x0000000040146d13 0x1 + 0x00000000401587ac ppGetTxqInfo + *fill* 0x00000000401587df 0x1 .text.ppEnqueueTxDone - 0x0000000040146d14 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401587e0 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x92 (size before relaxing) - 0x0000000040146d18 ppEnqueueTxDone - *fill* 0x0000000040146d86 0x2 + 0x00000000401587e4 ppEnqueueTxDone + *fill* 0x0000000040158852 0x2 .text.ppDequeueTxDone_Locked - 0x0000000040146d88 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158854 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x64 (size before relaxing) - 0x0000000040146d88 ppDequeueTxDone_Locked + 0x0000000040158854 ppDequeueTxDone_Locked .text.ppProcTxDone - 0x0000000040146ddc 0x132 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401588a8 0x132 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x156 (size before relaxing) - 0x0000000040146de8 ppProcTxDone - *fill* 0x0000000040146f0e 0x2 + 0x00000000401588b4 ppProcTxDone + *fill* 0x00000000401589da 0x2 .text.pp_create_task - 0x0000000040146f10 0x1e5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401589dc 0x1e5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x21d (size before relaxing) - 0x0000000040146f40 pp_create_task - *fill* 0x00000000401470f5 0x3 + 0x0000000040158a0c pp_create_task + *fill* 0x0000000040158bc1 0x3 .text.pp_deattach - 0x00000000401470f8 0x33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158bc4 0x33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x43 (size before relaxing) - 0x00000000401470f8 pp_deattach - *fill* 0x000000004014712b 0x1 + 0x0000000040158bc4 pp_deattach + *fill* 0x0000000040158bf7 0x1 .text.ppGetTxframe - 0x000000004014712c 0x93 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158bf8 0x93 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x9b (size before relaxing) - 0x0000000040147134 ppGetTxframe - *fill* 0x00000000401471bf 0x1 + 0x0000000040158c00 ppGetTxframe + *fill* 0x0000000040158c8b 0x1 .text.ppTxqEmpty - 0x00000000401471c0 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158c8c 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x54 (size before relaxing) - 0x00000000401471c4 ppTxqEmpty + 0x0000000040158c90 ppTxqEmpty .text.pp_delete_task - 0x0000000040147210 0x6f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158cdc 0x6f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x8a (size before relaxing) - 0x0000000040147214 pp_delete_task - *fill* 0x000000004014727f 0x1 + 0x0000000040158ce0 pp_delete_task + *fill* 0x0000000040158d4b 0x1 .text.ppMapWaitTxq - 0x0000000040147280 0x186 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158d4c 0x186 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x1a2 (size before relaxing) - 0x0000000040147284 ppMapWaitTxq - *fill* 0x0000000040147406 0x2 + 0x0000000040158d50 ppMapWaitTxq + *fill* 0x0000000040158ed2 0x2 .text.ppProcessWaitingQueue - 0x0000000040147408 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158ed4 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x5e (size before relaxing) - 0x000000004014740c ppProcessWaitingQueue - *fill* 0x000000004014745a 0x2 + 0x0000000040158ed8 ppProcessWaitingQueue + *fill* 0x0000000040158f26 0x2 .text.ppCheckTxIdle - 0x000000004014745c 0xdc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040158f28 0xdc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0xf0 (size before relaxing) - 0x000000004014745c ppCheckTxIdle + 0x0000000040158f28 ppCheckTxIdle .text.ppSelectNextQueue - 0x0000000040147538 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040159004 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0xbe (size before relaxing) - 0x0000000040147538 ppSelectNextQueue - *fill* 0x00000000401475ea 0x2 + 0x0000000040159004 ppSelectNextQueue + *fill* 0x00000000401590b6 0x2 .text.ppCalTxop - 0x00000000401475ec 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401590b8 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x9a (size before relaxing) - 0x00000000401475ec ppCalTxop - *fill* 0x0000000040147676 0x2 + 0x00000000401590b8 ppCalTxop + *fill* 0x0000000040159142 0x2 .text.ppPrepareBarFrame - 0x0000000040147678 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040159144 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x120 (size before relaxing) - 0x0000000040147688 ppPrepareBarFrame + 0x0000000040159154 ppPrepareBarFrame .text.pp_attach - 0x0000000040147774 0x10f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040159240 0x10f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x133 (size before relaxing) - 0x000000004014777c pp_attach - *fill* 0x0000000040147883 0x1 + 0x0000000040159248 pp_attach + *fill* 0x000000004015934f 0x1 .text.ppDirectRecycleAmpdu - 0x0000000040147884 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040159350 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x64 (size before relaxing) - 0x0000000040147884 ppDirectRecycleAmpdu + 0x0000000040159350 ppDirectRecycleAmpdu .text.ppClearTxq - 0x00000000401478dc 0x73 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401593a8 0x73 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x83 (size before relaxing) - 0x00000000401478dc ppClearTxq - *fill* 0x000000004014794f 0x1 + 0x00000000401593a8 ppClearTxq + *fill* 0x000000004015941b 0x1 .text.pp_stop_sw_txq - 0x0000000040147950 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004015941c 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x9e (size before relaxing) - 0x0000000040147954 pp_stop_sw_txq - *fill* 0x00000000401479ce 0x2 + 0x0000000040159420 pp_stop_sw_txq + *fill* 0x000000004015949a 0x2 .text.ppRecycleAmpdu - 0x00000000401479d0 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004015949c 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0xbe (size before relaxing) - 0x00000000401479d0 ppRecycleAmpdu - *fill* 0x0000000040147a76 0x2 + 0x000000004015949c ppRecycleAmpdu + *fill* 0x0000000040159542 0x2 .text.ppRegressAmpdu - 0x0000000040147a78 0x173 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040159544 0x173 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0x193 (size before relaxing) - 0x0000000040147a7c ppRegressAmpdu - *fill* 0x0000000040147beb 0x1 + 0x0000000040159548 ppRegressAmpdu + *fill* 0x00000000401596b7 0x1 .text.ppGetTaskHdl - 0x0000000040147bec 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x00000000401596b8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) 0xe (size before relaxing) - 0x0000000040147bec ppGetTaskHdl - *fill* 0x0000000040147bf6 0x2 + 0x00000000401596b8 ppGetTaskHdl + *fill* 0x00000000401596c2 0x2 .text.dbg_cnt_eb_alloc - 0x0000000040147bf8 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x00000000401596c4 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) 0x28 (size before relaxing) - 0x0000000040147bf8 dbg_cnt_eb_alloc + 0x00000000401596c4 dbg_cnt_eb_alloc .text.dbg_cnt_eb_free - 0x0000000040147c1c 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x00000000401596e8 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) 0x28 (size before relaxing) - 0x0000000040147c1c dbg_cnt_eb_free + 0x00000000401596e8 dbg_cnt_eb_free .text.dbg_cnt_lmac_ps_reset - 0x0000000040147c40 0x59 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x000000004015970c 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) 0x61 (size before relaxing) - 0x0000000040147c44 dbg_cnt_lmac_ps_reset - *fill* 0x0000000040147c99 0x3 + 0x000000004015970c dbg_cnt_lmac_ps_reset + *fill* 0x0000000040159761 0x3 .text.dbg_lmac_init - 0x0000000040147c9c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x0000000040159764 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) 0x1a (size before relaxing) - 0x0000000040147ca0 dbg_lmac_init - *fill* 0x0000000040147cb2 0x2 + 0x0000000040159768 dbg_lmac_init + *fill* 0x000000004015977a 0x2 .text.pp_timer_sleep_delay - 0x0000000040147cb4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x000000004015977c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) 0x13 (size before relaxing) - *fill* 0x0000000040147cc3 0x1 + *fill* 0x000000004015978b 0x1 .text.pp_timer_coex_slice - 0x0000000040147cc4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x000000004015978c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) 0x13 (size before relaxing) - *fill* 0x0000000040147cd3 0x1 + *fill* 0x000000004015979b 0x1 .text.pp_timer_coex_schm - 0x0000000040147cd4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x000000004015979c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) 0x13 (size before relaxing) - *fill* 0x0000000040147ce3 0x1 + *fill* 0x00000000401597ab 0x1 .text.pp_timer_active - 0x0000000040147ce4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x00000000401597ac 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) 0x13 (size before relaxing) - *fill* 0x0000000040147cf3 0x1 + *fill* 0x00000000401597bb 0x1 .text.pp_timer_tbtt - 0x0000000040147cf4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x00000000401597bc 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) 0x13 (size before relaxing) - *fill* 0x0000000040147d03 0x1 + *fill* 0x00000000401597cb 0x1 .text.pp_timer_noise_check - 0x0000000040147d04 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x00000000401597cc 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) 0x13 (size before relaxing) - *fill* 0x0000000040147d13 0x1 + *fill* 0x00000000401597db 0x1 .text.pp_timer_do_process - 0x0000000040147d14 0x8d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x00000000401597dc 0x89 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) 0x99 (size before relaxing) - 0x0000000040147d24 pp_timer_do_process - *fill* 0x0000000040147da1 0x3 + 0x00000000401597e8 pp_timer_do_process + *fill* 0x0000000040159865 0x3 .text.pp_timer_register_post_cb - 0x0000000040147da4 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) - 0x0000000040147da8 pp_timer_register_post_cb + 0x0000000040159868 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x000000004015986c pp_timer_register_post_cb .text.pp_timer_process - 0x0000000040147db4 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x0000000040159878 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) 0x20 (size before relaxing) - 0x0000000040147db4 pp_timer_process + 0x0000000040159878 pp_timer_process .text.RC_GetAckTime - 0x0000000040147dd0 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) - 0x0000000040147dd4 RC_GetAckTime - *fill* 0x0000000040147deb 0x1 + 0x0000000040159894 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x0000000040159898 RC_GetAckTime + *fill* 0x00000000401598af 0x1 .text.RC_GetCtsTime - 0x0000000040147dec 0x9a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x00000000401598b0 0x9a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) 0x9e (size before relaxing) - 0x0000000040147df4 RC_GetCtsTime - *fill* 0x0000000040147e86 0x2 + 0x00000000401598b8 RC_GetCtsTime + *fill* 0x000000004015994a 0x2 .text.RC_GetBlockAckTime - 0x0000000040147e88 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x000000004015994c 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) 0x70 (size before relaxing) - 0x0000000040147e88 RC_GetBlockAckTime + 0x000000004015994c RC_GetBlockAckTime .text.rc11NRate2SchedIdx - 0x0000000040147ef0 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x00000000401599b4 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .text.rc11GRate2SchedIdx - 0x0000000040147f2c 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x00000000401599f0 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .text.rc11BRate2SchedIdx - 0x0000000040147f48 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040159a0c 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .text.rssi_margin - 0x0000000040147f64 0x19e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - *fill* 0x0000000040148102 0x2 + 0x0000000040159a28 0x19e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x0000000040159bc6 0x2 .text.rc_set_per_conn_fix_rate$part$4 - 0x0000000040148104 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040159bc8 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) .text.rcTxUpdatePer - 0x0000000040148174 0xf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040159c38 0xf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0xfb (size before relaxing) - *fill* 0x0000000040148267 0x1 + *fill* 0x0000000040159d2b 0x1 .text.rcUpdateAMPDUParam - 0x0000000040148268 0x117 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040159d2c 0x117 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x11b (size before relaxing) - 0x0000000040148278 rcUpdateAMPDUParam - *fill* 0x000000004014837f 0x1 + 0x0000000040159d3c rcUpdateAMPDUParam + *fill* 0x0000000040159e43 0x1 .text.rcGet11NHighestRateIdx - 0x0000000040148380 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040159e44 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x80 (size before relaxing) - 0x0000000040148384 rcGet11NHighestRateIdx + 0x0000000040159e48 rcGet11NHighestRateIdx .text.rcGet11GHighestRateIdx - 0x00000000401483fc 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040159ec0 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x6c (size before relaxing) - 0x0000000040148400 rcGet11GHighestRateIdx + 0x0000000040159ec4 rcGet11GHighestRateIdx .text.rcGet11BHighestRateIdx - 0x0000000040148464 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040159f28 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x46 (size before relaxing) - 0x0000000040148468 rcGet11BHighestRateIdx - *fill* 0x00000000401484a6 0x2 + 0x0000000040159f2c rcGet11BHighestRateIdx + *fill* 0x0000000040159f6a 0x2 .text.rcGetHighestRateIdx$part$8 - 0x00000000401484a8 0x49 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040159f6c 0x49 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x55 (size before relaxing) - *fill* 0x00000000401484f1 0x3 + *fill* 0x0000000040159fb5 0x3 .text.rcUpdatePhyMode - 0x00000000401484f4 0x4fd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040159fb8 0x4fd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x519 (size before relaxing) - 0x0000000040148544 rcUpdatePhyMode - *fill* 0x00000000401489f1 0x3 + 0x000000004015a008 rcUpdatePhyMode + *fill* 0x000000004015a4b5 0x3 .text.trc_onAmpduOp - 0x00000000401489f4 0x15e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015a4b8 0x15e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x166 (size before relaxing) - 0x00000000401489f4 trc_onAmpduOp - *fill* 0x0000000040148b52 0x2 + 0x000000004015a4b8 trc_onAmpduOp + *fill* 0x000000004015a616 0x2 .text.rcGetAmpduSched - 0x0000000040148b54 0x91 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015a618 0x91 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x99 (size before relaxing) - 0x0000000040148b60 rcGetAmpduSched - *fill* 0x0000000040148be5 0x3 + 0x000000004015a624 rcGetAmpduSched + *fill* 0x000000004015a6a9 0x3 .text.rcGetRate - 0x0000000040148be8 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015a6ac 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0xbc (size before relaxing) - 0x0000000040148bec rcGetRate + 0x000000004015a6b0 rcGetRate .text.rcReachRetryLimit - 0x0000000040148c90 0xb5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015a754 0xb5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0xdd (size before relaxing) - 0x0000000040148c9c rcReachRetryLimit - *fill* 0x0000000040148d45 0x3 + 0x000000004015a760 rcReachRetryLimit + *fill* 0x000000004015a809 0x3 .text.rcAttach - 0x0000000040148d48 0xdb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015a80c 0xdb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0xf3 (size before relaxing) - 0x0000000040148d50 rcAttach - *fill* 0x0000000040148e23 0x1 + 0x000000004015a814 rcAttach + *fill* 0x000000004015a8e7 0x1 .text.trc_onPPTxDone - 0x0000000040148e24 0xdf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015a8e8 0xdf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0xef (size before relaxing) - 0x0000000040148e24 trc_onPPTxDone - *fill* 0x0000000040148f03 0x1 + 0x000000004015a8e8 trc_onPPTxDone + *fill* 0x000000004015a9c7 0x1 .text.rc_enable_trc - 0x0000000040148f04 0xe3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015a9c8 0xdf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x107 (size before relaxing) - 0x0000000040148f0c rc_enable_trc - *fill* 0x0000000040148fe7 0x1 + 0x000000004015a9cc rc_enable_trc + *fill* 0x000000004015aaa7 0x1 .text.rc_disable_trc - 0x0000000040148fe8 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015aaa8 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x76 (size before relaxing) - 0x0000000040148fec rc_disable_trc - *fill* 0x0000000040149046 0x2 + 0x000000004015aaac rc_disable_trc + *fill* 0x000000004015ab06 0x2 .text.rc_disable_trc_by_interface - 0x0000000040149048 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015ab08 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x26 (size before relaxing) - 0x0000000040149048 rc_disable_trc_by_interface - *fill* 0x0000000040149066 0x2 + 0x000000004015ab08 rc_disable_trc_by_interface + *fill* 0x000000004015ab26 0x2 .text.rc_get_trc_by_index - 0x0000000040149068 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015ab28 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x43 (size before relaxing) - 0x0000000040149070 rc_get_trc_by_index - *fill* 0x00000000401490a3 0x1 + 0x000000004015ab30 rc_get_trc_by_index + *fill* 0x000000004015ab63 0x1 .text.trc_init - 0x00000000401490a4 0x51 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015ab64 0x51 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x65 (size before relaxing) - 0x00000000401490a4 trc_init - *fill* 0x00000000401490f5 0x3 + 0x000000004015ab64 trc_init + *fill* 0x000000004015abb5 0x3 .text.trc_update_conn_phy_mode - 0x00000000401490f8 0x53 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015abb8 0x53 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x6f (size before relaxing) - 0x00000000401490fc trc_update_conn_phy_mode - *fill* 0x000000004014914b 0x1 + 0x000000004015abbc trc_update_conn_phy_mode + *fill* 0x000000004015ac0b 0x1 .text.trc_deinit - 0x000000004014914c 0xb3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015ac0c 0xb3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0xb7 (size before relaxing) - 0x0000000040149154 trc_deinit - *fill* 0x00000000401491ff 0x1 + 0x000000004015ac14 trc_deinit + *fill* 0x000000004015acbf 0x1 .text.rc_set_fix_rate - 0x0000000040149200 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004015acc0 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) 0x84 (size before relaxing) - 0x0000000040149200 rc_set_fix_rate + 0x000000004015acc0 rc_set_fix_rate .text.wdev_csi_hw_bug_check - 0x0000000040149260 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015ad20 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x80 (size before relaxing) .text.unlikely.wDev_SnifferRxData - 0x00000000401492dc 0x37e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015ad9c 0x37e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x3d2 (size before relaxing) - *fill* 0x000000004014965a 0x2 + *fill* 0x000000004015b11a 0x2 .text.wDev_SetCurChannel - 0x000000004014965c 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b11c 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x26 (size before relaxing) - 0x000000004014965c wDev_SetCurChannel - *fill* 0x000000004014967e 0x2 + 0x000000004015b11c wDev_SetCurChannel + *fill* 0x000000004015b13e 0x2 .text.wDev_SetOpMode - 0x0000000040149680 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x0000000040149684 wDev_SetOpMode - *fill* 0x0000000040149692 0x2 + 0x000000004015b140 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b144 wDev_SetOpMode + *fill* 0x000000004015b152 0x2 .text.wDev_Set_Beacon_Int - 0x0000000040149694 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x0000000040149698 wDev_Set_Beacon_Int - *fill* 0x00000000401496a2 0x2 + 0x000000004015b154 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b158 wDev_Set_Beacon_Int + *fill* 0x000000004015b162 0x2 .text.wDev_Reset_TBTT - 0x00000000401496a4 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b164 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x94 (size before relaxing) - 0x00000000401496bc wDev_Reset_TBTT + 0x000000004015b17c wDev_Reset_TBTT .text.wDev_Mesh_Enable_Tsf - 0x0000000040149734 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b1f4 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x20 (size before relaxing) - 0x0000000040149738 wDev_Mesh_Enable_Tsf + 0x000000004015b1f8 wDev_Mesh_Enable_Tsf .text.wDev_Mesh_Set_TBTT - 0x0000000040149750 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b210 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x80 (size before relaxing) - 0x0000000040149758 wDev_Mesh_Set_TBTT + 0x000000004015b218 wDev_Mesh_Set_TBTT .text.wDev_Get_Next_TBTT - 0x00000000401497c4 0x71 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b284 0x71 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x7d (size before relaxing) - 0x00000000401497cc wDev_Get_Next_TBTT - *fill* 0x0000000040149835 0x3 + 0x000000004015b28c wDev_Get_Next_TBTT + *fill* 0x000000004015b2f5 0x3 .text.wdev_pop_promis_misc_buf - 0x0000000040149838 0x75 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b2f8 0x75 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x79 (size before relaxing) - 0x000000004014983c wdev_pop_promis_misc_buf - *fill* 0x00000000401498ad 0x3 + 0x000000004015b2fc wdev_pop_promis_misc_buf + *fill* 0x000000004015b36d 0x3 .text.wdev_process_misc_pkt - 0x00000000401498b0 0xd0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b370 0xd0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0xe8 (size before relaxing) - 0x00000000401498b0 wdev_process_misc_pkt + 0x000000004015b370 wdev_process_misc_pkt .text.wdev_set_promis_misc_buf - 0x0000000040149980 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b440 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x82 (size before relaxing) - 0x0000000040149984 wdev_set_promis_misc_buf - *fill* 0x00000000401499ee 0x2 + 0x000000004015b444 wdev_set_promis_misc_buf + *fill* 0x000000004015b4ae 0x2 .text.wdev_set_promis_ctrl_pkt - 0x00000000401499f0 0x65 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b4b0 0x65 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x69 (size before relaxing) - 0x00000000401499fc wdev_set_promis_ctrl_pkt - *fill* 0x0000000040149a55 0x3 + 0x000000004015b4bc wdev_set_promis_ctrl_pkt + *fill* 0x000000004015b515 0x3 .text.wdev_set_promis - 0x0000000040149a58 0x20e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b518 0x20a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x23e (size before relaxing) - 0x0000000040149a70 wdev_set_promis - *fill* 0x0000000040149c66 0x2 + 0x000000004015b52c wdev_set_promis + *fill* 0x000000004015b722 0x2 .text.wdev_set_promis_filter - 0x0000000040149c68 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b724 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x82 (size before relaxing) - 0x0000000040149c68 wdev_set_promis_filter - *fill* 0x0000000040149cde 0x2 + 0x000000004015b724 wdev_set_promis_filter + *fill* 0x000000004015b79a 0x2 .text.wdev_set_promis_ctrl_filter - 0x0000000040149ce0 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b79c 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x4e (size before relaxing) - 0x0000000040149ce0 wdev_set_promis_ctrl_filter - *fill* 0x0000000040149d26 0x2 + 0x000000004015b79c wdev_set_promis_ctrl_filter + *fill* 0x000000004015b7e2 0x2 .text.wDev_Ant_Init - 0x0000000040149d28 0x9e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b7e4 0x9e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0xa2 (size before relaxing) - 0x0000000040149d2c wDev_Ant_Init - *fill* 0x0000000040149dc6 0x2 + 0x000000004015b7e8 wDev_Ant_Init + *fill* 0x000000004015b882 0x2 .text.wDev_Rxbuf_Deinit - 0x0000000040149dc8 0x6b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b884 0x6b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x77 (size before relaxing) - 0x0000000040149dcc wDev_Rxbuf_Deinit - *fill* 0x0000000040149e33 0x1 + 0x000000004015b888 wDev_Rxbuf_Deinit + *fill* 0x000000004015b8ef 0x1 .text.wDev_disable_low_rate - 0x0000000040149e34 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x0000000040149e40 wDev_disable_low_rate + 0x000000004015b8f0 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b8fc wDev_disable_low_rate .text.wDev_enable_low_rate - 0x0000000040149e88 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b944 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x54 (size before relaxing) - 0x0000000040149e88 wDev_enable_low_rate + 0x000000004015b944 wDev_enable_low_rate .text.wDev_is_low_rate_enable - 0x0000000040149ed0 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b98c 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x2f (size before relaxing) - 0x0000000040149ed0 wDev_is_low_rate_enable - *fill* 0x0000000040149ef3 0x1 + 0x000000004015b98c wDev_is_low_rate_enable + *fill* 0x000000004015b9af 0x1 .text.wDev_Initialize - 0x0000000040149ef4 0x672 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015b9b0 0x672 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x6ba (size before relaxing) - 0x0000000040149fdc wDev_Initialize - *fill* 0x000000004014a566 0x2 + 0x000000004015ba98 wDev_Initialize + *fill* 0x000000004015c022 0x2 .text.wDev_DeInitialize - 0x000000004014a568 0x4d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c024 0x4d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x59 (size before relaxing) - 0x000000004014a56c wDev_DeInitialize - *fill* 0x000000004014a5b5 0x3 + 0x000000004015c028 wDev_DeInitialize + *fill* 0x000000004015c071 0x3 .text.wDev_EnableTransmit - 0x000000004014a5b8 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c074 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x98 (size before relaxing) - 0x000000004014a5bc wDev_EnableTransmit + 0x000000004015c078 wDev_EnableTransmit .text.wDev_SetMacAddress - 0x000000004014a63c 0x87 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000004014a648 wDev_SetMacAddress - *fill* 0x000000004014a6c3 0x1 + 0x000000004015c0f8 0x7f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x87 (size before relaxing) + 0x000000004015c0fc wDev_SetMacAddress + *fill* 0x000000004015c177 0x1 .text.Tx_Copy2Queue - 0x000000004014a6c4 0x7f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c178 0x7b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x9f (size before relaxing) - 0x000000004014a6c8 Tx_Copy2Queue - *fill* 0x000000004014a743 0x1 + 0x000000004015c178 Tx_Copy2Queue + *fill* 0x000000004015c1f3 0x1 .text.wDev_SetBssid - 0x000000004014a744 0xae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c1f4 0xae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0xbe (size before relaxing) - 0x000000004014a750 wDev_SetBssid - *fill* 0x000000004014a7f2 0x2 + 0x000000004015c200 wDev_SetBssid + *fill* 0x000000004015c2a2 0x2 .text.wDev_ProcessCollision - 0x000000004014a7f4 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c2a4 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x44 (size before relaxing) - 0x000000004014a7f4 wDev_ProcessCollision + 0x000000004015c2a4 wDev_ProcessCollision .text.wDev_SetFrameAckType - 0x000000004014a82c 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000004014a830 wDev_SetFrameAckType + 0x000000004015c2dc 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c2e0 wDev_SetFrameAckType .text.wDev_Get_KeyEntry - 0x000000004014a884 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c334 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x93 (size before relaxing) - 0x000000004014a890 wDev_Get_KeyEntry - *fill* 0x000000004014a913 0x1 + 0x000000004015c340 wDev_Get_KeyEntry + *fill* 0x000000004015c3c3 0x1 .text.wDev_remove_KeyEntry - 0x000000004014a914 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c3c4 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x112 (size before relaxing) - 0x000000004014a934 wDev_remove_KeyEntry - *fill* 0x000000004014aa16 0x2 + 0x000000004015c3e4 wDev_remove_KeyEntry + *fill* 0x000000004015c4c6 0x2 .text.wDev_remove_KeyEntry_all_cnx - 0x000000004014aa18 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c4c8 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x37 (size before relaxing) - 0x000000004014aa18 wDev_remove_KeyEntry_all_cnx - *fill* 0x000000004014aa44 0x0 + 0x000000004015c4c8 wDev_remove_KeyEntry_all_cnx + *fill* 0x000000004015c4f4 0x0 .text.wDev_Insert_KeyEntry - 0x000000004014aa44 0x12a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c4f4 0x126 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x152 (size before relaxing) - 0x000000004014aa54 wDev_Insert_KeyEntry - *fill* 0x000000004014ab6e 0x2 + 0x000000004015c500 wDev_Insert_KeyEntry + *fill* 0x000000004015c61a 0x2 .text.wDev_Crypto_Conf - 0x000000004014ab70 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c61c 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x5c (size before relaxing) - 0x000000004014ab7c wDev_Crypto_Conf + 0x000000004015c628 wDev_Crypto_Conf .text.wDev_Crypto_Disable - 0x000000004014abc4 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c670 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x64 (size before relaxing) - 0x000000004014abc4 wDev_Crypto_Disable + 0x000000004015c670 wDev_Crypto_Disable .text.wDev_AddRXBA - 0x000000004014ac14 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000004014ac28 wDev_AddRXBA + 0x000000004015c6c0 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c6d4 wDev_AddRXBA .text.wDev_ResetRXBA - 0x000000004014acb4 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c760 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x50 (size before relaxing) - 0x000000004014acb4 wDev_ResetRXBA + 0x000000004015c760 wDev_ResetRXBA .text.wDev_RemoveRXBA - 0x000000004014acf8 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c7a4 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x1c (size before relaxing) - 0x000000004014acf8 wDev_RemoveRXBA + 0x000000004015c7a4 wDev_RemoveRXBA .text.wDev_GetBAInfo - 0x000000004014ad10 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000004014ad1c wDev_GetBAInfo - *fill* 0x000000004014ad73 0x1 + 0x000000004015c7bc 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c7c8 wDev_GetBAInfo + *fill* 0x000000004015c81f 0x1 .text.wdev_set_csi - 0x000000004014ad74 0x45 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c820 0x49 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x51 (size before relaxing) - 0x000000004014ad78 wdev_set_csi - *fill* 0x000000004014adb9 0x3 + 0x000000004015c828 wdev_set_csi + *fill* 0x000000004015c869 0x3 .text.wdev_mac_init - 0x000000004014adbc 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c86c 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x22 (size before relaxing) - 0x000000004014adc0 wdev_mac_init - *fill* 0x000000004014adda 0x2 + 0x000000004015c870 wdev_mac_init + *fill* 0x000000004015c88a 0x2 .text.wdev_mac_deinit - 0x000000004014addc 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004015c88c 0x39 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) 0x41 (size before relaxing) - 0x000000004014ade8 wdev_mac_deinit - *fill* 0x000000004014ae19 0x3 + 0x000000004015c894 wdev_mac_deinit + *fill* 0x000000004015c8c5 0x3 .text.phy_change_channel_nomac - 0x000000004014ae1c 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + 0x000000004015c8c8 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) 0x17 (size before relaxing) - 0x000000004014ae1c phy_change_channel_nomac - *fill* 0x000000004014ae2c 0x0 + 0x000000004015c8c8 phy_change_channel_nomac + *fill* 0x000000004015c8d8 0x0 .text.ram_pbus_force_mode - 0x000000004014ae2c 0xf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015c8d8 0xf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x10b (size before relaxing) - 0x000000004014ae4c ram_pbus_force_mode - *fill* 0x000000004014af1f 0x1 + 0x000000004015c8f8 ram_pbus_force_mode + *fill* 0x000000004015c9cb 0x1 .text.rfpll_init - 0x000000004014af20 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000004014af24 rfpll_init + 0x000000004015c9cc 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015c9d0 rfpll_init .text.ram_restart_cal - 0x000000004014afd4 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015ca80 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x62 (size before relaxing) - 0x000000004014afd4 ram_restart_cal - *fill* 0x000000004014b032 0x2 + 0x000000004015ca80 ram_restart_cal + *fill* 0x000000004015cade 0x2 .text.ram_wait_rfpll_cal_end - 0x000000004014b034 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015cae0 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x50 (size before relaxing) - 0x000000004014b038 ram_wait_rfpll_cal_end + 0x000000004015cae4 ram_wait_rfpll_cal_end .text.chip_v7_rxmax_ext_ana - 0x000000004014b078 0xfb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015cb24 0xfb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0xff (size before relaxing) - 0x000000004014b084 chip_v7_rxmax_ext_ana - *fill* 0x000000004014b173 0x1 + 0x000000004015cb30 chip_v7_rxmax_ext_ana + *fill* 0x000000004015cc1f 0x1 .text.bb_bss_cbw40_ana - 0x000000004014b174 0xcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015cc20 0xcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0xcf (size before relaxing) - 0x000000004014b178 bb_bss_cbw40_ana - *fill* 0x000000004014b23f 0x1 + 0x000000004015cc24 bb_bss_cbw40_ana + *fill* 0x000000004015cceb 0x1 .text.chip_v7_ana_rx_cfg - 0x000000004014b240 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015ccec 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x106 (size before relaxing) - 0x000000004014b244 chip_v7_ana_rx_cfg - *fill* 0x000000004014b342 0x2 + 0x000000004015ccf0 chip_v7_ana_rx_cfg + *fill* 0x000000004015cdee 0x2 .text.get_rf_freq_cap - 0x000000004014b344 0xa3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015cdf0 0xa3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0xaf (size before relaxing) - 0x000000004014b344 get_rf_freq_cap - *fill* 0x000000004014b3e7 0x1 + 0x000000004015cdf0 get_rf_freq_cap + *fill* 0x000000004015ce93 0x1 .text.correct_rfpll_offset - 0x000000004014b3e8 0x112 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015ce94 0x112 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x116 (size before relaxing) - 0x000000004014b400 correct_rfpll_offset - *fill* 0x000000004014b4fa 0x2 + 0x000000004015ceac correct_rfpll_offset + *fill* 0x000000004015cfa6 0x2 .text.wr_rf_freq_mem - 0x000000004014b4fc 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015cfa8 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x72 (size before relaxing) - 0x000000004014b4fc wr_rf_freq_mem - *fill* 0x000000004014b566 0x2 + 0x000000004015cfa8 wr_rf_freq_mem + *fill* 0x000000004015d012 0x2 .text.get_rf_freq_init$part$1 - 0x000000004014b568 0x10b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015d014 0x10b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x12b (size before relaxing) - *fill* 0x000000004014b673 0x1 + *fill* 0x000000004015d11f 0x1 .text.write_freq_mem_all - 0x000000004014b674 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015d120 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0xaa (size before relaxing) - 0x000000004014b674 write_freq_mem_all - *fill* 0x000000004014b70a 0x2 + 0x000000004015d120 write_freq_mem_all + *fill* 0x000000004015d1b6 0x2 .text.bt_i2c_write_set - 0x000000004014b70c 0x703 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015d1b8 0x703 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x70b (size before relaxing) - 0x000000004014b778 bt_i2c_write_set - *fill* 0x000000004014be0f 0x1 + 0x000000004015d224 bt_i2c_write_set + *fill* 0x000000004015d8bb 0x1 .text.bt_i2c_set_wifi_data - 0x000000004014be10 0x12e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x000000004014be24 bt_i2c_set_wifi_data - *fill* 0x000000004014bf3e 0x2 + 0x000000004015d8bc 0x12e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015d8d0 bt_i2c_set_wifi_data + *fill* 0x000000004015d9ea 0x2 .text.bt_get_i2c_data - 0x000000004014bf40 0x426 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015d9ec 0x426 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x42a (size before relaxing) - 0x000000004014bf44 bt_get_i2c_data - *fill* 0x000000004014c366 0x2 + 0x000000004015d9f0 bt_get_i2c_data + *fill* 0x000000004015de12 0x2 .text.write_wifi_chan_data - 0x000000004014c368 0xab /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015de14 0xab /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0xb7 (size before relaxing) - 0x000000004014c370 write_wifi_chan_data - *fill* 0x000000004014c413 0x1 + 0x000000004015de1c write_wifi_chan_data + *fill* 0x000000004015debf 0x1 .text.set_chan_freq_hw_init - 0x000000004014c414 0x138 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015dec0 0x134 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x178 (size before relaxing) - 0x000000004014c420 set_chan_freq_hw_init - .text.rf_init 0x000000004014c54c 0x184 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015dec8 set_chan_freq_hw_init + .text.rf_init 0x000000004015dff4 0x184 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x1ac (size before relaxing) - 0x000000004014c574 rf_init + 0x000000004015e01c rf_init .text.set_chan_freq_sw_start - 0x000000004014c6d0 0x216 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015e178 0x216 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x23e (size before relaxing) - 0x000000004014c6f0 set_chan_freq_sw_start - *fill* 0x000000004014c8e6 0x2 + 0x000000004015e198 set_chan_freq_sw_start + *fill* 0x000000004015e38e 0x2 .text.set_channel_rfpll_freq - 0x000000004014c8e8 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015e390 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x92 (size before relaxing) - 0x000000004014c8ec set_channel_rfpll_freq - *fill* 0x000000004014c962 0x2 + 0x000000004015e394 set_channel_rfpll_freq + *fill* 0x000000004015e40a 0x2 .text.chip_v7_set_chan_nomac - 0x000000004014c964 0xaf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015e40c 0xaf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0xe2 (size before relaxing) - 0x000000004014c978 chip_v7_set_chan_nomac - *fill* 0x000000004014ca13 0x1 + 0x000000004015e420 chip_v7_set_chan_nomac + *fill* 0x000000004015e4bb 0x1 .text.chip_v7_set_chan_offset - 0x000000004014ca14 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015e4bc 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0xe0 (size before relaxing) - 0x000000004014ca28 chip_v7_set_chan_offset + 0x000000004015e4d0 chip_v7_set_chan_offset .text.chip_v7_set_chan_ana - 0x000000004014cad4 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015e57c 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x2f (size before relaxing) - 0x000000004014cad4 chip_v7_set_chan_ana - *fill* 0x000000004014caf3 0x1 + 0x000000004015e57c chip_v7_set_chan_ana + *fill* 0x000000004015e59b 0x1 .text.phy_set_wifi_mode_only - 0x000000004014caf4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004015e59c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) 0x12 (size before relaxing) - 0x000000004014caf4 phy_set_wifi_mode_only - *fill* 0x000000004014cb02 0x2 + 0x000000004015e59c phy_set_wifi_mode_only + *fill* 0x000000004015e5aa 0x2 .text.ram_set_pbus_mem - 0x000000004014cb04 0x291 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015e5ac 0x291 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x2a1 (size before relaxing) - 0x000000004014cb68 ram_set_pbus_mem - *fill* 0x000000004014cd95 0x3 + 0x000000004015e610 ram_set_pbus_mem + *fill* 0x000000004015e83d 0x3 .text.ram_start_tx_tone - 0x000000004014cd98 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015e840 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x84 (size before relaxing) - 0x000000004014cd9c ram_start_tx_tone + 0x000000004015e844 ram_start_tx_tone .text.ram_bb_tx_ht20_cen - 0x000000004014ce14 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015e8bc 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x29 (size before relaxing) - 0x000000004014ce14 ram_bb_tx_ht20_cen - *fill* 0x000000004014ce35 0x3 + 0x000000004015e8bc ram_bb_tx_ht20_cen + *fill* 0x000000004015e8dd 0x3 .text.ram_phy_get_noisefloor - 0x000000004014ce38 0x43 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000004014ce40 ram_phy_get_noisefloor - *fill* 0x000000004014ce7b 0x1 + 0x000000004015e8e0 0x43 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015e8e8 ram_phy_get_noisefloor + *fill* 0x000000004015e923 0x1 .text.ram_check_noise_floor - 0x000000004014ce7c 0x112 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015e924 0x112 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x12a (size before relaxing) - 0x000000004014ce84 ram_check_noise_floor - *fill* 0x000000004014cf8e 0x2 + 0x000000004015e92c ram_check_noise_floor + *fill* 0x000000004015ea36 0x2 .text.ram_set_noise_floor - 0x000000004014cf90 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015ea38 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x54 (size before relaxing) - 0x000000004014cf98 ram_set_noise_floor + 0x000000004015ea40 ram_set_noise_floor .text.ram_gen_rx_gain_table - 0x000000004014cfe0 0x142 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015ea88 0x142 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x14a (size before relaxing) - 0x000000004014cfec ram_gen_rx_gain_table - *fill* 0x000000004014d122 0x2 + 0x000000004015ea94 ram_gen_rx_gain_table + *fill* 0x000000004015ebca 0x2 .text.ram_bb_bss_cbw40_dig - 0x000000004014d124 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015ebcc 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x2b (size before relaxing) - 0x000000004014d124 ram_bb_bss_cbw40_dig - *fill* 0x000000004014d147 0x1 + 0x000000004015ebcc ram_bb_bss_cbw40_dig + *fill* 0x000000004015ebef 0x1 .text.ram_cbw2040_cfg - 0x000000004014d148 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015ebf0 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x70 (size before relaxing) - 0x000000004014d14c ram_cbw2040_cfg + 0x000000004015ebf4 ram_cbw2040_cfg .text.ram_bb_bss_bw_40_en - 0x000000004014d1ac 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015ec54 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x2a (size before relaxing) - 0x000000004014d1ac ram_bb_bss_bw_40_en - *fill* 0x000000004014d1ce 0x2 + 0x000000004015ec54 ram_bb_bss_bw_40_en + *fill* 0x000000004015ec76 0x2 .text.bt_txdc_cal$part$3 - 0x000000004014d1d0 0xbd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015ec78 0xb9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xc5 (size before relaxing) - *fill* 0x000000004014d28d 0x3 + *fill* 0x000000004015ed31 0x3 .text.bt_txiq_cal$part$4 - 0x000000004014d290 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015ed34 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xc6 (size before relaxing) - *fill* 0x000000004014d336 0x2 + *fill* 0x000000004015edda 0x2 .text.ram_spur_coef_cfg - 0x000000004014d338 0x21f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015eddc 0x21b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x243 (size before relaxing) - 0x000000004014d358 ram_spur_coef_cfg - *fill* 0x000000004014d557 0x1 + 0x000000004015edf8 ram_spur_coef_cfg + *fill* 0x000000004015eff7 0x1 .text.disable_wifi_agc - 0x000000004014d558 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015eff8 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x86 (size before relaxing) - 0x000000004014d570 disable_wifi_agc - *fill* 0x000000004014d5da 0x2 + 0x000000004015f010 disable_wifi_agc + *fill* 0x000000004015f07a 0x2 .text.enable_wifi_agc - 0x000000004014d5dc 0x75 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015f07c 0x75 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x8d (size before relaxing) - 0x000000004014d5e0 enable_wifi_agc - *fill* 0x000000004014d651 0x3 + 0x000000004015f080 enable_wifi_agc + *fill* 0x000000004015f0f1 0x3 .text.set_rx_gain_cal_iq - 0x000000004014d654 0x2ef /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015f0f4 0x2eb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x31b (size before relaxing) - 0x000000004014d680 set_rx_gain_cal_iq - *fill* 0x000000004014d943 0x1 + 0x000000004015f11c set_rx_gain_cal_iq + *fill* 0x000000004015f3df 0x1 .text.set_rx_gain_cal_dc - 0x000000004014d944 0x2f4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015f3e0 0x2f4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x314 (size before relaxing) - 0x000000004014d954 set_rx_gain_cal_dc + 0x000000004015f3f0 set_rx_gain_cal_dc .text.wr_rx_gain_mem - 0x000000004014dc38 0x165 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015f6d4 0x165 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x17d (size before relaxing) - 0x000000004014dc3c wr_rx_gain_mem - *fill* 0x000000004014dd9d 0x3 + 0x000000004015f6d8 wr_rx_gain_mem + *fill* 0x000000004015f839 0x3 .text.set_rx_gain_testchip_70 - 0x000000004014dda0 0x24a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015f83c 0x246 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x282 (size before relaxing) - 0x000000004014ddac set_rx_gain_testchip_70 - *fill* 0x000000004014dfea 0x2 + 0x000000004015f844 set_rx_gain_testchip_70 + *fill* 0x000000004015fa82 0x2 .text.bt_correct_bbgain - 0x000000004014dfec 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015fa84 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xb4 (size before relaxing) - 0x000000004014dfec bt_correct_bbgain + 0x000000004015fa84 bt_correct_bbgain .text.bt_tx_gain_cal$part$2 - 0x000000004014e09c 0x21c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015fb34 0x21c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x230 (size before relaxing) .text.bt_index_to_bb - 0x000000004014e2b8 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015fd50 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x1a (size before relaxing) - 0x000000004014e2b8 bt_index_to_bb - *fill* 0x000000004014e2ce 0x2 + 0x000000004015fd50 bt_index_to_bb + *fill* 0x000000004015fd66 0x2 .text.wr_bt_tx_gain_mem - 0x000000004014e2d0 0xbd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015fd68 0xbd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xc5 (size before relaxing) - 0x000000004014e2d8 wr_bt_tx_gain_mem - *fill* 0x000000004014e38d 0x3 + 0x000000004015fd70 wr_bt_tx_gain_mem + *fill* 0x000000004015fe25 0x3 .text.set_tx_gain_table_bt - 0x000000004014e390 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015fe28 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x56 (size before relaxing) - 0x000000004014e394 set_tx_gain_table_bt - *fill* 0x000000004014e3c2 0x2 + 0x000000004015fe2c set_tx_gain_table_bt + *fill* 0x000000004015fe5a 0x2 .text.set_chanfreq_nomac - 0x000000004014e3c4 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015fe5c 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x2f (size before relaxing) - 0x000000004014e3c4 set_chanfreq_nomac - *fill* 0x000000004014e3eb 0x1 + 0x000000004015fe5c set_chanfreq_nomac + *fill* 0x000000004015fe83 0x1 .text.bb_bss_cbw40 - 0x000000004014e3ec 0xe3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015fe84 0xe3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xfb (size before relaxing) - 0x000000004014e3fc bb_bss_cbw40 - *fill* 0x000000004014e4cf 0x1 + 0x000000004015fe94 bb_bss_cbw40 + *fill* 0x000000004015ff67 0x1 .text.read_hw_noisefloor - 0x000000004014e4d0 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015ff68 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x17 (size before relaxing) - 0x000000004014e4d0 read_hw_noisefloor - *fill* 0x000000004014e4e3 0x1 + 0x000000004015ff68 read_hw_noisefloor + *fill* 0x000000004015ff7b 0x1 .text.noise_check_loop - 0x000000004014e4e4 0x173 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004015ff7c 0x173 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x18f (size before relaxing) - 0x000000004014e4f0 noise_check_loop - *fill* 0x000000004014e657 0x1 + 0x000000004015ff88 noise_check_loop + *fill* 0x00000000401600ef 0x1 .text.noise_init - 0x000000004014e658 0x116 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x00000000401600f0 0x116 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x12e (size before relaxing) - 0x000000004014e660 noise_init - *fill* 0x000000004014e76e 0x2 + 0x00000000401600f8 noise_init + *fill* 0x0000000040160206 0x2 .text.chip_v7_set_chan_misc - 0x000000004014e770 0x110 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160208 0x110 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x130 (size before relaxing) - 0x000000004014e790 chip_v7_set_chan_misc + 0x0000000040160228 chip_v7_set_chan_misc .text.set_rx_gain_table - 0x000000004014e880 0x1e3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160318 0x1e3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x22f (size before relaxing) - 0x000000004014e8a0 set_rx_gain_table - *fill* 0x000000004014ea63 0x1 + 0x0000000040160338 set_rx_gain_table + *fill* 0x00000000401604fb 0x1 .text.txiq_cal_init - 0x000000004014ea64 0xdc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x00000000401604fc 0xdc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xf4 (size before relaxing) - 0x000000004014ea68 txiq_cal_init + 0x0000000040160500 txiq_cal_init .text.opt_11b_resart - 0x000000004014eb40 0xab /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x00000000401605d8 0xab /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xc3 (size before relaxing) - 0x000000004014eb54 opt_11b_resart - *fill* 0x000000004014ebeb 0x1 + 0x00000000401605ec opt_11b_resart + *fill* 0x0000000040160683 0x1 .text.phy_chan_filt_set - 0x000000004014ebec 0xde /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160684 0xde /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xf2 (size before relaxing) - 0x000000004014ec00 phy_chan_filt_set - *fill* 0x000000004014ecca 0x2 + 0x0000000040160698 phy_chan_filt_set + *fill* 0x0000000040160762 0x2 .text.register_chipv7_phy_init_param - 0x000000004014eccc 0x29e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160764 0x29e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x2ae (size before relaxing) - 0x000000004014ecd4 register_chipv7_phy_init_param - *fill* 0x000000004014ef6a 0x2 + 0x000000004016076c register_chipv7_phy_init_param + *fill* 0x0000000040160a02 0x2 .text.phy_get_romfunc_addr - 0x000000004014ef6c 0x29f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160a04 0x29f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x2a3 (size before relaxing) - 0x000000004014f008 phy_get_romfunc_addr - *fill* 0x000000004014f20b 0x1 + 0x0000000040160aa0 phy_get_romfunc_addr + *fill* 0x0000000040160ca3 0x1 .text.rf_cal_data_recovery - 0x000000004014f20c 0xd7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160ca4 0xd7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xe7 (size before relaxing) - 0x000000004014f20c rf_cal_data_recovery - *fill* 0x000000004014f2e3 0x1 + 0x0000000040160ca4 rf_cal_data_recovery + *fill* 0x0000000040160d7b 0x1 .text.rf_cal_data_backup - 0x000000004014f2e4 0x1a7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160d7c 0x1a7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x1cb (size before relaxing) - 0x000000004014f2ec rf_cal_data_backup - *fill* 0x000000004014f48b 0x1 + 0x0000000040160d84 rf_cal_data_backup + *fill* 0x0000000040160f23 0x1 .text.phy_get_rf_cal_version - 0x000000004014f48c 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x000000004014f490 phy_get_rf_cal_version + 0x0000000040160f24 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160f28 phy_get_rf_cal_version .text.set_xpd_sar - 0x000000004014f498 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160f30 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x32 (size before relaxing) - 0x000000004014f4a0 set_xpd_sar - *fill* 0x000000004014f4c6 0x2 + 0x0000000040160f38 set_xpd_sar + *fill* 0x0000000040160f5e 0x2 .text.phy_close_rf - 0x000000004014f4c8 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160f60 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x9e (size before relaxing) - 0x000000004014f4cc phy_close_rf - *fill* 0x000000004014f53e 0x2 + 0x0000000040160f64 phy_close_rf + *fill* 0x0000000040160fd6 0x2 .text.phy_set_most_tpw - 0x000000004014f540 0x4d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040160fd8 0x4d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x55 (size before relaxing) - 0x000000004014f550 phy_set_most_tpw - *fill* 0x000000004014f58d 0x3 + 0x0000000040160fe8 phy_set_most_tpw + *fill* 0x0000000040161025 0x3 .text.phy_get_most_tpw - 0x000000004014f590 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040161028 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x2c (size before relaxing) - 0x000000004014f590 phy_get_most_tpw + 0x0000000040161028 phy_get_most_tpw .text.phy_ant_init - 0x000000004014f5b0 0xbb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040161048 0xbb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xcb (size before relaxing) - 0x000000004014f5c8 phy_ant_init - *fill* 0x000000004014f66b 0x1 - .text.bb_init 0x000000004014f66c 0x5b6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040161060 phy_ant_init + *fill* 0x0000000040161103 0x1 + .text.bb_init 0x0000000040161104 0x5b6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x6e2 (size before relaxing) - 0x000000004014f6e8 bb_init - *fill* 0x000000004014fc22 0x2 + 0x0000000040161180 bb_init + *fill* 0x00000000401616ba 0x2 .text.register_chipv7_phy - 0x000000004014fc24 0x30a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x00000000401616bc 0x30a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x396 (size before relaxing) - 0x000000004014fc44 register_chipv7_phy - *fill* 0x000000004014ff2e 0x2 + 0x00000000401616dc register_chipv7_phy + *fill* 0x00000000401619c6 0x2 .text.ant_dft_cfg - 0x000000004014ff30 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x00000000401619c8 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x29 (size before relaxing) - 0x000000004014ff30 ant_dft_cfg - *fill* 0x000000004014ff51 0x3 + 0x00000000401619c8 ant_dft_cfg + *fill* 0x00000000401619e9 0x3 .text.ant_wifitx_cfg - 0x000000004014ff54 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x00000000401619ec 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x4e (size before relaxing) - 0x000000004014ff58 ant_wifitx_cfg - *fill* 0x000000004014ff9a 0x2 + 0x00000000401619f0 ant_wifitx_cfg + *fill* 0x0000000040161a32 0x2 .text.ant_wifirx_cfg - 0x000000004014ff9c 0xa4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040161a34 0xa4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0xb8 (size before relaxing) - 0x000000004014ffa0 ant_wifirx_cfg + 0x0000000040161a38 ant_wifirx_cfg .text.phy_chan_dump_cfg - 0x0000000040150040 0x99 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x0000000040150044 phy_chan_dump_cfg - *fill* 0x00000000401500d9 0x3 + 0x0000000040161ad8 0x99 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040161adc phy_chan_dump_cfg + *fill* 0x0000000040161b71 0x3 .text.chan14_mic_cfg - 0x00000000401500dc 0xea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040161b74 0xea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) 0x10e (size before relaxing) - 0x00000000401500e8 chan14_mic_cfg - *fill* 0x00000000401501c6 0x2 + 0x0000000040161b80 chan14_mic_cfg + *fill* 0x0000000040161c5e 0x2 .text.ram_index_to_txbbgain - 0x00000000401501c8 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - 0x00000000401501cc ram_index_to_txbbgain - *fill* 0x00000000401501e6 0x2 + 0x0000000040161c60 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040161c64 ram_index_to_txbbgain + *fill* 0x0000000040161c7e 0x2 .text.ram_txdc_cal_v70 - 0x00000000401501e8 0x1b8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040161c80 0x1b8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x1cc (size before relaxing) - 0x00000000401501f8 ram_txdc_cal_v70 + 0x0000000040161c90 ram_txdc_cal_v70 .text.pwdet_sar2_init - 0x00000000401503a0 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040161e38 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x114 (size before relaxing) - 0x00000000401503b8 pwdet_sar2_init + 0x0000000040161e50 pwdet_sar2_init .text.ram_en_pwdet - 0x000000004015049c 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040161f34 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x96 (size before relaxing) - 0x00000000401504a8 ram_en_pwdet - *fill* 0x0000000040150522 0x2 + 0x0000000040161f40 ram_en_pwdet + *fill* 0x0000000040161fba 0x2 .text.txcal_debuge_mode - 0x0000000040150524 0x53 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040161fbc 0x53 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x5f (size before relaxing) - 0x0000000040150524 txcal_debuge_mode - *fill* 0x0000000040150577 0x1 + 0x0000000040161fbc txcal_debuge_mode + *fill* 0x000000004016200f 0x1 .text.ram_txcal_work_mode - 0x0000000040150578 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040162010 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x32 (size before relaxing) - 0x0000000040150578 ram_txcal_work_mode - *fill* 0x00000000401505a6 0x2 + 0x0000000040162010 ram_txcal_work_mode + *fill* 0x000000004016203e 0x2 .text.ram_get_fm_sar_dout - 0x00000000401505a8 0x9d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040162040 0x9d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0xa9 (size before relaxing) - 0x00000000401505a8 ram_get_fm_sar_dout - *fill* 0x0000000040150645 0x3 + 0x0000000040162040 ram_get_fm_sar_dout + *fill* 0x00000000401620dd 0x3 .text.ram_txiq_get_mis_pwr - 0x0000000040150648 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x00000000401620e0 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0xe8 (size before relaxing) - 0x0000000040150658 ram_txiq_get_mis_pwr + 0x00000000401620f0 ram_txiq_get_mis_pwr .text.ram_txiq_cover - 0x000000004015071c 0x197 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x00000000401621b4 0x197 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x19b (size before relaxing) - 0x000000004015071c ram_txiq_cover - *fill* 0x00000000401508b3 0x1 + 0x00000000401621b4 ram_txiq_cover + *fill* 0x000000004016234b 0x1 .text.rfcal_txiq - 0x00000000401508b4 0x1df /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000004016234c 0x1df /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x207 (size before relaxing) - 0x00000000401508b4 rfcal_txiq - *fill* 0x0000000040150a93 0x1 + 0x000000004016234c rfcal_txiq + *fill* 0x000000004016252b 0x1 .text.ram_iq_est_enable - 0x0000000040150a94 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000004016252c 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0xbe (size before relaxing) - 0x0000000040150aa8 ram_iq_est_enable - *fill* 0x0000000040150b46 0x2 + 0x0000000040162540 ram_iq_est_enable + *fill* 0x00000000401625de 0x2 .text.ram_iq_est_disable - 0x0000000040150b48 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x00000000401625e0 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x36 (size before relaxing) - 0x0000000040150b48 ram_iq_est_disable - *fill* 0x0000000040150b76 0x2 + 0x00000000401625e0 ram_iq_est_disable + *fill* 0x000000004016260e 0x2 .text.ram_dc_iq_est - 0x0000000040150b78 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040162610 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x7e (size before relaxing) - 0x0000000040150b78 ram_dc_iq_est - *fill* 0x0000000040150be6 0x2 + 0x0000000040162610 ram_dc_iq_est + *fill* 0x000000004016267e 0x2 .text.ram_pbus_rx_dco_cal - 0x0000000040150be8 0x2ff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040162680 0x2ff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x323 (size before relaxing) - 0x0000000040150bfc ram_pbus_rx_dco_cal - *fill* 0x0000000040150ee7 0x1 + 0x0000000040162694 ram_pbus_rx_dco_cal + *fill* 0x000000004016297f 0x1 .text.pbus_rx_dco_cal_1step - 0x0000000040150ee8 0x4a0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040162980 0x4a0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x4a8 (size before relaxing) - 0x0000000040150eec pbus_rx_dco_cal_1step - .text.rc_cal 0x0000000040151388 0x2cd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040162984 pbus_rx_dco_cal_1step + .text.rc_cal 0x0000000040162e20 0x2cd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x2e5 (size before relaxing) - 0x0000000040151390 rc_cal - *fill* 0x0000000040151655 0x3 + 0x0000000040162e28 rc_cal + *fill* 0x00000000401630ed 0x3 .text.tx_cap_init - 0x0000000040151658 0x154 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x00000000401630f0 0x154 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x17c (size before relaxing) - 0x0000000040151660 tx_cap_init + 0x00000000401630f8 tx_cap_init .text.ram_meas_tone_pwr_db - 0x00000000401517ac 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040163244 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x5d (size before relaxing) - 0x00000000401517ac ram_meas_tone_pwr_db - *fill* 0x0000000040151801 0x3 + 0x0000000040163244 ram_meas_tone_pwr_db + *fill* 0x0000000040163299 0x3 .text.ram_rfcal_pwrctrl - 0x0000000040151804 0x24e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000004016329c 0x24e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x25a (size before relaxing) - 0x0000000040151808 ram_rfcal_pwrctrl - *fill* 0x0000000040151a52 0x2 + 0x00000000401632a0 ram_rfcal_pwrctrl + *fill* 0x00000000401634ea 0x2 .text.ram_tx_pwr_backoff - 0x0000000040151a54 0x20c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x00000000401634ec 0x20c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x224 (size before relaxing) - 0x0000000040151a54 ram_tx_pwr_backoff + 0x00000000401634ec ram_tx_pwr_backoff .text.cal_rf_ana_gain - 0x0000000040151c60 0xd3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x00000000401636f8 0xd3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0xf3 (size before relaxing) - 0x0000000040151c68 cal_rf_ana_gain - *fill* 0x0000000040151d33 0x1 + 0x0000000040163700 cal_rf_ana_gain + *fill* 0x00000000401637cb 0x1 .text.tx_pwctrl_init_cal - 0x0000000040151d34 0x17a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x00000000401637cc 0x17a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x1b6 (size before relaxing) - 0x0000000040151d40 tx_pwctrl_init_cal - *fill* 0x0000000040151eae 0x2 + 0x00000000401637d8 tx_pwctrl_init_cal + *fill* 0x0000000040163946 0x2 .text.tx_pwctrl_init - 0x0000000040151eb0 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040163948 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0xc8 (size before relaxing) - 0x0000000040151eb4 tx_pwctrl_init + 0x000000004016394c tx_pwctrl_init .text.bt_tx_pwctrl_init - 0x0000000040151f4c 0x23b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x00000000401639e4 0x23b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x2ab (size before relaxing) - 0x0000000040151f54 bt_tx_pwctrl_init - *fill* 0x0000000040152187 0x1 + 0x00000000401639ec bt_tx_pwctrl_init + *fill* 0x0000000040163c1f 0x1 .text.ram_phy_get_vdd33 - 0x0000000040152188 0x176 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040163c20 0x176 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x1b2 (size before relaxing) - 0x0000000040152188 ram_phy_get_vdd33 - *fill* 0x00000000401522fe 0x2 + 0x0000000040163c20 ram_phy_get_vdd33 + *fill* 0x0000000040163d96 0x2 .text.txpwr_offset - 0x0000000040152300 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040163d98 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0xa4 (size before relaxing) - 0x000000004015230c txpwr_offset + 0x0000000040163da4 txpwr_offset .text.phy_set_bbfreq_init - 0x0000000040152390 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040163e28 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x46 (size before relaxing) - 0x000000004015239c phy_set_bbfreq_init - *fill* 0x00000000401523d2 0x2 + 0x0000000040163e34 phy_set_bbfreq_init + *fill* 0x0000000040163e6a 0x2 .text.ram_tx_pwctrl_bg_init - 0x00000000401523d4 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000040163e6c 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) 0x2a (size before relaxing) - 0x00000000401523d8 ram_tx_pwctrl_bg_init - *fill* 0x00000000401523fa 0x2 + 0x0000000040163e70 ram_tx_pwctrl_bg_init + *fill* 0x0000000040163e92 0x2 .literal.net80211_printf - 0x00000000401523fc 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x0000000040163e94 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) 0x8 (size before relaxing) + .literal.spi_bus_initialize + 0x0000000040163e98 0x50 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0xb8 (size before relaxing) + .literal.spi_bus_add_device + 0x0000000040163ee8 0x2c esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x94 (size before relaxing) + .literal.spi_device_queue_trans + 0x0000000040163f14 0x1c esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x28 (size before relaxing) .literal.parse_url_char - 0x0000000040152400 0x8 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040163f30 0x8 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .literal.http_parse_host_char - 0x0000000040152408 0x4 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040163f38 0x4 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .literal.http_parse_host - 0x000000004015240c 0x18 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040163f3c 0x18 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x20 (size before relaxing) .literal.http_should_keep_alive - 0x0000000040152424 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040163f54 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x4 (size before relaxing) .literal.http_parser_execute - 0x0000000040152424 0x180 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040163f54 0x180 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x2b4 (size before relaxing) .literal.http_parser_init - 0x00000000401525a4 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x00000000401640d4 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0xc (size before relaxing) .literal.http_parser_settings_init - 0x00000000401525a4 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x00000000401640d4 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x4 (size before relaxing) .literal.http_parser_url_init - 0x00000000401525a4 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x00000000401640d4 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x4 (size before relaxing) .literal.http_parser_parse_url - 0x00000000401525a4 0x14 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x00000000401640d4 0x14 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x28 (size before relaxing) .literal.http_parser_pause - 0x00000000401525b8 0x10 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x00000000401640e8 0x10 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x20 (size before relaxing) .literal.esp_tls_server_session_create - 0x00000000401525c8 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x00000000401640f8 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) 0x4 (size before relaxing) .literal.esp_tls_server_session_delete - 0x00000000401525c8 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x00000000401640f8 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) 0x4 (size before relaxing) .literal.esp_tls_get_bytes_avail - 0x00000000401525c8 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x00000000401640f8 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) 0x4 (size before relaxing) .literal.esp_mbedtls_read - 0x00000000401525c8 0x18 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x00000000401640f8 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x1c (size before relaxing) .literal.esp_mbedtls_write - 0x00000000401525e0 0x8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040164108 0x8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x20 (size before relaxing) .literal.set_ca_cert - 0x00000000401525e8 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040164110 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x34 (size before relaxing) .literal.set_global_ca_store - 0x00000000401525fc 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040164124 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x2c (size before relaxing) .literal.set_pki_context - 0x0000000040152608 0x18 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040164130 0x18 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x60 (size before relaxing) .literal.esp_mbedtls_get_bytes_avail - 0x0000000040152620 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040164148 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x14 (size before relaxing) .literal.esp_mbedtls_cleanup - 0x0000000040152624 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000004016414c 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x30 (size before relaxing) .literal.set_server_config - 0x0000000040152628 0x1c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040164150 0x1c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x5c (size before relaxing) .literal.set_client_config - 0x0000000040152644 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x000000004016416c 0x28 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0xa8 (size before relaxing) .literal.esp_create_mbedtls_handle - 0x0000000040152674 0x2c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040164194 0x2c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x90 (size before relaxing) .literal.esp_mbedtls_server_session_create - 0x00000000401526a0 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x00000000401641c0 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x30 (size before relaxing) .literal.esp_mbedtls_server_session_delete - 0x00000000401526b0 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x00000000401641d0 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x8 (size before relaxing) .literal.low_level_init - 0x00000000401526b0 0x4 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x00000000401641d0 0x4 esp-idf/lwip/liblwip.a(wlanif.c.obj) .literal.lwip_netif_wifi_free_rx_buffer - 0x00000000401526b4 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x00000000401641d4 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x8 (size before relaxing) .literal.low_level_output - 0x00000000401526b4 0xc esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x00000000401641d4 0xc esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x18 (size before relaxing) .literal.wlanif_input - 0x00000000401526c0 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x00000000401641e0 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x14 (size before relaxing) .literal.wlanif_init - 0x00000000401526c0 0x20 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x00000000401641e0 0x20 esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x2c (size before relaxing) .literal.wlanif_init_sta - 0x00000000401526e0 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x0000000040164200 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x4 (size before relaxing) .literal.wlanif_init_ap - 0x00000000401526e0 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x0000000040164200 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x4 (size before relaxing) .literal.ethip6_output - 0x00000000401526e0 0x4 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x0000000040164200 0xc esp-idf/lwip/liblwip.a(ethip6.c.obj) 0x14 (size before relaxing) + .literal.spi_hal_init + 0x000000004016420c 0x10 esp-idf/soc/libsoc.a(spi_hal.c.obj) + 0x1c (size before relaxing) + .literal.spi_hal_cal_timing + 0x000000004016421c 0x4 esp-idf/soc/libsoc.a(spi_hal.c.obj) + 0x8 (size before relaxing) + .literal.spi_hal_get_freq_limit + 0x0000000040164220 0x0 esp-idf/soc/libsoc.a(spi_hal.c.obj) + 0x8 (size before relaxing) + .literal.spi_hal_get_clock_conf + 0x0000000040164220 0x28 esp-idf/soc/libsoc.a(spi_hal.c.obj) + 0x50 (size before relaxing) .literal.ssl_mfl_code_to_length - 0x00000000401526e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164248 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_check_hs_header - 0x00000000401526e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164248 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.ssl_dtls_replay_reset - 0x00000000401526e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164248 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_cookie_write_dummy - 0x00000000401526e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164248 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .literal.ssl_cookie_check_dummy - 0x00000000401526e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016424c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.ssl_reset_in_out_pointers - 0x00000000401526e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016424c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_get_maximum_datagram_size - 0x00000000401526e8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016424c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.ssl_get_remaining_space_in_datagram - 0x00000000401526f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164254 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_swap_epochs - 0x00000000401526f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164258 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.ssl_load_buffered_message - 0x00000000401526f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164258 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.ssl_check_dtls_clihlo_cookie - 0x00000000401526f4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164258 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x18 (size before relaxing) .literal.ssl_calc_finished_tls_sha256 - 0x0000000040152704 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164268 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x1c (size before relaxing) .literal.ssl_calc_verify_tls_sha256 - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.tls_prf_generic - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x54 (size before relaxing) .literal.tls_prf_sha256 - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.tls_prf_sha384 - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.tls1_prf - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x84 (size before relaxing) .literal.ssl_calc_finished_tls_sha384 - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x1c (size before relaxing) .literal.ssl_calc_verify_tls_sha384 - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.ssl_calc_finished_tls - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x2c (size before relaxing) .literal.ssl_calc_verify_tls - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x20 (size before relaxing) .literal.ssl_bitmask_set - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.ssl_consume_current_message - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164270 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_flight_free - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164274 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_free_buffered_record - 0x000000004015270c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164274 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.ssl_load_buffered_record - 0x000000004015270c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164274 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x14 (size before relaxing) .literal.ssl_buffering_free_slot - 0x0000000040152710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164278 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_buffering_free - 0x0000000040152710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164278 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_buffer_make_space - 0x0000000040152710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164278 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.ssl_key_cert_free - 0x0000000040152710 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164278 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.ssl_flight_append - 0x0000000040152710 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164278 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x14 (size before relaxing) .literal.ssl_buffer_future_record - 0x0000000040152714 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016427c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.ssl_append_key_cert - 0x0000000040152714 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016427c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_hs_is_proper_fragment - 0x0000000040152714 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016427c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.ssl_buffer_message - 0x0000000040152718 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164280 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x40 (size before relaxing) .literal.ssl_transform_init - 0x0000000040152718 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164280 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x14 (size before relaxing) .literal.ssl_update_checksum_md5sha1 - 0x0000000040152718 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164280 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_update_checksum_sha256 - 0x0000000040152718 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164280 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.ssl_update_checksum_start - 0x0000000040152718 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164280 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.ssl_update_checksum_sha384 - 0x0000000040152718 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164280 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ssl_derive_keys - 0x0000000040152718 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164280 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x98 (size before relaxing) .literal.mbedtls_ssl_psk_derive_premaster - 0x0000000040152748 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x1c (size before relaxing) .literal.mbedtls_ssl_flush_output - 0x000000004015274c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.mbedtls_ssl_recv_flight_completed - 0x000000004015274c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.mbedtls_ssl_send_flight_completed - 0x000000004015274c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.mbedtls_ssl_update_handshake_status - 0x000000004015274c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ssl_dtls_replay_update - 0x000000004015274c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.mbedtls_ssl_optimize_checksum - 0x000000004015274c 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642b4 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .literal.mbedtls_ssl_reset_checksum - 0x0000000040152758 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ssl_session_init - 0x0000000040152758 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ssl_init - 0x0000000040152758 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ssl_conf_own_cert - 0x0000000040152758 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ssl_conf_dh_param_bin - 0x0000000040152758 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ssl_set_hostname - 0x0000000040152758 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x20 (size before relaxing) .literal.mbedtls_ssl_conf_alpn_protocols - 0x0000000040152758 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.mbedtls_ssl_get_record_expansion - 0x0000000040152758 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ssl_get_max_frag_len - 0x0000000040152758 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.ssl_get_remaining_payload_in_datagram - 0x0000000040152758 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x14 (size before relaxing) .literal.mbedtls_ssl_get_max_out_record_payload - 0x000000004015275c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x18 (size before relaxing) .literal.mbedtls_ssl_handshake_step - 0x000000004015275c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ssl_handshake - 0x000000004015275c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.mbedtls_ssl_transform_free - 0x000000004015275c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x14 (size before relaxing) .literal.mbedtls_ssl_handshake_free - 0x000000004015275c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x3c (size before relaxing) .literal.ssl_handshake_wrapup_free_hs_transform - 0x0000000040152760 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ssl_session_free - 0x0000000040152760 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ssl_handshake_wrapup - 0x0000000040152760 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ssl_free - 0x0000000040152760 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x54 (size before relaxing) .literal.mbedtls_ssl_config_init - 0x0000000040152760 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ssl_config_defaults - 0x0000000040152760 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642c4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x54 (size before relaxing) .literal.mbedtls_ssl_config_free - 0x0000000040152788 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x20 (size before relaxing) .literal.mbedtls_ssl_sig_from_pk - 0x0000000040152788 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_handshake_params_init - 0x0000000040152788 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x38 (size before relaxing) .literal.ssl_handshake_init - 0x000000004015278c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x3c (size before relaxing) .literal.ssl_session_reset_int - 0x000000004015278c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x34 (size before relaxing) .literal.ssl_handle_possible_reconnect - 0x000000004015278c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x14 (size before relaxing) .literal.mbedtls_ssl_setup - 0x0000000040152790 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x24 (size before relaxing) .literal.ssl_start_renegotiation - 0x0000000040152790 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.mbedtls_ssl_md_alg_from_hash - 0x0000000040152790 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .literal.mbedtls_ssl_hash_from_md_alg - 0x0000000040152794 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .literal.mbedtls_ssl_check_cert_usage - 0x0000000040152798 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401642fc 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x1c (size before relaxing) .literal.ssl_encrypt_buf - 0x00000000401527a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164308 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x60 (size before relaxing) .literal.mbedtls_ssl_write_record - 0x00000000401527a4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164308 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x24 (size before relaxing) .literal.mbedtls_ssl_flight_transmit - 0x00000000401527a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016430c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x30 (size before relaxing) .literal.mbedtls_ssl_resend - 0x00000000401527a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016430c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ssl_prepare_handshake_record - 0x00000000401527a8 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016430c 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x20 (size before relaxing) .literal.mbedtls_ssl_handle_message_type - 0x00000000401527b4 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164318 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x20 (size before relaxing) .literal.mbedtls_ssl_write_handshake_msg - 0x00000000401527c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x18 (size before relaxing) .literal.ssl_write_hello_request - 0x00000000401527c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.ssl_resend_hello_request - 0x00000000401527c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ssl_fetch_input - 0x00000000401527c0 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164324 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x34 (size before relaxing) .literal.mbedtls_ssl_renegotiate - 0x00000000401527cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164330 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x14 (size before relaxing) .literal.ssl_check_ctr_renegotiate - 0x00000000401527cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164330 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.mbedtls_ssl_write_certificate - 0x00000000401527cc 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164330 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x14 (size before relaxing) .literal.mbedtls_ssl_write_change_cipher_spec - 0x00000000401527d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016433c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ssl_write_finished - 0x00000000401527d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016433c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x1c (size before relaxing) .literal.mbedtls_ssl_send_alert_message - 0x00000000401527d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016433c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_certificate_chain - 0x00000000401527d8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016433c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x64 (size before relaxing) .literal.ssl_write_real - 0x00000000401527f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164354 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x14 (size before relaxing) .literal.ssl_write_split - 0x00000000401527f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164354 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc (size before relaxing) .literal.mbedtls_ssl_write - 0x00000000401527f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164354 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.ssl_decrypt_buf - 0x00000000401527f0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164354 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x6c (size before relaxing) .literal.ssl_prepare_record_content - 0x00000000401527f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016435c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.ssl_parse_record_header - 0x00000000401527f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016435c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x24 (size before relaxing) .literal.ssl_get_next_record - 0x00000000401527f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016435c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x38 (size before relaxing) .literal.mbedtls_ssl_read_record - 0x00000000401527fc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164360 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x30 (size before relaxing) .literal.mbedtls_ssl_parse_certificate - 0x0000000040152804 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164368 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x2c (size before relaxing) .literal.mbedtls_ssl_parse_change_cipher_spec - 0x000000004015280c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164370 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x18 (size before relaxing) .literal.mbedtls_ssl_parse_finished - 0x000000004015280c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164370 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x20 (size before relaxing) .literal.mbedtls_ssl_read - 0x0000000040152810 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164374 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x44 (size before relaxing) .literal.mbedtls_ssl_set_calc_verify_md - 0x0000000040152810 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164374 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ssl_get_key_exchange_md_ssl_tls - 0x0000000040152814 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164378 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x34 (size before relaxing) .literal.mbedtls_ssl_get_key_exchange_md_tls1_2 - 0x0000000040152814 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040164378 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x28 (size before relaxing) .literal.net_would_block - 0x0000000040152814 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x0000000040164378 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) 0x8 (size before relaxing) .literal.mbedtls_net_recv - 0x0000000040152814 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x0000000040164378 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) 0x18 (size before relaxing) .literal.mbedtls_net_send - 0x0000000040152818 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x000000004016437c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) 0x18 (size before relaxing) .literal.mbedtls_ssl_ciphersuite_from_id - 0x0000000040152820 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x0000000040164384 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) .literal.mbedtls_ssl_list_ciphersuites - 0x0000000040152824 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x0000000040164388 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) 0x18 (size before relaxing) .literal.mbedtls_ssl_get_ciphersuite_sig_pk_alg - 0x0000000040152834 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x0000000040164398 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) .literal.ssl_parse_server_psk_hint - 0x0000000040152838 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016439c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) .literal.ssl_write_renegotiation_ext - 0x000000004015283c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x4 (size before relaxing) .literal.ssl_write_session_ticket_ext - 0x000000004015283c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x4 (size before relaxing) .literal.ssl_generate_random - 0x000000004015283c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643a0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) .literal.ssl_write_hostname_ext - 0x0000000040152840 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x8 (size before relaxing) .literal.ssl_write_alpn_ext - 0x0000000040152840 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xc (size before relaxing) .literal.ssl_write_signature_algorithms_ext - 0x0000000040152840 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x8 (size before relaxing) .literal.ssl_write_supported_elliptic_curves_ext - 0x0000000040152840 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x8 (size before relaxing) .literal.ssl_write_client_hello - 0x0000000040152840 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643a4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x5c (size before relaxing) .literal.ssl_parse_renegotiation_info - 0x0000000040152844 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643a8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xc (size before relaxing) .literal.ssl_parse_max_fragment_length_ext - 0x0000000040152848 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_truncated_hmac_ext - 0x0000000040152848 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_encrypt_then_mac_ext - 0x0000000040152848 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_extended_ms_ext - 0x0000000040152848 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_session_ticket_ext - 0x0000000040152848 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_supported_point_formats_ext - 0x0000000040152848 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xc (size before relaxing) .literal.ssl_parse_certificate_request - 0x0000000040152848 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x20 (size before relaxing) .literal.ssl_parse_alpn_ext - 0x000000004015284c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x20 (size before relaxing) .literal.ssl_parse_hello_verify_request - 0x000000004015284c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x2c (size before relaxing) .literal.ssl_parse_server_hello - 0x0000000040152850 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643b4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xa4 (size before relaxing) .literal.ssl_parse_server_hello_done - 0x0000000040152858 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x14 (size before relaxing) .literal.ssl_check_server_ecdh_params - 0x000000004015285c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xc (size before relaxing) .literal.ssl_get_ecdh_params_from_cert - 0x000000004015285c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x18 (size before relaxing) .literal.ssl_parse_server_dh_params - 0x0000000040152860 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_server_ecdh_params - 0x0000000040152860 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xc (size before relaxing) .literal.ssl_parse_signature_algorithm - 0x0000000040152860 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x10 (size before relaxing) .literal.ssl_parse_server_key_exchange - 0x0000000040152860 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x74 (size before relaxing) .literal.ssl_write_encrypted_pms - 0x0000000040152860 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x1c (size before relaxing) .literal.ssl_write_client_key_exchange - 0x0000000040152860 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x48 (size before relaxing) .literal.ssl_write_certificate_verify - 0x0000000040152864 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x18 (size before relaxing) .literal.ssl_parse_new_session_ticket - 0x0000000040152864 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x30 (size before relaxing) .literal.mbedtls_ssl_handshake_client_step - 0x0000000040152868 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x00000000401643cc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x4c (size before relaxing) .literal.ssl_write_renegotiation_ext - 0x000000004015286c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_servername_ext - 0x000000004015286c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x18 (size before relaxing) .literal.ssl_parse_renegotiation_info - 0x000000004015286c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xc (size before relaxing) .literal.ssl_parse_supported_point_formats - 0x000000004015286c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_max_fragment_length_ext - 0x000000004015286c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_truncated_hmac_ext - 0x000000004015286c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_encrypt_then_mac_ext - 0x000000004015286c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_extended_ms_ext - 0x000000004015286c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x8 (size before relaxing) .literal.ssl_parse_client_psk_identity - 0x000000004015286c 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643d0 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x14 (size before relaxing) .literal.ssl_parse_signature_algorithms_ext - 0x0000000040152878 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x1c (size before relaxing) .literal.ssl_parse_supported_elliptic_curves - 0x0000000040152878 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x20 (size before relaxing) .literal.ssl_parse_session_ticket_ext - 0x0000000040152878 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x18 (size before relaxing) .literal.ssl_parse_alpn_ext - 0x0000000040152878 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x20 (size before relaxing) .literal.ssl_write_alpn_ext - 0x0000000040152878 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x8 (size before relaxing) .literal.ssl_pick_cert - 0x0000000040152878 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x10 (size before relaxing) .literal.ssl_ciphersuite_match - 0x0000000040152878 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x1c (size before relaxing) .literal.ssl_parse_client_hello - 0x0000000040152878 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643dc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xc0 (size before relaxing) .literal.ssl_write_hello_verify_request - 0x0000000040152880 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x14 (size before relaxing) .literal.ssl_write_new_session_ticket - 0x0000000040152880 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x4 (size before relaxing) .literal.ssl_write_encrypt_then_mac_ext - 0x0000000040152880 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x8 (size before relaxing) .literal.ssl_write_server_hello - 0x0000000040152880 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x50 (size before relaxing) .literal.ssl_get_ecdh_params_from_cert - 0x0000000040152880 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xc (size before relaxing) .literal.ssl_prepare_server_key_exchange - 0x0000000040152880 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x44 (size before relaxing) .literal.ssl_write_server_key_exchange - 0x0000000040152880 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643e4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x14 (size before relaxing) .literal.ssl_write_certificate_request - 0x0000000040152888 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x10 (size before relaxing) .literal.ssl_write_server_hello_done - 0x0000000040152888 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xc (size before relaxing) .literal.ssl_parse_client_dh_public - 0x0000000040152888 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xc (size before relaxing) .literal.ssl_decrypt_encrypted_pms - 0x000000004015288c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x14 (size before relaxing) .literal.ssl_parse_encrypted_pms - 0x000000004015288c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xc (size before relaxing) .literal.ssl_parse_client_key_exchange - 0x000000004015288c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x58 (size before relaxing) .literal.ssl_parse_certificate_verify - 0x0000000040152890 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x24 (size before relaxing) .literal.mbedtls_ssl_handshake_server_step - 0x0000000040152894 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401643f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x50 (size before relaxing) .literal.dhm_read_bignum - 0x0000000040152898 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x00000000401643fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x8 (size before relaxing) .literal.dhm_check_range - 0x000000004015289c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040164400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x24 (size before relaxing) .literal.dhm_update_blinding - 0x000000004015289c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040164400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x40 (size before relaxing) .literal.mbedtls_dhm_init - 0x000000004015289c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040164400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x4 (size before relaxing) .literal.mbedtls_dhm_read_params - 0x000000004015289c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040164400 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x14 (size before relaxing) .literal.mbedtls_dhm_make_params - 0x000000004015289c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040164400 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x3c (size before relaxing) .literal.mbedtls_dhm_set_group - 0x00000000401528a0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040164404 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x10 (size before relaxing) .literal.mbedtls_dhm_read_public - 0x00000000401528a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040164408 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x8 (size before relaxing) .literal.mbedtls_dhm_make_public - 0x00000000401528a4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040164408 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x28 (size before relaxing) .literal.mbedtls_dhm_calc_secret - 0x00000000401528a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x000000004016440c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x34 (size before relaxing) .literal.mbedtls_dhm_free - 0x00000000401528a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x000000004016440c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x2c (size before relaxing) .literal.ecdh_gen_public_restartable - 0x00000000401528a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004016440c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x8 (size before relaxing) .literal.ecdh_compute_shared_restartable - 0x00000000401528a8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004016440c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x18 (size before relaxing) .literal.ecdh_init_internal - 0x00000000401528ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164410 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x14 (size before relaxing) .literal.ecdh_setup_internal - 0x00000000401528ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164410 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x8 (size before relaxing) .literal.ecdh_free_internal - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x14 (size before relaxing) .literal.ecdh_read_params_internal - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x4 (size before relaxing) .literal.ecdh_read_public_internal - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x8 (size before relaxing) .literal.ecdh_get_params_internal - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ecdh_gen_public - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x4 (size before relaxing) .literal.ecdh_make_params_internal - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x10 (size before relaxing) .literal.ecdh_make_public_internal - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0xc (size before relaxing) .literal.mbedtls_ecdh_compute_shared - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x4 (size before relaxing) .literal.ecdh_calc_secret_internal - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ecdh_init - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ecdh_setup - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ecdh_free - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ecdh_make_params - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ecdh_read_params - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0xc (size before relaxing) .literal.mbedtls_ecdh_get_params - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x10 (size before relaxing) .literal.mbedtls_ecdh_make_public - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ecdh_read_public - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x4 (size before relaxing) .literal.mbedtls_ecdh_calc_secret - 0x00000000401528b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040164414 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x4 (size before relaxing) .literal._ZdlPv - 0x00000000401528b0 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x0000000040164414 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) 0x4 (size before relaxing) .literal._ZdaPv - 0x00000000401528b0 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x0000000040164414 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) 0x4 (size before relaxing) .literal._ZSt15get_new_handlerv - 0x00000000401528b0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x0000000040164414 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) .literal._ZnwjRKSt9nothrow_t - 0x00000000401528b4 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x0000000040164418 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) 0x14 (size before relaxing) .literal._ZnajRKSt9nothrow_t - 0x00000000401528bc 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x000000004016441c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) 0x4 (size before relaxing) .literal._ZN10__cxxabiv120__si_class_type_infoD2Ev - 0x00000000401528bc 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x000000004016441c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) 0x8 (size before relaxing) .literal._ZN10__cxxabiv120__si_class_type_infoD0Ev - 0x00000000401528c0 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040164420 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) 0x8 (size before relaxing) .literal._ZNKSt9type_infoeqERKS_$isra$0 - 0x00000000401528c0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040164420 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) .literal._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ - 0x00000000401528c4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040164424 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) 0x4 (size before relaxing) .literal._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE - 0x00000000401528c4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040164424 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) 0x8 (size before relaxing) .literal._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE - 0x00000000401528c4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040164424 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) 0x4 (size before relaxing) .literal._ZN10__cxxabiv111__terminateEPFvvE - 0x00000000401528c4 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040164424 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) 0x18 (size before relaxing) .literal._ZSt13get_terminatev - 0x00000000401528c8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040164424 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) .literal._ZSt9terminatev - 0x00000000401528cc 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040164428 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) 0x8 (size before relaxing) .literal._ZN10__cxxabiv112__unexpectedEPFvvE - 0x00000000401528cc 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040164428 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) 0x4 (size before relaxing) .literal._ZSt14get_unexpectedv - 0x00000000401528cc 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040164428 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) .literal._ZSt10unexpectedv - 0x00000000401528d0 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x000000004016442c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) 0x8 (size before relaxing) .literal._ZL28read_encoded_value_with_basehjPKhPj - 0x00000000401528d0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x000000004016442c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x10 (size before relaxing) .literal._ZL15get_ttype_entryP16lsda_header_infom - 0x00000000401528d4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040164430 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x8 (size before relaxing) .literal._ZL20check_exception_specP16lsda_header_infoPKSt9type_infoPvl - 0x00000000401528d4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040164430 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0xc (size before relaxing) .literal._ZL21base_of_encoded_valuehP15_Unwind_Context - 0x00000000401528d4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040164430 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x10 (size before relaxing) .literal._ZL18read_encoded_valueP15_Unwind_ContexthPKhPj - 0x00000000401528d4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040164430 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x8 (size before relaxing) .literal._ZL17parse_lsda_headerP15_Unwind_ContextPKhP16lsda_header_info - 0x00000000401528d4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040164430 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x10 (size before relaxing) .literal.__gxx_personality_v0 - 0x00000000401528d4 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040164430 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x68 (size before relaxing) .literal.__cxa_call_unexpected - 0x00000000401528dc 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040164438 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x2c (size before relaxing) .literal._ZdlPvj - 0x00000000401528dc 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x0000000040164438 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) 0x4 (size before relaxing) .literal._ZL15eh_globals_dtorPv - 0x00000000401528dc 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x0000000040164438 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) 0x8 (size before relaxing) .literal.__cxa_get_globals_fast - 0x00000000401528dc 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x0000000040164438 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) .literal.startup._GLOBAL__sub_I___cxa_get_globals_fast - 0x00000000401528e8 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x0000000040164444 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) 0xc (size before relaxing) .literal.exit._GLOBAL__sub_D___cxa_get_globals_fast - 0x00000000401528f0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x000000004016444c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) 0x8 (size before relaxing) .literal._ZN10__cxxabiv117__class_type_infoD2Ev - 0x00000000401528f4 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040164450 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) 0x8 (size before relaxing) .literal._ZN10__cxxabiv117__class_type_infoD0Ev - 0x00000000401528f8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040164454 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) 0x8 (size before relaxing) .literal._ZNKSt9type_infoeqERKS_$isra$0 - 0x00000000401528f8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040164454 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) 0x4 (size before relaxing) .literal._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE - 0x00000000401528f8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040164454 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) 0x8 (size before relaxing) .literal._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE - 0x00000000401528f8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040164454 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) 0x4 (size before relaxing) .literal._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj - 0x00000000401528f8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040164454 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) 0x4 (size before relaxing) - .literal 0x00000000401528f8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) - .literal 0x00000000401528fc 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .literal 0x0000000040164454 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .literal 0x0000000040164458 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) 0x94 (size before relaxing) - .literal 0x000000004015291c 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .literal 0x0000000040164478 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) 0xa8 (size before relaxing) - .literal 0x0000000040152950 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .literal 0x00000000401644ac 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) 0x14 (size before relaxing) - .literal 0x0000000040152958 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .literal 0x00000000401644b4 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) 0x18 (size before relaxing) - .literal 0x0000000040152964 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .literal 0x00000000401644c0 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) 0x4 (size before relaxing) - .literal 0x0000000040152964 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .literal 0x00000000401644c0 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) 0x24 (size before relaxing) - .literal 0x000000004015297c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .literal 0x00000000401644d8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) 0x28 (size before relaxing) - .literal 0x000000004015297c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .literal 0x00000000401644d8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) 0x3c (size before relaxing) - .literal 0x0000000040152980 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .literal 0x00000000401644dc 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) 0x28 (size before relaxing) - .literal 0x0000000040152980 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .literal 0x00000000401644dc 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) 0xc (size before relaxing) - .literal 0x0000000040152980 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .literal 0x00000000401644dc 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) 0x48 (size before relaxing) - .literal 0x00000000401529a4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .literal 0x0000000040164500 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) 0xc (size before relaxing) - .literal 0x00000000401529a4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .literal 0x0000000040164500 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) 0x28 (size before relaxing) - .literal 0x00000000401529a4 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .literal 0x0000000040164500 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) 0x34 (size before relaxing) - .literal 0x00000000401529a8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .literal 0x0000000040164504 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) 0x40 (size before relaxing) - .literal 0x00000000401529a8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .literal 0x0000000040164504 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) 0xc (size before relaxing) - .literal 0x00000000401529a8 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .literal 0x0000000040164504 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) 0x80 (size before relaxing) - .literal 0x00000000401529c4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .literal 0x0000000040164520 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) 0xc (size before relaxing) - .literal 0x00000000401529c4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .literal 0x0000000040164520 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) 0x30 (size before relaxing) - .literal 0x00000000401529c4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .literal 0x0000000040164520 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) 0x38 (size before relaxing) - .literal 0x00000000401529c4 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .literal 0x0000000040164520 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) 0x104 (size before relaxing) - .literal 0x0000000040152a00 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .literal 0x000000004016455c 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) 0x2c (size before relaxing) - .literal 0x0000000040152a10 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .literal 0x000000004016456c 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) 0x18 (size before relaxing) - .literal 0x0000000040152a1c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .literal 0x0000000040164578 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) 0x8 (size before relaxing) - .literal 0x0000000040152a1c 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .literal 0x0000000040164578 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) 0x80 (size before relaxing) - .literal 0x0000000040152a30 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .literal 0x000000004016458c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) 0x14 (size before relaxing) - .literal 0x0000000040152a30 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .literal 0x000000004016458c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) 0x28 (size before relaxing) - .literal 0x0000000040152a34 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .literal 0x0000000040164590 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) 0x14 (size before relaxing) - .literal 0x0000000040152a34 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .literal 0x0000000040164590 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) 0x3c (size before relaxing) - .literal 0x0000000040152a38 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .literal 0x0000000040164594 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) 0x38 (size before relaxing) - .literal 0x0000000040152a38 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .literal 0x0000000040164594 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) 0x18 (size before relaxing) - .literal 0x0000000040152a38 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .literal 0x0000000040164594 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) 0x50 (size before relaxing) - .literal 0x0000000040152a3c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .literal 0x0000000040164598 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) 0xc (size before relaxing) - .literal 0x0000000040152a3c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .literal 0x0000000040164598 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) 0x1c (size before relaxing) - .literal 0x0000000040152a40 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .literal 0x000000004016459c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) 0x1c (size before relaxing) - .literal 0x0000000040152a44 0xc8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .literal 0x00000000401645a0 0xbc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) 0x264 (size before relaxing) - .literal 0x0000000040152b0c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .literal 0x000000004016465c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) 0xc (size before relaxing) - .literal 0x0000000040152b10 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .literal 0x0000000040164660 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) 0x34 (size before relaxing) - .literal 0x0000000040152b18 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .literal 0x0000000040164664 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) 0x2c (size before relaxing) - .literal 0x0000000040152b18 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .literal 0x0000000040164664 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) 0x1a0 (size before relaxing) - .literal 0x0000000040152b70 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .literal 0x00000000401646b8 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) 0x15c (size before relaxing) - .literal 0x0000000040152b94 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .literal 0x00000000401646dc 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) 0x8 (size before relaxing) - .literal 0x0000000040152b98 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .literal 0x00000000401646e0 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) 0xb8 (size before relaxing) - .literal 0x0000000040152bc8 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .literal 0x0000000040164714 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) 0x1ec (size before relaxing) - .literal 0x0000000040152c04 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .literal 0x0000000040164750 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) 0x14 (size before relaxing) - .literal 0x0000000040152c04 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .literal 0x0000000040164750 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) 0x8 (size before relaxing) - .literal 0x0000000040152c04 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .literal 0x0000000040164750 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) 0x218 (size before relaxing) - .literal 0x0000000040152c58 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) - 0x4 (size before relaxing) - .literal 0x0000000040152c58 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .literal 0x00000000401647a8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .literal 0x00000000401647ac 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) 0x48 (size before relaxing) - .literal 0x0000000040152c58 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .literal 0x00000000401647ac 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) 0x4 (size before relaxing) - .literal 0x0000000040152c58 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .literal 0x00000000401647ac 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) 0x10 (size before relaxing) - .literal 0x0000000040152c5c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .literal 0x00000000401647b0 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) 0x4 (size before relaxing) - .literal 0x0000000040152c5c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .literal 0x00000000401647b0 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) 0x10 (size before relaxing) - .literal 0x0000000040152c5c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .literal 0x00000000401647b0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) 0x14 (size before relaxing) - .literal 0x0000000040152c60 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .literal 0x00000000401647b4 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) 0x70 (size before relaxing) - .literal 0x0000000040152c78 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .literal 0x00000000401647cc 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) 0x20 (size before relaxing) - .literal 0x0000000040152c80 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) - .literal 0x0000000040152c84 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .literal 0x00000000401647d4 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .literal 0x00000000401647d8 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) 0x78 (size before relaxing) - .literal 0x0000000040152cac 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .literal 0x0000000040164800 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) 0xe4 (size before relaxing) .literal.lib_printf - 0x0000000040152cb4 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x0000000040164808 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) 0x10 (size before relaxing) .literal.esp_register_shutdown_handler - 0x0000000040152cbc 0x4 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x0000000040164810 0x4 esp-idf/esp_system/libesp_system.a(system_api.c.obj) .literal.esp_unregister_shutdown_handler - 0x0000000040152cc0 0x0 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x0000000040164814 0x0 esp-idf/esp_system/libesp_system.a(system_api.c.obj) 0x4 (size before relaxing) .literal.esp_get_free_heap_size - 0x0000000040152cc0 0x4 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - 0x8 (size before relaxing) + 0x0000000040164814 0x8 esp-idf/esp_system/libesp_system.a(system_api.c.obj) .literal.esp_get_idf_version - 0x0000000040152cc4 0x4 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x000000004016481c 0x4 esp-idf/esp_system/libesp_system.a(system_api.c.obj) .literal.uart_hal_rxfifo_rst - 0x0000000040152cc8 0x28 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x0000000040164820 0x28 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) 0x2c (size before relaxing) .literal.uart_hal_tx_break - 0x0000000040152cf0 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x0000000040164848 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) 0x4 (size before relaxing) .literal.uart_hal_write_txfifo - 0x0000000040152cf0 0x14 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x0000000040164848 0x14 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) 0x2c (size before relaxing) .literal.uart_hal_read_rxfifo - 0x0000000040152d04 0x4 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000004016485c 0x4 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) 0x2c (size before relaxing) .literal.handler_instances_add - 0x0000000040152d08 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040164860 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x24 (size before relaxing) .literal.base_node_add_handler - 0x0000000040152d14 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004016486c 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x24 (size before relaxing) .literal.loop_node_add_handler - 0x0000000040152d18 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040164870 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x28 (size before relaxing) .literal.handler_instances_remove - 0x0000000040152d20 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040164878 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x10 (size before relaxing) .literal.base_node_remove_handler - 0x0000000040152d20 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040164878 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0xc (size before relaxing) .literal.loop_node_remove_handler - 0x0000000040152d20 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040164878 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x10 (size before relaxing) .literal.esp_event_loop_create - 0x0000000040152d20 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040164878 0x2c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x68 (size before relaxing) .literal.esp_event_loop_run - 0x0000000040152d54 0x1c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000401648a4 0x1c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x3c (size before relaxing) .literal.esp_event_loop_run_task - 0x0000000040152d70 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000401648c0 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x18 (size before relaxing) .literal.esp_event_handler_register_with_internal - 0x0000000040152d78 0x10 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000401648c8 0x10 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x50 (size before relaxing) .literal.esp_event_handler_register_with - 0x0000000040152d88 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000401648d8 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x4 (size before relaxing) .literal.esp_event_handler_unregister_with_internal - 0x0000000040152d88 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000401648d8 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x3c (size before relaxing) .literal.esp_event_handler_unregister_with - 0x0000000040152d94 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000401648e4 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x4 (size before relaxing) .literal.esp_event_post_to - 0x0000000040152d94 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000401648e4 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x40 (size before relaxing) .literal.esp_event_handler_register - 0x0000000040152d9c 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x00000000401648e8 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) 0x8 (size before relaxing) .literal.esp_event_handler_unregister - 0x0000000040152da0 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x00000000401648ec 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) 0x8 (size before relaxing) .literal.esp_event_post - 0x0000000040152da0 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x00000000401648ec 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) 0x8 (size before relaxing) .literal.esp_event_loop_create_default - 0x0000000040152da0 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x00000000401648ec 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) 0x10 (size before relaxing) .literal.heap_bubble_down - 0x0000000040152da4 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x00000000401648f0 0x4 esp-idf/log/liblog.a(log.c.obj) .literal.esp_log_level_set - 0x0000000040152da8 0x30 esp-idf/log/liblog.a(log.c.obj) + 0x00000000401648f4 0x30 esp-idf/log/liblog.a(log.c.obj) 0x58 (size before relaxing) .literal.esp_log_writev - 0x0000000040152dd8 0xc esp-idf/log/liblog.a(log.c.obj) + 0x0000000040164924 0xc esp-idf/log/liblog.a(log.c.obj) 0x44 (size before relaxing) .literal.phy_printf - 0x0000000040152de4 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x0000000040164930 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) 0x8 (size before relaxing) .text.lib_printf - 0x0000000040152de8 0x70 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x0000000040164934 0x70 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) .text.phy_printf - 0x0000000040152e58 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - 0x0000000040152e58 phy_printf - *fill* 0x0000000040152e82 0x2 + 0x00000000401649a4 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x00000000401649a4 phy_printf + *fill* 0x00000000401649ce 0x2 .text.net80211_printf - 0x0000000040152e84 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - 0x0000000040152e84 net80211_printf - *fill* 0x0000000040152eae 0x2 + 0x00000000401649d0 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x00000000401649d0 net80211_printf + *fill* 0x00000000401649fa 0x2 + .text.spi_bus_initialize + 0x00000000401649fc 0x2ec esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x308 (size before relaxing) + 0x00000000401649fc spi_bus_initialize + .text.spi_bus_add_device + 0x0000000040164ce8 0x313 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x31b (size before relaxing) + 0x0000000040164ce8 spi_bus_add_device + *fill* 0x0000000040164ffb 0x1 + .text.spi_device_queue_trans + 0x0000000040164ffc 0xd2 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x0000000040164ffc spi_device_queue_trans + *fill* 0x00000000401650ce 0x2 .text.parse_url_char - 0x0000000040152eb0 0x34e esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - *fill* 0x00000000401531fe 0x2 + 0x00000000401650d0 0x34e esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x000000004016541e 0x2 .text.http_parse_host_char - 0x0000000040153200 0x314 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040165420 0x314 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .text.http_parse_host - 0x0000000040153514 0x104 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040165734 0x104 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x108 (size before relaxing) .text.http_should_keep_alive - 0x0000000040153618 0x35 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - 0x0000000040153618 http_should_keep_alive - *fill* 0x000000004015364d 0x3 + 0x0000000040165838 0x35 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040165838 http_should_keep_alive + *fill* 0x000000004016586d 0x3 .text.http_parser_execute - 0x0000000040153650 0x2d38 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040165870 0x2d38 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x2d5c (size before relaxing) - 0x0000000040153650 http_parser_execute + 0x0000000040165870 http_parser_execute .text.http_parser_init - 0x0000000040156388 0x46 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - 0x0000000040156388 http_parser_init - *fill* 0x00000000401563ce 0x2 + 0x00000000401685a8 0x46 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x00000000401685a8 http_parser_init + *fill* 0x00000000401685ee 0x2 .text.http_parser_settings_init - 0x00000000401563d0 0x12 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - 0x00000000401563d0 http_parser_settings_init - *fill* 0x00000000401563e2 0x2 + 0x00000000401685f0 0x12 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x00000000401685f0 http_parser_settings_init + *fill* 0x0000000040168602 0x2 .text.http_parser_url_init - 0x00000000401563e4 0x12 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - 0x00000000401563e4 http_parser_url_init - *fill* 0x00000000401563f6 0x2 + 0x0000000040168604 0x12 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040168604 http_parser_url_init + *fill* 0x0000000040168616 0x2 .text.http_parser_parse_url - 0x00000000401563f8 0x111 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - 0x00000000401563f8 http_parser_parse_url - *fill* 0x0000000040156509 0x3 + 0x0000000040168618 0x111 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040168618 http_parser_parse_url + *fill* 0x0000000040168729 0x3 .text.http_parser_pause - 0x000000004015650c 0x4b esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000004016872c 0x4b esp-idf/nghttp/libnghttp.a(http_parser.c.obj) 0x4e (size before relaxing) - 0x000000004015650c http_parser_pause - *fill* 0x0000000040156557 0x1 + 0x000000004016872c http_parser_pause + *fill* 0x0000000040168777 0x1 .text.esp_tls_server_session_create - 0x0000000040156558 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x0000000040168778 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) 0x14 (size before relaxing) - 0x0000000040156558 esp_tls_server_session_create + 0x0000000040168778 esp_tls_server_session_create .text.esp_tls_server_session_delete - 0x0000000040156568 0xa esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x0000000040168788 0xa esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) 0xe (size before relaxing) - 0x0000000040156568 esp_tls_server_session_delete - *fill* 0x0000000040156572 0x2 + 0x0000000040168788 esp_tls_server_session_delete + *fill* 0x0000000040168792 0x2 .text.esp_tls_get_bytes_avail - 0x0000000040156574 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x0000000040168794 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) 0x10 (size before relaxing) - 0x0000000040156574 esp_tls_get_bytes_avail + 0x0000000040168794 esp_tls_get_bytes_avail .text.esp_mbedtls_read - 0x0000000040156580 0x66 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x00000000401687a0 0x66 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x6e (size before relaxing) - 0x0000000040156580 esp_mbedtls_read - *fill* 0x00000000401565e6 0x2 + 0x00000000401687a0 esp_mbedtls_read + *fill* 0x0000000040168806 0x2 .text.esp_mbedtls_write - 0x00000000401565e8 0x89 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040168808 0x89 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x8d (size before relaxing) - 0x00000000401565e8 esp_mbedtls_write - *fill* 0x0000000040156671 0x3 + 0x0000000040168808 esp_mbedtls_write + *fill* 0x0000000040168891 0x3 .text.set_ca_cert - 0x0000000040156674 0x84 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040168894 0x84 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x90 (size before relaxing) .text.set_global_ca_store - 0x00000000401566f8 0x5e esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040168918 0x5e esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x66 (size before relaxing) - *fill* 0x0000000040156756 0x2 + *fill* 0x0000000040168976 0x2 .text.set_pki_context - 0x0000000040156758 0x122 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040168978 0x122 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x13a (size before relaxing) - *fill* 0x000000004015687a 0x2 + *fill* 0x0000000040168a9a 0x2 .text.esp_mbedtls_get_bytes_avail - 0x000000004015687c 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x000000004015687c esp_mbedtls_get_bytes_avail + 0x0000000040168a9c 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040168a9c esp_mbedtls_get_bytes_avail .text.esp_mbedtls_cleanup - 0x00000000401568ac 0x66 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040168acc 0x66 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x8a (size before relaxing) - 0x00000000401568ac esp_mbedtls_cleanup - *fill* 0x0000000040156912 0x2 + 0x0000000040168acc esp_mbedtls_cleanup + *fill* 0x0000000040168b32 0x2 .text.set_server_config - 0x0000000040156914 0x10c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040168b34 0x10c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x118 (size before relaxing) - 0x0000000040156914 set_server_config + 0x0000000040168b34 set_server_config .text.set_client_config - 0x0000000040156a20 0x22e esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040168c40 0x22e esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x256 (size before relaxing) - 0x0000000040156a20 set_client_config - *fill* 0x0000000040156c4e 0x2 + 0x0000000040168c40 set_client_config + *fill* 0x0000000040168e6e 0x2 .text.esp_create_mbedtls_handle - 0x0000000040156c50 0x160 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040168e70 0x160 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0x18b (size before relaxing) - 0x0000000040156c50 esp_create_mbedtls_handle - *fill* 0x0000000040156db0 0x0 + 0x0000000040168e70 esp_create_mbedtls_handle + *fill* 0x0000000040168fd0 0x0 .text.esp_mbedtls_server_session_create - 0x0000000040156db0 0xd4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040168fd0 0xd4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) 0xd8 (size before relaxing) - 0x0000000040156db0 esp_mbedtls_server_session_create + 0x0000000040168fd0 esp_mbedtls_server_session_create .text.esp_mbedtls_server_session_delete - 0x0000000040156e84 0x17 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x0000000040156e84 esp_mbedtls_server_session_delete - *fill* 0x0000000040156e9b 0x1 + 0x00000000401690a4 0x17 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x00000000401690a4 esp_mbedtls_server_session_delete + *fill* 0x00000000401690bb 0x1 .text.low_level_init - 0x0000000040156e9c 0x1b esp-idf/lwip/liblwip.a(wlanif.c.obj) - *fill* 0x0000000040156eb7 0x1 + 0x00000000401690bc 0x1b esp-idf/lwip/liblwip.a(wlanif.c.obj) + *fill* 0x00000000401690d7 0x1 .text.lwip_netif_wifi_free_rx_buffer - 0x0000000040156eb8 0x12 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x00000000401690d8 0x12 esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x16 (size before relaxing) - *fill* 0x0000000040156eca 0x2 + *fill* 0x00000000401690ea 0x2 .text.low_level_output - 0x0000000040156ecc 0x69 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x00000000401690ec 0x69 esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x71 (size before relaxing) - *fill* 0x0000000040156f35 0x3 + *fill* 0x0000000040169155 0x3 .text.wlanif_input - 0x0000000040156f38 0x5f esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x0000000040169158 0x5f esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x67 (size before relaxing) - 0x0000000040156f38 wlanif_input - *fill* 0x0000000040156f97 0x1 + 0x0000000040169158 wlanif_input + *fill* 0x00000000401691b7 0x1 .text.wlanif_init - 0x0000000040156f98 0x4a esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x00000000401691b8 0x4a esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x52 (size before relaxing) - 0x0000000040156f98 wlanif_init - *fill* 0x0000000040156fe2 0x2 + 0x00000000401691b8 wlanif_init + *fill* 0x0000000040169202 0x2 .text.wlanif_init_sta - 0x0000000040156fe4 0x19 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x0000000040169204 0x19 esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x1d (size before relaxing) - 0x0000000040156fe4 wlanif_init_sta - *fill* 0x0000000040156ffd 0x3 + 0x0000000040169204 wlanif_init_sta + *fill* 0x000000004016921d 0x3 .text.wlanif_init_ap - 0x0000000040157000 0x19 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x0000000040169220 0x19 esp-idf/lwip/liblwip.a(wlanif.c.obj) 0x1d (size before relaxing) - 0x0000000040157000 wlanif_init_ap - *fill* 0x0000000040157019 0x3 + 0x0000000040169220 wlanif_init_ap + *fill* 0x0000000040169239 0x3 .text.ethip6_output - 0x000000004015701c 0x7c esp-idf/lwip/liblwip.a(ethip6.c.obj) - 0x84 (size before relaxing) - 0x000000004015701c ethip6_output + 0x000000004016923c 0x84 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x000000004016923c ethip6_output + .text.spi_hal_init + 0x00000000401692c0 0xde esp-idf/soc/libsoc.a(spi_hal.c.obj) + 0x00000000401692c0 spi_hal_init + *fill* 0x000000004016939e 0x2 + .text.spi_hal_cal_timing + 0x00000000401693a0 0x5f esp-idf/soc/libsoc.a(spi_hal.c.obj) + 0x00000000401693a0 spi_hal_cal_timing + *fill* 0x00000000401693ff 0x1 + .text.spi_hal_get_freq_limit + 0x0000000040169400 0x3c esp-idf/soc/libsoc.a(spi_hal.c.obj) + 0x0000000040169400 spi_hal_get_freq_limit + .text.spi_hal_get_clock_conf + 0x000000004016943c 0x210 esp-idf/soc/libsoc.a(spi_hal.c.obj) + 0x218 (size before relaxing) + 0x000000004016943c spi_hal_get_clock_conf .text.ssl_mfl_code_to_length - 0x0000000040157098 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x00000000401570c1 0x3 + 0x000000004016964c 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040169675 0x3 .text.ssl_check_hs_header - 0x00000000401570c4 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169678 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x45 (size before relaxing) - *fill* 0x0000000040157101 0x3 + *fill* 0x00000000401696b5 0x3 .text.ssl_dtls_replay_reset - 0x0000000040157104 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x000000004015711b 0x1 + 0x00000000401696b8 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x00000000401696cf 0x1 .text.ssl_cookie_write_dummy - 0x000000004015711c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401696d0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_cookie_check_dummy - 0x0000000040157124 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401696d8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_reset_in_out_pointers - 0x000000004015712c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401696e0 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x42 (size before relaxing) - *fill* 0x000000004015716a 0x2 + *fill* 0x000000004016971e 0x2 .text.ssl_get_maximum_datagram_size - 0x000000004015716c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169720 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x1c (size before relaxing) .text.ssl_get_remaining_space_in_datagram - 0x0000000040157184 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169738 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x1d (size before relaxing) - *fill* 0x000000004015719d 0x3 + *fill* 0x0000000040169751 0x3 .text.ssl_swap_epochs - 0x00000000401571a0 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169754 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x5a (size before relaxing) - *fill* 0x00000000401571f2 0x2 + *fill* 0x00000000401697a6 0x2 .text.ssl_load_buffered_message - 0x00000000401571f4 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x000000004015729d 0x3 + 0x00000000401697a8 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040169851 0x3 .text.ssl_check_dtls_clihlo_cookie - 0x00000000401572a0 0x17d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x000000004015741d 0x3 + 0x0000000040169854 0x17d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x00000000401699d1 0x3 .text.ssl_calc_finished_tls_sha256 - 0x0000000040157420 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401699d4 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x72 (size before relaxing) - *fill* 0x0000000040157486 0x2 + *fill* 0x0000000040169a3a 0x2 .text.ssl_calc_verify_tls_sha256 - 0x0000000040157488 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169a3c 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x30 (size before relaxing) .text.tls_prf_generic - 0x00000000401574ac 0x150 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169a60 0x150 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x188 (size before relaxing) .text.tls_prf_sha256 - 0x00000000401575fc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169bb0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x20 (size before relaxing) .text.tls_prf_sha384 - 0x0000000040157618 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169bcc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x20 (size before relaxing) .text.tls1_prf - 0x0000000040157634 0x226 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169be8 0x226 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x27a (size before relaxing) - *fill* 0x000000004015785a 0x2 + *fill* 0x0000000040169e0e 0x2 .text.ssl_calc_finished_tls_sha384 - 0x000000004015785c 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169e10 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x72 (size before relaxing) - *fill* 0x00000000401578c2 0x2 + *fill* 0x0000000040169e76 0x2 .text.ssl_calc_verify_tls_sha384 - 0x00000000401578c4 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169e78 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x30 (size before relaxing) .text.ssl_calc_finished_tls - 0x00000000401578e8 0x86 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169e9c 0x86 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x9e (size before relaxing) - *fill* 0x000000004015796e 0x2 + *fill* 0x0000000040169f22 0x2 .text.ssl_calc_verify_tls - 0x0000000040157970 0x47 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169f24 0x47 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x5f (size before relaxing) - *fill* 0x00000000401579b7 0x1 + *fill* 0x0000000040169f6b 0x1 .text.ssl_bitmask_set - 0x00000000401579b8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040169f6c 0x98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_consume_current_message - 0x0000000040157a50 0x50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a004 0x50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_flight_free - 0x0000000040157aa0 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a054 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x1f (size before relaxing) - *fill* 0x0000000040157abb 0x1 + *fill* 0x000000004016a06f 0x1 .text.ssl_free_buffered_record - 0x0000000040157abc 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a070 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x27 (size before relaxing) - *fill* 0x0000000040157ae0 0x0 + *fill* 0x000000004016a094 0x0 .text.ssl_load_buffered_record - 0x0000000040157ae0 0x7a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a094 0x7a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x7e (size before relaxing) - *fill* 0x0000000040157b5a 0x2 + *fill* 0x000000004016a10e 0x2 .text.ssl_buffering_free_slot - 0x0000000040157b5c 0x7c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a110 0x7c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x80 (size before relaxing) .text.ssl_buffering_free - 0x0000000040157bd8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a18c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x27 (size before relaxing) - *fill* 0x0000000040157bf8 0x0 + *fill* 0x000000004016a1ac 0x0 .text.ssl_buffer_make_space - 0x0000000040157bf8 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a1ac 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_key_cert_free - 0x0000000040157c44 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x0000000040157c5b 0x1 + 0x000000004016a1f8 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004016a20f 0x1 .text.ssl_flight_append - 0x0000000040157c5c 0x69 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a210 0x69 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x71 (size before relaxing) - *fill* 0x0000000040157cc5 0x3 + *fill* 0x000000004016a279 0x3 .text.ssl_buffer_future_record - 0x0000000040157cc8 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a27c 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x58 (size before relaxing) .text.ssl_append_key_cert - 0x0000000040157d1c 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x0000000040157d55 0x3 + 0x000000004016a2d0 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004016a309 0x3 .text.ssl_hs_is_proper_fragment - 0x0000000040157d58 0x3f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x0000000040157d97 0x1 + 0x000000004016a30c 0x3f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004016a34b 0x1 .text.ssl_buffer_message - 0x0000000040157d98 0x23c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a34c 0x23c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x250 (size before relaxing) .text.ssl_transform_init - 0x0000000040157fd4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a588 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x38 (size before relaxing) .text.ssl_update_checksum_md5sha1 - 0x0000000040158000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a5b4 0x23 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x27 (size before relaxing) - *fill* 0x0000000040158023 0x1 + *fill* 0x000000004016a5d7 0x1 .text.ssl_update_checksum_sha256 - 0x0000000040158024 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x000000004015803a 0x2 + 0x000000004016a5d8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004016a5ee 0x2 .text.ssl_update_checksum_start - 0x000000004015803c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a5f0 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x4a (size before relaxing) - *fill* 0x000000004015807a 0x2 + *fill* 0x000000004016a62e 0x2 .text.ssl_update_checksum_sha384 - 0x000000004015807c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x0000000040158092 0x2 + 0x000000004016a630 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004016a646 0x2 .text.mbedtls_ssl_derive_keys - 0x0000000040158094 0x40e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016a648 0x40e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x446 (size before relaxing) - 0x0000000040158094 mbedtls_ssl_derive_keys - *fill* 0x00000000401584a2 0x2 + 0x000000004016a648 mbedtls_ssl_derive_keys + *fill* 0x000000004016aa56 0x2 .text.mbedtls_ssl_psk_derive_premaster - 0x00000000401584a4 0x12c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016aa58 0x12c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x130 (size before relaxing) - 0x00000000401584a4 mbedtls_ssl_psk_derive_premaster + 0x000000004016aa58 mbedtls_ssl_psk_derive_premaster .text.mbedtls_ssl_flush_output - 0x00000000401585d0 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x00000000401585d0 mbedtls_ssl_flush_output + 0x000000004016ab84 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016ab84 mbedtls_ssl_flush_output .text.mbedtls_ssl_recv_flight_completed - 0x0000000040158644 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016abf8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x68 (size before relaxing) - 0x0000000040158644 mbedtls_ssl_recv_flight_completed + 0x000000004016abf8 mbedtls_ssl_recv_flight_completed .text.mbedtls_ssl_send_flight_completed - 0x00000000401586a4 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016ac58 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x45 (size before relaxing) - 0x00000000401586a4 mbedtls_ssl_send_flight_completed - *fill* 0x00000000401586e5 0x3 + 0x000000004016ac58 mbedtls_ssl_send_flight_completed + *fill* 0x000000004016ac99 0x3 .text.mbedtls_ssl_update_handshake_status - 0x00000000401586e8 0x83 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x00000000401586e8 mbedtls_ssl_update_handshake_status - *fill* 0x000000004015876b 0x1 + 0x000000004016ac9c 0x83 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016ac9c mbedtls_ssl_update_handshake_status + *fill* 0x000000004016ad1f 0x1 .text.mbedtls_ssl_dtls_replay_update - 0x000000004015876c 0x108 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x000000004015876c mbedtls_ssl_dtls_replay_update + 0x000000004016ad20 0x108 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016ad20 mbedtls_ssl_dtls_replay_update .text.mbedtls_ssl_optimize_checksum - 0x0000000040158874 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040158874 mbedtls_ssl_optimize_checksum - *fill* 0x00000000401588aa 0x2 + 0x000000004016ae28 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016ae28 mbedtls_ssl_optimize_checksum + *fill* 0x000000004016ae5e 0x2 .text.mbedtls_ssl_reset_checksum - 0x00000000401588ac 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016ae60 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x3e (size before relaxing) - 0x00000000401588ac mbedtls_ssl_reset_checksum - *fill* 0x00000000401588de 0x2 + 0x000000004016ae60 mbedtls_ssl_reset_checksum + *fill* 0x000000004016ae92 0x2 .text.mbedtls_ssl_session_init - 0x00000000401588e0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x00000000401588e0 mbedtls_ssl_session_init - *fill* 0x00000000401588f2 0x2 + 0x000000004016ae94 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016ae94 mbedtls_ssl_session_init + *fill* 0x000000004016aea6 0x2 .text.mbedtls_ssl_init - 0x00000000401588f4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x00000000401588f4 mbedtls_ssl_init - *fill* 0x0000000040158906 0x2 + 0x000000004016aea8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016aea8 mbedtls_ssl_init + *fill* 0x000000004016aeba 0x2 .text.mbedtls_ssl_conf_own_cert - 0x0000000040158908 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040158908 mbedtls_ssl_conf_own_cert + 0x000000004016aebc 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016aebc mbedtls_ssl_conf_own_cert .text.mbedtls_ssl_conf_dh_param_bin - 0x000000004015891c 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016aed0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x40 (size before relaxing) - 0x000000004015891c mbedtls_ssl_conf_dh_param_bin + 0x000000004016aed0 mbedtls_ssl_conf_dh_param_bin .text.mbedtls_ssl_set_hostname - 0x0000000040158954 0x76 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016af08 0x76 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x7e (size before relaxing) - 0x0000000040158954 mbedtls_ssl_set_hostname - *fill* 0x00000000401589ca 0x2 + 0x000000004016af08 mbedtls_ssl_set_hostname + *fill* 0x000000004016af7e 0x2 .text.mbedtls_ssl_conf_alpn_protocols - 0x00000000401589cc 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x00000000401589cc mbedtls_ssl_conf_alpn_protocols - *fill* 0x0000000040158a09 0x3 + 0x000000004016af80 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016af80 mbedtls_ssl_conf_alpn_protocols + *fill* 0x000000004016afbd 0x3 .text.mbedtls_ssl_get_record_expansion - 0x0000000040158a0c 0x69 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040158a0c mbedtls_ssl_get_record_expansion - *fill* 0x0000000040158a75 0x3 + 0x000000004016afc0 0x69 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016afc0 mbedtls_ssl_get_record_expansion + *fill* 0x000000004016b029 0x3 .text.mbedtls_ssl_get_max_frag_len - 0x0000000040158a78 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b02c 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x3f (size before relaxing) - 0x0000000040158a78 mbedtls_ssl_get_max_frag_len - *fill* 0x0000000040158aac 0x0 + 0x000000004016b02c mbedtls_ssl_get_max_frag_len + *fill* 0x000000004016b060 0x0 .text.ssl_get_remaining_payload_in_datagram - 0x0000000040158aac 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b060 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x54 (size before relaxing) .text.mbedtls_ssl_get_max_out_record_payload - 0x0000000040158af8 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b0ac 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x46 (size before relaxing) - 0x0000000040158af8 mbedtls_ssl_get_max_out_record_payload - *fill* 0x0000000040158b36 0x2 + 0x000000004016b0ac mbedtls_ssl_get_max_out_record_payload + *fill* 0x000000004016b0ea 0x2 .text.mbedtls_ssl_handshake_step - 0x0000000040158b38 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b0ec 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x44 (size before relaxing) - 0x0000000040158b38 mbedtls_ssl_handshake_step + 0x000000004016b0ec mbedtls_ssl_handshake_step .text.mbedtls_ssl_handshake - 0x0000000040158b74 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040158b74 mbedtls_ssl_handshake + 0x000000004016b128 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b128 mbedtls_ssl_handshake .text.mbedtls_ssl_transform_free - 0x0000000040158ba4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b158 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x38 (size before relaxing) - 0x0000000040158ba4 mbedtls_ssl_transform_free + 0x000000004016b158 mbedtls_ssl_transform_free .text.mbedtls_ssl_handshake_free - 0x0000000040158bd0 0x7b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b184 0x7b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xaa (size before relaxing) - 0x0000000040158bd0 mbedtls_ssl_handshake_free - *fill* 0x0000000040158c4b 0x1 + 0x000000004016b184 mbedtls_ssl_handshake_free + *fill* 0x000000004016b1ff 0x1 .text.ssl_handshake_wrapup_free_hs_transform - 0x0000000040158c4c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b200 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x3a (size before relaxing) - *fill* 0x0000000040158c7a 0x2 + *fill* 0x000000004016b22e 0x2 .text.mbedtls_ssl_session_free - 0x0000000040158c7c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b230 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x2f (size before relaxing) - 0x0000000040158c7c mbedtls_ssl_session_free - *fill* 0x0000000040158ca4 0x0 + 0x000000004016b230 mbedtls_ssl_session_free + *fill* 0x000000004016b258 0x0 .text.mbedtls_ssl_handshake_wrapup - 0x0000000040158ca4 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b258 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x7c (size before relaxing) - 0x0000000040158ca4 mbedtls_ssl_handshake_wrapup + 0x000000004016b258 mbedtls_ssl_handshake_wrapup .text.mbedtls_ssl_free - 0x0000000040158d18 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b2cc 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xcb (size before relaxing) - 0x0000000040158d18 mbedtls_ssl_free - *fill* 0x0000000040158dc0 0x0 + 0x000000004016b2cc mbedtls_ssl_free + *fill* 0x000000004016b374 0x0 .text.mbedtls_ssl_config_init - 0x0000000040158dc0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040158dc0 mbedtls_ssl_config_init - *fill* 0x0000000040158dd2 0x2 + 0x000000004016b374 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b374 mbedtls_ssl_config_init + *fill* 0x000000004016b386 0x2 .text.mbedtls_ssl_config_defaults - 0x0000000040158dd4 0x12c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b388 0x12c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x138 (size before relaxing) - 0x0000000040158dd4 mbedtls_ssl_config_defaults + 0x000000004016b388 mbedtls_ssl_config_defaults .text.mbedtls_ssl_config_free - 0x0000000040158f00 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b4b4 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x6e (size before relaxing) - 0x0000000040158f00 mbedtls_ssl_config_free - *fill* 0x0000000040158f56 0x2 + 0x000000004016b4b4 mbedtls_ssl_config_free + *fill* 0x000000004016b50a 0x2 .text.mbedtls_ssl_sig_from_pk - 0x0000000040158f58 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b50c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x29 (size before relaxing) - 0x0000000040158f58 mbedtls_ssl_sig_from_pk - *fill* 0x0000000040158f7d 0x3 + 0x000000004016b50c mbedtls_ssl_sig_from_pk + *fill* 0x000000004016b531 0x3 .text.ssl_handshake_params_init - 0x0000000040158f80 0x77 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b534 0x77 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x9b (size before relaxing) - *fill* 0x0000000040158ff7 0x1 + *fill* 0x000000004016b5ab 0x1 .text.ssl_handshake_init - 0x0000000040158ff8 0xce esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b5ac 0xce esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xea (size before relaxing) - *fill* 0x00000000401590c6 0x2 + *fill* 0x000000004016b67a 0x2 .text.ssl_session_reset_int - 0x00000000401590c8 0x135 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b67c 0x135 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x149 (size before relaxing) - *fill* 0x00000000401591fd 0x3 + *fill* 0x000000004016b7b1 0x3 .text.ssl_handle_possible_reconnect - 0x0000000040159200 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b7b4 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.mbedtls_ssl_setup - 0x0000000040159260 0x7d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b814 0x7d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x8d (size before relaxing) - 0x0000000040159260 mbedtls_ssl_setup - *fill* 0x00000000401592dd 0x3 + 0x000000004016b814 mbedtls_ssl_setup + *fill* 0x000000004016b891 0x3 .text.ssl_start_renegotiation - 0x00000000401592e0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b894 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x44 (size before relaxing) .text.mbedtls_ssl_md_alg_from_hash - 0x0000000040159320 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040159320 mbedtls_ssl_md_alg_from_hash - *fill* 0x0000000040159359 0x3 + 0x000000004016b8d4 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b8d4 mbedtls_ssl_md_alg_from_hash + *fill* 0x000000004016b90d 0x3 .text.mbedtls_ssl_hash_from_md_alg - 0x000000004015935c 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x000000004015935c mbedtls_ssl_hash_from_md_alg - *fill* 0x0000000040159395 0x3 + 0x000000004016b910 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b910 mbedtls_ssl_hash_from_md_alg + *fill* 0x000000004016b949 0x3 .text.mbedtls_ssl_check_cert_usage - 0x0000000040159398 0x72 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040159398 mbedtls_ssl_check_cert_usage - *fill* 0x000000004015940a 0x2 + 0x000000004016b94c 0x72 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b94c mbedtls_ssl_check_cert_usage + *fill* 0x000000004016b9be 0x2 .text.ssl_encrypt_buf - 0x000000004015940c 0x378 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016b9c0 0x378 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x39c (size before relaxing) .text.mbedtls_ssl_write_record - 0x0000000040159784 0x11c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016bd38 0x11c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x124 (size before relaxing) - 0x0000000040159784 mbedtls_ssl_write_record + 0x000000004016bd38 mbedtls_ssl_write_record .text.mbedtls_ssl_flight_transmit - 0x00000000401598a0 0x1ee esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016be54 0x1ee esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x1fa (size before relaxing) - 0x00000000401598a0 mbedtls_ssl_flight_transmit - *fill* 0x0000000040159a8e 0x2 + 0x000000004016be54 mbedtls_ssl_flight_transmit + *fill* 0x000000004016c042 0x2 .text.mbedtls_ssl_resend - 0x0000000040159a90 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c044 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x10 (size before relaxing) - 0x0000000040159a90 mbedtls_ssl_resend + 0x000000004016c044 mbedtls_ssl_resend .text.mbedtls_ssl_prepare_handshake_record - 0x0000000040159a9c 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c050 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xc8 (size before relaxing) - 0x0000000040159a9c mbedtls_ssl_prepare_handshake_record + 0x000000004016c050 mbedtls_ssl_prepare_handshake_record .text.mbedtls_ssl_handle_message_type - 0x0000000040159b5c 0xdc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c110 0xdc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xe0 (size before relaxing) - 0x0000000040159b5c mbedtls_ssl_handle_message_type + 0x000000004016c110 mbedtls_ssl_handle_message_type .text.mbedtls_ssl_write_handshake_msg - 0x0000000040159c38 0x161 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c1ec 0x161 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x165 (size before relaxing) - 0x0000000040159c38 mbedtls_ssl_write_handshake_msg - *fill* 0x0000000040159d99 0x3 + 0x000000004016c1ec mbedtls_ssl_write_handshake_msg + *fill* 0x000000004016c34d 0x3 .text.ssl_write_hello_request - 0x0000000040159d9c 0x21 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x0000000040159dbd 0x3 + 0x000000004016c350 0x21 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004016c371 0x3 .text.ssl_resend_hello_request - 0x0000000040159dc0 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x0000000040159e01 0x3 + 0x000000004016c374 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004016c3b5 0x3 .text.mbedtls_ssl_fetch_input - 0x0000000040159e04 0x1be esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c3b8 0x1be esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x1ce (size before relaxing) - 0x0000000040159e04 mbedtls_ssl_fetch_input - *fill* 0x0000000040159fc2 0x2 + 0x000000004016c3b8 mbedtls_ssl_fetch_input + *fill* 0x000000004016c576 0x2 .text.mbedtls_ssl_renegotiate - 0x0000000040159fc4 0x75 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c578 0x75 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x79 (size before relaxing) - 0x0000000040159fc4 mbedtls_ssl_renegotiate - *fill* 0x000000004015a039 0x3 + 0x000000004016c578 mbedtls_ssl_renegotiate + *fill* 0x000000004016c5ed 0x3 .text.ssl_check_ctr_renegotiate - 0x000000004015a03c 0x81 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x000000004015a0bd 0x3 + 0x000000004016c5f0 0x81 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004016c671 0x3 .text.mbedtls_ssl_write_certificate - 0x000000004015a0c0 0x123 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x000000004015a0c0 mbedtls_ssl_write_certificate - *fill* 0x000000004015a1e3 0x1 + 0x000000004016c674 0x123 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c674 mbedtls_ssl_write_certificate + *fill* 0x000000004016c797 0x1 .text.mbedtls_ssl_write_change_cipher_spec - 0x000000004015a1e4 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x000000004015a1e4 mbedtls_ssl_write_change_cipher_spec - *fill* 0x000000004015a209 0x3 + 0x000000004016c798 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c798 mbedtls_ssl_write_change_cipher_spec + *fill* 0x000000004016c7bd 0x3 .text.mbedtls_ssl_write_finished - 0x000000004015a20c 0x13e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c7c0 0x13e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x142 (size before relaxing) - 0x000000004015a20c mbedtls_ssl_write_finished - *fill* 0x000000004015a34a 0x2 + 0x000000004016c7c0 mbedtls_ssl_write_finished + *fill* 0x000000004016c8fe 0x2 .text.mbedtls_ssl_send_alert_message - 0x000000004015a34c 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c900 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x41 (size before relaxing) - 0x000000004015a34c mbedtls_ssl_send_alert_message - *fill* 0x000000004015a389 0x3 + 0x000000004016c900 mbedtls_ssl_send_alert_message + *fill* 0x000000004016c93d 0x3 .text.ssl_parse_certificate_chain - 0x000000004015a38c 0x20e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016c940 0x20e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x22e (size before relaxing) - *fill* 0x000000004015a59a 0x2 + *fill* 0x000000004016cb4e 0x2 .text.ssl_write_real - 0x000000004015a59c 0x5a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016cb50 0x5a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x5e (size before relaxing) - *fill* 0x000000004015a5f6 0x2 + *fill* 0x000000004016cbaa 0x2 .text.ssl_write_split - 0x000000004015a5f8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016cbac 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x64 (size before relaxing) .text.mbedtls_ssl_write - 0x000000004015a658 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016cc0c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x44 (size before relaxing) - 0x000000004015a658 mbedtls_ssl_write + 0x000000004016cc0c mbedtls_ssl_write .text.ssl_decrypt_buf - 0x000000004015a694 0x5dc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016cc48 0x5dc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x60c (size before relaxing) .text.ssl_prepare_record_content - 0x000000004015ac70 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016d224 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x3e (size before relaxing) - *fill* 0x000000004015acaa 0x2 + *fill* 0x000000004016d25e 0x2 .text.ssl_parse_record_header - 0x000000004015acac 0x161 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016d260 0x161 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x169 (size before relaxing) - *fill* 0x000000004015ae0d 0x3 + *fill* 0x000000004016d3c1 0x3 .text.ssl_get_next_record - 0x000000004015ae10 0x162 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016d3c4 0x162 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x172 (size before relaxing) - *fill* 0x000000004015af72 0x2 + *fill* 0x000000004016d526 0x2 .text.mbedtls_ssl_read_record - 0x000000004015af74 0xa3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016d528 0xa3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xb7 (size before relaxing) - 0x000000004015af74 mbedtls_ssl_read_record - *fill* 0x000000004015b017 0x1 + 0x000000004016d528 mbedtls_ssl_read_record + *fill* 0x000000004016d5cb 0x1 .text.mbedtls_ssl_parse_certificate - 0x000000004015b018 0x20e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016d5cc 0x20e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x21e (size before relaxing) - 0x000000004015b018 mbedtls_ssl_parse_certificate - *fill* 0x000000004015b226 0x2 + 0x000000004016d5cc mbedtls_ssl_parse_certificate + *fill* 0x000000004016d7da 0x2 .text.mbedtls_ssl_parse_change_cipher_spec - 0x000000004015b228 0x88 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016d7dc 0x88 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x94 (size before relaxing) - 0x000000004015b228 mbedtls_ssl_parse_change_cipher_spec + 0x000000004016d7dc mbedtls_ssl_parse_change_cipher_spec .text.mbedtls_ssl_parse_finished - 0x000000004015b2b0 0x112 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016d864 0x112 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x11a (size before relaxing) - 0x000000004015b2b0 mbedtls_ssl_parse_finished - *fill* 0x000000004015b3c2 0x2 + 0x000000004016d864 mbedtls_ssl_parse_finished + *fill* 0x000000004016d976 0x2 .text.mbedtls_ssl_read - 0x000000004015b3c4 0x256 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016d978 0x256 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x266 (size before relaxing) - 0x000000004015b3c4 mbedtls_ssl_read - *fill* 0x000000004015b61a 0x2 + 0x000000004016d978 mbedtls_ssl_read + *fill* 0x000000004016dbce 0x2 .text.mbedtls_ssl_set_calc_verify_md - 0x000000004015b61c 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x000000004015b61c mbedtls_ssl_set_calc_verify_md - *fill* 0x000000004015b669 0x3 + 0x000000004016dbd0 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016dbd0 mbedtls_ssl_set_calc_verify_md + *fill* 0x000000004016dc1d 0x3 .text.mbedtls_ssl_get_key_exchange_md_ssl_tls - 0x000000004015b66c 0x97 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016dc20 0x97 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0xbf (size before relaxing) - 0x000000004015b66c mbedtls_ssl_get_key_exchange_md_ssl_tls - *fill* 0x000000004015b703 0x1 + 0x000000004016dc20 mbedtls_ssl_get_key_exchange_md_ssl_tls + *fill* 0x000000004016dcb7 0x1 .text.mbedtls_ssl_get_key_exchange_md_tls1_2 - 0x000000004015b704 0x6a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004016dcb8 0x6a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) 0x86 (size before relaxing) - 0x000000004015b704 mbedtls_ssl_get_key_exchange_md_tls1_2 - *fill* 0x000000004015b76e 0x2 + 0x000000004016dcb8 mbedtls_ssl_get_key_exchange_md_tls1_2 + *fill* 0x000000004016dd22 0x2 .text.net_would_block - 0x000000004015b770 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x000000004016dd24 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) 0x21 (size before relaxing) - *fill* 0x000000004015b78d 0x3 + *fill* 0x000000004016dd41 0x3 .text.mbedtls_net_recv - 0x000000004015b790 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x000000004016dd44 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) 0x6c (size before relaxing) - 0x000000004015b790 mbedtls_net_recv + 0x000000004016dd44 mbedtls_net_recv .text.mbedtls_net_send - 0x000000004015b7f0 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x000000004016dda4 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) 0x6c (size before relaxing) - 0x000000004015b7f0 mbedtls_net_send + 0x000000004016dda4 mbedtls_net_send .text.mbedtls_ssl_ciphersuite_from_id - 0x000000004015b850 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x000000004015b850 mbedtls_ssl_ciphersuite_from_id - *fill* 0x000000004015b86a 0x2 + 0x000000004016de04 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000004016de04 mbedtls_ssl_ciphersuite_from_id + *fill* 0x000000004016de1e 0x2 .text.mbedtls_ssl_list_ciphersuites - 0x000000004015b86c 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000004016de20 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) 0x49 (size before relaxing) - 0x000000004015b86c mbedtls_ssl_list_ciphersuites - *fill* 0x000000004015b8b1 0x3 + 0x000000004016de20 mbedtls_ssl_list_ciphersuites + *fill* 0x000000004016de65 0x3 .text.mbedtls_ssl_get_ciphersuite_sig_pk_alg - 0x000000004015b8b4 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x000000004015b8b4 mbedtls_ssl_get_ciphersuite_sig_pk_alg - *fill* 0x000000004015b8de 0x2 + 0x000000004016de68 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000004016de68 mbedtls_ssl_get_ciphersuite_sig_pk_alg + *fill* 0x000000004016de92 0x2 .text.ssl_parse_server_psk_hint - 0x000000004015b8e0 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015b919 0x3 + 0x000000004016de94 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016decd 0x3 .text.ssl_write_renegotiation_ext - 0x000000004015b91c 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015b972 0x2 + 0x000000004016ded0 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016df26 0x2 .text.ssl_write_session_ticket_ext - 0x000000004015b974 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016df28 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) .text.ssl_generate_random - 0x000000004015b9cc 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016df80 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) .text.ssl_write_hostname_ext - 0x000000004015ba18 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015ba7e 0x2 + 0x000000004016dfcc 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016e032 0x2 .text.ssl_write_alpn_ext - 0x000000004015ba80 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015bb22 0x2 + 0x000000004016e034 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016e0d6 0x2 .text.ssl_write_signature_algorithms_ext - 0x000000004015bb24 0x9e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016e0d8 0x9e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xa2 (size before relaxing) - *fill* 0x000000004015bbc2 0x2 + *fill* 0x000000004016e176 0x2 .text.ssl_write_supported_elliptic_curves_ext - 0x000000004015bbc4 0x93 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015bc57 0x1 + 0x000000004016e178 0x93 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016e20b 0x1 .text.ssl_write_client_hello - 0x000000004015bc58 0x2bc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016e20c 0x2bc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x2e8 (size before relaxing) .text.ssl_parse_renegotiation_info - 0x000000004015bf14 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016e4c8 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xc8 (size before relaxing) .text.ssl_parse_max_fragment_length_ext - 0x000000004015bfd8 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016e58c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x32 (size before relaxing) - *fill* 0x000000004015c006 0x2 + *fill* 0x000000004016e5ba 0x2 .text.ssl_parse_truncated_hmac_ext - 0x000000004015c008 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015c033 0x1 + 0x000000004016e5bc 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016e5e7 0x1 .text.ssl_parse_encrypt_then_mac_ext - 0x000000004015c034 0x2f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015c063 0x1 + 0x000000004016e5e8 0x2f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016e617 0x1 .text.ssl_parse_extended_ms_ext - 0x000000004015c064 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015c096 0x2 + 0x000000004016e618 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016e64a 0x2 .text.ssl_parse_session_ticket_ext - 0x000000004015c098 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015c0c6 0x2 + 0x000000004016e64c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016e67a 0x2 .text.ssl_parse_supported_point_formats_ext - 0x000000004015c0c8 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015c115 0x3 + 0x000000004016e67c 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016e6c9 0x3 .text.ssl_parse_certificate_request - 0x000000004015c118 0x110 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016e6cc 0x110 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x11c (size before relaxing) .text.ssl_parse_alpn_ext - 0x000000004015c228 0xac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016e7dc 0xac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xb4 (size before relaxing) .text.ssl_parse_hello_verify_request - 0x000000004015c2d4 0xbe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016e888 0xbe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xce (size before relaxing) - *fill* 0x000000004015c392 0x2 + *fill* 0x000000004016e946 0x2 .text.ssl_parse_server_hello - 0x000000004015c394 0x478 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016e948 0x478 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x4ac (size before relaxing) .text.ssl_parse_server_hello_done - 0x000000004015c80c 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016edc0 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x70 (size before relaxing) .text.ssl_check_server_ecdh_params - 0x000000004015c874 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016ee28 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x2e (size before relaxing) - *fill* 0x000000004015c89e 0x2 + *fill* 0x000000004016ee52 0x2 .text.ssl_get_ecdh_params_from_cert - 0x000000004015c8a0 0x51 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016ee54 0x51 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x59 (size before relaxing) - *fill* 0x000000004015c8f1 0x3 + *fill* 0x000000004016eea5 0x3 .text.ssl_parse_server_dh_params - 0x000000004015c8f4 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x000000004015c91d 0x3 + 0x000000004016eea8 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004016eed1 0x3 .text.ssl_parse_server_ecdh_params - 0x000000004015c920 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016eed4 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x2b (size before relaxing) - *fill* 0x000000004015c947 0x1 + *fill* 0x000000004016eefb 0x1 .text.ssl_parse_signature_algorithm - 0x000000004015c948 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016eefc 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x69 (size before relaxing) - *fill* 0x000000004015c9a9 0x3 + *fill* 0x000000004016ef5d 0x3 .text.ssl_parse_server_key_exchange - 0x000000004015c9ac 0x31c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016ef60 0x31c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x354 (size before relaxing) .text.ssl_write_encrypted_pms - 0x000000004015ccc8 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016f27c 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0xdc (size before relaxing) .text.ssl_write_client_key_exchange - 0x000000004015cd9c 0x230 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016f350 0x230 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x24c (size before relaxing) .text.ssl_write_certificate_verify - 0x000000004015cfcc 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016f580 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x1a8 (size before relaxing) .text.ssl_parse_new_session_ticket - 0x000000004015d16c 0x111 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016f720 0x111 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x125 (size before relaxing) - *fill* 0x000000004015d27d 0x3 + *fill* 0x000000004016f831 0x3 .text.mbedtls_ssl_handshake_client_step - 0x000000004015d280 0x136 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004016f834 0x136 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) 0x156 (size before relaxing) - 0x000000004015d280 mbedtls_ssl_handshake_client_step - *fill* 0x000000004015d3b6 0x2 + 0x000000004016f834 mbedtls_ssl_handshake_client_step + *fill* 0x000000004016f96a 0x2 .text.ssl_write_renegotiation_ext - 0x000000004015d3b8 0x7e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x000000004015d436 0x2 + 0x000000004016f96c 0x7e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004016f9ea 0x2 .text.ssl_parse_servername_ext - 0x000000004015d438 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004016f9ec 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xb9 (size before relaxing) - *fill* 0x000000004015d4e9 0x3 + *fill* 0x000000004016fa9d 0x3 .text.ssl_parse_renegotiation_info - 0x000000004015d4ec 0x84 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004016faa0 0x84 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x88 (size before relaxing) .text.ssl_parse_supported_point_formats - 0x000000004015d570 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004016fb24 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) .text.ssl_parse_max_fragment_length_ext - 0x000000004015d5b0 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x000000004015d5d7 0x1 + 0x000000004016fb64 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004016fb8b 0x1 .text.ssl_parse_truncated_hmac_ext - 0x000000004015d5d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004016fb8c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) .text.ssl_parse_encrypt_then_mac_ext - 0x000000004015d608 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x000000004015d63e 0x2 + 0x000000004016fbbc 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004016fbf2 0x2 .text.ssl_parse_extended_ms_ext - 0x000000004015d640 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x000000004015d67a 0x2 + 0x000000004016fbf4 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004016fc2e 0x2 .text.ssl_parse_client_psk_identity - 0x000000004015d67c 0xf5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004016fc30 0xf5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xf9 (size before relaxing) - *fill* 0x000000004015d771 0x3 + *fill* 0x000000004016fd25 0x3 .text.ssl_parse_signature_algorithms_ext - 0x000000004015d774 0x73 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004016fd28 0x73 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x83 (size before relaxing) - *fill* 0x000000004015d7e7 0x1 + *fill* 0x000000004016fd9b 0x1 .text.ssl_parse_supported_elliptic_curves - 0x000000004015d7e8 0xbe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004016fd9c 0xbe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xce (size before relaxing) - *fill* 0x000000004015d8a6 0x2 + *fill* 0x000000004016fe5a 0x2 .text.ssl_parse_session_ticket_ext - 0x000000004015d8a8 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004016fe5c 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x98 (size before relaxing) .text.ssl_parse_alpn_ext - 0x000000004015d934 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004016fee8 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xe4 (size before relaxing) .text.ssl_write_alpn_ext - 0x000000004015da14 0x63 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x000000004015da77 0x1 + 0x000000004016ffc8 0x63 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004017002b 0x1 .text.ssl_pick_cert - 0x000000004015da78 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004017002c 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x98 (size before relaxing) .text.ssl_ciphersuite_match - 0x000000004015db04 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401700b8 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xe0 (size before relaxing) .text.ssl_parse_client_hello - 0x000000004015dbdc 0x780 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000040170190 0x780 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x79c (size before relaxing) .text.ssl_write_hello_verify_request - 0x000000004015e35c 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000040170910 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x94 (size before relaxing) .text.ssl_write_new_session_ticket - 0x000000004015e3e8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004017099c 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) .text.ssl_write_encrypt_then_mac_ext - 0x000000004015e468 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000040170a1c 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x4e (size before relaxing) - *fill* 0x000000004015e4b2 0x2 + *fill* 0x0000000040170a66 0x2 .text.ssl_write_server_hello - 0x000000004015e4b4 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000040170a68 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x218 (size before relaxing) .text.ssl_get_ecdh_params_from_cert - 0x000000004015e6b0 0x55 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x000000004015e705 0x3 + 0x0000000040170c64 0x55 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x0000000040170cb9 0x3 .text.ssl_prepare_server_key_exchange - 0x000000004015e708 0x25c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000040170cbc 0x25c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x27c (size before relaxing) .text.ssl_write_server_key_exchange - 0x000000004015e964 0xad esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x000000004015ea11 0x3 + 0x0000000040170f18 0xad esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x0000000040170fc5 0x3 .text.ssl_write_certificate_request - 0x000000004015ea14 0x18c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000040170fc8 0x18c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x190 (size before relaxing) .text.ssl_write_server_hello_done - 0x000000004015eba0 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000040171154 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x4a (size before relaxing) - *fill* 0x000000004015ebe2 0x2 + *fill* 0x0000000040171196 0x2 .text.ssl_parse_client_dh_public - 0x000000004015ebe4 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x000000004015ec31 0x3 + 0x0000000040171198 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x00000000401711e5 0x3 .text.ssl_decrypt_encrypted_pms - 0x000000004015ec34 0xb3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x00000000401711e8 0xb3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xb7 (size before relaxing) - *fill* 0x000000004015ece7 0x1 + *fill* 0x000000004017129b 0x1 .text.ssl_parse_encrypted_pms - 0x000000004015ece8 0xdc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x000000004017129c 0xdc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0xe4 (size before relaxing) .text.ssl_parse_client_key_exchange - 0x000000004015edc4 0x1fd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000040171378 0x1fd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x229 (size before relaxing) - *fill* 0x000000004015efc1 0x3 + *fill* 0x0000000040171575 0x3 .text.ssl_parse_certificate_verify - 0x000000004015efc4 0x19c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000040171578 0x19c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x1a8 (size before relaxing) .text.mbedtls_ssl_handshake_server_step - 0x000000004015f160 0x136 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000040171714 0x136 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) 0x152 (size before relaxing) - 0x000000004015f160 mbedtls_ssl_handshake_server_step - *fill* 0x000000004015f296 0x2 + 0x0000000040171714 mbedtls_ssl_handshake_server_step + *fill* 0x000000004017184a 0x2 .text.dhm_read_bignum - 0x000000004015f298 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x000000004017184c 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x4d (size before relaxing) - *fill* 0x000000004015f2e1 0x3 + *fill* 0x0000000040171895 0x3 .text.dhm_check_range - 0x000000004015f2e4 0x57 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040171898 0x57 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x6f (size before relaxing) - *fill* 0x000000004015f33b 0x1 + *fill* 0x00000000401718ef 0x1 .text.dhm_update_blinding - 0x000000004015f33c 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x00000000401718f0 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x11a (size before relaxing) - *fill* 0x000000004015f426 0x2 + *fill* 0x00000000401719da 0x2 .text.mbedtls_dhm_init - 0x000000004015f428 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) - 0x000000004015f428 mbedtls_dhm_init - *fill* 0x000000004015f43a 0x2 + 0x00000000401719dc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x00000000401719dc mbedtls_dhm_init + *fill* 0x00000000401719ee 0x2 .text.mbedtls_dhm_read_params - 0x000000004015f43c 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x00000000401719f0 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x56 (size before relaxing) - 0x000000004015f43c mbedtls_dhm_read_params - *fill* 0x000000004015f482 0x2 + 0x00000000401719f0 mbedtls_dhm_read_params + *fill* 0x0000000040171a36 0x2 .text.mbedtls_dhm_make_params - 0x000000004015f484 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040171a38 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x130 (size before relaxing) - 0x000000004015f484 mbedtls_dhm_make_params + 0x0000000040171a38 mbedtls_dhm_make_params .text.mbedtls_dhm_set_group - 0x000000004015f590 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040171b44 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x38 (size before relaxing) - 0x000000004015f590 mbedtls_dhm_set_group + 0x0000000040171b44 mbedtls_dhm_set_group .text.mbedtls_dhm_read_public - 0x000000004015f5c4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040171b78 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x32 (size before relaxing) - 0x000000004015f5c4 mbedtls_dhm_read_public - *fill* 0x000000004015f5f2 0x2 + 0x0000000040171b78 mbedtls_dhm_read_public + *fill* 0x0000000040171ba6 0x2 .text.mbedtls_dhm_make_public - 0x000000004015f5f4 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040171ba8 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0xcc (size before relaxing) - 0x000000004015f5f4 mbedtls_dhm_make_public + 0x0000000040171ba8 mbedtls_dhm_make_public .text.mbedtls_dhm_calc_secret - 0x000000004015f6b0 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040171c64 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0xe6 (size before relaxing) - 0x000000004015f6b0 mbedtls_dhm_calc_secret - *fill* 0x000000004015f776 0x2 + 0x0000000040171c64 mbedtls_dhm_calc_secret + *fill* 0x0000000040171d2a 0x2 .text.mbedtls_dhm_free - 0x000000004015f778 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000040171d2c 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) 0x6e (size before relaxing) - 0x000000004015f778 mbedtls_dhm_free - *fill* 0x000000004015f7c3 0x1 + 0x0000000040171d2c mbedtls_dhm_free + *fill* 0x0000000040171d77 0x1 .text.ecdh_gen_public_restartable - 0x000000004015f7c4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171d78 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x2c (size before relaxing) .text.ecdh_compute_shared_restartable - 0x000000004015f7ec 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171da0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x53 (size before relaxing) - *fill* 0x000000004015f830 0x0 + *fill* 0x0000000040171de4 0x0 .text.ecdh_init_internal - 0x000000004015f830 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171de4 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x3a (size before relaxing) - *fill* 0x000000004015f85a 0x2 + *fill* 0x0000000040171e0e 0x2 .text.ecdh_setup_internal - 0x000000004015f85c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - *fill* 0x000000004015f872 0x2 + 0x0000000040171e10 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + *fill* 0x0000000040171e26 0x2 .text.ecdh_free_internal - 0x000000004015f874 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171e28 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x3a (size before relaxing) - *fill* 0x000000004015f89e 0x2 + *fill* 0x0000000040171e52 0x2 .text.ecdh_read_params_internal - 0x000000004015f8a0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171e54 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x1c (size before relaxing) .text.ecdh_read_public_internal - 0x000000004015f8b8 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171e6c 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x28 (size before relaxing) .text.ecdh_get_params_internal - 0x000000004015f8dc 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171e90 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x46 (size before relaxing) - *fill* 0x000000004015f916 0x2 + *fill* 0x0000000040171eca 0x2 .text.mbedtls_ecdh_gen_public - 0x000000004015f918 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x000000004015f918 mbedtls_ecdh_gen_public - *fill* 0x000000004015f931 0x3 + 0x0000000040171ecc 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171ecc mbedtls_ecdh_gen_public + *fill* 0x0000000040171ee5 0x3 .text.ecdh_make_params_internal - 0x000000004015f934 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171ee8 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x5c (size before relaxing) .text.ecdh_make_public_internal - 0x000000004015f988 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171f3c 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x40 (size before relaxing) .text.mbedtls_ecdh_compute_shared - 0x000000004015f9c0 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x000000004015f9c0 mbedtls_ecdh_compute_shared - *fill* 0x000000004015f9dd 0x3 + 0x0000000040171f74 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171f74 mbedtls_ecdh_compute_shared + *fill* 0x0000000040171f91 0x3 .text.ecdh_calc_secret_internal - 0x000000004015f9e0 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171f94 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x70 (size before relaxing) .text.mbedtls_ecdh_init - 0x000000004015fa44 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040171ff8 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x37 (size before relaxing) - 0x000000004015fa44 mbedtls_ecdh_init - *fill* 0x000000004015fa6b 0x1 + 0x0000000040171ff8 mbedtls_ecdh_init + *fill* 0x000000004017201f 0x1 .text.mbedtls_ecdh_setup - 0x000000004015fa6c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x000000004015fa6c mbedtls_ecdh_setup - *fill* 0x000000004015fa7d 0x3 + 0x0000000040172020 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040172020 mbedtls_ecdh_setup + *fill* 0x0000000040172031 0x3 .text.mbedtls_ecdh_free - 0x000000004015fa80 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040172034 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x32 (size before relaxing) - 0x000000004015fa80 mbedtls_ecdh_free - *fill* 0x000000004015faa6 0x2 + 0x0000000040172034 mbedtls_ecdh_free + *fill* 0x000000004017205a 0x2 .text.mbedtls_ecdh_make_params - 0x000000004015faa8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x000000004015faa8 mbedtls_ecdh_make_params + 0x000000004017205c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004017205c mbedtls_ecdh_make_params .text.mbedtls_ecdh_read_params - 0x000000004015fac8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004017207c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x30 (size before relaxing) - 0x000000004015fac8 mbedtls_ecdh_read_params + 0x000000004017207c mbedtls_ecdh_read_params .text.mbedtls_ecdh_get_params - 0x000000004015faf0 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x00000000401720a4 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x3b (size before relaxing) - 0x000000004015faf0 mbedtls_ecdh_get_params - *fill* 0x000000004015fb23 0x1 + 0x00000000401720a4 mbedtls_ecdh_get_params + *fill* 0x00000000401720d7 0x1 .text.mbedtls_ecdh_make_public - 0x000000004015fb24 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x000000004015fb24 mbedtls_ecdh_make_public + 0x00000000401720d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x00000000401720d8 mbedtls_ecdh_make_public .text.mbedtls_ecdh_read_public - 0x000000004015fb44 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x00000000401720f8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) 0x14 (size before relaxing) - 0x000000004015fb44 mbedtls_ecdh_read_public + 0x00000000401720f8 mbedtls_ecdh_read_public .text.mbedtls_ecdh_calc_secret - 0x000000004015fb54 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0x000000004015fb54 mbedtls_ecdh_calc_secret - *fill* 0x000000004015fb71 0x3 + 0x0000000040172108 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x0000000040172108 mbedtls_ecdh_calc_secret + *fill* 0x0000000040172125 0x3 .text.coex_schm_status_change - 0x000000004015fb74 0x5db /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) - *fill* 0x000000004016014f 0x1 + 0x0000000040172128 0x5db /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + *fill* 0x0000000040172703 0x1 .text.coex_schm_status_bit_set - 0x0000000040160150 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x0000000040172704 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) 0x9a (size before relaxing) - 0x0000000040160154 coex_schm_status_bit_set - *fill* 0x00000000401601de 0x2 + 0x0000000040172708 coex_schm_status_bit_set + *fill* 0x0000000040172792 0x2 .text.coex_schm_status_bit_clear - 0x00000000401601e0 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x0000000040172794 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) 0x9a (size before relaxing) - 0x00000000401601e0 coex_schm_status_bit_clear - *fill* 0x000000004016026a 0x2 + 0x0000000040172794 coex_schm_status_bit_clear + *fill* 0x000000004017281e 0x2 .text.coex_schm_curr_phase_idx_set - 0x000000004016026c 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x0000000040172820 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) 0x72 (size before relaxing) - 0x000000004016026c coex_schm_curr_phase_idx_set - *fill* 0x00000000401602d6 0x2 + 0x0000000040172820 coex_schm_curr_phase_idx_set + *fill* 0x000000004017288a 0x2 .text.coex_schm_curr_phase_idx_get - 0x00000000401602d8 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000004017288c 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) 0x3e (size before relaxing) - 0x00000000401602d8 coex_schm_curr_phase_idx_get - *fill* 0x000000004016030e 0x2 + 0x000000004017288c coex_schm_curr_phase_idx_get + *fill* 0x00000000401728c2 0x2 .text.coex_schm_interval_get - 0x0000000040160310 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x00000000401728c4 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) 0x3d (size before relaxing) - 0x0000000040160310 coex_schm_interval_get - *fill* 0x0000000040160345 0x3 + 0x00000000401728c4 coex_schm_interval_get + *fill* 0x00000000401728f9 0x3 .text.coex_schm_interval_set - 0x0000000040160348 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x00000000401728fc 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) 0x3e (size before relaxing) - 0x0000000040160348 coex_schm_interval_set - *fill* 0x000000004016037e 0x2 + 0x00000000401728fc coex_schm_interval_set + *fill* 0x0000000040172932 0x2 .text.coex_schm_curr_period_get - 0x0000000040160380 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x0000000040172934 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) 0x48 (size before relaxing) - 0x0000000040160380 coex_schm_curr_period_get + 0x0000000040172934 coex_schm_curr_period_get .text.coex_schm_curr_phase_get - 0x00000000401603c0 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x0000000040172974 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) 0x54 (size before relaxing) - 0x00000000401603c0 coex_schm_curr_phase_get + 0x0000000040172974 coex_schm_curr_phase_get .text.coex_wifi_channel_set - 0x000000004016040c 0x5a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x00000000401729c0 0x5a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) 0x62 (size before relaxing) - 0x000000004016040c coex_wifi_channel_set - *fill* 0x0000000040160466 0x2 + 0x00000000401729c0 coex_wifi_channel_set + *fill* 0x0000000040172a1a 0x2 .text.misc_nvs_deinit - 0x0000000040160468 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x0000000040172a1c 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) 0x61 (size before relaxing) - 0x000000004016046c misc_nvs_deinit - *fill* 0x00000000401604bd 0x3 + 0x0000000040172a20 misc_nvs_deinit + *fill* 0x0000000040172a71 0x3 .text.nvs_log_init - 0x00000000401604c0 0x144 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x0000000040172a74 0x144 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) 0x170 (size before relaxing) - 0x00000000401604d8 nvs_log_init + 0x0000000040172a8c nvs_log_init .text.misc_nvs_load - 0x0000000040160604 0x92 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x0000000040172bb8 0x92 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) 0xb2 (size before relaxing) - 0x0000000040160610 misc_nvs_load - *fill* 0x0000000040160696 0x2 + 0x0000000040172bc4 misc_nvs_load + *fill* 0x0000000040172c4a 0x2 .text.misc_nvs_init - 0x0000000040160698 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x0000000040172c4c 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) 0x3c (size before relaxing) - 0x0000000040160698 misc_nvs_init + 0x0000000040172c4c misc_nvs_init .text.misc_nvs_restore - 0x00000000401606c0 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x0000000040172c74 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) 0x14 (size before relaxing) - 0x00000000401606c0 misc_nvs_restore + 0x0000000040172c74 misc_nvs_restore .text.esp_mesh_get_topology - 0x00000000401606cc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x0000000040172c80 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) 0xe (size before relaxing) - 0x00000000401606cc esp_mesh_get_topology - *fill* 0x00000000401606d6 0x2 - .text._ZdlPv 0x00000000401606d8 0xe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) - 0x00000000401606d8 _ZdlPv - *fill* 0x00000000401606e6 0x2 - .text._ZdaPv 0x00000000401606e8 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x0000000040172c80 esp_mesh_get_topology + *fill* 0x0000000040172c8a 0x2 + .text._ZdlPv 0x0000000040172c8c 0xe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x0000000040172c8c _ZdlPv + *fill* 0x0000000040172c9a 0x2 + .text._ZdaPv 0x0000000040172c9c 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) 0xe (size before relaxing) - 0x00000000401606e8 _ZdaPv - *fill* 0x00000000401606f2 0x2 + 0x0000000040172c9c _ZdaPv + *fill* 0x0000000040172ca6 0x2 .text._ZSt15get_new_handlerv - 0x00000000401606f4 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) - 0x00000000401606f4 _ZSt15get_new_handlerv + 0x0000000040172ca8 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x0000000040172ca8 _ZSt15get_new_handlerv .text._ZnwjRKSt9nothrow_t - 0x0000000040160704 0x3e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - 0x0000000040160704 _ZnwjRKSt9nothrow_t - *fill* 0x0000000040160742 0x2 + 0x0000000040172cb8 0x3e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x0000000040172cb8 _ZnwjRKSt9nothrow_t + *fill* 0x0000000040172cf6 0x2 .text._ZnajRKSt9nothrow_t - 0x0000000040160744 0x11 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) - 0x0000000040160744 _ZnajRKSt9nothrow_t - *fill* 0x0000000040160755 0x3 + 0x0000000040172cf8 0x11 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x0000000040172cf8 _ZnajRKSt9nothrow_t + *fill* 0x0000000040172d09 0x3 .text._ZN10__cxxabiv120__si_class_type_infoD2Ev - 0x0000000040160758 0x12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - 0x0000000040160758 _ZN10__cxxabiv120__si_class_type_infoD1Ev - 0x0000000040160758 _ZN10__cxxabiv120__si_class_type_infoD2Ev - *fill* 0x000000004016076a 0x2 + 0x0000000040172d0c 0x12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040172d0c _ZN10__cxxabiv120__si_class_type_infoD1Ev + 0x0000000040172d0c _ZN10__cxxabiv120__si_class_type_infoD2Ev + *fill* 0x0000000040172d1e 0x2 .text._ZN10__cxxabiv120__si_class_type_infoD0Ev - 0x000000004016076c 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040172d20 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) 0x18 (size before relaxing) - 0x000000004016076c _ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x0000000040172d20 _ZN10__cxxabiv120__si_class_type_infoD0Ev .text._ZNKSt9type_infoeqERKS_$isra$0 - 0x0000000040160780 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040172d34 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ - 0x00000000401607a8 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - 0x00000000401607a8 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x0000000040172d5c 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040172d5c _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE - 0x00000000401607d4 0x8c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - 0x00000000401607d4 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x0000000040172d88 0x8c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040172d88 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE .text._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE - 0x0000000040160860 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - 0x0000000040160860 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE - *fill* 0x0000000040160886 0x2 + 0x0000000040172e14 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x0000000040172e14 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + *fill* 0x0000000040172e3a 0x2 .text._ZN10__cxxabiv111__terminateEPFvvE - 0x0000000040160888 0x32 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - 0x0000000040160888 _ZN10__cxxabiv111__terminateEPFvvE - *fill* 0x00000000401608ba 0x2 + 0x0000000040172e3c 0x32 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040172e3c _ZN10__cxxabiv111__terminateEPFvvE + *fill* 0x0000000040172e6e 0x2 .text._ZSt13get_terminatev - 0x00000000401608bc 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - 0x00000000401608bc _ZSt13get_terminatev + 0x0000000040172e70 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040172e70 _ZSt13get_terminatev .text._ZSt9terminatev - 0x00000000401608cc 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040172e80 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) 0xf (size before relaxing) - 0x00000000401608cc _ZSt9terminatev - *fill* 0x00000000401608d5 0x3 + 0x0000000040172e80 _ZSt9terminatev + *fill* 0x0000000040172e89 0x3 .text._ZN10__cxxabiv112__unexpectedEPFvvE - 0x00000000401608d8 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040172e8c 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) 0xc (size before relaxing) - 0x00000000401608d8 _ZN10__cxxabiv112__unexpectedEPFvvE - *fill* 0x00000000401608e1 0x3 + 0x0000000040172e8c _ZN10__cxxabiv112__unexpectedEPFvvE + *fill* 0x0000000040172e95 0x3 .text._ZSt14get_unexpectedv - 0x00000000401608e4 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - 0x00000000401608e4 _ZSt14get_unexpectedv + 0x0000000040172e98 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040172e98 _ZSt14get_unexpectedv .text._ZSt10unexpectedv - 0x00000000401608f4 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x0000000040172ea8 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) 0xf (size before relaxing) - 0x00000000401608f4 _ZSt10unexpectedv - *fill* 0x00000000401608fd 0x3 + 0x0000000040172ea8 _ZSt10unexpectedv + *fill* 0x0000000040172eb1 0x3 .text._ZL28read_encoded_value_with_basehjPKhPj - 0x0000000040160900 0xdb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - *fill* 0x00000000401609db 0x1 + 0x0000000040172eb4 0xdb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + *fill* 0x0000000040172f8f 0x1 .text._ZL15get_ttype_entryP16lsda_header_infom - 0x00000000401609dc 0x4e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - *fill* 0x0000000040160a2a 0x2 + 0x0000000040172f90 0x4e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + *fill* 0x0000000040172fde 0x2 .text._ZL20check_exception_specP16lsda_header_infoPKSt9type_infoPvl - 0x0000000040160a2c 0x38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040172fe0 0x38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x40 (size before relaxing) .text._ZL21base_of_encoded_valuehP15_Unwind_Context - 0x0000000040160a64 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040173018 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x5c (size before relaxing) .text._ZL18read_encoded_valueP15_Unwind_ContexthPKhPj - 0x0000000040160abc 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040173070 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x20 (size before relaxing) .text._ZL17parse_lsda_headerP15_Unwind_ContextPKhP16lsda_header_info - 0x0000000040160ad8 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x000000004017308c 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) 0x6c (size before relaxing) .text.__gxx_personality_v0 - 0x0000000040160b40 0x2c8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - 0x0000000040160b40 __gxx_personality_v0 + 0x00000000401730f4 0x2c8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x00000000401730f4 __gxx_personality_v0 .text.__cxa_call_unexpected - 0x0000000040160e08 0x7d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - 0x0000000040160e08 __cxa_call_unexpected - *fill* 0x0000000040160e85 0x3 - .text._ZdlPvj 0x0000000040160e88 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x00000000401733bc 0x7d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x00000000401733bc __cxa_call_unexpected + *fill* 0x0000000040173439 0x3 + .text._ZdlPvj 0x000000004017343c 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) 0xe (size before relaxing) - 0x0000000040160e88 _ZdlPvj - *fill* 0x0000000040160e92 0x2 + 0x000000004017343c _ZdlPvj + *fill* 0x0000000040173446 0x2 .text._ZL15eh_globals_dtorPv - 0x0000000040160e94 0x23 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - *fill* 0x0000000040160eb7 0x1 + 0x0000000040173448 0x23 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + *fill* 0x000000004017346b 0x1 .text.__cxa_get_globals_fast - 0x0000000040160eb8 0x1a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - 0x0000000040160eb8 __cxa_get_globals_fast - *fill* 0x0000000040160ed2 0x2 + 0x000000004017346c 0x1a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x000000004017346c __cxa_get_globals_fast + *fill* 0x0000000040173486 0x2 .text.startup._GLOBAL__sub_I___cxa_get_globals_fast - 0x0000000040160ed4 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - *fill* 0x0000000040160ef6 0x2 + 0x0000000040173488 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + *fill* 0x00000000401734aa 0x2 .text.exit._GLOBAL__sub_D___cxa_get_globals_fast - 0x0000000040160ef8 0x16 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - *fill* 0x0000000040160f0e 0x2 + 0x00000000401734ac 0x16 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + *fill* 0x00000000401734c2 0x2 .text._ZN10__cxxabiv117__class_type_infoD2Ev - 0x0000000040160f10 0x12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - 0x0000000040160f10 _ZN10__cxxabiv117__class_type_infoD2Ev - 0x0000000040160f10 _ZN10__cxxabiv117__class_type_infoD1Ev - *fill* 0x0000000040160f22 0x2 + 0x00000000401734c4 0x12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x00000000401734c4 _ZN10__cxxabiv117__class_type_infoD2Ev + 0x00000000401734c4 _ZN10__cxxabiv117__class_type_infoD1Ev + *fill* 0x00000000401734d6 0x2 .text._ZN10__cxxabiv117__class_type_infoD0Ev - 0x0000000040160f24 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x00000000401734d8 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) 0x18 (size before relaxing) - 0x0000000040160f24 _ZN10__cxxabiv117__class_type_infoD0Ev + 0x00000000401734d8 _ZN10__cxxabiv117__class_type_infoD0Ev .text._ZNKSt9type_infoeqERKS_$isra$0 - 0x0000000040160f38 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x00000000401734ec 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE - 0x0000000040160f60 0x36 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - 0x0000000040160f60 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE - *fill* 0x0000000040160f96 0x2 + 0x0000000040173514 0x36 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040173514 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + *fill* 0x000000004017354a 0x2 .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE - 0x0000000040160f98 0x1d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - 0x0000000040160f98 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE - *fill* 0x0000000040160fb5 0x3 + 0x000000004017354c 0x1d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x000000004017354c _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + *fill* 0x0000000040173569 0x3 .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj - 0x0000000040160fb8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x000000004017356c 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) 0x24 (size before relaxing) - 0x0000000040160fb8 _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj - .text 0x0000000040160fd8 0x75 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) - 0x0000000040160fd8 __fixunsdfdi - *fill* 0x000000004016104d 0x3 - .text 0x0000000040161050 0x85c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + 0x000000004017356c _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + .text 0x000000004017358c 0x75 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + 0x000000004017358c __fixunsdfdi + *fill* 0x0000000040173601 0x3 + .text 0x0000000040173604 0x85c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) 0x864 (size before relaxing) - 0x00000000401614c0 _Unwind_GetGR - 0x00000000401615dc _Unwind_GetCFA - 0x00000000401615e4 _Unwind_SetGR - 0x0000000040161600 _Unwind_GetIP - 0x0000000040161608 _Unwind_GetIPInfo - 0x0000000040161618 _Unwind_SetIP - 0x0000000040161620 _Unwind_GetLanguageSpecificData - 0x0000000040161628 _Unwind_GetRegionStart - 0x0000000040161630 _Unwind_FindEnclosingFunction - 0x0000000040161644 _Unwind_GetDataRelBase - 0x000000004016164c _Unwind_GetTextRelBase - 0x0000000040161654 _Unwind_RaiseException - 0x0000000040161708 _Unwind_ForcedUnwind - 0x000000004016176c _Unwind_Resume - 0x00000000401617d8 _Unwind_Resume_or_Rethrow - 0x0000000040161848 _Unwind_DeleteException - 0x0000000040161858 _Unwind_Backtrace - .text 0x00000000401618ac 0xbe2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - 0x0000000040162244 __register_frame_info_bases - 0x0000000040162284 __register_frame_info - 0x0000000040162294 __register_frame - 0x00000000401622b0 __register_frame_info_table_bases - 0x00000000401622e8 __register_frame_info_table - 0x00000000401622f8 __register_frame_table - 0x0000000040162310 __deregister_frame_info_bases - 0x00000000401623a4 __deregister_frame_info - 0x00000000401623b0 __deregister_frame - 0x00000000401623c4 _Unwind_Find_FDE - *fill* 0x000000004016248e 0x2 - .text 0x0000000040162490 0xa8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) - 0x0000000040162490 _asprintf_r - 0x00000000401624dc asprintf - .text 0x0000000040162538 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x0000000040173a74 _Unwind_GetGR + 0x0000000040173b90 _Unwind_GetCFA + 0x0000000040173b98 _Unwind_SetGR + 0x0000000040173bb4 _Unwind_GetIP + 0x0000000040173bbc _Unwind_GetIPInfo + 0x0000000040173bcc _Unwind_SetIP + 0x0000000040173bd4 _Unwind_GetLanguageSpecificData + 0x0000000040173bdc _Unwind_GetRegionStart + 0x0000000040173be4 _Unwind_FindEnclosingFunction + 0x0000000040173bf8 _Unwind_GetDataRelBase + 0x0000000040173c00 _Unwind_GetTextRelBase + 0x0000000040173c08 _Unwind_RaiseException + 0x0000000040173cbc _Unwind_ForcedUnwind + 0x0000000040173d20 _Unwind_Resume + 0x0000000040173d8c _Unwind_Resume_or_Rethrow + 0x0000000040173dfc _Unwind_DeleteException + 0x0000000040173e0c _Unwind_Backtrace + .text 0x0000000040173e60 0xbe2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + 0x00000000401747f8 __register_frame_info_bases + 0x0000000040174838 __register_frame_info + 0x0000000040174848 __register_frame + 0x0000000040174864 __register_frame_info_table_bases + 0x000000004017489c __register_frame_info_table + 0x00000000401748ac __register_frame_table + 0x00000000401748c4 __deregister_frame_info_bases + 0x0000000040174958 __deregister_frame_info + 0x0000000040174964 __deregister_frame + 0x0000000040174978 _Unwind_Find_FDE + *fill* 0x0000000040174a42 0x2 + .text 0x0000000040174a44 0xa8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + 0x0000000040174a44 _asprintf_r + 0x0000000040174a90 asprintf + .text 0x0000000040174aec 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) 0x40 (size before relaxing) - 0x0000000040162538 __assert_func - 0x0000000040162564 __assert - .text 0x0000000040162574 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) - 0x0000000040162574 __errno - *fill* 0x0000000040162581 0x3 - .text 0x0000000040162584 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + 0x0000000040174aec __assert_func + 0x0000000040174b18 __assert + .text 0x0000000040174b28 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0x0000000040174b28 __errno + *fill* 0x0000000040174b35 0x3 + .text 0x0000000040174b38 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) 0x80 (size before relaxing) - 0x0000000040162584 ferror - .text 0x00000000401625fc 0xa2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + 0x0000000040174b38 ferror + .text 0x0000000040174bb0 0xa2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) 0xa6 (size before relaxing) - 0x00000000401625fc _fgetc_r - 0x000000004016268c fgetc - *fill* 0x000000004016269e 0x2 - .text 0x00000000401626a0 0x13a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + 0x0000000040174bb0 _fgetc_r + 0x0000000040174c40 fgetc + *fill* 0x0000000040174c52 0x2 + .text 0x0000000040174c54 0x13a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) 0x13e (size before relaxing) - 0x00000000401626a0 _fgets_r - 0x00000000401627c4 fgets - *fill* 0x00000000401627da 0x2 - .text 0x00000000401627dc 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + 0x0000000040174c54 _fgets_r + 0x0000000040174d78 fgets + *fill* 0x0000000040174d8e 0x2 + .text 0x0000000040174d90 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) 0x94 (size before relaxing) - 0x00000000401627dc fileno - .text 0x000000004016286c 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + 0x0000000040174d90 fileno + .text 0x0000000040174e20 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) 0x5c (size before relaxing) - 0x000000004016286c _fiprintf_r - 0x0000000040162890 fiprintf - .text 0x00000000401628c0 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x0000000040174e20 _fiprintf_r + 0x0000000040174e44 fiprintf + .text 0x0000000040174e74 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) 0xec (size before relaxing) - 0x00000000401628c0 _fopen_r - 0x000000004016298c fopen - .text 0x00000000401629a0 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + 0x0000000040174e74 _fopen_r + 0x0000000040174f40 fopen + .text 0x0000000040174f54 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) 0x5c (size before relaxing) - 0x00000000401629a0 _fprintf_r - 0x00000000401629c4 fprintf - .text 0x00000000401629f4 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + 0x0000000040174f54 _fprintf_r + 0x0000000040174f78 fprintf + .text 0x0000000040174fa8 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) 0x94 (size before relaxing) - 0x00000000401629f4 _fputc_r - 0x0000000040162a70 fputc - .text 0x0000000040162a84 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + 0x0000000040174fa8 _fputc_r + 0x0000000040175024 fputc + .text 0x0000000040175038 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) 0xd0 (size before relaxing) - 0x0000000040162a84 _fputs_r - 0x0000000040162b3c fputs - .text 0x0000000040162b50 0x140 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + 0x0000000040175038 _fputs_r + 0x00000000401750f0 fputs + .text 0x0000000040175104 0x140 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) 0x144 (size before relaxing) - 0x0000000040162b50 _fread_r - 0x0000000040162c78 fread - .text 0x0000000040162c90 0x31 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) - 0x0000000040162c90 _fseek_r - 0x0000000040162ca8 fseek - *fill* 0x0000000040162cc1 0x3 - .text 0x0000000040162cc4 0x382 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x0000000040175104 _fread_r + 0x000000004017522c fread + .text 0x0000000040175244 0x31 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x0000000040175244 _fseek_r + 0x000000004017525c fseek + *fill* 0x0000000040175275 0x3 + .text 0x0000000040175278 0x382 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) 0x386 (size before relaxing) - 0x0000000040162cc4 _fseeko_r - 0x0000000040163030 fseeko - *fill* 0x0000000040163046 0x2 - .text 0x0000000040163048 0x29 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) - 0x0000000040163048 _ftell_r - 0x000000004016305c ftell - *fill* 0x0000000040163071 0x3 - .text 0x0000000040163074 0x116 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + 0x0000000040175278 _fseeko_r + 0x00000000401755e4 fseeko + *fill* 0x00000000401755fa 0x2 + .text 0x00000000401755fc 0x29 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + 0x00000000401755fc _ftell_r + 0x0000000040175610 ftell + *fill* 0x0000000040175625 0x3 + .text 0x0000000040175628 0x116 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) 0x11a (size before relaxing) - 0x0000000040163074 _ftello_r - 0x0000000040163178 ftello - *fill* 0x000000004016318a 0x2 - .text 0x000000004016318c 0xf8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + 0x0000000040175628 _ftello_r + 0x000000004017572c ftello + *fill* 0x000000004017573e 0x2 + .text 0x0000000040175740 0xf8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) 0xfc (size before relaxing) - 0x000000004016318c _fwrite_r - 0x000000004016326c fwrite - .text 0x0000000040163284 0x688 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + 0x0000000040175740 _fwrite_r + 0x0000000040175820 fwrite + .text 0x0000000040175838 0x688 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) 0x6cc (size before relaxing) - 0x000000004016384c getopt - 0x0000000040163874 getopt_long - 0x000000004016389c getopt_long_only - 0x00000000401638c4 __getopt_r - 0x00000000401638dc __getopt_long_r - 0x00000000401638f4 __getopt_long_only_r - .text 0x000000004016390c 0x80 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) - 0x000000004016390c _setlocale_r - 0x0000000040163940 __locale_mb_cur_max - 0x0000000040163958 __locale_ctype_ptr_l - 0x0000000040163960 __locale_ctype_ptr - 0x0000000040163978 setlocale - .text 0x000000004016398c 0xeb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) - 0x000000004016398c __swhatbuf_r - *fill* 0x0000000040163a77 0x1 - .text 0x0000000040163a78 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) - 0x0000000040163a78 _mbtowc_r - 0x0000000040163a9c __ascii_mbtowc - .text 0x0000000040163ac0 0x338 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + 0x0000000040175e00 getopt + 0x0000000040175e28 getopt_long + 0x0000000040175e50 getopt_long_only + 0x0000000040175e78 __getopt_r + 0x0000000040175e90 __getopt_long_r + 0x0000000040175ea8 __getopt_long_only_r + .text 0x0000000040175ec0 0x80 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x0000000040175ec0 _setlocale_r + 0x0000000040175ef4 __locale_mb_cur_max + 0x0000000040175f0c __locale_ctype_ptr_l + 0x0000000040175f14 __locale_ctype_ptr + 0x0000000040175f2c setlocale + .text 0x0000000040175f40 0xeb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + 0x0000000040175f40 __swhatbuf_r + *fill* 0x000000004017602b 0x1 + .text 0x000000004017602c 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x000000004017602c _mbtowc_r + 0x0000000040176050 __ascii_mbtowc + .text 0x0000000040176074 0x338 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) 0x348 (size before relaxing) - 0x0000000040163da8 _open_memstream_r - 0x0000000040163dbc _open_wmemstream_r - 0x0000000040163dd0 open_memstream - 0x0000000040163de4 open_wmemstream - .text 0x0000000040163df8 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) - 0x0000000040163df8 _printf_r - 0x0000000040163e30 printf - .text 0x0000000040163e70 0xb4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + 0x000000004017635c _open_memstream_r + 0x0000000040176370 _open_wmemstream_r + 0x0000000040176384 open_memstream + 0x0000000040176398 open_wmemstream + .text 0x00000000401763ac 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x00000000401763ac _printf_r + 0x00000000401763e4 printf + .text 0x0000000040176424 0xb4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) 0xb8 (size before relaxing) - 0x0000000040163e70 _putc_r - 0x0000000040163f10 putc - .text 0x0000000040163f24 0x4c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) - 0x0000000040163f24 _putchar_r - 0x0000000040163f48 putchar - .text 0x0000000040163f70 0xe6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x0000000040176424 _putc_r + 0x00000000401764c4 putc + .text 0x00000000401764d8 0x4c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x00000000401764d8 _putchar_r + 0x00000000401764fc putchar + .text 0x0000000040176524 0xe6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) 0xea (size before relaxing) - 0x0000000040163f70 _puts_r - 0x0000000040164044 puts - *fill* 0x0000000040164056 0x2 - .text 0x0000000040164058 0xfc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) - 0x0000000040164058 cleanup_glue - 0x0000000040164070 _reclaim_reent - .text 0x0000000040164154 0x62 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) - 0x0000000040164154 __srget_r - 0x00000000401641a4 __srget - *fill* 0x00000000401641b6 0x2 - .text 0x00000000401641b8 0x1b3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + 0x0000000040176524 _puts_r + 0x00000000401765f8 puts + *fill* 0x000000004017660a 0x2 + .text 0x000000004017660c 0xfc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x000000004017660c cleanup_glue + 0x0000000040176624 _reclaim_reent + .text 0x0000000040176708 0x62 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + 0x0000000040176708 __srget_r + 0x0000000040176758 __srget + *fill* 0x000000004017676a 0x2 + .text 0x000000004017676c 0x1b3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) 0x1bb (size before relaxing) - 0x00000000401641b8 setvbuf - *fill* 0x000000004016436b 0x1 - .text 0x000000004016436c 0xd9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) - 0x000000004016436c _snprintf_r - 0x00000000401643d4 snprintf - *fill* 0x0000000040164445 0x3 - .text 0x0000000040164448 0x9f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + 0x000000004017676c setvbuf + *fill* 0x000000004017691f 0x1 + .text 0x0000000040176920 0xd9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x0000000040176920 _snprintf_r + 0x0000000040176988 snprintf + *fill* 0x00000000401769f9 0x3 + .text 0x00000000401769fc 0x9f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) 0xa3 (size before relaxing) - 0x0000000040164448 _sprintf_r - 0x0000000040164490 sprintf - *fill* 0x00000000401644e7 0x1 - .text 0x00000000401644e8 0xbe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + 0x00000000401769fc _sprintf_r + 0x0000000040176a44 sprintf + *fill* 0x0000000040176a9b 0x1 + .text 0x0000000040176a9c 0xbe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) 0xc2 (size before relaxing) - 0x00000000401644e8 sscanf - 0x0000000040164550 _sscanf_r - *fill* 0x00000000401645a6 0x2 - .text 0x00000000401645a8 0xe9d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0x0000000040176a9c sscanf + 0x0000000040176b04 _sscanf_r + *fill* 0x0000000040176b5a 0x2 + .text 0x0000000040176b5c 0xe9d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) 0xf05 (size before relaxing) - 0x00000000401645ec _strtod_l - 0x00000000401652d4 _strtod_r - 0x00000000401652ec strtod_l - 0x0000000040165304 strtod - 0x0000000040165324 strtof_l - 0x00000000401653b4 strtof - *fill* 0x0000000040165445 0x3 - .text 0x0000000040165448 0x5c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) - 0x0000000040165448 strtok - .text 0x00000000401654a4 0x202 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) - 0x000000004016563c _strtoll_r - 0x0000000040165660 strtoll_l - 0x000000004016567c strtoll - *fill* 0x00000000401656a6 0x2 - .text 0x00000000401656a8 0x1f2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x0000000040176ba0 _strtod_l + 0x0000000040177888 _strtod_r + 0x00000000401778a0 strtod_l + 0x00000000401778b8 strtod + 0x00000000401778d8 strtof_l + 0x0000000040177968 strtof + *fill* 0x00000000401779f9 0x3 + .text 0x00000000401779fc 0x5c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + 0x00000000401779fc strtok + .text 0x0000000040177a58 0x202 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x0000000040177bf0 _strtoll_r + 0x0000000040177c14 strtoll_l + 0x0000000040177c30 strtoll + *fill* 0x0000000040177c5a 0x2 + .text 0x0000000040177c5c 0x1f2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) 0x1f6 (size before relaxing) - 0x0000000040165830 _strtoull_r - 0x0000000040165854 strtoull_l - 0x0000000040165870 strtoull - *fill* 0x000000004016589a 0x2 - .text 0x000000004016589c 0x3366 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x0000000040177de4 _strtoull_r + 0x0000000040177e08 strtoull_l + 0x0000000040177e24 strtoull + *fill* 0x0000000040177e4e 0x2 + .text 0x0000000040177e50 0x3366 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) 0x33aa (size before relaxing) - 0x0000000040165d5c _svfprintf_r - *fill* 0x0000000040168c02 0x2 - .text 0x0000000040168c04 0x2523 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0x0000000040178310 _svfprintf_r + *fill* 0x000000004017b1b6 0x2 + .text 0x000000004017b1b8 0x2523 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) 0x2567 (size before relaxing) - 0x0000000040168c48 __ssvfscanf_r - *fill* 0x000000004016b127 0x1 - .text 0x000000004016b128 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) - 0x000000004016b128 gettimeofday - .text 0x000000004016b140 0x26b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0x000000004017b1fc __ssvfscanf_r + *fill* 0x000000004017d6db 0x1 + .text 0x000000004017d6dc 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + 0x000000004017d6dc gettimeofday + .text 0x000000004017d6f4 0x26b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) 0x26c5 (size before relaxing) - 0x000000004016b600 __sprint_r - 0x000000004016b670 _vfiprintf_r - 0x000000004016d73c vfiprintf - *fill* 0x000000004016d7f9 0x3 - .text 0x000000004016d7fc 0x3559 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x000000004017dbb4 __sprint_r + 0x000000004017dc24 _vfiprintf_r + 0x000000004017fcf0 vfiprintf + *fill* 0x000000004017fdad 0x3 + .text 0x000000004017fdb0 0x3559 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) 0x35a9 (size before relaxing) - 0x000000004016dcbc _vfprintf_r - 0x0000000040170c98 vfprintf - *fill* 0x0000000040170d55 0x3 - .text 0x0000000040170d58 0x62 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) - 0x0000000040170d58 vprintf - 0x0000000040170d8c _vprintf_r - *fill* 0x0000000040170dba 0x2 - .text 0x0000000040170dbc 0x81 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) - 0x0000000040170dbc _vsnprintf_r - 0x0000000040170e14 vsnprintf - *fill* 0x0000000040170e3d 0x3 - .text 0x0000000040170e40 0xd5c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0x0000000040180270 _vfprintf_r + 0x000000004018324c vfprintf + *fill* 0x0000000040183309 0x3 + .text 0x000000004018330c 0x62 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x000000004018330c vprintf + 0x0000000040183340 _vprintf_r + *fill* 0x000000004018336e 0x2 + .text 0x0000000040183370 0x81 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x0000000040183370 _vsnprintf_r + 0x00000000401833c8 vsnprintf + *fill* 0x00000000401833f1 0x3 + .text 0x00000000401833f4 0xd5c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) 0xdb4 (size before relaxing) - 0x0000000040170f50 _dtoa_r - .text 0x0000000040171b9c 0x80 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) - 0x0000000040171b9c __sflags - .text 0x0000000040171c1c 0x519 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + 0x0000000040183504 _dtoa_r + .text 0x0000000040184150 0x80 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x0000000040184150 __sflags + .text 0x00000000401841d0 0x519 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) 0x535 (size before relaxing) - 0x0000000040171c9c __hexdig_fun - 0x0000000040171cd8 __gethex - *fill* 0x0000000040172135 0x3 - .text 0x0000000040172138 0x173 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0x0000000040184250 __hexdig_fun + 0x000000004018428c __gethex + *fill* 0x00000000401846e9 0x3 + .text 0x00000000401846ec 0x173 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) 0x177 (size before relaxing) - 0x0000000040172168 __match - 0x0000000040172198 __hexnan - *fill* 0x00000000401722ab 0x1 - .text 0x00000000401722ac 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) - 0x00000000401722ac _findenv - 0x00000000401722c4 getenv - .text 0x00000000401722dc 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0x000000004018471c __match + 0x000000004018474c __hexnan + *fill* 0x000000004018485f 0x1 + .text 0x0000000040184860 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + 0x0000000040184860 _findenv + 0x0000000040184878 getenv + .text 0x0000000040184890 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) 0x20 (size before relaxing) - 0x00000000401722dc iswspace - .text 0x00000000401722f8 0x3b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) - 0x00000000401722f8 __localeconv_l - 0x0000000040172304 _localeconv_r - 0x000000004017231c localeconv - *fill* 0x0000000040172333 0x1 - .text 0x0000000040172334 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) - 0x0000000040172334 _mbrtowc_r - 0x000000004017238c mbrtowc - .text 0x00000000401723a4 0x850 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) - 0x00000000401723a4 _Balloc - 0x0000000040172420 _Bfree - 0x0000000040172454 __multadd - 0x00000000401724c8 __s2b - 0x0000000040172550 __hi0bits - 0x0000000040172598 __lo0bits - 0x0000000040172608 __i2b - 0x000000004017261c __multiply - 0x0000000040172728 __pow5mult - 0x00000000401727bc __lshift - 0x0000000040172858 __mcmp - 0x0000000040172890 __mdiff - 0x0000000040172954 __ulp - 0x000000004017299c __b2d - 0x0000000040172a40 __d2b - 0x0000000040172ae0 __ratio - 0x0000000040172b34 _mprec_log10 - 0x0000000040172b6c __copybits - 0x0000000040172ba4 __any_on - .text 0x0000000040172bf4 0x5c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) - 0x0000000040172bf4 frexp - .text 0x0000000040172c50 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) - 0x0000000040172c50 nanf - .text 0x0000000040172c58 0x2573 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x0000000040184890 iswspace + .text 0x00000000401848ac 0x3b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x00000000401848ac __localeconv_l + 0x00000000401848b8 _localeconv_r + 0x00000000401848d0 localeconv + *fill* 0x00000000401848e7 0x1 + .text 0x00000000401848e8 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + 0x00000000401848e8 _mbrtowc_r + 0x0000000040184940 mbrtowc + .text 0x0000000040184958 0x850 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x0000000040184958 _Balloc + 0x00000000401849d4 _Bfree + 0x0000000040184a08 __multadd + 0x0000000040184a7c __s2b + 0x0000000040184b04 __hi0bits + 0x0000000040184b4c __lo0bits + 0x0000000040184bbc __i2b + 0x0000000040184bd0 __multiply + 0x0000000040184cdc __pow5mult + 0x0000000040184d70 __lshift + 0x0000000040184e0c __mcmp + 0x0000000040184e44 __mdiff + 0x0000000040184f08 __ulp + 0x0000000040184f50 __b2d + 0x0000000040184ff4 __d2b + 0x0000000040185094 __ratio + 0x00000000401850e8 _mprec_log10 + 0x0000000040185120 __copybits + 0x0000000040185158 __any_on + .text 0x00000000401851a8 0x5c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x00000000401851a8 frexp + .text 0x0000000040185204 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + 0x0000000040185204 nanf + .text 0x000000004018520c 0x2573 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) 0x2577 (size before relaxing) - 0x0000000040173118 __ssprint_r - 0x0000000040173224 _svfiprintf_r - *fill* 0x00000000401751cb 0x1 - .text 0x00000000401751cc 0x214d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + 0x00000000401856cc __ssprint_r + 0x00000000401857d8 _svfiprintf_r + *fill* 0x000000004018777f 0x1 + .text 0x0000000040187780 0x214d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) 0x2169 (size before relaxing) - 0x0000000040175210 _sungetc_r - 0x000000004017528c __ssrefill_r - 0x00000000401752cc _sfread_r - 0x000000004017533c __ssvfiscanf_r - *fill* 0x0000000040177319 0x3 + 0x00000000401877c4 _sungetc_r + 0x0000000040187840 __ssrefill_r + 0x0000000040187880 _sfread_r + 0x00000000401878f0 __ssvfiscanf_r + *fill* 0x00000000401898cd 0x3 .text.mutexattr_check - 0x000000004017731c 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) - *fill* 0x000000004017732d 0x0 - *fill* 0x000000004017732d 0x0 - *fill* 0x000000004017732d 0x0 - *fill* 0x000000004017732d 0x3 + 0x00000000401898d0 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x00000000401898e1 0x0 + *fill* 0x00000000401898e1 0x0 + *fill* 0x00000000401898e1 0x0 + *fill* 0x00000000401898e1 0x3 .text.pthread_include_pthread_impl - 0x0000000040177330 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) - 0x0000000040177330 pthread_include_pthread_impl - *fill* 0x0000000040177335 0x3 + 0x00000000401898e4 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000401898e4 pthread_include_pthread_impl + *fill* 0x00000000401898e9 0x3 .text.find_value - 0x0000000040177338 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - *fill* 0x000000004017734c 0x0 - *fill* 0x000000004017734c 0x0 - *fill* 0x000000004017734c 0x0 - *fill* 0x000000004017734c 0x0 - *fill* 0x000000004017734c 0x0 + 0x00000000401898ec 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x0000000040189900 0x0 + *fill* 0x0000000040189900 0x0 + *fill* 0x0000000040189900 0x0 + *fill* 0x0000000040189900 0x0 + *fill* 0x0000000040189900 0x0 .text.pthread_include_pthread_local_storage_impl - 0x000000004017734c 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x000000004017734c pthread_include_pthread_local_storage_impl - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x0 - *fill* 0x0000000040177351 0x3 + 0x0000000040189900 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x0000000040189900 pthread_include_pthread_local_storage_impl + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x0 + *fill* 0x0000000040189905 0x3 .text.esp_task_wdt_isr_user_handler - 0x0000000040177354 0x5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) - 0x0000000040177354 esp_task_wdt_isr_user_handler - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x0 - *fill* 0x0000000040177359 0x3 + 0x0000000040189908 0x5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x0000000040189908 esp_task_wdt_isr_user_handler + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x0 + *fill* 0x000000004018990d 0x3 .text.vfs_include_syscalls_impl - 0x000000004017735c 0x5 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x000000004017735c vfs_include_syscalls_impl - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x0 - *fill* 0x0000000040177361 0x3 + 0x0000000040189910 0x5 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000040189910 vfs_include_syscalls_impl + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x0 + *fill* 0x0000000040189915 0x3 .text.newlib_include_locks_impl - 0x0000000040177364 0x5 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x0000000040177364 newlib_include_locks_impl - *fill* 0x0000000040177369 0x3 + 0x0000000040189918 0x5 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040189918 newlib_include_locks_impl + *fill* 0x000000004018991d 0x3 .text.pthread_setcancelstate - 0x000000004017736c 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) - 0x000000004017736c pthread_setcancelstate - *fill* 0x0000000040177373 0x1 + 0x0000000040189920 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x0000000040189920 pthread_setcancelstate + *fill* 0x0000000040189927 0x1 .text.newlib_include_pthread_impl - 0x0000000040177374 0x5 esp-idf/newlib/libnewlib.a(pthread.c.obj) - 0x0000000040177374 newlib_include_pthread_impl - *fill* 0x0000000040177379 0x0 - *fill* 0x0000000040177379 0x0 - *fill* 0x0000000040177379 0x3 + 0x0000000040189928 0x5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x0000000040189928 newlib_include_pthread_impl + *fill* 0x000000004018992d 0x0 + *fill* 0x000000004018992d 0x0 + *fill* 0x000000004018992d 0x3 .text._system_r - 0x000000004017737c 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x000000004017737c _system_r - *fill* 0x0000000040177387 0x0 - *fill* 0x0000000040177387 0x0 - *fill* 0x0000000040177387 0x1 + 0x0000000040189930 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000040189930 _system_r + *fill* 0x000000004018993b 0x0 + *fill* 0x000000004018993b 0x0 + *fill* 0x000000004018993b 0x1 .text._getpid_r - 0x0000000040177388 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x0000000040177388 _getpid_r - *fill* 0x0000000040177393 0x1 - .text._kill_r 0x0000000040177394 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x0000000040177394 _kill_r - *fill* 0x000000004017739f 0x0 - *fill* 0x000000004017739f 0x1 + 0x000000004018993c 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x000000004018993c _getpid_r + *fill* 0x0000000040189947 0x1 + .text._kill_r 0x0000000040189948 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000040189948 _kill_r + *fill* 0x0000000040189953 0x0 + *fill* 0x0000000040189953 0x1 .text.newlib_include_syscalls_impl - 0x00000000401773a0 0x5 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x00000000401773a0 newlib_include_syscalls_impl - *fill* 0x00000000401773a5 0x0 - *fill* 0x00000000401773a5 0x0 - *fill* 0x00000000401773a5 0x0 - *fill* 0x00000000401773a5 0x0 - *fill* 0x00000000401773a5 0x0 - *fill* 0x00000000401773a5 0x0 - *fill* 0x00000000401773a5 0x0 - *fill* 0x00000000401773a5 0x0 - *fill* 0x00000000401773a5 0x0 - *fill* 0x00000000401773a5 0x0 - *fill* 0x00000000401773a5 0x3 + 0x0000000040189954 0x5 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000040189954 newlib_include_syscalls_impl + *fill* 0x0000000040189959 0x0 + *fill* 0x0000000040189959 0x0 + *fill* 0x0000000040189959 0x0 + *fill* 0x0000000040189959 0x0 + *fill* 0x0000000040189959 0x0 + *fill* 0x0000000040189959 0x0 + *fill* 0x0000000040189959 0x0 + *fill* 0x0000000040189959 0x0 + *fill* 0x0000000040189959 0x0 + *fill* 0x0000000040189959 0x0 + *fill* 0x0000000040189959 0x3 .text.__cxa_guard_dummy - 0x00000000401773a8 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - 0x00000000401773a8 __cxa_guard_dummy - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x0 - *fill* 0x00000000401773ad 0x3 + 0x000000004018995c 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x000000004018995c __cxa_guard_dummy + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x0 + *fill* 0x0000000040189961 0x3 .text.esp_efuse_get_field_size - 0x00000000401773b0 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x00000000401773b0 esp_efuse_get_field_size + 0x0000000040189964 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x0000000040189964 esp_efuse_get_field_size .text.get_mask - 0x00000000401773d8 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x00000000401773f6 0x2 + 0x000000004018998c 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x00000000401899aa 0x2 .text.get_reg_num - 0x00000000401773f8 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000004017741e 0x2 + 0x00000000401899ac 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x00000000401899d2 0x2 .text.get_starting_bit_num_in_reg - 0x0000000040177420 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000004017743a 0x2 + 0x00000000401899d4 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x00000000401899ee 0x2 .text.get_count_bits_in_reg - 0x000000004017743c 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000004017746a 0x0 - *fill* 0x000000004017746a 0x0 - *fill* 0x000000004017746a 0x2 + 0x00000000401899f0 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x0000000040189a1e 0x0 + *fill* 0x0000000040189a1e 0x0 + *fill* 0x0000000040189a1e 0x2 .text.esp_efuse_utility_get_number_of_items - 0x000000004017746c 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x000000004017746c esp_efuse_utility_get_number_of_items - *fill* 0x0000000040177482 0x0 - *fill* 0x0000000040177482 0x0 - *fill* 0x0000000040177482 0x0 - *fill* 0x0000000040177482 0x0 - *fill* 0x0000000040177482 0x0 - *fill* 0x0000000040177482 0x0 - *fill* 0x0000000040177482 0x0 - *fill* 0x0000000040177482 0x0 - *fill* 0x0000000040177482 0x0 - *fill* 0x0000000040177482 0x2 + 0x0000000040189a20 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x0000000040189a20 esp_efuse_utility_get_number_of_items + *fill* 0x0000000040189a36 0x0 + *fill* 0x0000000040189a36 0x0 + *fill* 0x0000000040189a36 0x0 + *fill* 0x0000000040189a36 0x0 + *fill* 0x0000000040189a36 0x0 + *fill* 0x0000000040189a36 0x0 + *fill* 0x0000000040189a36 0x0 + *fill* 0x0000000040189a36 0x0 + *fill* 0x0000000040189a36 0x0 + *fill* 0x0000000040189a36 0x2 .text.esp_flash_chip_driver_initialized - 0x0000000040177484 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x0000000040177484 esp_flash_chip_driver_initialized - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 - *fill* 0x0000000040177494 0x0 + 0x0000000040189a38 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000040189a38 esp_flash_chip_driver_initialized + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 + *fill* 0x0000000040189a48 0x0 .text.mpu_hal_set_region_access - 0x0000000040177494 0x2f esp-idf/soc/libsoc.a(mpu_hal.c.obj) - 0x0000000040177494 mpu_hal_set_region_access - *fill* 0x00000000401774c3 0x0 - *fill* 0x00000000401774c3 0x0 - *fill* 0x00000000401774c3 0x0 - *fill* 0x00000000401774c3 0x0 - *fill* 0x00000000401774c3 0x0 - *fill* 0x00000000401774c3 0x0 - *fill* 0x00000000401774c3 0x0 - *fill* 0x00000000401774c3 0x1 + 0x0000000040189a48 0x2f esp-idf/soc/libsoc.a(mpu_hal.c.obj) + 0x0000000040189a48 mpu_hal_set_region_access + *fill* 0x0000000040189a77 0x0 + *fill* 0x0000000040189a77 0x0 + *fill* 0x0000000040189a77 0x0 + *fill* 0x0000000040189a77 0x0 + *fill* 0x0000000040189a77 0x0 + *fill* 0x0000000040189a77 0x0 + *fill* 0x0000000040189a77 0x0 + *fill* 0x0000000040189a77 0x1 .text.esp_netif_reset_ip_info - 0x00000000401774c4 0x15 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x0 - *fill* 0x00000000401774d9 0x3 + 0x0000000040189a78 0x15 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x0 + *fill* 0x0000000040189a8d 0x3 .text.esp_netif_get_io_driver - 0x00000000401774dc 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x00000000401774dc esp_netif_get_io_driver - *fill* 0x00000000401774e3 0x1 + 0x0000000040189a90 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189a90 esp_netif_get_io_driver + *fill* 0x0000000040189a97 0x1 .text.esp_netif_get_handle_from_netif_impl - 0x00000000401774e4 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x00000000401774e4 esp_netif_get_handle_from_netif_impl - *fill* 0x00000000401774ec 0x0 - *fill* 0x00000000401774ec 0x0 - *fill* 0x00000000401774ec 0x0 - *fill* 0x00000000401774ec 0x0 - *fill* 0x00000000401774ec 0x0 - *fill* 0x00000000401774ec 0x0 - *fill* 0x00000000401774ec 0x0 + 0x0000000040189a98 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189a98 esp_netif_get_handle_from_netif_impl + *fill* 0x0000000040189aa0 0x0 + *fill* 0x0000000040189aa0 0x0 + *fill* 0x0000000040189aa0 0x0 + *fill* 0x0000000040189aa0 0x0 + *fill* 0x0000000040189aa0 0x0 + *fill* 0x0000000040189aa0 0x0 + *fill* 0x0000000040189aa0 0x0 .text.esp_netif_free_rx_buffer - 0x00000000401774ec 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x00000000401774ec esp_netif_free_rx_buffer - *fill* 0x00000000401774fa 0x2 + 0x0000000040189aa0 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189aa0 esp_netif_free_rx_buffer + *fill* 0x0000000040189aae 0x2 .text.esp_netif_transmit - 0x00000000401774fc 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x00000000401774fc esp_netif_transmit - *fill* 0x000000004017750e 0x2 + 0x0000000040189ab0 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189ab0 esp_netif_transmit + *fill* 0x0000000040189ac2 0x2 .text.esp_netif_receive - 0x0000000040177510 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x0000000040177510 esp_netif_receive - *fill* 0x0000000040177524 0x0 + 0x0000000040189ac4 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189ac4 esp_netif_receive + *fill* 0x0000000040189ad8 0x0 .text.esp_netif_dhcpc_get_status - 0x0000000040177524 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x0000000040177524 esp_netif_dhcpc_get_status - *fill* 0x0000000040177551 0x0 - *fill* 0x0000000040177551 0x0 - *fill* 0x0000000040177551 0x0 - *fill* 0x0000000040177551 0x3 + 0x0000000040189ad8 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189ad8 esp_netif_dhcpc_get_status + *fill* 0x0000000040189b05 0x0 + *fill* 0x0000000040189b05 0x0 + *fill* 0x0000000040189b05 0x0 + *fill* 0x0000000040189b05 0x3 .text.esp_netif_is_netif_up - 0x0000000040177554 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x0000000040177554 esp_netif_is_netif_up - *fill* 0x0000000040177570 0x0 - *fill* 0x0000000040177570 0x0 - *fill* 0x0000000040177570 0x0 + 0x0000000040189b08 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189b08 esp_netif_is_netif_up + *fill* 0x0000000040189b24 0x0 + *fill* 0x0000000040189b24 0x0 + *fill* 0x0000000040189b24 0x0 .text.esp_netif_is_valid_static_ip - 0x0000000040177570 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x0000000040177570 esp_netif_is_valid_static_ip - *fill* 0x0000000040177588 0x0 + 0x0000000040189b24 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189b24 esp_netif_is_valid_static_ip + *fill* 0x0000000040189b3c 0x0 .text.esp_netif_get_ifkey - 0x0000000040177588 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x0000000040177588 esp_netif_get_ifkey + 0x0000000040189b3c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189b3c esp_netif_get_ifkey .text.esp_netif_get_desc - 0x0000000040177590 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x0000000040177590 esp_netif_get_desc + 0x0000000040189b44 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189b44 esp_netif_get_desc .text.esp_netif_get_event_id - 0x0000000040177598 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - 0x0000000040177598 esp_netif_get_event_id - *fill* 0x00000000401775b5 0x0 - *fill* 0x00000000401775b5 0x0 - *fill* 0x00000000401775b5 0x0 - *fill* 0x00000000401775b5 0x0 - *fill* 0x00000000401775b5 0x0 - *fill* 0x00000000401775b5 0x0 - *fill* 0x00000000401775b5 0x0 - *fill* 0x00000000401775b5 0x3 + 0x0000000040189b4c 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040189b4c esp_netif_get_event_id + *fill* 0x0000000040189b69 0x0 + *fill* 0x0000000040189b69 0x0 + *fill* 0x0000000040189b69 0x0 + *fill* 0x0000000040189b69 0x0 + *fill* 0x0000000040189b69 0x0 + *fill* 0x0000000040189b69 0x0 + *fill* 0x0000000040189b69 0x0 + *fill* 0x0000000040189b69 0x3 .text.esp_event_send_noop - 0x00000000401775b8 0x7 esp-idf/esp_event/libesp_event.a(event_send.c.obj) - 0x00000000401775b8 esp_event_send_noop - 0x00000000401775b8 esp_event_send_legacy - *fill* 0x00000000401775bf 0x0 - *fill* 0x00000000401775bf 0x0 - *fill* 0x00000000401775bf 0x0 - *fill* 0x00000000401775bf 0x0 - *fill* 0x00000000401775bf 0x0 - *fill* 0x00000000401775bf 0x1 + 0x0000000040189b6c 0x7 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x0000000040189b6c esp_event_send_noop + 0x0000000040189b6c esp_event_send_legacy + *fill* 0x0000000040189b73 0x0 + *fill* 0x0000000040189b73 0x0 + *fill* 0x0000000040189b73 0x0 + *fill* 0x0000000040189b73 0x0 + *fill* 0x0000000040189b73 0x0 + *fill* 0x0000000040189b73 0x1 .text.rc4_skip - 0x00000000401775c0 0xb3 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - 0x00000000401775c0 rc4_skip - *fill* 0x0000000040177673 0x0 - *fill* 0x0000000040177673 0x0 - *fill* 0x0000000040177673 0x0 - *fill* 0x0000000040177673 0x0 - *fill* 0x0000000040177673 0x0 - *fill* 0x0000000040177673 0x0 - *fill* 0x0000000040177673 0x0 - *fill* 0x0000000040177673 0x0 - *fill* 0x0000000040177673 0x0 - *fill* 0x0000000040177673 0x1 - .text.gf_mulx 0x0000000040177674 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) - *fill* 0x00000000401776b8 0x0 - *fill* 0x00000000401776b8 0x0 - *fill* 0x00000000401776b8 0x0 - *fill* 0x00000000401776b8 0x0 - *fill* 0x00000000401776b8 0x0 + 0x0000000040189b74 0xb3 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x0000000040189b74 rc4_skip + *fill* 0x0000000040189c27 0x0 + *fill* 0x0000000040189c27 0x0 + *fill* 0x0000000040189c27 0x0 + *fill* 0x0000000040189c27 0x0 + *fill* 0x0000000040189c27 0x0 + *fill* 0x0000000040189c27 0x0 + *fill* 0x0000000040189c27 0x0 + *fill* 0x0000000040189c27 0x0 + *fill* 0x0000000040189c27 0x0 + *fill* 0x0000000040189c27 0x1 + .text.gf_mulx 0x0000000040189c28 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + *fill* 0x0000000040189c6c 0x0 + *fill* 0x0000000040189c6c 0x0 + *fill* 0x0000000040189c6c 0x0 + *fill* 0x0000000040189c6c 0x0 + *fill* 0x0000000040189c6c 0x0 .text.xor_aes_block - 0x00000000401776b8 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x0 - *fill* 0x00000000401776e1 0x3 + 0x0000000040189c6c 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x0 + *fill* 0x0000000040189c95 0x3 .text._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ - 0x00000000401776e4 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000401776e4 _ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ - *fill* 0x0000000040177700 0x0 + 0x0000000040189c98 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189c98 _ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + *fill* 0x0000000040189cb4 0x0 .text._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ - 0x0000000040177700 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x0000000040177700 _ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ - *fill* 0x000000004017771c 0x0 + 0x0000000040189cb4 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189cb4 _ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + *fill* 0x0000000040189cd0 0x0 .text._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ - 0x000000004017771c 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x000000004017771c _ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ - *fill* 0x0000000040177738 0x0 + 0x0000000040189cd0 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189cd0 _ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + *fill* 0x0000000040189cec 0x0 .text._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ - 0x0000000040177738 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x0000000040177738 _ZN3nvs9NVSHandle8set_itemItEEiPKcT_ - *fill* 0x0000000040177754 0x0 + 0x0000000040189cec 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189cec _ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + *fill* 0x0000000040189d08 0x0 .text._ZN3nvs9NVSHandle8set_itemIiEEiPKcT_ - 0x0000000040177754 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x0000000040177754 _ZN3nvs9NVSHandle8set_itemIiEEiPKcT_ - *fill* 0x000000004017776e 0x0 - *fill* 0x000000004017776e 0x2 + 0x0000000040189d08 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189d08 _ZN3nvs9NVSHandle8set_itemIiEEiPKcT_ + *fill* 0x0000000040189d22 0x0 + *fill* 0x0000000040189d22 0x2 .text._ZN3nvs9NVSHandle8set_itemIjEEiPKcT_ - 0x0000000040177770 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x0000000040177770 _ZN3nvs9NVSHandle8set_itemIjEEiPKcT_ - *fill* 0x000000004017778a 0x0 - *fill* 0x000000004017778a 0x2 + 0x0000000040189d24 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189d24 _ZN3nvs9NVSHandle8set_itemIjEEiPKcT_ + *fill* 0x0000000040189d3e 0x0 + *fill* 0x0000000040189d3e 0x2 .text._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ - 0x000000004017778c 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x000000004017778c _ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ - *fill* 0x00000000401777a8 0x0 - *fill* 0x00000000401777a8 0x0 + 0x0000000040189d40 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189d40 _ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + *fill* 0x0000000040189d5c 0x0 + *fill* 0x0000000040189d5c 0x0 .text._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ - 0x00000000401777a8 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000401777a8 _ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ - *fill* 0x00000000401777c4 0x0 - *fill* 0x00000000401777c4 0x0 + 0x0000000040189d5c 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189d5c _ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + *fill* 0x0000000040189d78 0x0 + *fill* 0x0000000040189d78 0x0 .text._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ - 0x00000000401777c4 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000401777c4 _ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ - *fill* 0x00000000401777dc 0x0 + 0x0000000040189d78 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189d78 _ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + *fill* 0x0000000040189d90 0x0 .text._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ - 0x00000000401777dc 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000401777dc _ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ - *fill* 0x00000000401777f4 0x0 + 0x0000000040189d90 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189d90 _ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + *fill* 0x0000000040189da8 0x0 .text._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ - 0x00000000401777f4 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x00000000401777f4 _ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ - *fill* 0x000000004017780c 0x0 + 0x0000000040189da8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189da8 _ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + *fill* 0x0000000040189dc0 0x0 .text._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ - 0x000000004017780c 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x000000004017780c _ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ - *fill* 0x0000000040177824 0x0 + 0x0000000040189dc0 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189dc0 _ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + *fill* 0x0000000040189dd8 0x0 .text._ZN3nvs9NVSHandle8get_itemIiEEiPKcRT_ - 0x0000000040177824 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x0000000040177824 _ZN3nvs9NVSHandle8get_itemIiEEiPKcRT_ - *fill* 0x000000004017783c 0x0 + 0x0000000040189dd8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189dd8 _ZN3nvs9NVSHandle8get_itemIiEEiPKcRT_ + *fill* 0x0000000040189df0 0x0 .text._ZN3nvs9NVSHandle8get_itemIjEEiPKcRT_ - 0x000000004017783c 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x000000004017783c _ZN3nvs9NVSHandle8get_itemIjEEiPKcRT_ - *fill* 0x0000000040177854 0x0 + 0x0000000040189df0 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189df0 _ZN3nvs9NVSHandle8get_itemIjEEiPKcRT_ + *fill* 0x0000000040189e08 0x0 .text._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ - 0x0000000040177854 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x0000000040177854 _ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ - *fill* 0x000000004017786c 0x0 + 0x0000000040189e08 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189e08 _ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + *fill* 0x0000000040189e20 0x0 .text._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ - 0x000000004017786c 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x000000004017786c _ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 - *fill* 0x0000000040177884 0x0 + 0x0000000040189e20 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040189e20 _ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 + *fill* 0x0000000040189e38 0x0 .text._ZN3nvs19NVSPartitionManagerD2Ev - 0x0000000040177884 0x5 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x0000000040177884 _ZN3nvs19NVSPartitionManagerD2Ev - 0x0000000040177884 _ZN3nvs19NVSPartitionManagerD1Ev - *fill* 0x0000000040177889 0x0 - *fill* 0x0000000040177889 0x0 - *fill* 0x0000000040177889 0x0 - *fill* 0x0000000040177889 0x0 - *fill* 0x0000000040177889 0x3 + 0x0000000040189e38 0x5 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000040189e38 _ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000040189e38 _ZN3nvs19NVSPartitionManagerD1Ev + *fill* 0x0000000040189e3d 0x0 + *fill* 0x0000000040189e3d 0x0 + *fill* 0x0000000040189e3d 0x0 + *fill* 0x0000000040189e3d 0x0 + *fill* 0x0000000040189e3d 0x3 .text._ZN3nvs8HashListC2Ev - 0x000000004017788c 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x000000004017788c _ZN3nvs8HashListC2Ev - 0x000000004017788c _ZN3nvs8HashListC1Ev - *fill* 0x0000000040177899 0x0 - *fill* 0x0000000040177899 0x0 - *fill* 0x0000000040177899 0x3 + 0x0000000040189e40 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000040189e40 _ZN3nvs8HashListC2Ev + 0x0000000040189e40 _ZN3nvs8HashListC1Ev + *fill* 0x0000000040189e4d 0x0 + *fill* 0x0000000040189e4d 0x0 + *fill* 0x0000000040189e4d 0x3 .text._ZN3nvs8HashList13HashListBlockC2Ev - 0x000000004017789c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x000000004017789c _ZN3nvs8HashList13HashListBlockC1Ev - 0x000000004017789c _ZN3nvs8HashList13HashListBlockC2Ev - *fill* 0x00000000401778be 0x0 - *fill* 0x00000000401778be 0x0 - *fill* 0x00000000401778be 0x2 + 0x0000000040189e50 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000040189e50 _ZN3nvs8HashList13HashListBlockC1Ev + 0x0000000040189e50 _ZN3nvs8HashList13HashListBlockC2Ev + *fill* 0x0000000040189e72 0x0 + *fill* 0x0000000040189e72 0x0 + *fill* 0x0000000040189e72 0x2 .text._ZSt9__find_ifIPjN9__gnu_cxx5__ops10_Iter_predIZN3nvs4Page4loadEjEUljE_EEET_S8_S8_T0_St26random_access_iterator_tag - 0x00000000401778c0 0x72 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x0 - *fill* 0x0000000040177932 0x2 + 0x0000000040189e74 0x72 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x0 + *fill* 0x0000000040189ee6 0x2 .text.esp_wifi_is_if_ready_when_started - 0x0000000040177934 0x12 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - 0x0000000040177934 esp_wifi_is_if_ready_when_started - *fill* 0x0000000040177946 0x0 - *fill* 0x0000000040177946 0x2 + 0x0000000040189ee8 0x12 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x0000000040189ee8 esp_wifi_is_if_ready_when_started + *fill* 0x0000000040189efa 0x0 + *fill* 0x0000000040189efa 0x2 .text.task_get_max_priority_wrapper - 0x0000000040177948 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x000000004017794f 0x1 + 0x0000000040189efc 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040189f03 0x1 .text.coex_status_get_wrapper - 0x0000000040177950 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x0000000040177957 0x1 + 0x0000000040189f04 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040189f0b 0x1 .text.coex_condition_set_wrapper - 0x0000000040177958 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x000000004017795d 0x3 + 0x0000000040189f0c 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040189f11 0x3 .text.coex_wifi_request_wrapper - 0x0000000040177960 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x0000000040177967 0x1 + 0x0000000040189f14 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040189f1b 0x1 .text.coex_wifi_release_wrapper - 0x0000000040177968 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x0 - *fill* 0x000000004017796f 0x1 + 0x0000000040189f1c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x0 + *fill* 0x0000000040189f23 0x1 .text.esp_phy_reduce_tx_power - 0x0000000040177970 0x1c esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - *fill* 0x000000004017798c 0x0 - *fill* 0x000000004017798c 0x0 - *fill* 0x000000004017798c 0x0 - *fill* 0x000000004017798c 0x0 - *fill* 0x000000004017798c 0x0 - *fill* 0x000000004017798c 0x0 - *fill* 0x000000004017798c 0x0 + 0x0000000040189f24 0x1c esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x0000000040189f40 0x0 + *fill* 0x0000000040189f40 0x0 + *fill* 0x0000000040189f40 0x0 + *fill* 0x0000000040189f40 0x0 + *fill* 0x0000000040189f40 0x0 + *fill* 0x0000000040189f40 0x0 + *fill* 0x0000000040189f40 0x0 .text.esp_phy_update_country_info - 0x000000004017798c 0x7 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - 0x000000004017798c esp_phy_update_country_info - *fill* 0x0000000040177993 0x1 + 0x0000000040189f40 0x7 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x0000000040189f40 esp_phy_update_country_info + *fill* 0x0000000040189f47 0x1 .text.node_insert_to_list - 0x0000000040177994 0x3b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - *fill* 0x00000000401779cf 0x1 + 0x0000000040189f48 0x3b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000040189f83 0x1 .text.add_msg_type - 0x00000000401779d0 0x14 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .text.add_end 0x00000000401779e4 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - *fill* 0x00000000401779f0 0x0 - *fill* 0x00000000401779f0 0x0 - *fill* 0x00000000401779f0 0x0 - *fill* 0x00000000401779f0 0x0 - *fill* 0x00000000401779f0 0x0 + 0x0000000040189f84 0x14 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.add_end 0x0000000040189f98 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000040189fa4 0x0 + *fill* 0x0000000040189fa4 0x0 + *fill* 0x0000000040189fa4 0x0 + *fill* 0x0000000040189fa4 0x0 + *fill* 0x0000000040189fa4 0x0 .text.node_remove_from_list - 0x00000000401779f0 0x35 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - 0x00000000401779f0 node_remove_from_list - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x0 - *fill* 0x0000000040177a25 0x3 + 0x0000000040189fa4 0x35 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000040189fa4 node_remove_from_list + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x0 + *fill* 0x0000000040189fd9 0x3 .text.lwip_htons - 0x0000000040177a28 0x14 esp-idf/lwip/liblwip.a(def.c.obj) - 0x0000000040177a28 lwip_htons - *fill* 0x0000000040177a3c 0x0 - *fill* 0x0000000040177a3c 0x0 - *fill* 0x0000000040177a3c 0x0 - *fill* 0x0000000040177a3c 0x0 - *fill* 0x0000000040177a3c 0x0 - *fill* 0x0000000040177a3c 0x0 - *fill* 0x0000000040177a3c 0x0 + 0x0000000040189fdc 0x14 esp-idf/lwip/liblwip.a(def.c.obj) + 0x0000000040189fdc lwip_htons + *fill* 0x0000000040189ff0 0x0 + *fill* 0x0000000040189ff0 0x0 + *fill* 0x0000000040189ff0 0x0 + *fill* 0x0000000040189ff0 0x0 + *fill* 0x0000000040189ff0 0x0 + *fill* 0x0000000040189ff0 0x0 + *fill* 0x0000000040189ff0 0x0 .text.dns_init - 0x0000000040177a3c 0x5 esp-idf/lwip/liblwip.a(dns.c.obj) - 0x0000000040177a3c dns_init - *fill* 0x0000000040177a41 0x0 - *fill* 0x0000000040177a41 0x0 - *fill* 0x0000000040177a41 0x0 - *fill* 0x0000000040177a41 0x0 - *fill* 0x0000000040177a41 0x0 - *fill* 0x0000000040177a41 0x3 + 0x0000000040189ff0 0x5 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x0000000040189ff0 dns_init + *fill* 0x0000000040189ff5 0x0 + *fill* 0x0000000040189ff5 0x0 + *fill* 0x0000000040189ff5 0x0 + *fill* 0x0000000040189ff5 0x0 + *fill* 0x0000000040189ff5 0x0 + *fill* 0x0000000040189ff5 0x3 .text.mem_init - 0x0000000040177a44 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) - 0x0000000040177a44 mem_init - *fill* 0x0000000040177a49 0x3 + 0x0000000040189ff8 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x0000000040189ff8 mem_init + *fill* 0x0000000040189ffd 0x3 .text.mem_trim - 0x0000000040177a4c 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) - 0x0000000040177a4c mem_trim - *fill* 0x0000000040177a51 0x0 - *fill* 0x0000000040177a51 0x0 - *fill* 0x0000000040177a51 0x0 - *fill* 0x0000000040177a51 0x3 + 0x000000004018a000 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x000000004018a000 mem_trim + *fill* 0x000000004018a005 0x0 + *fill* 0x000000004018a005 0x0 + *fill* 0x000000004018a005 0x0 + *fill* 0x000000004018a005 0x3 .text.memp_init - 0x0000000040177a54 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) - 0x0000000040177a54 memp_init - *fill* 0x0000000040177a68 0x0 + 0x000000004018a008 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000004018a008 memp_init + *fill* 0x000000004018a01c 0x0 .text.netif_do_set_netmask - 0x0000000040177a68 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x0000000040177a86 0x2 + 0x000000004018a01c 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000004018a03a 0x2 .text.netif_do_set_gw - 0x0000000040177a88 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x0000000040177aa6 0x2 + 0x000000004018a03c 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000004018a05a 0x2 .text.netif_null_output_ip6 - 0x0000000040177aa8 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000004018a05c 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) .text.netif_null_output_ip4 - 0x0000000040177ab0 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) - *fill* 0x0000000040177ab8 0x0 - *fill* 0x0000000040177ab8 0x0 - *fill* 0x0000000040177ab8 0x0 - *fill* 0x0000000040177ab8 0x0 + 0x000000004018a064 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000004018a06c 0x0 + *fill* 0x000000004018a06c 0x0 + *fill* 0x000000004018a06c 0x0 + *fill* 0x000000004018a06c 0x0 .text.netif_set_garp_flag - 0x0000000040177ab8 0x11 esp-idf/lwip/liblwip.a(netif.c.obj) - 0x0000000040177ab8 netif_set_garp_flag - *fill* 0x0000000040177ac9 0x0 - *fill* 0x0000000040177ac9 0x0 - *fill* 0x0000000040177ac9 0x0 - *fill* 0x0000000040177ac9 0x0 - *fill* 0x0000000040177ac9 0x0 - *fill* 0x0000000040177ac9 0x0 - *fill* 0x0000000040177ac9 0x0 - *fill* 0x0000000040177ac9 0x0 - *fill* 0x0000000040177ac9 0x0 - *fill* 0x0000000040177ac9 0x0 - *fill* 0x0000000040177ac9 0x3 + 0x000000004018a06c 0x11 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000004018a06c netif_set_garp_flag + *fill* 0x000000004018a07d 0x0 + *fill* 0x000000004018a07d 0x0 + *fill* 0x000000004018a07d 0x0 + *fill* 0x000000004018a07d 0x0 + *fill* 0x000000004018a07d 0x0 + *fill* 0x000000004018a07d 0x0 + *fill* 0x000000004018a07d 0x0 + *fill* 0x000000004018a07d 0x0 + *fill* 0x000000004018a07d 0x0 + *fill* 0x000000004018a07d 0x0 + *fill* 0x000000004018a07d 0x3 .text.pbuf_init_alloced_pbuf - 0x0000000040177acc 0x23 esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x0000000040177aef 0x1 + 0x000000004018a080 0x23 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000004018a0a3 0x1 .text.pbuf_skip_const - 0x0000000040177af0 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) - *fill* 0x0000000040177b0f 0x0 - *fill* 0x0000000040177b0f 0x0 - *fill* 0x0000000040177b0f 0x0 - *fill* 0x0000000040177b0f 0x0 - *fill* 0x0000000040177b0f 0x0 - *fill* 0x0000000040177b0f 0x0 - *fill* 0x0000000040177b0f 0x0 - *fill* 0x0000000040177b0f 0x0 - *fill* 0x0000000040177b0f 0x1 + 0x000000004018a0a4 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000004018a0c3 0x0 + *fill* 0x000000004018a0c3 0x0 + *fill* 0x000000004018a0c3 0x0 + *fill* 0x000000004018a0c3 0x0 + *fill* 0x000000004018a0c3 0x0 + *fill* 0x000000004018a0c3 0x0 + *fill* 0x000000004018a0c3 0x0 + *fill* 0x000000004018a0c3 0x0 + *fill* 0x000000004018a0c3 0x1 .text.pbuf_clen - 0x0000000040177b10 0x16 esp-idf/lwip/liblwip.a(pbuf.c.obj) - 0x0000000040177b10 pbuf_clen - *fill* 0x0000000040177b26 0x0 - *fill* 0x0000000040177b26 0x0 - *fill* 0x0000000040177b26 0x0 - *fill* 0x0000000040177b26 0x0 - *fill* 0x0000000040177b26 0x0 - *fill* 0x0000000040177b26 0x0 - *fill* 0x0000000040177b26 0x0 - *fill* 0x0000000040177b26 0x0 - *fill* 0x0000000040177b26 0x0 - *fill* 0x0000000040177b26 0x0 - *fill* 0x0000000040177b26 0x2 + 0x000000004018a0c4 0x16 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x000000004018a0c4 pbuf_clen + *fill* 0x000000004018a0da 0x0 + *fill* 0x000000004018a0da 0x0 + *fill* 0x000000004018a0da 0x0 + *fill* 0x000000004018a0da 0x0 + *fill* 0x000000004018a0da 0x0 + *fill* 0x000000004018a0da 0x0 + *fill* 0x000000004018a0da 0x0 + *fill* 0x000000004018a0da 0x0 + *fill* 0x000000004018a0da 0x0 + *fill* 0x000000004018a0da 0x0 + *fill* 0x000000004018a0da 0x2 .text.raw_bind_netif - 0x0000000040177b28 0x17 esp-idf/lwip/liblwip.a(raw.c.obj) - 0x0000000040177b28 raw_bind_netif - *fill* 0x0000000040177b3f 0x1 + 0x000000004018a0dc 0x17 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x000000004018a0dc raw_bind_netif + *fill* 0x000000004018a0f3 0x1 .text.raw_recv - 0x0000000040177b40 0xa esp-idf/lwip/liblwip.a(raw.c.obj) - 0x0000000040177b40 raw_recv - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x0 - *fill* 0x0000000040177b4a 0x2 + 0x000000004018a0f4 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + 0x000000004018a0f4 raw_recv + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x0 + *fill* 0x000000004018a0fe 0x2 .text.tcp_bind_netif - 0x0000000040177b4c 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x0000000040177b4c tcp_bind_netif - *fill* 0x0000000040177b63 0x0 - *fill* 0x0000000040177b63 0x0 - *fill* 0x0000000040177b63 0x0 - *fill* 0x0000000040177b63 0x0 - *fill* 0x0000000040177b63 0x1 - .text.tcp_arg 0x0000000040177b64 0xa esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x0000000040177b64 tcp_arg - *fill* 0x0000000040177b6e 0x0 - *fill* 0x0000000040177b6e 0x0 - *fill* 0x0000000040177b6e 0x0 - *fill* 0x0000000040177b6e 0x2 + 0x000000004018a100 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000004018a100 tcp_bind_netif + *fill* 0x000000004018a117 0x0 + *fill* 0x000000004018a117 0x0 + *fill* 0x000000004018a117 0x0 + *fill* 0x000000004018a117 0x0 + *fill* 0x000000004018a117 0x1 + .text.tcp_arg 0x000000004018a118 0xa esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000004018a118 tcp_arg + *fill* 0x000000004018a122 0x0 + *fill* 0x000000004018a122 0x0 + *fill* 0x000000004018a122 0x0 + *fill* 0x000000004018a122 0x2 .text.tcp_accept - 0x0000000040177b70 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) - 0x0000000040177b70 tcp_accept - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x0 - *fill* 0x0000000040177b7f 0x1 + 0x000000004018a124 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000004018a124 tcp_accept + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x0 + *fill* 0x000000004018a133 0x1 .text.udp_bind_netif - 0x0000000040177b80 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) - 0x0000000040177b80 udp_bind_netif - *fill* 0x0000000040177b97 0x0 - *fill* 0x0000000040177b97 0x0 - *fill* 0x0000000040177b97 0x0 - *fill* 0x0000000040177b97 0x0 - *fill* 0x0000000040177b97 0x1 + 0x000000004018a134 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000004018a134 udp_bind_netif + *fill* 0x000000004018a14b 0x0 + *fill* 0x000000004018a14b 0x0 + *fill* 0x000000004018a14b 0x0 + *fill* 0x000000004018a14b 0x0 + *fill* 0x000000004018a14b 0x1 .text.dhcp_set_state - 0x0000000040177b98 0x18 esp-idf/lwip/liblwip.a(dhcp.c.obj) - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 - *fill* 0x0000000040177bb0 0x0 + 0x000000004018a14c 0x18 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 + *fill* 0x000000004018a164 0x0 .text.dhcp_supplied_address - 0x0000000040177bb0 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) - 0x0000000040177bb0 dhcp_supplied_address - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x0 - *fill* 0x0000000040177bf2 0x2 + 0x000000004018a164 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000004018a164 dhcp_supplied_address + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x0 + *fill* 0x000000004018a1a6 0x2 .text.igmp_remove_group - 0x0000000040177bf4 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) - *fill* 0x0000000040177c1a 0x0 - *fill* 0x0000000040177c1a 0x0 - *fill* 0x0000000040177c1a 0x0 - *fill* 0x0000000040177c1a 0x0 - *fill* 0x0000000040177c1a 0x0 - *fill* 0x0000000040177c1a 0x0 - *fill* 0x0000000040177c1a 0x0 - *fill* 0x0000000040177c1a 0x0 - *fill* 0x0000000040177c1a 0x2 + 0x000000004018a1a8 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000004018a1ce 0x0 + *fill* 0x000000004018a1ce 0x0 + *fill* 0x000000004018a1ce 0x0 + *fill* 0x000000004018a1ce 0x0 + *fill* 0x000000004018a1ce 0x0 + *fill* 0x000000004018a1ce 0x0 + *fill* 0x000000004018a1ce 0x0 + *fill* 0x000000004018a1ce 0x0 + *fill* 0x000000004018a1ce 0x2 .text.igmp_lookfor_group - 0x0000000040177c1c 0x17 esp-idf/lwip/liblwip.a(igmp.c.obj) - 0x0000000040177c1c igmp_lookfor_group - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x0 - *fill* 0x0000000040177c33 0x1 + 0x000000004018a1d0 0x17 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x000000004018a1d0 igmp_lookfor_group + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x0 + *fill* 0x000000004018a1e7 0x1 .text.ip4_addr_isbroadcast_u32 - 0x0000000040177c34 0x46 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - 0x0000000040177c34 ip4_addr_isbroadcast_u32 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x0 - *fill* 0x0000000040177c7a 0x2 + 0x000000004018a1e8 0x46 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000004018a1e8 ip4_addr_isbroadcast_u32 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x0 + *fill* 0x000000004018a22e 0x2 .text.mld6_remove_group - 0x0000000040177c7c 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) - *fill* 0x0000000040177cb1 0x0 - *fill* 0x0000000040177cb1 0x0 - *fill* 0x0000000040177cb1 0x0 - *fill* 0x0000000040177cb1 0x3 + 0x000000004018a230 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x000000004018a265 0x0 + *fill* 0x000000004018a265 0x0 + *fill* 0x000000004018a265 0x0 + *fill* 0x000000004018a265 0x3 .text.mld6_lookfor_group - 0x0000000040177cb4 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) - 0x0000000040177cb4 mld6_lookfor_group - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x0 - *fill* 0x0000000040177ce9 0x3 + 0x000000004018a268 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x000000004018a268 mld6_lookfor_group + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x0 + *fill* 0x000000004018a29d 0x3 .text.nd6_restart_netif - 0x0000000040177cec 0xa esp-idf/lwip/liblwip.a(nd6.c.obj) - 0x0000000040177cec nd6_restart_netif - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x0 - *fill* 0x0000000040177cf6 0x2 + 0x000000004018a2a0 0xa esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000004018a2a0 nd6_restart_netif + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x0 + *fill* 0x000000004018a2aa 0x2 .text.lwip_standard_chksum - 0x0000000040177cf8 0x69 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - 0x0000000040177cf8 lwip_standard_chksum - *fill* 0x0000000040177d61 0x0 - *fill* 0x0000000040177d61 0x0 - *fill* 0x0000000040177d61 0x0 - *fill* 0x0000000040177d61 0x0 - *fill* 0x0000000040177d61 0x0 - *fill* 0x0000000040177d61 0x0 - *fill* 0x0000000040177d61 0x0 - *fill* 0x0000000040177d61 0x3 + 0x000000004018a2ac 0x69 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x000000004018a2ac lwip_standard_chksum + *fill* 0x000000004018a315 0x0 + *fill* 0x000000004018a315 0x0 + *fill* 0x000000004018a315 0x0 + *fill* 0x000000004018a315 0x0 + *fill* 0x000000004018a315 0x0 + *fill* 0x000000004018a315 0x0 + *fill* 0x000000004018a315 0x0 + *fill* 0x000000004018a315 0x3 .text.lwip_poll_should_wake - 0x0000000040177d64 0x41 esp-idf/lwip/liblwip.a(sockets.c.obj) - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x0 - *fill* 0x0000000040177da5 0x3 + 0x000000004018a318 0x41 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x0 + *fill* 0x000000004018a359 0x3 .text.heap_caps_match - 0x0000000040177da8 0x32 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x0000000040177da8 heap_caps_match - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x0 - *fill* 0x0000000040177dda 0x2 + 0x000000004018a35c 0x32 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x000000004018a35c heap_caps_match + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x0 + *fill* 0x000000004018a38e 0x2 .text.uart_find_pattern_from_last - 0x0000000040177ddc 0x24 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 - *fill* 0x0000000040177e00 0x0 + 0x000000004018a390 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 + *fill* 0x000000004018a3b4 0x0 .text.esp_pm_impl_waiti - 0x0000000040177e00 0x8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) - 0x0000000040177e00 esp_pm_impl_waiti - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 - *fill* 0x0000000040177e08 0x0 + 0x000000004018a3b4 0x8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + 0x000000004018a3b4 esp_pm_impl_waiti + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 + *fill* 0x000000004018a3bc 0x0 .text.arg_end_resetfn - 0x0000000040177e08 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x0000000040177e11 0x3 + 0x000000004018a3bc 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004018a3c5 0x3 .text.arg_int_resetfn - 0x0000000040177e14 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x0000000040177e1d 0x3 + 0x000000004018a3c8 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004018a3d1 0x3 .text.arg_int_checkfn - 0x0000000040177e20 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x0000000040177e35 0x3 + 0x000000004018a3d4 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004018a3e9 0x3 .text.arg_str_resetfn - 0x0000000040177e38 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x0000000040177e41 0x3 + 0x000000004018a3ec 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004018a3f5 0x3 .text.arg_str_scanfn - 0x0000000040177e44 0x2c esp-idf/console/libconsole.a(argtable3.c.obj) + 0x000000004018a3f8 0x2c esp-idf/console/libconsole.a(argtable3.c.obj) .text.arg_str_checkfn - 0x0000000040177e70 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x0000000040177e85 0x0 - *fill* 0x0000000040177e85 0x3 + 0x000000004018a424 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004018a439 0x0 + *fill* 0x000000004018a439 0x3 .text.arg_endindex - 0x0000000040177e88 0x1b esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x0000000040177ea3 0x0 - *fill* 0x0000000040177ea3 0x1 + 0x000000004018a43c 0x1b esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004018a457 0x0 + *fill* 0x000000004018a457 0x1 .text.arg_reset - 0x0000000040177ea4 0x21 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x0000000040177ec5 0x3 - .text.arg_cat 0x0000000040177ec8 0x38 esp-idf/console/libconsole.a(argtable3.c.obj) - *fill* 0x0000000040177f00 0x0 - *fill* 0x0000000040177f00 0x0 - *fill* 0x0000000040177f00 0x0 - *fill* 0x0000000040177f00 0x0 - *fill* 0x0000000040177f00 0x0 - *fill* 0x0000000040177f00 0x0 - *fill* 0x0000000040177f00 0x0 + 0x000000004018a458 0x21 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004018a479 0x3 + .text.arg_cat 0x000000004018a47c 0x38 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004018a4b4 0x0 + *fill* 0x000000004018a4b4 0x0 + *fill* 0x000000004018a4b4 0x0 + *fill* 0x000000004018a4b4 0x0 + *fill* 0x000000004018a4b4 0x0 + *fill* 0x000000004018a4b4 0x0 + *fill* 0x000000004018a4b4 0x0 .text.arg_print_errors - 0x0000000040177f00 0x32 esp-idf/console/libconsole.a(argtable3.c.obj) - 0x0000000040177f00 arg_print_errors - *fill* 0x0000000040177f32 0x0 - *fill* 0x0000000040177f32 0x0 - *fill* 0x0000000040177f32 0x0 - *fill* 0x0000000040177f32 0x0 - *fill* 0x0000000040177f32 0x0 - *fill* 0x0000000040177f32 0x0 - *fill* 0x0000000040177f32 0x0 - *fill* 0x0000000040177f32 0x0 - *fill* 0x0000000040177f32 0x0 - *fill* 0x0000000040177f32 0x2 - .text.abInit 0x0000000040177f34 0xb esp-idf/console/libconsole.a(linenoise.c.obj) - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x0 - *fill* 0x0000000040177f3f 0x1 + 0x000000004018a4b4 0x32 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x000000004018a4b4 arg_print_errors + *fill* 0x000000004018a4e6 0x0 + *fill* 0x000000004018a4e6 0x0 + *fill* 0x000000004018a4e6 0x0 + *fill* 0x000000004018a4e6 0x0 + *fill* 0x000000004018a4e6 0x0 + *fill* 0x000000004018a4e6 0x0 + *fill* 0x000000004018a4e6 0x0 + *fill* 0x000000004018a4e6 0x0 + *fill* 0x000000004018a4e6 0x0 + *fill* 0x000000004018a4e6 0x2 + .text.abInit 0x000000004018a4e8 0xb esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x0 + *fill* 0x000000004018a4f3 0x1 .text.httpd_send_all - 0x0000000040177f40 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - *fill* 0x0000000040177f70 0x0 - *fill* 0x0000000040177f70 0x0 - *fill* 0x0000000040177f70 0x0 - *fill* 0x0000000040177f70 0x0 - *fill* 0x0000000040177f70 0x0 - *fill* 0x0000000040177f70 0x0 - *fill* 0x0000000040177f70 0x0 - *fill* 0x0000000040177f70 0x0 + 0x000000004018a4f4 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x000000004018a524 0x0 + *fill* 0x000000004018a524 0x0 + *fill* 0x000000004018a524 0x0 + *fill* 0x000000004018a524 0x0 + *fill* 0x000000004018a524 0x0 + *fill* 0x000000004018a524 0x0 + *fill* 0x000000004018a524 0x0 + *fill* 0x000000004018a524 0x0 .text.httpd_resp_set_status - 0x0000000040177f70 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x0000000040177f70 httpd_resp_set_status - *fill* 0x0000000040177f9d 0x3 + 0x000000004018a524 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000004018a524 httpd_resp_set_status + *fill* 0x000000004018a551 0x3 .text.httpd_resp_set_type - 0x0000000040177fa0 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - 0x0000000040177fa0 httpd_resp_set_type - *fill* 0x0000000040177fcd 0x0 - *fill* 0x0000000040177fcd 0x0 - *fill* 0x0000000040177fcd 0x0 - *fill* 0x0000000040177fcd 0x0 - *fill* 0x0000000040177fcd 0x0 - *fill* 0x0000000040177fcd 0x0 - *fill* 0x0000000040177fcd 0x0 - *fill* 0x0000000040177fcd 0x0 - *fill* 0x0000000040177fcd 0x3 + 0x000000004018a554 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000004018a554 httpd_resp_set_type + *fill* 0x000000004018a581 0x0 + *fill* 0x000000004018a581 0x0 + *fill* 0x000000004018a581 0x0 + *fill* 0x000000004018a581 0x0 + *fill* 0x000000004018a581 0x0 + *fill* 0x000000004018a581 0x0 + *fill* 0x000000004018a581 0x0 + *fill* 0x000000004018a581 0x0 + *fill* 0x000000004018a581 0x3 .text.httpd_is_sess_available - 0x0000000040177fd0 0x31 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x0000000040177fd0 httpd_is_sess_available - *fill* 0x0000000040178001 0x3 + 0x000000004018a584 0x31 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x000000004018a584 httpd_is_sess_available + *fill* 0x000000004018a5b5 0x3 .text.httpd_sess_get - 0x0000000040178004 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x0000000040178004 httpd_sess_get - *fill* 0x0000000040178048 0x0 + 0x000000004018a5b8 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x000000004018a5b8 httpd_sess_get + *fill* 0x000000004018a5fc 0x0 .text.httpd_sess_set_descriptors - 0x0000000040178048 0x53 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x0000000040178048 httpd_sess_set_descriptors - *fill* 0x000000004017809b 0x0 - *fill* 0x000000004017809b 0x0 - *fill* 0x000000004017809b 0x1 + 0x000000004018a5fc 0x53 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x000000004018a5fc httpd_sess_set_descriptors + *fill* 0x000000004018a64f 0x0 + *fill* 0x000000004018a64f 0x0 + *fill* 0x000000004018a64f 0x1 .text.httpd_sess_init - 0x000000004017809c 0x32 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x000000004017809c httpd_sess_init - *fill* 0x00000000401780ce 0x0 - *fill* 0x00000000401780ce 0x0 - *fill* 0x00000000401780ce 0x2 + 0x000000004018a650 0x32 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x000000004018a650 httpd_sess_init + *fill* 0x000000004018a682 0x0 + *fill* 0x000000004018a682 0x0 + *fill* 0x000000004018a682 0x2 .text.httpd_sess_iterate - 0x00000000401780d0 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - 0x00000000401780d0 httpd_sess_iterate - *fill* 0x0000000040178132 0x0 - *fill* 0x0000000040178132 0x0 - *fill* 0x0000000040178132 0x0 - *fill* 0x0000000040178132 0x0 - *fill* 0x0000000040178132 0x0 - *fill* 0x0000000040178132 0x0 - *fill* 0x0000000040178132 0x0 - *fill* 0x0000000040178132 0x0 - *fill* 0x0000000040178132 0x2 + 0x000000004018a684 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x000000004018a684 httpd_sess_iterate + *fill* 0x000000004018a6e6 0x0 + *fill* 0x000000004018a6e6 0x0 + *fill* 0x000000004018a6e6 0x0 + *fill* 0x000000004018a6e6 0x0 + *fill* 0x000000004018a6e6 0x0 + *fill* 0x000000004018a6e6 0x0 + *fill* 0x000000004018a6e6 0x0 + *fill* 0x000000004018a6e6 0x0 + *fill* 0x000000004018a6e6 0x2 .text.httpd_get_global_transport_ctx - 0x0000000040178134 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - 0x0000000040178134 httpd_get_global_transport_ctx - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x0 - *fill* 0x000000004017813b 0x1 + 0x000000004018a6e8 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x000000004018a6e8 httpd_get_global_transport_ctx + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x0 + *fill* 0x000000004018a6ef 0x1 .text.ff_wl_initialize - 0x000000004017813c 0x7 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - 0x000000004017813c ff_wl_initialize - *fill* 0x0000000040178143 0x1 + 0x000000004018a6f0 0x7 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x000000004018a6f0 ff_wl_initialize + *fill* 0x000000004018a6f7 0x1 .text.ff_wl_status - 0x0000000040178144 0x7 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - 0x0000000040178144 ff_wl_status - *fill* 0x000000004017814b 0x0 - *fill* 0x000000004017814b 0x0 - *fill* 0x000000004017814b 0x0 - *fill* 0x000000004017814b 0x0 - *fill* 0x000000004017814b 0x1 - .text.ld_word 0x000000004017814c 0x11 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x000000004017815d 0x3 + 0x000000004018a6f8 0x7 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x000000004018a6f8 ff_wl_status + *fill* 0x000000004018a6ff 0x0 + *fill* 0x000000004018a6ff 0x0 + *fill* 0x000000004018a6ff 0x0 + *fill* 0x000000004018a6ff 0x0 + *fill* 0x000000004018a6ff 0x1 + .text.ld_word 0x000000004018a700 0x11 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004018a711 0x3 .text.ld_dword - 0x0000000040178160 0x23 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x0000000040178183 0x1 - .text.st_word 0x0000000040178184 0xe esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x0000000040178192 0x2 + 0x000000004018a714 0x23 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004018a737 0x1 + .text.st_word 0x000000004018a738 0xe esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004018a746 0x2 .text.st_dword - 0x0000000040178194 0x1a esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x00000000401781ae 0x2 - .text.mem_cpy 0x00000000401781b0 0x16 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x00000000401781c6 0x2 - .text.mem_set 0x00000000401781c8 0xf esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x00000000401781d7 0x1 - .text.mem_cmp 0x00000000401781d8 0x20 esp-idf/fatfs/libfatfs.a(ff.c.obj) - .text.chk_chr 0x00000000401781f8 0x14 esp-idf/fatfs/libfatfs.a(ff.c.obj) - .text.dbc_1st 0x000000004017820c 0x7 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x0000000040178213 0x1 - .text.dbc_2nd 0x0000000040178214 0x7 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x000000004017821b 0x1 + 0x000000004018a748 0x1a esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004018a762 0x2 + .text.mem_cpy 0x000000004018a764 0x16 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004018a77a 0x2 + .text.mem_set 0x000000004018a77c 0xf esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004018a78b 0x1 + .text.mem_cmp 0x000000004018a78c 0x20 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text.chk_chr 0x000000004018a7ac 0x14 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text.dbc_1st 0x000000004018a7c0 0x7 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004018a7c7 0x1 + .text.dbc_2nd 0x000000004018a7c8 0x7 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004018a7cf 0x1 .text.clst2sect - 0x000000004017821c 0x20 esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x000000004017823c 0x0 - *fill* 0x000000004017823c 0x0 - *fill* 0x000000004017823c 0x0 - *fill* 0x000000004017823c 0x0 + 0x000000004018a7d0 0x20 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004018a7f0 0x0 + *fill* 0x000000004018a7f0 0x0 + *fill* 0x000000004018a7f0 0x0 + *fill* 0x000000004018a7f0 0x0 .text.get_ldnumber - 0x000000004017823c 0x6c esp-idf/fatfs/libfatfs.a(ff.c.obj) - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 - *fill* 0x00000000401782a8 0x0 + 0x000000004018a7f0 0x6c esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 + *fill* 0x000000004018a85c 0x0 .text._ZN12Flash_Access5flushEv - 0x00000000401782a8 0x7 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - 0x00000000401782a8 _ZN12Flash_Access5flushEv - *fill* 0x00000000401782af 0x1 + 0x000000004018a85c 0x7 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x000000004018a85c _ZN12Flash_Access5flushEv + *fill* 0x000000004018a863 0x1 .text._ZN9Partition9chip_sizeEv - 0x00000000401782b0 0x9 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - 0x00000000401782b0 _ZN9Partition9chip_sizeEv - *fill* 0x00000000401782b9 0x0 - *fill* 0x00000000401782b9 0x3 + 0x000000004018a864 0x9 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x000000004018a864 _ZN9Partition9chip_sizeEv + *fill* 0x000000004018a86d 0x0 + *fill* 0x000000004018a86d 0x3 .text._ZN9PartitionD2Ev - 0x00000000401782bc 0x5 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - 0x00000000401782bc _ZN9PartitionD2Ev - 0x00000000401782bc _ZN9PartitionD1Ev - *fill* 0x00000000401782c1 0x0 - *fill* 0x00000000401782c1 0x0 - *fill* 0x00000000401782c1 0x0 - *fill* 0x00000000401782c1 0x0 - *fill* 0x00000000401782c1 0x3 + 0x000000004018a870 0x5 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x000000004018a870 _ZN9PartitionD2Ev + 0x000000004018a870 _ZN9PartitionD1Ev + *fill* 0x000000004018a875 0x0 + *fill* 0x000000004018a875 0x0 + *fill* 0x000000004018a875 0x0 + *fill* 0x000000004018a875 0x0 + *fill* 0x000000004018a875 0x3 .text._ZN8WL_Flash9chip_sizeEv - 0x00000000401782c4 0x12 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x00000000401782c4 _ZN8WL_Flash9chip_sizeEv - *fill* 0x00000000401782d6 0x2 + 0x000000004018a878 0x12 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x000000004018a878 _ZN8WL_Flash9chip_sizeEv + *fill* 0x000000004018a88a 0x2 .text._ZN8WL_Flash11sector_sizeEv - 0x00000000401782d8 0x12 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x00000000401782d8 _ZN8WL_Flash11sector_sizeEv - *fill* 0x00000000401782ea 0x0 - *fill* 0x00000000401782ea 0x0 - *fill* 0x00000000401782ea 0x0 - *fill* 0x00000000401782ea 0x0 - *fill* 0x00000000401782ea 0x0 - *fill* 0x00000000401782ea 0x0 - *fill* 0x00000000401782ea 0x0 - *fill* 0x00000000401782ea 0x0 - *fill* 0x00000000401782ea 0x0 - *fill* 0x00000000401782ea 0x2 + 0x000000004018a88c 0x12 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x000000004018a88c _ZN8WL_Flash11sector_sizeEv + *fill* 0x000000004018a89e 0x0 + *fill* 0x000000004018a89e 0x0 + *fill* 0x000000004018a89e 0x0 + *fill* 0x000000004018a89e 0x0 + *fill* 0x000000004018a89e 0x0 + *fill* 0x000000004018a89e 0x0 + *fill* 0x000000004018a89e 0x0 + *fill* 0x000000004018a89e 0x0 + *fill* 0x000000004018a89e 0x0 + *fill* 0x000000004018a89e 0x2 .text._ZN8WL_Flash8calcAddrEj - 0x00000000401782ec 0x24 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - 0x00000000401782ec _ZN8WL_Flash8calcAddrEj - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 - *fill* 0x0000000040178310 0x0 + 0x000000004018a8a0 0x24 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x000000004018a8a0 _ZN8WL_Flash8calcAddrEj + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 + *fill* 0x000000004018a8c4 0x0 .text.vfs_spiffs_get_mtime - 0x0000000040178310 0x22 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x0 - *fill* 0x0000000040178332 0x2 + 0x000000004018a8c4 0x22 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x0 + *fill* 0x000000004018a8e6 0x2 .text.SPIFFS_errno - 0x0000000040178334 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - 0x0000000040178334 SPIFFS_errno + 0x000000004018a8e8 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x000000004018a8e8 SPIFFS_errno .text.SPIFFS_clearerr - 0x000000004017833c 0xa esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - 0x000000004017833c SPIFFS_clearerr - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x0 - *fill* 0x0000000040178346 0x2 + 0x000000004018a8f0 0xa esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x000000004018a8f0 SPIFFS_clearerr + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x0 + *fill* 0x000000004018a8fa 0x2 .text.spiffs_cache_page_get - 0x0000000040178348 0x4b esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - *fill* 0x0000000040178393 0x1 + 0x000000004018a8fc 0x4b esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + *fill* 0x000000004018a947 0x1 .text.spiffs_cache_page_free - 0x0000000040178394 0x6e esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - *fill* 0x0000000040178402 0x2 + 0x000000004018a948 0x6e esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + *fill* 0x000000004018a9b6 0x2 .text.spiffs_cache_page_allocate - 0x0000000040178404 0x45 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - *fill* 0x0000000040178449 0x0 - *fill* 0x0000000040178449 0x3 + 0x000000004018a9b8 0x45 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + *fill* 0x000000004018a9fd 0x0 + *fill* 0x000000004018a9fd 0x3 .text.spiffs_cache_page_get_by_fd - 0x000000004017844c 0x48 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - 0x000000004017844c spiffs_cache_page_get_by_fd - *fill* 0x0000000040178494 0x0 - *fill* 0x0000000040178494 0x0 - *fill* 0x0000000040178494 0x0 - *fill* 0x0000000040178494 0x0 - *fill* 0x0000000040178494 0x0 - *fill* 0x0000000040178494 0x0 + 0x000000004018aa00 0x48 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x000000004018aa00 spiffs_cache_page_get_by_fd + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + *fill* 0x000000004018aa48 0x0 + .text.lv_obj_set_click + 0x000000004018aa48 0x16 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aa48 lv_obj_set_click + *fill* 0x000000004018aa5e 0x0 + *fill* 0x000000004018aa5e 0x2 + .text.lv_obj_set_drag_throw + 0x000000004018aa60 0x19 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aa60 lv_obj_set_drag_throw + *fill* 0x000000004018aa79 0x3 + .text.lv_obj_set_protect + 0x000000004018aa7c 0x11 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aa7c lv_obj_set_protect + *fill* 0x000000004018aa8d 0x3 + .text.lv_obj_clear_protect + 0x000000004018aa90 0x16 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aa90 lv_obj_clear_protect + *fill* 0x000000004018aaa6 0x2 + .text.lv_obj_set_event_cb + 0x000000004018aaa8 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aaa8 lv_obj_set_event_cb + *fill* 0x000000004018aaaf 0x0 + *fill* 0x000000004018aaaf 0x0 + *fill* 0x000000004018aaaf 0x0 + *fill* 0x000000004018aaaf 0x1 + .text.lv_obj_set_signal_cb + 0x000000004018aab0 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aab0 lv_obj_set_signal_cb + *fill* 0x000000004018aab7 0x1 + .text.lv_obj_set_design_cb + 0x000000004018aab8 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aab8 lv_obj_set_design_cb + *fill* 0x000000004018aabf 0x1 + .text.lv_obj_get_parent + 0x000000004018aac0 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aac0 lv_obj_get_parent + *fill* 0x000000004018aac7 0x0 + *fill* 0x000000004018aac7 0x0 + *fill* 0x000000004018aac7 0x0 + *fill* 0x000000004018aac7 0x0 + *fill* 0x000000004018aac7 0x0 + *fill* 0x000000004018aac7 0x0 + *fill* 0x000000004018aac7 0x0 + *fill* 0x000000004018aac7 0x1 + .text.lv_obj_get_width + 0x000000004018aac8 0x16 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aac8 lv_obj_get_width + *fill* 0x000000004018aade 0x2 + .text.lv_obj_get_height + 0x000000004018aae0 0x16 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aae0 lv_obj_get_height + *fill* 0x000000004018aaf6 0x2 + .text.lv_obj_get_auto_realign + 0x000000004018aaf8 0xb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018aaf8 lv_obj_get_auto_realign + *fill* 0x000000004018ab03 0x1 + .text.lv_obj_get_hidden + 0x000000004018ab04 0xb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018ab04 lv_obj_get_hidden + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x0 + *fill* 0x000000004018ab0f 0x1 + .text.lv_obj_get_base_dir + 0x000000004018ab10 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018ab10 lv_obj_get_base_dir + *fill* 0x000000004018ab17 0x0 + *fill* 0x000000004018ab17 0x0 + *fill* 0x000000004018ab17 0x0 + *fill* 0x000000004018ab17 0x1 + .text.lv_obj_is_protected + 0x000000004018ab18 0x14 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018ab18 lv_obj_is_protected + .text.lv_obj_get_signal_cb + 0x000000004018ab2c 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018ab2c lv_obj_get_signal_cb + *fill* 0x000000004018ab33 0x1 + .text.lv_obj_get_design_cb + 0x000000004018ab34 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018ab34 lv_obj_get_design_cb + *fill* 0x000000004018ab3b 0x1 + .text.lv_obj_get_ext_attr + 0x000000004018ab3c 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018ab3c lv_obj_get_ext_attr + *fill* 0x000000004018ab43 0x1 + .text.lv_obj_get_group + 0x000000004018ab44 0x7 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018ab44 lv_obj_get_group + *fill* 0x000000004018ab4b 0x0 + *fill* 0x000000004018ab4b 0x0 + *fill* 0x000000004018ab4b 0x0 + *fill* 0x000000004018ab4b 0x0 + *fill* 0x000000004018ab4b 0x0 + *fill* 0x000000004018ab4b 0x0 + *fill* 0x000000004018ab4b 0x0 + *fill* 0x000000004018ab4b 0x1 + .text.lv_obj_handle_get_type_signal + 0x000000004018ab4c 0x24 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x000000004018ab4c lv_obj_handle_get_type_signal + *fill* 0x000000004018ab70 0x0 + *fill* 0x000000004018ab70 0x0 + *fill* 0x000000004018ab70 0x0 + *fill* 0x000000004018ab70 0x0 + .text.lv_refr_init + 0x000000004018ab70 0x5 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x000000004018ab70 lv_refr_init + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x0 + *fill* 0x000000004018ab75 0x3 + .text.lv_img_decoder_read_line + 0x000000004018ab78 0x22 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x000000004018ab78 lv_img_decoder_read_line + *fill* 0x000000004018ab9a 0x2 + .text.lv_img_decoder_set_info_cb + 0x000000004018ab9c 0x7 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x000000004018ab9c lv_img_decoder_set_info_cb + *fill* 0x000000004018aba3 0x1 + .text.lv_img_decoder_set_open_cb + 0x000000004018aba4 0x7 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x000000004018aba4 lv_img_decoder_set_open_cb + *fill* 0x000000004018abab 0x1 + .text.lv_img_decoder_set_read_line_cb + 0x000000004018abac 0x7 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x000000004018abac lv_img_decoder_set_read_line_cb + *fill* 0x000000004018abb3 0x1 + .text.lv_img_decoder_set_close_cb + 0x000000004018abb4 0x7 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x000000004018abb4 lv_img_decoder_set_close_cb + *fill* 0x000000004018abbb 0x0 + *fill* 0x000000004018abbb 0x1 + .text.lv_font_get_glyph_bitmap + 0x000000004018abbc 0x10 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + 0x000000004018abbc lv_font_get_glyph_bitmap + .text.lv_font_get_glyph_dsc + 0x000000004018abcc 0x14 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + 0x000000004018abcc lv_font_get_glyph_dsc + *fill* 0x000000004018abe0 0x0 + *fill* 0x000000004018abe0 0x0 + .text.lv_disp_buf_init + 0x000000004018abe0 0x33 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x000000004018abe0 lv_disp_buf_init + *fill* 0x000000004018ac13 0x0 + *fill* 0x000000004018ac13 0x0 + *fill* 0x000000004018ac13 0x0 + *fill* 0x000000004018ac13 0x0 + *fill* 0x000000004018ac13 0x1 + .text.lv_disp_flush_ready + 0x000000004018ac14 0x15 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x000000004018ac14 lv_disp_flush_ready + *fill* 0x000000004018ac29 0x3 + .text.lv_disp_get_buf + 0x000000004018ac2c 0x7 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x000000004018ac2c lv_disp_get_buf + *fill* 0x000000004018ac33 0x1 + .text.lv_disp_is_double_buf + 0x000000004018ac34 0x19 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x000000004018ac34 lv_disp_is_double_buf + *fill* 0x000000004018ac4d 0x0 + *fill* 0x000000004018ac4d 0x0 + *fill* 0x000000004018ac4d 0x3 + .text.lv_anim_path_linear + 0x000000004018ac50 0x2c esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0x000000004018ac50 lv_anim_path_linear + *fill* 0x000000004018ac7c 0x0 + *fill* 0x000000004018ac7c 0x0 + *fill* 0x000000004018ac7c 0x0 + *fill* 0x000000004018ac7c 0x0 + *fill* 0x000000004018ac7c 0x0 + .text.lv_area_set + 0x000000004018ac7c 0x11 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + 0x000000004018ac7c lv_area_set + *fill* 0x000000004018ac8d 0x3 + .text.lv_area_set_width + 0x000000004018ac90 0x15 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + 0x000000004018ac90 lv_area_set_width + *fill* 0x000000004018aca5 0x3 + .text.lv_area_set_height + 0x000000004018aca8 0x15 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + 0x000000004018aca8 lv_area_set_height + *fill* 0x000000004018acbd 0x3 + .text.lv_area_get_size + 0x000000004018acc0 0x1e esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + 0x000000004018acc0 lv_area_get_size + *fill* 0x000000004018acde 0x2 + .text.lv_area_intersect + 0x000000004018ace0 0x48 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + 0x000000004018ace0 lv_area_intersect + .text.lv_area_join + 0x000000004018ad28 0x35 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + 0x000000004018ad28 lv_area_join + *fill* 0x000000004018ad5d 0x3 + .text.lv_area_is_on + 0x000000004018ad60 0x40 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + 0x000000004018ad60 lv_area_is_on + .text.lv_area_is_in + 0x000000004018ada0 0x40 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + 0x000000004018ada0 lv_area_is_in + .text.lv_circ_init + 0x000000004018ade0 0x18 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + 0x000000004018ade0 lv_circ_init + .text.lv_circ_cont + 0x000000004018adf8 0x15 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + 0x000000004018adf8 lv_circ_cont + *fill* 0x000000004018ae0d 0x3 + .text.lv_circ_next + 0x000000004018ae10 0x49 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + 0x000000004018ae10 lv_circ_next + *fill* 0x000000004018ae59 0x3 + .text.lv_fs_get_real_path + 0x000000004018ae5c 0x2e esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + *fill* 0x000000004018ae8a 0x0 + *fill* 0x000000004018ae8a 0x2 + .text.lv_fs_read + 0x000000004018ae8c 0x36 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0x000000004018ae8c lv_fs_read + *fill* 0x000000004018aec2 0x2 + .text.lv_fs_seek + 0x000000004018aec4 0x21 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0x000000004018aec4 lv_fs_seek + *fill* 0x000000004018aee5 0x0 + *fill* 0x000000004018aee5 0x0 + *fill* 0x000000004018aee5 0x3 + .text.node_set_next + 0x000000004018aee8 0x40 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .text.node_set_prev + 0x000000004018af28 0x3c esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .text.lv_ll_init + 0x000000004018af64 0x19 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x000000004018af64 lv_ll_init + *fill* 0x000000004018af7d 0x0 + *fill* 0x000000004018af7d 0x3 + .text.lv_ll_get_head + 0x000000004018af80 0xe esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x000000004018af80 lv_ll_get_head + *fill* 0x000000004018af8e 0x2 + .text.lv_ll_get_tail + 0x000000004018af90 0xe esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x000000004018af90 lv_ll_get_tail + *fill* 0x000000004018af9e 0x2 + .text.lv_ll_get_next + 0x000000004018afa0 0x2c esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x000000004018afa0 lv_ll_get_next + .text.lv_ll_get_prev + 0x000000004018afcc 0x2a esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x000000004018afcc lv_ll_get_prev + *fill* 0x000000004018aff6 0x0 + *fill* 0x000000004018aff6 0x0 + *fill* 0x000000004018aff6 0x0 + *fill* 0x000000004018aff6 0x2 + .text.lv_ll_is_empty + 0x000000004018aff8 0x21 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + 0x000000004018aff8 lv_ll_is_empty + *fill* 0x000000004018b019 0x0 + *fill* 0x000000004018b019 0x0 + *fill* 0x000000004018b019 0x0 + *fill* 0x000000004018b019 0x0 + *fill* 0x000000004018b019 0x0 + *fill* 0x000000004018b019 0x0 + *fill* 0x000000004018b019 0x0 + *fill* 0x000000004018b019 0x0 + *fill* 0x000000004018b019 0x3 + .text.lv_task_set_cb + 0x000000004018b01c 0x7 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x000000004018b01c lv_task_set_cb + *fill* 0x000000004018b023 0x0 + *fill* 0x000000004018b023 0x0 + *fill* 0x000000004018b023 0x1 + .text.lv_task_set_period + 0x000000004018b024 0x7 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0x000000004018b024 lv_task_set_period + *fill* 0x000000004018b02b 0x0 + *fill* 0x000000004018b02b 0x0 + *fill* 0x000000004018b02b 0x0 + *fill* 0x000000004018b02b 0x1 + .text.lv_chart_create_label_iter + 0x000000004018b02c 0x4a esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x0 + *fill* 0x000000004018b076 0x2 + .text.lv_group_get_focused + 0x000000004018b078 0x18 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x000000004018b078 lv_group_get_focused + *fill* 0x000000004018b090 0x0 + *fill* 0x000000004018b090 0x0 + *fill* 0x000000004018b090 0x0 + .text.lv_indev_is_dragging + 0x000000004018b090 0x2e esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + 0x000000004018b090 lv_indev_is_dragging + *fill* 0x000000004018b0be 0x2 + .text.lv_indev_get_vect + 0x000000004018b0c0 0x42 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + 0x000000004018b0c0 lv_indev_get_vect + *fill* 0x000000004018b102 0x0 + *fill* 0x000000004018b102 0x2 + .text.lv_img_color_format_is_chroma_keyed + 0x000000004018b104 0x29 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + 0x000000004018b104 lv_img_color_format_is_chroma_keyed + *fill* 0x000000004018b12d 0x3 + .text.lv_img_color_format_has_alpha + 0x000000004018b130 0x31 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + 0x000000004018b130 lv_img_color_format_has_alpha + *fill* 0x000000004018b161 0x0 + *fill* 0x000000004018b161 0x3 + .text.lv_img_src_get_type + 0x000000004018b164 0x2d esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + 0x000000004018b164 lv_img_src_get_type + *fill* 0x000000004018b191 0x0 + *fill* 0x000000004018b191 0x3 + .text.line_init + 0x000000004018b194 0x90 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .text.line_next + 0x000000004018b224 0x65 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + *fill* 0x000000004018b289 0x0 + *fill* 0x000000004018b289 0x0 + *fill* 0x000000004018b289 0x0 + *fill* 0x000000004018b289 0x0 + *fill* 0x000000004018b289 0x0 + *fill* 0x000000004018b289 0x3 + .text.point_swap + 0x000000004018b28c 0x1d esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + *fill* 0x000000004018b2a9 0x0 + *fill* 0x000000004018b2a9 0x0 + *fill* 0x000000004018b2a9 0x0 + *fill* 0x000000004018b2a9 0x3 + .text.kern_pair_8_compare + 0x000000004018b2ac 0x1f esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + *fill* 0x000000004018b2cb 0x1 + .text.kern_pair_16_compare + 0x000000004018b2cc 0x1f esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + *fill* 0x000000004018b2eb 0x1 + .text.get_bits + 0x000000004018b2ec 0x3b esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + *fill* 0x000000004018b327 0x0 + *fill* 0x000000004018b327 0x0 + *fill* 0x000000004018b327 0x0 + *fill* 0x000000004018b327 0x1 + .text.unicode_list_compare + 0x000000004018b328 0xe esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + *fill* 0x000000004018b336 0x0 + *fill* 0x000000004018b336 0x0 + *fill* 0x000000004018b336 0x0 + *fill* 0x000000004018b336 0x0 + *fill* 0x000000004018b336 0x2 + .text.lv_txt_utf8_size + 0x000000004018b338 0x46 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + *fill* 0x000000004018b37e 0x0 + *fill* 0x000000004018b37e 0x0 + *fill* 0x000000004018b37e 0x0 + *fill* 0x000000004018b37e 0x0 + *fill* 0x000000004018b37e 0x2 + .text.lv_txt_is_cmd + 0x000000004018b380 0x54 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0x000000004018b380 lv_txt_is_cmd + *fill* 0x000000004018b3d4 0x0 + *fill* 0x000000004018b3d4 0x0 + *fill* 0x000000004018b3d4 0x0 + .text.lv_utils_bsearch + 0x000000004018b3d4 0x40 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + 0x000000004018b3d4 lv_utils_bsearch + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 + *fill* 0x000000004018b414 0x0 .text.s_compare_reserved_regions - 0x0000000040178494 0xc esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - *fill* 0x00000000401784a0 0x0 - *fill* 0x00000000401784a0 0x0 - *fill* 0x00000000401784a0 0x0 - *fill* 0x00000000401784a0 0x0 + 0x000000004018b414 0xc esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + *fill* 0x000000004018b420 0x0 + *fill* 0x000000004018b420 0x0 + *fill* 0x000000004018b420 0x0 + *fill* 0x000000004018b420 0x0 .text.uart_hal_set_stop_bits - 0x00000000401784a0 0x5d esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x00000000401784a0 uart_hal_set_stop_bits - *fill* 0x00000000401784fd 0x3 + 0x000000004018b420 0x5d esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004018b420 uart_hal_set_stop_bits + *fill* 0x000000004018b47d 0x3 .text.uart_hal_get_stop_bits - 0x0000000040178500 0x2c esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x0000000040178500 uart_hal_get_stop_bits + 0x000000004018b480 0x2c esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004018b480 uart_hal_get_stop_bits .text.uart_hal_set_data_bit_num - 0x000000004017852c 0x1f esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x000000004017852c uart_hal_set_data_bit_num - *fill* 0x000000004017854b 0x1 + 0x000000004018b4ac 0x1f esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004018b4ac uart_hal_set_data_bit_num + *fill* 0x000000004018b4cb 0x1 .text.uart_hal_get_data_bit_num - 0x000000004017854c 0x11 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x000000004017854c uart_hal_get_data_bit_num - *fill* 0x000000004017855d 0x3 + 0x000000004018b4cc 0x11 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004018b4cc uart_hal_get_data_bit_num + *fill* 0x000000004018b4dd 0x3 .text.uart_hal_set_parity - 0x0000000040178560 0x36 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x0000000040178560 uart_hal_set_parity - *fill* 0x0000000040178596 0x2 + 0x000000004018b4e0 0x36 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004018b4e0 uart_hal_set_parity + *fill* 0x000000004018b516 0x2 .text.uart_hal_get_parity - 0x0000000040178598 0x26 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x0000000040178598 uart_hal_get_parity - *fill* 0x00000000401785be 0x0 - *fill* 0x00000000401785be 0x2 + 0x000000004018b518 0x26 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004018b518 uart_hal_get_parity + *fill* 0x000000004018b53e 0x0 + *fill* 0x000000004018b53e 0x2 .text.uart_hal_get_sclk - 0x00000000401785c0 0x16 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x00000000401785c0 uart_hal_get_sclk - *fill* 0x00000000401785d6 0x0 - *fill* 0x00000000401785d6 0x2 + 0x000000004018b540 0x16 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004018b540 uart_hal_get_sclk + *fill* 0x000000004018b556 0x0 + *fill* 0x000000004018b556 0x2 .text.uart_hal_set_rxfifo_full_thr - 0x00000000401785d8 0x1d esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x00000000401785d8 uart_hal_set_rxfifo_full_thr - *fill* 0x00000000401785f5 0x3 + 0x000000004018b558 0x1d esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004018b558 uart_hal_set_rxfifo_full_thr + *fill* 0x000000004018b575 0x3 .text.uart_hal_set_wakeup_thrd - 0x00000000401785f8 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x00000000401785f8 uart_hal_set_wakeup_thrd - *fill* 0x0000000040178618 0x0 + 0x000000004018b578 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x000000004018b578 uart_hal_set_wakeup_thrd + *fill* 0x000000004018b598 0x0 .text.mpi_get_digit - 0x0000000040178618 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - *fill* 0x000000004017865a 0x2 + 0x000000004018b598 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x000000004018b5da 0x2 .text.ct_lt_mpi_uint - 0x000000004017865c 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - *fill* 0x000000004017867b 0x1 + 0x000000004018b5dc 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x000000004018b5fb 0x1 .text.mpi_sub_hlp - 0x000000004017867c 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - *fill* 0x00000000401786cc 0x0 + 0x000000004018b5fc 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x000000004018b64c 0x0 .text.mbedtls_mpi_init - 0x00000000401786cc 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x00000000401786cc mbedtls_mpi_init - *fill* 0x00000000401786db 0x0 - *fill* 0x00000000401786db 0x0 - *fill* 0x00000000401786db 0x0 - *fill* 0x00000000401786db 0x0 - *fill* 0x00000000401786db 0x0 - *fill* 0x00000000401786db 0x1 + 0x000000004018b64c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004018b64c mbedtls_mpi_init + *fill* 0x000000004018b65b 0x0 + *fill* 0x000000004018b65b 0x0 + *fill* 0x000000004018b65b 0x0 + *fill* 0x000000004018b65b 0x0 + *fill* 0x000000004018b65b 0x0 + *fill* 0x000000004018b65b 0x1 .text.mbedtls_mpi_get_bit - 0x00000000401786dc 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x00000000401786dc mbedtls_mpi_get_bit - *fill* 0x0000000040178704 0x0 + 0x000000004018b65c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004018b65c mbedtls_mpi_get_bit + *fill* 0x000000004018b684 0x0 .text.mbedtls_mpi_lsb - 0x0000000040178704 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x0000000040178704 mbedtls_mpi_lsb - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x0 - *fill* 0x0000000040178735 0x3 + 0x000000004018b684 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004018b684 mbedtls_mpi_lsb + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x0 + *fill* 0x000000004018b6b5 0x3 .text.ecp_pick_window_size - 0x0000000040178738 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 - *fill* 0x0000000040178760 0x0 + 0x000000004018b6b8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 + *fill* 0x000000004018b6e0 0x0 .text.mbedtls_entropy_add_source - 0x0000000040178760 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0x0000000040178760 mbedtls_entropy_add_source - *fill* 0x0000000040178791 0x0 - *fill* 0x0000000040178791 0x0 - *fill* 0x0000000040178791 0x0 - *fill* 0x0000000040178791 0x3 + 0x000000004018b6e0 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x000000004018b6e0 mbedtls_entropy_add_source + *fill* 0x000000004018b711 0x0 + *fill* 0x000000004018b711 0x0 + *fill* 0x000000004018b711 0x0 + *fill* 0x000000004018b711 0x3 .text.mbedtls_md_init - 0x0000000040178794 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x0000000040178794 mbedtls_md_init - *fill* 0x00000000401787bf 0x0 - *fill* 0x00000000401787bf 0x0 - *fill* 0x00000000401787bf 0x0 - *fill* 0x00000000401787bf 0x0 - *fill* 0x00000000401787bf 0x0 - *fill* 0x00000000401787bf 0x0 - *fill* 0x00000000401787bf 0x0 - *fill* 0x00000000401787bf 0x0 - *fill* 0x00000000401787bf 0x1 + 0x000000004018b714 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004018b714 mbedtls_md_init + *fill* 0x000000004018b73f 0x0 + *fill* 0x000000004018b73f 0x0 + *fill* 0x000000004018b73f 0x0 + *fill* 0x000000004018b73f 0x0 + *fill* 0x000000004018b73f 0x0 + *fill* 0x000000004018b73f 0x0 + *fill* 0x000000004018b73f 0x0 + *fill* 0x000000004018b73f 0x0 + *fill* 0x000000004018b73f 0x1 .text.mbedtls_md_get_size - 0x00000000401787c0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x00000000401787c0 mbedtls_md_get_size - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 - *fill* 0x00000000401787d0 0x0 + 0x000000004018b740 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004018b740 mbedtls_md_get_size + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 + *fill* 0x000000004018b750 0x0 .text.mbedtls_pk_init - 0x00000000401787d0 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x00000000401787d0 mbedtls_pk_init - *fill* 0x00000000401787db 0x0 - *fill* 0x00000000401787db 0x0 - *fill* 0x00000000401787db 0x1 + 0x000000004018b750 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004018b750 mbedtls_pk_init + *fill* 0x000000004018b75b 0x0 + *fill* 0x000000004018b75b 0x0 + *fill* 0x000000004018b75b 0x1 .text.mbedtls_pk_can_do - 0x00000000401787dc 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x00000000401787dc mbedtls_pk_can_do - *fill* 0x00000000401787fa 0x0 - *fill* 0x00000000401787fa 0x0 - *fill* 0x00000000401787fa 0x0 - *fill* 0x00000000401787fa 0x0 - *fill* 0x00000000401787fa 0x0 - *fill* 0x00000000401787fa 0x0 - *fill* 0x00000000401787fa 0x0 - *fill* 0x00000000401787fa 0x2 + 0x000000004018b75c 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004018b75c mbedtls_pk_can_do + *fill* 0x000000004018b77a 0x0 + *fill* 0x000000004018b77a 0x0 + *fill* 0x000000004018b77a 0x0 + *fill* 0x000000004018b77a 0x0 + *fill* 0x000000004018b77a 0x0 + *fill* 0x000000004018b77a 0x0 + *fill* 0x000000004018b77a 0x0 + *fill* 0x000000004018b77a 0x2 .text.mbedtls_pk_get_bitlen - 0x00000000401787fc 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x00000000401787fc mbedtls_pk_get_bitlen - *fill* 0x000000004017881a 0x0 - *fill* 0x000000004017881a 0x2 + 0x000000004018b77c 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004018b77c mbedtls_pk_get_bitlen + *fill* 0x000000004018b79a 0x0 + *fill* 0x000000004018b79a 0x2 .text.mbedtls_pk_get_type - 0x000000004017881c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0x000000004017881c mbedtls_pk_get_type + 0x000000004018b79c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004018b79c mbedtls_pk_get_type .text.rsa_can_do - 0x0000000040178834 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x0000000040178853 0x0 - *fill* 0x0000000040178853 0x1 + 0x000000004018b7b4 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004018b7d3 0x0 + *fill* 0x000000004018b7d3 0x1 .text.eckey_can_do - 0x0000000040178854 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x0000000040178863 0x1 + 0x000000004018b7d4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004018b7e3 0x1 .text.eckey_get_bitlen - 0x0000000040178864 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x000000004017886c 0x0 + 0x000000004018b7e4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004018b7ec 0x0 .text.eckeydh_can_do - 0x000000004017886c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x000000004017887b 0x1 + 0x000000004018b7ec 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004018b7fb 0x1 .text.ecdsa_can_do - 0x000000004017887c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x0 - *fill* 0x000000004017888d 0x3 + 0x000000004018b7fc 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x0 + *fill* 0x000000004018b80d 0x3 .text.all_or_nothing_int - 0x0000000040178890 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - *fill* 0x000000004017889e 0x2 + 0x000000004018b810 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x000000004018b81e 0x2 .text.size_greater_than - 0x00000000401788a0 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - *fill* 0x00000000401788ab 0x0 - *fill* 0x00000000401788ab 0x0 - *fill* 0x00000000401788ab 0x0 - *fill* 0x00000000401788ab 0x0 - *fill* 0x00000000401788ab 0x0 - *fill* 0x00000000401788ab 0x1 + 0x000000004018b820 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x000000004018b82b 0x0 + *fill* 0x000000004018b82b 0x0 + *fill* 0x000000004018b82b 0x0 + *fill* 0x000000004018b82b 0x0 + *fill* 0x000000004018b82b 0x0 + *fill* 0x000000004018b82b 0x1 .text.mbedtls_rsa_set_padding - 0x00000000401788ac 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x00000000401788ac mbedtls_rsa_set_padding - *fill* 0x00000000401788b7 0x0 - *fill* 0x00000000401788b7 0x1 + 0x000000004018b82c 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x000000004018b82c mbedtls_rsa_set_padding + *fill* 0x000000004018b837 0x0 + *fill* 0x000000004018b837 0x1 .text.mbedtls_rsa_get_len - 0x00000000401788b8 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x00000000401788b8 mbedtls_rsa_get_len - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x0 - *fill* 0x00000000401788bf 0x1 + 0x000000004018b838 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x000000004018b838 mbedtls_rsa_get_len + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x0 + *fill* 0x000000004018b83f 0x1 .text.mbedtls_mpi_msb - 0x00000000401788c0 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - *fill* 0x0000000040178909 0x0 - *fill* 0x0000000040178909 0x0 - *fill* 0x0000000040178909 0x0 - *fill* 0x0000000040178909 0x0 - *fill* 0x0000000040178909 0x0 - *fill* 0x0000000040178909 0x3 + 0x000000004018b840 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x000000004018b889 0x0 + *fill* 0x000000004018b889 0x0 + *fill* 0x000000004018b889 0x0 + *fill* 0x000000004018b889 0x0 + *fill* 0x000000004018b889 0x0 + *fill* 0x000000004018b889 0x3 .text.esp_mpi_hardware_words - 0x000000004017890c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x000000004017890c esp_mpi_hardware_words - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 - *fill* 0x0000000040178918 0x0 + 0x000000004018b88c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004018b88c esp_mpi_hardware_words + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 + *fill* 0x000000004018b898 0x0 .text.mbedtls_zeroize - 0x0000000040178918 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - *fill* 0x0000000040178931 0x0 - *fill* 0x0000000040178931 0x0 - *fill* 0x0000000040178931 0x0 - *fill* 0x0000000040178931 0x0 - *fill* 0x0000000040178931 0x0 - *fill* 0x0000000040178931 0x3 + 0x000000004018b898 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + *fill* 0x000000004018b8b1 0x0 + *fill* 0x000000004018b8b1 0x0 + *fill* 0x000000004018b8b1 0x0 + *fill* 0x000000004018b8b1 0x0 + *fill* 0x000000004018b8b1 0x0 + *fill* 0x000000004018b8b1 0x3 .text.mbedtls_zeroize - 0x0000000040178934 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - *fill* 0x000000004017894d 0x0 - *fill* 0x000000004017894d 0x0 - *fill* 0x000000004017894d 0x0 - *fill* 0x000000004017894d 0x0 - *fill* 0x000000004017894d 0x0 - *fill* 0x000000004017894d 0x0 - *fill* 0x000000004017894d 0x0 - *fill* 0x000000004017894d 0x0 - *fill* 0x000000004017894d 0x3 + 0x000000004018b8b4 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x000000004018b8cd 0x0 + *fill* 0x000000004018b8cd 0x0 + *fill* 0x000000004018b8cd 0x0 + *fill* 0x000000004018b8cd 0x0 + *fill* 0x000000004018b8cd 0x0 + *fill* 0x000000004018b8cd 0x0 + *fill* 0x000000004018b8cd 0x0 + *fill* 0x000000004018b8cd 0x0 + *fill* 0x000000004018b8cd 0x3 .text.mbedtls_zeroize - 0x0000000040178950 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - *fill* 0x0000000040178969 0x0 - *fill* 0x0000000040178969 0x0 - *fill* 0x0000000040178969 0x0 - *fill* 0x0000000040178969 0x0 - *fill* 0x0000000040178969 0x0 - *fill* 0x0000000040178969 0x3 + 0x000000004018b8d0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x000000004018b8e9 0x0 + *fill* 0x000000004018b8e9 0x0 + *fill* 0x000000004018b8e9 0x0 + *fill* 0x000000004018b8e9 0x0 + *fill* 0x000000004018b8e9 0x0 + *fill* 0x000000004018b8e9 0x3 .text.mbedtls_asn1_get_len - 0x000000004017896c 0xf9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x000000004017896c mbedtls_asn1_get_len - *fill* 0x0000000040178a65 0x0 - *fill* 0x0000000040178a65 0x0 - *fill* 0x0000000040178a65 0x0 - *fill* 0x0000000040178a65 0x0 - *fill* 0x0000000040178a65 0x0 - *fill* 0x0000000040178a65 0x0 - *fill* 0x0000000040178a65 0x0 - *fill* 0x0000000040178a65 0x0 - *fill* 0x0000000040178a65 0x0 - *fill* 0x0000000040178a65 0x3 + 0x000000004018b8ec 0xf9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004018b8ec mbedtls_asn1_get_len + *fill* 0x000000004018b9e5 0x0 + *fill* 0x000000004018b9e5 0x0 + *fill* 0x000000004018b9e5 0x0 + *fill* 0x000000004018b9e5 0x0 + *fill* 0x000000004018b9e5 0x0 + *fill* 0x000000004018b9e5 0x0 + *fill* 0x000000004018b9e5 0x0 + *fill* 0x000000004018b9e5 0x0 + *fill* 0x000000004018b9e5 0x0 + *fill* 0x000000004018b9e5 0x3 .text.mbedtls_asn1_write_tag - 0x0000000040178a68 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x0000000040178a68 mbedtls_asn1_write_tag - *fill* 0x0000000040178a89 0x0 - *fill* 0x0000000040178a89 0x0 - *fill* 0x0000000040178a89 0x0 - *fill* 0x0000000040178a89 0x0 - *fill* 0x0000000040178a89 0x0 - *fill* 0x0000000040178a89 0x0 - *fill* 0x0000000040178a89 0x3 + 0x000000004018b9e8 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004018b9e8 mbedtls_asn1_write_tag + *fill* 0x000000004018ba09 0x0 + *fill* 0x000000004018ba09 0x0 + *fill* 0x000000004018ba09 0x0 + *fill* 0x000000004018ba09 0x0 + *fill* 0x000000004018ba09 0x0 + *fill* 0x000000004018ba09 0x0 + *fill* 0x000000004018ba09 0x3 .text.add_pkcs_padding - 0x0000000040178a8c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - *fill* 0x0000000040178aa9 0x0 - *fill* 0x0000000040178aa9 0x3 + 0x000000004018ba0c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x000000004018ba29 0x0 + *fill* 0x000000004018ba29 0x3 .text.add_one_and_zeros_padding - 0x0000000040178aac 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - *fill* 0x0000000040178ad3 0x0 - *fill* 0x0000000040178ad3 0x1 + 0x000000004018ba2c 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x000000004018ba53 0x0 + *fill* 0x000000004018ba53 0x1 .text.add_zeros_and_len_padding - 0x0000000040178ad4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004018ba54 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) .text.add_zeros_padding - 0x0000000040178afc 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 - *fill* 0x0000000040178b10 0x0 + 0x000000004018ba7c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 + *fill* 0x000000004018ba90 0x0 .text.mbedtls_pem_init - 0x0000000040178b10 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x0000000040178b10 mbedtls_pem_init - *fill* 0x0000000040178b3b 0x0 - *fill* 0x0000000040178b3b 0x0 - *fill* 0x0000000040178b3b 0x0 - *fill* 0x0000000040178b3b 0x0 - *fill* 0x0000000040178b3b 0x0 - *fill* 0x0000000040178b3b 0x0 - *fill* 0x0000000040178b3b 0x1 + 0x000000004018ba90 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x000000004018ba90 mbedtls_pem_init + *fill* 0x000000004018babb 0x0 + *fill* 0x000000004018babb 0x0 + *fill* 0x000000004018babb 0x0 + *fill* 0x000000004018babb 0x0 + *fill* 0x000000004018babb 0x0 + *fill* 0x000000004018babb 0x0 + *fill* 0x000000004018babb 0x1 .text.esp_aes_xts_decode_keys - 0x0000000040178b3c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - *fill* 0x0000000040178b61 0x3 + 0x000000004018babc 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x000000004018bae1 0x3 .text.esp_gf128mul_x_ble - 0x0000000040178b64 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 - *fill* 0x0000000040178c70 0x0 + 0x000000004018bae4 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 + *fill* 0x000000004018bbf0 0x0 .text.mbedtls_x509_time_is_past - 0x0000000040178c70 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x0000000040178c70 mbedtls_x509_time_is_past - *fill* 0x0000000040178c77 0x1 + 0x000000004018bbf0 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000004018bbf0 mbedtls_x509_time_is_past + *fill* 0x000000004018bbf7 0x1 .text.mbedtls_x509_time_is_future - 0x0000000040178c78 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x0000000040178c78 mbedtls_x509_time_is_future - *fill* 0x0000000040178c7f 0x1 + 0x000000004018bbf8 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000004018bbf8 mbedtls_x509_time_is_future + *fill* 0x000000004018bbff 0x1 .text.x509_profile_check_md_alg - 0x0000000040178c80 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - *fill* 0x0000000040178c9a 0x2 + 0x000000004018bc00 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000004018bc1a 0x2 .text.x509_profile_check_pk_alg - 0x0000000040178c9c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - *fill* 0x0000000040178cb6 0x2 + 0x000000004018bc1c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000004018bc36 0x2 .text.x509_memcasecmp - 0x0000000040178cb8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x000000004018bc38 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) .text.x509_crt_verify_chain_reset - 0x0000000040178d10 0x23 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - *fill* 0x0000000040178d33 0x1 + 0x000000004018bc90 0x23 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000004018bcb3 0x1 .text.x509_crt_merge_flags_with_cb - 0x0000000040178d34 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 - *fill* 0x0000000040178d70 0x0 + 0x000000004018bcb4 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 + *fill* 0x000000004018bcf0 0x0 .text.crt_get_unused_bits_for_named_bitstring - 0x0000000040178d70 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - *fill* 0x0000000040178d84 0x0 - *fill* 0x0000000040178d84 0x0 - *fill* 0x0000000040178d84 0x0 + 0x000000004018bcf0 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + *fill* 0x000000004018bd04 0x0 + *fill* 0x000000004018bd04 0x0 + *fill* 0x000000004018bd04 0x0 .text.mbedtls_x509write_crt_set_version - 0x0000000040178d84 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x0000000040178d84 mbedtls_x509write_crt_set_version - *fill* 0x0000000040178d8b 0x1 + 0x000000004018bd04 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000004018bd04 mbedtls_x509write_crt_set_version + *fill* 0x000000004018bd0b 0x1 .text.mbedtls_x509write_crt_set_md_alg - 0x0000000040178d8c 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x0000000040178d8c mbedtls_x509write_crt_set_md_alg - *fill* 0x0000000040178d93 0x1 + 0x000000004018bd0c 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000004018bd0c mbedtls_x509write_crt_set_md_alg + *fill* 0x000000004018bd13 0x1 .text.mbedtls_x509write_crt_set_subject_key - 0x0000000040178d94 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x0000000040178d94 mbedtls_x509write_crt_set_subject_key - *fill* 0x0000000040178d9b 0x1 + 0x000000004018bd14 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000004018bd14 mbedtls_x509write_crt_set_subject_key + *fill* 0x000000004018bd1b 0x1 .text.mbedtls_x509write_crt_set_issuer_key - 0x0000000040178d9c 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0x0000000040178d9c mbedtls_x509write_crt_set_issuer_key - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x0 - *fill* 0x0000000040178da3 0x1 + 0x000000004018bd1c 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000004018bd1c mbedtls_x509write_crt_set_issuer_key + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x0 + *fill* 0x000000004018bd23 0x1 .text.cipher_type_map_supp_to_public - 0x0000000040178da4 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040178da4 cipher_type_map_supp_to_public - *fill* 0x0000000040178dee 0x0 - *fill* 0x0000000040178dee 0x0 - *fill* 0x0000000040178dee 0x2 + 0x000000004018bd24 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004018bd24 cipher_type_map_supp_to_public + *fill* 0x000000004018bd6e 0x0 + *fill* 0x000000004018bd6e 0x0 + *fill* 0x000000004018bd6e 0x2 .text.wpa_supplicant_check_group_cipher - 0x0000000040178df0 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040178df0 wpa_supplicant_check_group_cipher + 0x000000004018bd70 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004018bd70 wpa_supplicant_check_group_cipher .text.wpa_supplicant_gtk_tx_bit_workaround - 0x0000000040178ecc 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x0000000040178ecc wpa_supplicant_gtk_tx_bit_workaround - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x0 - *fill* 0x0000000040178edd 0x3 - .text.hex2num 0x0000000040178ee0 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004018be4c 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004018be4c wpa_supplicant_gtk_tx_bit_workaround + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x0 + *fill* 0x000000004018be5d 0x3 + .text.hex2num 0x000000004018be60 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) .text.inc_byte_array - 0x0000000040178f18 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x0000000040178f18 inc_byte_array - *fill* 0x0000000040178f36 0x0 - *fill* 0x0000000040178f36 0x0 - *fill* 0x0000000040178f36 0x0 - *fill* 0x0000000040178f36 0x0 - *fill* 0x0000000040178f36 0x0 - *fill* 0x0000000040178f36 0x0 - *fill* 0x0000000040178f36 0x2 + 0x000000004018be98 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004018be98 inc_byte_array + *fill* 0x000000004018beb6 0x0 + *fill* 0x000000004018beb6 0x0 + *fill* 0x000000004018beb6 0x0 + *fill* 0x000000004018beb6 0x0 + *fill* 0x000000004018beb6 0x0 + *fill* 0x000000004018beb6 0x0 + *fill* 0x000000004018beb6 0x2 .text.wpabuf_put - 0x0000000040178f38 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x0000000040178f38 wpabuf_put - *fill* 0x0000000040178f4b 0x1 + 0x000000004018beb8 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x000000004018beb8 wpabuf_put + *fill* 0x000000004018becb 0x1 .text.eloop_cancel_timeout - 0x0000000040178f4c 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - 0x0000000040178f4c eloop_cancel_timeout - *fill* 0x0000000040178f53 0x1 + 0x000000004018becc 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x000000004018becc eloop_cancel_timeout + *fill* 0x000000004018bed3 0x1 .text.eloop_register_timeout - 0x0000000040178f54 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - 0x0000000040178f54 eloop_register_timeout - *fill* 0x0000000040178f5b 0x0 - *fill* 0x0000000040178f5b 0x0 - *fill* 0x0000000040178f5b 0x0 - *fill* 0x0000000040178f5b 0x0 - *fill* 0x0000000040178f5b 0x1 + 0x000000004018bed4 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x000000004018bed4 eloop_register_timeout + *fill* 0x000000004018bedb 0x0 + *fill* 0x000000004018bedb 0x0 + *fill* 0x000000004018bedb 0x0 + *fill* 0x000000004018bedb 0x0 + *fill* 0x000000004018bedb 0x1 .text.wpa_request_new_ptk - 0x0000000040178f5c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040178f6e 0x2 + 0x000000004018bedc 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004018beee 0x2 .text.sm_WPA_PTK_DISCONNECTED_Enter - 0x0000000040178f70 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000004018bef0 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .text.sm_WPA_PTK_PTKCALCNEGOTIATING2_Enter - 0x0000000040178f94 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000004018bf14 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .text.ieee80211w_kde_len - 0x0000000040178fb8 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040178fcd 0x3 + 0x000000004018bf38 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004018bf4d 0x3 .text.sm_WPA_PTK_GROUP_IDLE_Enter - 0x0000000040178fd0 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000004018bf50 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .text.sm_WPA_PTK_GROUP_REKEYESTABLISHED_Enter - 0x0000000040179004 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x0000000040179042 0x2 + 0x000000004018bf84 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004018bfc2 0x2 .text.sm_WPA_PTK_GROUP_KEYERROR_Enter - 0x0000000040179044 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x0 - *fill* 0x000000004017907b 0x1 + 0x000000004018bfc4 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x0 + *fill* 0x000000004018bffb 0x1 .text.buf_shift_right - 0x000000004017907c 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - *fill* 0x00000000401790ba 0x2 + 0x000000004018bffc 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x000000004018c03a 0x2 .text.sae_is_password_id_elem - 0x00000000401790bc 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x0 - *fill* 0x00000000401790fe 0x2 + 0x000000004018c03c 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x0 + *fill* 0x000000004018c07e 0x2 .text.wpa_cipher_key_len - 0x0000000040179100 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x0000000040179100 wpa_cipher_key_len - *fill* 0x000000004017913d 0x3 + 0x000000004018c080 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004018c080 wpa_cipher_key_len + *fill* 0x000000004018c0bd 0x3 .text.wpa_cipher_to_alg - 0x0000000040179140 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x0000000040179140 wpa_cipher_to_alg - *fill* 0x0000000040179178 0x0 + 0x000000004018c0c0 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004018c0c0 wpa_cipher_to_alg + *fill* 0x000000004018c0f8 0x0 .text.rsn_cipher_put_suites - 0x0000000040179178 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x0000000040179178 rsn_cipher_put_suites - *fill* 0x00000000401791f2 0x2 + 0x000000004018c0f8 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004018c0f8 rsn_cipher_put_suites + *fill* 0x000000004018c172 0x2 .text.wpa_cipher_put_suites - 0x00000000401791f4 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x00000000401791f4 wpa_cipher_put_suites - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x0 - *fill* 0x000000004017924e 0x2 + 0x000000004018c174 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004018c174 wpa_cipher_put_suites + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x0 + *fill* 0x000000004018c1ce 0x2 .text.crypto_ec_get_prime - 0x0000000040179250 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x0000000040179250 crypto_ec_get_prime - *fill* 0x0000000040179257 0x1 + 0x000000004018c1d0 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004018c1d0 crypto_ec_get_prime + *fill* 0x000000004018c1d7 0x1 .text.crypto_ec_get_order - 0x0000000040179258 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x0000000040179258 crypto_ec_get_order - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 - *fill* 0x0000000040179260 0x0 + 0x000000004018c1d8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004018c1d8 crypto_ec_get_order + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 + *fill* 0x000000004018c1e0 0x0 .text.wpa_sm_mlme_setprotection - 0x0000000040179260 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x0000000040179260 wpa_sm_mlme_setprotection - *fill* 0x0000000040179267 0x1 + 0x000000004018c1e0 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x000000004018c1e0 wpa_sm_mlme_setprotection + *fill* 0x000000004018c1e7 0x1 .text.wpa_sm_get_beacon_ie - 0x0000000040179268 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x0000000040179268 wpa_sm_get_beacon_ie - *fill* 0x000000004017926f 0x1 + 0x000000004018c1e8 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x000000004018c1e8 wpa_sm_get_beacon_ie + *fill* 0x000000004018c1ef 0x1 .text.wpa_sm_disassociate - 0x0000000040179270 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0x0000000040179270 wpa_sm_disassociate - *fill* 0x0000000040179275 0x0 - *fill* 0x0000000040179275 0x0 - *fill* 0x0000000040179275 0x0 - *fill* 0x0000000040179275 0x0 - *fill* 0x0000000040179275 0x0 - *fill* 0x0000000040179275 0x0 - *fill* 0x0000000040179275 0x0 - *fill* 0x0000000040179275 0x0 - *fill* 0x0000000040179275 0x3 + 0x000000004018c1f0 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x000000004018c1f0 wpa_sm_disassociate + *fill* 0x000000004018c1f5 0x0 + *fill* 0x000000004018c1f5 0x0 + *fill* 0x000000004018c1f5 0x0 + *fill* 0x000000004018c1f5 0x0 + *fill* 0x000000004018c1f5 0x0 + *fill* 0x000000004018c1f5 0x0 + *fill* 0x000000004018c1f5 0x0 + *fill* 0x000000004018c1f5 0x0 + *fill* 0x000000004018c1f5 0x3 .text.pmksa_cache_get_current - 0x0000000040179278 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x0000000040179278 pmksa_cache_get_current + 0x000000004018c1f8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004018c1f8 pmksa_cache_get_current .text.pmksa_cache_clear_current - 0x0000000040179288 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0x0000000040179288 pmksa_cache_clear_current - *fill* 0x0000000040179294 0x0 - *fill* 0x0000000040179294 0x0 - *fill* 0x0000000040179294 0x0 - *fill* 0x0000000040179294 0x0 - *fill* 0x0000000040179294 0x0 - *fill* 0x0000000040179294 0x0 - *fill* 0x0000000040179294 0x0 - *fill* 0x0000000040179294 0x0 - *fill* 0x0000000040179294 0x0 + 0x000000004018c208 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004018c208 pmksa_cache_clear_current + *fill* 0x000000004018c214 0x0 + *fill* 0x000000004018c214 0x0 + *fill* 0x000000004018c214 0x0 + *fill* 0x000000004018c214 0x0 + *fill* 0x000000004018c214 0x0 + *fill* 0x000000004018c214 0x0 + *fill* 0x000000004018c214 0x0 + *fill* 0x000000004018c214 0x0 + *fill* 0x000000004018c214 0x0 .text.ieee80211_check_sleep - 0x0000000040179294 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) - 0x0000000040179294 ieee80211_check_sleep - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x0 - *fill* 0x000000004017929b 0x1 + 0x000000004018c214 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004018c214 ieee80211_check_sleep + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x0 + *fill* 0x000000004018c21b 0x1 .text.ieee80211_crypto_attach - 0x000000004017929c 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) - 0x000000004017929c ieee80211_crypto_attach - *fill* 0x00000000401792a1 0x0 - *fill* 0x00000000401792a1 0x0 - *fill* 0x00000000401792a1 0x0 - *fill* 0x00000000401792a1 0x0 - *fill* 0x00000000401792a1 0x3 + 0x000000004018c21c 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x000000004018c21c ieee80211_crypto_attach + *fill* 0x000000004018c221 0x0 + *fill* 0x000000004018c221 0x0 + *fill* 0x000000004018c221 0x0 + *fill* 0x000000004018c221 0x0 + *fill* 0x000000004018c221 0x3 .text.ccmp_decap - 0x00000000401792a4 0xbe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) - *fill* 0x0000000040179362 0x0 - *fill* 0x0000000040179362 0x0 - *fill* 0x0000000040179362 0x0 - *fill* 0x0000000040179362 0x2 + 0x000000004018c224 0xbe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + *fill* 0x000000004018c2e2 0x0 + *fill* 0x000000004018c2e2 0x0 + *fill* 0x000000004018c2e2 0x0 + *fill* 0x000000004018c2e2 0x2 .text.wep_decap - 0x0000000040179364 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x0 - *fill* 0x000000004017938a 0x2 + 0x000000004018c2e4 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x0 + *fill* 0x000000004018c30a 0x2 .text.ieee80211_is_support_rate - 0x000000004017938c 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) - 0x000000004017938c ieee80211_is_support_rate - *fill* 0x00000000401793f0 0x0 - *fill* 0x00000000401793f0 0x0 + 0x000000004018c30c 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x000000004018c30c ieee80211_is_support_rate + *fill* 0x000000004018c370 0x0 + *fill* 0x000000004018c370 0x0 .text.ieee80211_is_lr_only - 0x00000000401793f0 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) - 0x00000000401793f0 ieee80211_is_lr_only + 0x000000004018c370 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x000000004018c370 ieee80211_is_lr_only .text.ieee80211_setup_lr_rates - 0x0000000040179404 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) - 0x0000000040179404 ieee80211_setup_lr_rates - *fill* 0x0000000040179498 0x0 - *fill* 0x0000000040179498 0x0 - *fill* 0x0000000040179498 0x0 - *fill* 0x0000000040179498 0x0 - *fill* 0x0000000040179498 0x0 - *fill* 0x0000000040179498 0x0 + 0x000000004018c384 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x000000004018c384 ieee80211_setup_lr_rates + *fill* 0x000000004018c418 0x0 + *fill* 0x000000004018c418 0x0 + *fill* 0x000000004018c418 0x0 + *fill* 0x000000004018c418 0x0 + *fill* 0x000000004018c418 0x0 + *fill* 0x000000004018c418 0x0 .text.ieee80211_setup_rateset - 0x0000000040179498 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) - 0x0000000040179498 ieee80211_setup_rateset - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x0 - *fill* 0x000000004017949f 0x1 + 0x000000004018c418 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x000000004018c418 ieee80211_setup_rateset + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x0 + *fill* 0x000000004018c41f 0x1 .text.adc2_wifi_acquire - 0x00000000401794a0 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - 0x00000000401794a0 adc2_wifi_acquire - *fill* 0x00000000401794a7 0x1 + 0x000000004018c420 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004018c420 adc2_wifi_acquire + *fill* 0x000000004018c427 0x1 .text.adc2_wifi_release - 0x00000000401794a8 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - 0x00000000401794a8 adc2_wifi_release - *fill* 0x00000000401794af 0x1 + 0x000000004018c428 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004018c428 adc2_wifi_release + *fill* 0x000000004018c42f 0x1 .text.wifi_station_get_reconnect_policy - 0x00000000401794b0 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) - 0x00000000401794b0 wifi_station_get_reconnect_policy - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x0 - *fill* 0x00000000401794b7 0x1 + 0x000000004018c430 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004018c430 wifi_station_get_reconnect_policy + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x0 + *fill* 0x000000004018c437 0x1 .text.ieee80211_set_shortslottime - 0x00000000401794b8 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) - 0x00000000401794b8 ieee80211_set_shortslottime - *fill* 0x00000000401794d3 0x0 - *fill* 0x00000000401794d3 0x0 - *fill* 0x00000000401794d3 0x1 + 0x000000004018c438 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x000000004018c438 ieee80211_set_shortslottime + *fill* 0x000000004018c453 0x0 + *fill* 0x000000004018c453 0x0 + *fill* 0x000000004018c453 0x1 .text.ieee80211_find_ie - 0x00000000401794d4 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) - 0x00000000401794d4 ieee80211_find_ie - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x0 - *fill* 0x0000000040179516 0x2 + 0x000000004018c454 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x000000004018c454 ieee80211_find_ie + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x0 + *fill* 0x000000004018c496 0x2 .text.cnx_rc_update_age - 0x0000000040179518 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) - 0x0000000040179518 cnx_rc_update_age - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x0 - *fill* 0x000000004017952d 0x3 + 0x000000004018c498 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000004018c498 cnx_rc_update_age + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x0 + *fill* 0x000000004018c4ad 0x3 .text.send_inval - 0x0000000040179530 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) - *fill* 0x0000000040179537 0x1 + 0x000000004018c4b0 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + *fill* 0x000000004018c4b7 0x1 .text.recv_inval - 0x0000000040179538 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x0 - *fill* 0x000000004017953f 0x1 + 0x000000004018c4b8 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x0 + *fill* 0x000000004018c4bf 0x1 .text.wifi_apb80m_request - 0x0000000040179540 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) - 0x0000000040179540 wifi_apb80m_request - *fill* 0x0000000040179545 0x3 + 0x000000004018c4c0 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004018c4c0 wifi_apb80m_request + *fill* 0x000000004018c4c5 0x3 .text.wifi_apb80m_release - 0x0000000040179548 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) - 0x0000000040179548 wifi_apb80m_release - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x0 - *fill* 0x000000004017954d 0x3 + 0x000000004018c4c8 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004018c4c8 wifi_apb80m_release + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x0 + *fill* 0x000000004018c4cd 0x3 .text.pm_force_scan_unlock - 0x0000000040179550 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) - 0x0000000040179550 pm_force_scan_unlock - *fill* 0x0000000040179555 0x3 + 0x000000004018c4d0 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004018c4d0 pm_force_scan_unlock + *fill* 0x000000004018c4d5 0x3 .text.fpm_allow_tx - 0x0000000040179558 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) - 0x0000000040179558 fpm_allow_tx - *fill* 0x000000004017955f 0x1 + 0x000000004018c4d8 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + 0x000000004018c4d8 fpm_allow_tx + *fill* 0x000000004018c4df 0x1 .text.fpm_do_wakeup - 0x0000000040179560 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) - 0x0000000040179560 fpm_do_wakeup - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x0 - *fill* 0x0000000040179565 0x3 + 0x000000004018c4e0 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + 0x000000004018c4e0 fpm_do_wakeup + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x0 + *fill* 0x000000004018c4e5 0x3 .text.pp_timer_dream - 0x0000000040179568 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) - *fill* 0x000000004017956f 0x0 - *fill* 0x000000004017956f 0x0 - *fill* 0x000000004017956f 0x0 - *fill* 0x000000004017956f 0x0 - *fill* 0x000000004017956f 0x0 - *fill* 0x000000004017956f 0x0 - *fill* 0x000000004017956f 0x0 - *fill* 0x000000004017956f 0x1 + 0x000000004018c4e8 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x000000004018c4ef 0x0 + *fill* 0x000000004018c4ef 0x0 + *fill* 0x000000004018c4ef 0x0 + *fill* 0x000000004018c4ef 0x0 + *fill* 0x000000004018c4ef 0x0 + *fill* 0x000000004018c4ef 0x0 + *fill* 0x000000004018c4ef 0x0 + *fill* 0x000000004018c4ef 0x1 .text.RC_SetBasicRate - 0x0000000040179570 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) - 0x0000000040179570 RC_SetBasicRate - *fill* 0x0000000040179577 0x0 - *fill* 0x0000000040179577 0x0 - *fill* 0x0000000040179577 0x1 + 0x000000004018c4f0 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x000000004018c4f0 RC_SetBasicRate + *fill* 0x000000004018c4f7 0x0 + *fill* 0x000000004018c4f7 0x0 + *fill* 0x000000004018c4f7 0x1 .text.rcLoRaRate2SchedIdx - 0x0000000040179578 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - 0x0000000040179578 rcLoRaRate2SchedIdx - *fill* 0x0000000040179592 0x0 - *fill* 0x0000000040179592 0x0 - *fill* 0x0000000040179592 0x0 - *fill* 0x0000000040179592 0x0 - *fill* 0x0000000040179592 0x0 - *fill* 0x0000000040179592 0x0 - *fill* 0x0000000040179592 0x2 + 0x000000004018c4f8 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004018c4f8 rcLoRaRate2SchedIdx + *fill* 0x000000004018c512 0x0 + *fill* 0x000000004018c512 0x0 + *fill* 0x000000004018c512 0x0 + *fill* 0x000000004018c512 0x0 + *fill* 0x000000004018c512 0x0 + *fill* 0x000000004018c512 0x0 + *fill* 0x000000004018c512 0x2 .text.rcUpdateRxDone - 0x0000000040179594 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) - 0x0000000040179594 rcUpdateRxDone - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 - *fill* 0x000000004017960c 0x0 + 0x000000004018c514 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004018c514 rcUpdateRxDone + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 + *fill* 0x000000004018c58c 0x0 .text.wDev_SetAuthed - 0x000000004017960c 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) - 0x000000004017960c wDev_SetAuthed - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x0 - *fill* 0x0000000040179611 0x3 + 0x000000004018c58c 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004018c58c wDev_SetAuthed + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x0 + *fill* 0x000000004018c591 0x3 .text.ram_rfpll_reset - 0x0000000040179614 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x0000000040179614 ram_rfpll_reset - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x0 - *fill* 0x0000000040179619 0x3 + 0x000000004018c594 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004018c594 ram_rfpll_reset + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x0 + *fill* 0x000000004018c599 0x3 .text.spur_cal$part$5 - 0x000000004017961c 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - *fill* 0x0000000040179666 0x0 - *fill* 0x0000000040179666 0x0 - *fill* 0x0000000040179666 0x0 - *fill* 0x0000000040179666 0x0 - *fill* 0x0000000040179666 0x0 - *fill* 0x0000000040179666 0x0 - *fill* 0x0000000040179666 0x0 - *fill* 0x0000000040179666 0x2 + 0x000000004018c59c 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x000000004018c5e6 0x0 + *fill* 0x000000004018c5e6 0x0 + *fill* 0x000000004018c5e6 0x0 + *fill* 0x000000004018c5e6 0x0 + *fill* 0x000000004018c5e6 0x0 + *fill* 0x000000004018c5e6 0x0 + *fill* 0x000000004018c5e6 0x0 + *fill* 0x000000004018c5e6 0x2 .text.get_bbgain_db - 0x0000000040179668 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x0000000040179668 get_bbgain_db - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x0 - *fill* 0x000000004017968e 0x2 + 0x000000004018c5e8 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004018c5e8 get_bbgain_db + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x0 + *fill* 0x000000004018c60e 0x2 .text.phy_byte_to_word - 0x0000000040179690 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x0000000040179690 phy_byte_to_word - *fill* 0x00000000401796b3 0x0 - *fill* 0x00000000401796b3 0x0 - *fill* 0x00000000401796b3 0x1 + 0x000000004018c610 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004018c610 phy_byte_to_word + *fill* 0x000000004018c633 0x0 + *fill* 0x000000004018c633 0x0 + *fill* 0x000000004018c633 0x1 .text.phy_rfcal_data_check - 0x00000000401796b4 0xc7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x00000000401796b4 phy_rfcal_data_check - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x0 - *fill* 0x000000004017977b 0x1 + 0x000000004018c634 0xc7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004018c634 phy_rfcal_data_check + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x0 + *fill* 0x000000004018c6fb 0x1 .text.http_message_needs_eof - 0x000000004017977c 0x72 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - 0x000000004017977c http_message_needs_eof - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x0 - *fill* 0x00000000401797ee 0x2 + 0x000000004018c6fc 0x72 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000004018c6fc http_message_needs_eof + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x0 + *fill* 0x000000004018c76e 0x2 + .text.spi_hal_deinit + 0x000000004018c770 0x28 esp-idf/soc/libsoc.a(spi_hal.c.obj) + 0x000000004018c770 spi_hal_deinit + *fill* 0x000000004018c798 0x0 .text.ssl_set_timer - 0x00000000401797f0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x0000000040179806 0x2 + 0x000000004018c798 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004018c7ae 0x2 .text.ssl_check_timer - 0x0000000040179808 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018c7b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_double_retransmit_timeout - 0x0000000040179828 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x000000004017986d 0x3 + 0x000000004018c7d0 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004018c815 0x3 .text.ssl_reset_retransmit_timeout - 0x0000000040179870 0xf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x000000004017987f 0x0 - *fill* 0x000000004017987f 0x1 + 0x000000004018c818 0xf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004018c827 0x0 + *fill* 0x000000004018c827 0x1 .text.ssl_read_memory - 0x0000000040179880 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018c828 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_get_hs_frag_len - 0x00000000401798a0 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x00000000401798bd 0x3 + 0x000000004018c848 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004018c865 0x3 .text.ssl_get_hs_frag_off - 0x00000000401798c0 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x00000000401798dd 0x3 + 0x000000004018c868 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004018c885 0x3 .text.ssl_bitmask_check - 0x00000000401798e0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018c888 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_get_reassembly_buffer_size - 0x0000000040179924 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018c8cc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_get_hs_total_len - 0x0000000040179940 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x000000004017995d 0x0 - *fill* 0x000000004017995d 0x0 - *fill* 0x000000004017995d 0x3 + 0x000000004018c8e8 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004018c905 0x0 + *fill* 0x000000004018c905 0x0 + *fill* 0x000000004018c905 0x3 .text.ssl_next_record_is_in_datagram - 0x0000000040179960 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x0000000040179975 0x3 + 0x000000004018c908 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004018c91d 0x3 .text.ssl_record_is_in_progress - 0x0000000040179978 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018c920 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_update_out_pointers - 0x0000000040179984 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018c92c 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .text.ssl_update_in_pointers - 0x00000000401799d8 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x0000000040179a2c 0x0 + 0x000000004018c980 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004018c9d4 0x0 .text.ssl_get_current_mtu - 0x0000000040179a2c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x0 - *fill* 0x0000000040179a6a 0x2 + 0x000000004018c9d4 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x0 + *fill* 0x000000004018ca12 0x2 .text.mbedtls_ssl_dtls_replay_check - 0x0000000040179a6c 0xaa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179a6c mbedtls_ssl_dtls_replay_check - *fill* 0x0000000040179b16 0x0 - *fill* 0x0000000040179b16 0x0 - *fill* 0x0000000040179b16 0x0 - *fill* 0x0000000040179b16 0x0 - *fill* 0x0000000040179b16 0x2 + 0x000000004018ca14 0xaa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018ca14 mbedtls_ssl_dtls_replay_check + *fill* 0x000000004018cabe 0x0 + *fill* 0x000000004018cabe 0x0 + *fill* 0x000000004018cabe 0x0 + *fill* 0x000000004018cabe 0x0 + *fill* 0x000000004018cabe 0x2 .text.mbedtls_ssl_conf_endpoint - 0x0000000040179b18 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179b18 mbedtls_ssl_conf_endpoint - *fill* 0x0000000040179b2e 0x2 + 0x000000004018cac0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cac0 mbedtls_ssl_conf_endpoint + *fill* 0x000000004018cad6 0x2 .text.mbedtls_ssl_conf_transport - 0x0000000040179b30 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179b30 mbedtls_ssl_conf_transport - *fill* 0x0000000040179b49 0x3 + 0x000000004018cad8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cad8 mbedtls_ssl_conf_transport + *fill* 0x000000004018caf1 0x3 .text.mbedtls_ssl_conf_authmode - 0x0000000040179b4c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179b4c mbedtls_ssl_conf_authmode - *fill* 0x0000000040179b65 0x3 + 0x000000004018caf4 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018caf4 mbedtls_ssl_conf_authmode + *fill* 0x000000004018cb0d 0x3 .text.mbedtls_ssl_conf_rng - 0x0000000040179b68 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179b68 mbedtls_ssl_conf_rng - *fill* 0x0000000040179b71 0x3 + 0x000000004018cb10 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cb10 mbedtls_ssl_conf_rng + *fill* 0x000000004018cb19 0x3 .text.mbedtls_ssl_set_bio - 0x0000000040179b74 0xd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179b74 mbedtls_ssl_set_bio - *fill* 0x0000000040179b81 0x3 + 0x000000004018cb1c 0xd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cb1c mbedtls_ssl_set_bio + *fill* 0x000000004018cb29 0x3 .text.mbedtls_ssl_conf_ca_chain - 0x0000000040179b84 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179b84 mbedtls_ssl_conf_ca_chain - *fill* 0x0000000040179b8f 0x0 - *fill* 0x0000000040179b8f 0x0 - *fill* 0x0000000040179b8f 0x1 + 0x000000004018cb2c 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cb2c mbedtls_ssl_conf_ca_chain + *fill* 0x000000004018cb37 0x0 + *fill* 0x000000004018cb37 0x0 + *fill* 0x000000004018cb37 0x1 .text.mbedtls_ssl_get_bytes_avail - 0x0000000040179b90 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179b90 mbedtls_ssl_get_bytes_avail - *fill* 0x0000000040179ba2 0x0 - *fill* 0x0000000040179ba2 0x0 - *fill* 0x0000000040179ba2 0x0 - *fill* 0x0000000040179ba2 0x0 - *fill* 0x0000000040179ba2 0x0 - *fill* 0x0000000040179ba2 0x0 - *fill* 0x0000000040179ba2 0x0 - *fill* 0x0000000040179ba2 0x0 - *fill* 0x0000000040179ba2 0x0 - *fill* 0x0000000040179ba2 0x0 - *fill* 0x0000000040179ba2 0x2 + 0x000000004018cb38 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cb38 mbedtls_ssl_get_bytes_avail + *fill* 0x000000004018cb4a 0x0 + *fill* 0x000000004018cb4a 0x0 + *fill* 0x000000004018cb4a 0x0 + *fill* 0x000000004018cb4a 0x0 + *fill* 0x000000004018cb4a 0x0 + *fill* 0x000000004018cb4a 0x0 + *fill* 0x000000004018cb4a 0x0 + *fill* 0x000000004018cb4a 0x0 + *fill* 0x000000004018cb4a 0x0 + *fill* 0x000000004018cb4a 0x0 + *fill* 0x000000004018cb4a 0x2 .text.mbedtls_ssl_sig_from_pk_alg - 0x0000000040179ba4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179ba4 mbedtls_ssl_sig_from_pk_alg + 0x000000004018cb4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cb4c mbedtls_ssl_sig_from_pk_alg .text.mbedtls_ssl_pk_alg_from_sig - 0x0000000040179bc4 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179bc4 mbedtls_ssl_pk_alg_from_sig - *fill* 0x0000000040179bde 0x2 + 0x000000004018cb6c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cb6c mbedtls_ssl_pk_alg_from_sig + *fill* 0x000000004018cb86 0x2 .text.mbedtls_ssl_sig_hash_set_find - 0x0000000040179be0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179be0 mbedtls_ssl_sig_hash_set_find + 0x000000004018cb88 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cb88 mbedtls_ssl_sig_hash_set_find .text.mbedtls_ssl_sig_hash_set_add - 0x0000000040179bf8 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179bf8 mbedtls_ssl_sig_hash_set_add - *fill* 0x0000000040179c16 0x2 + 0x000000004018cba0 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cba0 mbedtls_ssl_sig_hash_set_add + *fill* 0x000000004018cbbe 0x2 .text.mbedtls_ssl_sig_hash_set_const_hash - 0x0000000040179c18 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179c18 mbedtls_ssl_sig_hash_set_const_hash - *fill* 0x0000000040179c21 0x0 - *fill* 0x0000000040179c21 0x0 - *fill* 0x0000000040179c21 0x0 - *fill* 0x0000000040179c21 0x0 - *fill* 0x0000000040179c21 0x0 - *fill* 0x0000000040179c21 0x0 - *fill* 0x0000000040179c21 0x3 + 0x000000004018cbc0 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cbc0 mbedtls_ssl_sig_hash_set_const_hash + *fill* 0x000000004018cbc9 0x0 + *fill* 0x000000004018cbc9 0x0 + *fill* 0x000000004018cbc9 0x0 + *fill* 0x000000004018cbc9 0x0 + *fill* 0x000000004018cbc9 0x0 + *fill* 0x000000004018cbc9 0x0 + *fill* 0x000000004018cbc9 0x3 .text.mbedtls_ssl_check_curve - 0x0000000040179c24 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179c24 mbedtls_ssl_check_curve - *fill* 0x0000000040179c49 0x3 + 0x000000004018cbcc 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cbcc mbedtls_ssl_check_curve + *fill* 0x000000004018cbf1 0x3 .text.mbedtls_ssl_check_sig_hash - 0x0000000040179c4c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179c4c mbedtls_ssl_check_sig_hash - *fill* 0x0000000040179c71 0x0 - *fill* 0x0000000040179c71 0x3 + 0x000000004018cbf4 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cbf4 mbedtls_ssl_check_sig_hash + *fill* 0x000000004018cc19 0x0 + *fill* 0x000000004018cc19 0x3 .text.mbedtls_ssl_write_version - 0x0000000040179c74 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179c74 mbedtls_ssl_write_version - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x0 - *fill* 0x0000000040179c9f 0x1 + 0x000000004018cc1c 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cc1c mbedtls_ssl_write_version + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x0 + *fill* 0x000000004018cc47 0x1 .text.mbedtls_ssl_read_version - 0x0000000040179ca0 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x0000000040179ca0 mbedtls_ssl_read_version - *fill* 0x0000000040179cd2 0x0 - *fill* 0x0000000040179cd2 0x0 - *fill* 0x0000000040179cd2 0x0 - *fill* 0x0000000040179cd2 0x0 - *fill* 0x0000000040179cd2 0x0 - *fill* 0x0000000040179cd2 0x0 - *fill* 0x0000000040179cd2 0x0 - *fill* 0x0000000040179cd2 0x0 - *fill* 0x0000000040179cd2 0x0 - *fill* 0x0000000040179cd2 0x0 - *fill* 0x0000000040179cd2 0x2 + 0x000000004018cc48 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004018cc48 mbedtls_ssl_read_version + *fill* 0x000000004018cc7a 0x0 + *fill* 0x000000004018cc7a 0x0 + *fill* 0x000000004018cc7a 0x0 + *fill* 0x000000004018cc7a 0x0 + *fill* 0x000000004018cc7a 0x0 + *fill* 0x000000004018cc7a 0x0 + *fill* 0x000000004018cc7a 0x0 + *fill* 0x000000004018cc7a 0x0 + *fill* 0x000000004018cc7a 0x0 + *fill* 0x000000004018cc7a 0x0 + *fill* 0x000000004018cc7a 0x2 .text.ciphersuite_is_removed - 0x0000000040179cd4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - *fill* 0x0000000040179cf2 0x0 - *fill* 0x0000000040179cf2 0x0 - *fill* 0x0000000040179cf2 0x0 - *fill* 0x0000000040179cf2 0x2 + 0x000000004018cc7c 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + *fill* 0x000000004018cc9a 0x0 + *fill* 0x000000004018cc9a 0x0 + *fill* 0x000000004018cc9a 0x0 + *fill* 0x000000004018cc9a 0x2 .text.mbedtls_ssl_get_ciphersuite_sig_alg - 0x0000000040179cf4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x0000000040179cf4 mbedtls_ssl_get_ciphersuite_sig_alg + 0x000000004018cc9c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000004018cc9c mbedtls_ssl_get_ciphersuite_sig_alg .text.mbedtls_ssl_ciphersuite_uses_ec - 0x0000000040179d14 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x0000000040179d14 mbedtls_ssl_ciphersuite_uses_ec - *fill* 0x0000000040179d39 0x3 + 0x000000004018ccbc 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000004018ccbc mbedtls_ssl_ciphersuite_uses_ec + *fill* 0x000000004018cce1 0x3 .text.mbedtls_ssl_ciphersuite_uses_psk - 0x0000000040179d3c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x0000000040179d3c mbedtls_ssl_ciphersuite_uses_psk + 0x000000004018cce4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000004018cce4 mbedtls_ssl_ciphersuite_uses_psk .text.ssl_write_supported_point_formats_ext - 0x0000000040179d50 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x0000000040179d86 0x2 + 0x000000004018ccf8 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004018cd2e 0x2 .text.ssl_write_max_fragment_length_ext - 0x0000000040179d88 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x0000000040179dca 0x2 + 0x000000004018cd30 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004018cd72 0x2 .text.ssl_write_truncated_hmac_ext - 0x0000000040179dcc 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x000000004018cd74 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) .text.ssl_write_encrypt_then_mac_ext - 0x0000000040179e00 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x0000000040179e3a 0x2 + 0x000000004018cda8 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004018cde2 0x2 .text.ssl_write_extended_ms_ext - 0x0000000040179e3c 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x0000000040179e76 0x2 + 0x000000004018cde4 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004018ce1e 0x2 .text.ssl_validate_ciphersuite - 0x0000000040179e78 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 - *fill* 0x0000000040179eb4 0x0 + 0x000000004018ce20 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 + *fill* 0x000000004018ce5c 0x0 .text.ssl_check_key_curve - 0x0000000040179eb4 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x0000000040179ed9 0x3 + 0x000000004018ce5c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004018ce81 0x3 .text.ssl_write_truncated_hmac_ext - 0x0000000040179edc 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x0000000040179f03 0x1 + 0x000000004018ce84 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004018ceab 0x1 .text.ssl_write_extended_ms_ext - 0x0000000040179f04 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x0000000040179f32 0x2 + 0x000000004018ceac 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004018ceda 0x2 .text.ssl_write_session_ticket_ext - 0x0000000040179f34 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x0000000040179f5e 0x2 + 0x000000004018cedc 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004018cf06 0x2 .text.ssl_write_max_fragment_length_ext - 0x0000000040179f60 0x2f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x0000000040179f8f 0x1 + 0x000000004018cf08 0x2f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004018cf37 0x1 .text.ssl_write_supported_point_formats_ext - 0x0000000040179f90 0x35 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x0 - *fill* 0x0000000040179fc5 0x3 + 0x000000004018cf38 0x35 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x0 + *fill* 0x000000004018cf6d 0x3 .text.mbedtls_ecdh_grp_id - 0x0000000040179fc8 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x0 - *fill* 0x0000000040179fcf 0x1 + 0x000000004018cf70 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x0 + *fill* 0x000000004018cf77 0x1 .text._ZL12read_uleb128PKhPm - 0x0000000040179fd0 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - *fill* 0x0000000040179ff5 0x3 + 0x000000004018cf78 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + *fill* 0x000000004018cf9d 0x3 .text._ZL12read_sleb128PKhPl - 0x0000000040179ff8 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x000000004018cfa0 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) .text._ZL16get_adjusted_ptrPKSt9type_infoS1_PPv - 0x000000004017a034 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - *fill* 0x000000004017a068 0x0 - *fill* 0x000000004017a068 0x0 - *fill* 0x000000004017a068 0x0 - *fill* 0x000000004017a068 0x0 - *fill* 0x000000004017a068 0x0 - *fill* 0x000000004017a068 0x0 - *fill* 0x000000004017a068 0x0 - *fill* 0x000000004017a068 0x0 + 0x000000004018cfdc 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + *fill* 0x000000004018d010 0x0 + *fill* 0x000000004018d010 0x0 + *fill* 0x000000004018d010 0x0 + *fill* 0x000000004018d010 0x0 + *fill* 0x000000004018d010 0x0 + *fill* 0x000000004018d010 0x0 + *fill* 0x000000004018d010 0x0 + *fill* 0x000000004018d010 0x0 .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv - 0x000000004017a068 0x32 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - 0x000000004017a068 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv - *fill* 0x000000004017a09a 0x2 + 0x000000004018d010 0x32 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x000000004018d010 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + *fill* 0x000000004018d042 0x2 .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ - 0x000000004017a09c 0x11 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - 0x000000004017a09c _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ - *fill* 0x000000004017a0ad 0x0 - *fill* 0x000000004017a0ad 0x0 - *fill* 0x000000004017a0ad 0x0 - *fill* 0x000000004017a0ad 0x3 + 0x000000004018d044 0x11 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x000000004018d044 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + *fill* 0x000000004018d055 0x0 + *fill* 0x000000004018d055 0x0 + *fill* 0x000000004018d055 0x0 + *fill* 0x000000004018d055 0x3 .text._ZNSt9type_infoD2Ev - 0x000000004017a0b0 0x5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) - 0x000000004017a0b0 _ZNSt9type_infoD1Ev - 0x000000004017a0b0 _ZNSt9type_infoD2Ev - *fill* 0x000000004017a0b5 0x3 + 0x000000004018d058 0x5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x000000004018d058 _ZNSt9type_infoD1Ev + 0x000000004018d058 _ZNSt9type_infoD2Ev + *fill* 0x000000004018d05d 0x3 .text._ZNKSt9type_info14__is_pointer_pEv - 0x000000004017a0b8 0x7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) - 0x000000004017a0b8 _ZNKSt9type_info14__is_pointer_pEv - 0x000000004017a0b8 _ZNKSt9type_info15__is_function_pEv - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 - *fill* 0x000000004017a0bf 0x0 + 0x000000004018d060 0x7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x000000004018d060 _ZNKSt9type_info14__is_pointer_pEv + 0x000000004018d060 _ZNKSt9type_info15__is_function_pEv + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 + *fill* 0x000000004018d067 0x0 *libesp_system.a:system_api.*(.literal.esp_register_shutdown_handler .literal.esp_unregister_shutdown_handler .literal.esp_get_free_heap_size .literal.esp_get_minimum_free_heap_size .literal.esp_get_idf_version .text.esp_register_shutdown_handler .text.esp_unregister_shutdown_handler .text.esp_get_free_heap_size .text.esp_get_minimum_free_heap_size .text.esp_get_idf_version) - *fill* 0x000000004017a0bf 0x1 + *fill* 0x000000004018d067 0x1 .text.esp_register_shutdown_handler - 0x000000004017a0c0 0x35 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - 0x000000004017a0c0 esp_register_shutdown_handler - *fill* 0x000000004017a0f5 0x3 + 0x000000004018d068 0x35 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x000000004018d068 esp_register_shutdown_handler + *fill* 0x000000004018d09d 0x3 .text.esp_unregister_shutdown_handler - 0x000000004017a0f8 0x2b esp-idf/esp_system/libesp_system.a(system_api.c.obj) - 0x000000004017a0f8 esp_unregister_shutdown_handler - *fill* 0x000000004017a123 0x1 + 0x000000004018d0a0 0x2b esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x000000004018d0a0 esp_unregister_shutdown_handler + *fill* 0x000000004018d0cb 0x1 .text.esp_get_free_heap_size - 0x000000004017a124 0x10 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - 0x000000004017a124 esp_get_free_heap_size + 0x000000004018d0cc 0x10 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x000000004018d0cc esp_get_free_heap_size .text.esp_get_idf_version - 0x000000004017a134 0x8 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - 0x000000004017a134 esp_get_idf_version - *fill* 0x000000004017a13c 0x0 - *fill* 0x000000004017a13c 0x0 - *fill* 0x000000004017a13c 0x0 + 0x000000004018d0dc 0x8 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x000000004018d0dc esp_get_idf_version + *fill* 0x000000004018d0e4 0x0 + *fill* 0x000000004018d0e4 0x0 + *fill* 0x000000004018d0e4 0x0 *libsoc.a:uart_hal_iram.*(.literal .literal.* .text .text.* .wifi0iram .wifi0iram.* .wifirxiram .wifirxiram.*) .text.uart_hal_rxfifo_rst - 0x000000004017a13c 0x73 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) - 0x000000004017a13c uart_hal_rxfifo_rst - *fill* 0x000000004017a1af 0x1 + 0x000000004018d0e4 0x73 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000004018d0e4 uart_hal_rxfifo_rst + *fill* 0x000000004018d157 0x1 .text.uart_hal_tx_break - 0x000000004017a1b0 0x47 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) - 0x000000004017a1b0 uart_hal_tx_break - *fill* 0x000000004017a1f7 0x1 + 0x000000004018d158 0x47 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000004018d158 uart_hal_tx_break + *fill* 0x000000004018d19f 0x1 .text.uart_hal_write_txfifo - 0x000000004017a1f8 0x75 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000004018d1a0 0x75 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) 0x78 (size before relaxing) - 0x000000004017a1f8 uart_hal_write_txfifo - *fill* 0x000000004017a26d 0x3 + 0x000000004018d1a0 uart_hal_write_txfifo + *fill* 0x000000004018d215 0x3 .text.uart_hal_read_rxfifo - 0x000000004017a270 0x64 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) - 0x000000004017a270 uart_hal_read_rxfifo - *fill* 0x000000004017a2d4 0x0 - *fill* 0x000000004017a2d4 0x0 + 0x000000004018d218 0x64 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000004018d218 uart_hal_read_rxfifo + *fill* 0x000000004018d27c 0x0 + *fill* 0x000000004018d27c 0x0 *libesp_event.a:esp_event.*(.literal.handler_instances_remove_all .literal.base_node_remove_all_handler .literal.loop_node_remove_all_handler .literal.handler_instances_add .literal.base_node_add_handler .literal.loop_node_add_handler .literal.handler_instances_remove .literal.base_node_remove_handler .literal.loop_node_remove_handler .literal.esp_event_loop_create .literal.esp_event_loop_run .literal.esp_event_loop_run_task .literal.esp_event_loop_delete .literal.esp_event_handler_register_with_internal .literal.esp_event_handler_register_with .literal.esp_event_handler_instance_register_with .literal.esp_event_handler_unregister_with_internal .literal.esp_event_handler_unregister_with .literal.esp_event_handler_instance_unregister_with .literal.esp_event_post_to .text.handler_execute .text.handler_instances_remove_all .text.base_node_remove_all_handler .text.loop_node_remove_all_handler .text.handler_instances_add .text.base_node_add_handler .text.loop_node_add_handler .text.handler_instances_remove .text.base_node_remove_handler .text.loop_node_remove_handler .text.esp_event_loop_create .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_loop_delete .text.esp_event_handler_register_with_internal .text.esp_event_handler_register_with .text.esp_event_handler_instance_register_with .text.esp_event_handler_unregister_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_instance_unregister_with .text.esp_event_post_to .text.esp_event_dump) .text.handler_instances_add - 0x000000004017a2d4 0xa6 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000004017a37a 0x2 + 0x000000004018d27c 0xa6 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004018d322 0x2 .text.base_node_add_handler - 0x000000004017a37c 0xd2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000004017a44e 0x2 + 0x000000004018d324 0xd2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004018d3f6 0x2 .text.loop_node_add_handler - 0x000000004017a450 0xf7 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000004017a547 0x1 + 0x000000004018d3f8 0xf7 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004018d4ef 0x1 .text.handler_instances_remove - 0x000000004017a548 0x85 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000004017a5cd 0x3 + 0x000000004018d4f0 0x85 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004018d575 0x3 .text.base_node_remove_handler - 0x000000004017a5d0 0x71 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000004017a641 0x3 + 0x000000004018d578 0x71 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004018d5e9 0x3 .text.loop_node_remove_handler - 0x000000004017a644 0x7b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000004017a6bf 0x1 + 0x000000004018d5ec 0x7b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004018d667 0x1 .text.esp_event_loop_create - 0x000000004017a6c0 0x114 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004018d668 0x114 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x118 (size before relaxing) - 0x000000004017a6c0 esp_event_loop_create + 0x000000004018d668 esp_event_loop_create .text.esp_event_loop_run - 0x000000004017a7d4 0x13e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004018d77c 0x13e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x142 (size before relaxing) - 0x000000004017a7d4 esp_event_loop_run - *fill* 0x000000004017a912 0x2 + 0x000000004018d77c esp_event_loop_run + *fill* 0x000000004018d8ba 0x2 .text.esp_event_loop_run_task - 0x000000004017a914 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004018d8bc 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) .text.esp_event_handler_register_with_internal - 0x000000004017a948 0x138 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004018d8f0 0x138 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x13c (size before relaxing) - 0x000000004017a948 esp_event_handler_register_with_internal + 0x000000004018d8f0 esp_event_handler_register_with_internal .text.esp_event_handler_register_with - 0x000000004017aa80 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x000000004017aa80 esp_event_handler_register_with - *fill* 0x000000004017aa9d 0x3 + 0x000000004018da28 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004018da28 esp_event_handler_register_with + *fill* 0x000000004018da45 0x3 .text.esp_event_handler_unregister_with_internal - 0x000000004017aaa0 0xda esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004018da48 0xda esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0xde (size before relaxing) - 0x000000004017aaa0 esp_event_handler_unregister_with_internal - *fill* 0x000000004017ab7a 0x2 + 0x000000004018da48 esp_event_handler_unregister_with_internal + *fill* 0x000000004018db22 0x2 .text.esp_event_handler_unregister_with - 0x000000004017ab7c 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x000000004017ab7c esp_event_handler_unregister_with - *fill* 0x000000004017ab99 0x3 + 0x000000004018db24 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004018db24 esp_event_handler_unregister_with + *fill* 0x000000004018db41 0x3 .text.esp_event_post_to - 0x000000004017ab9c 0x122 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004018db44 0x122 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x126 (size before relaxing) - 0x000000004017ab9c esp_event_post_to - *fill* 0x000000004017acbe 0x2 + 0x000000004018db44 esp_event_post_to + *fill* 0x000000004018dc66 0x2 .text.handler_execute - 0x000000004017acc0 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *fill* 0x000000004017acf2 0x0 - *fill* 0x000000004017acf2 0x0 - *fill* 0x000000004017acf2 0x0 - *fill* 0x000000004017acf2 0x0 - *fill* 0x000000004017acf2 0x0 - *fill* 0x000000004017acf2 0x0 - *fill* 0x000000004017acf2 0x0 - *fill* 0x000000004017acf2 0x0 - *fill* 0x000000004017acf2 0x0 - *fill* 0x000000004017acf2 0x0 - *fill* 0x000000004017acf2 0x0 + 0x000000004018dc68 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004018dc9a 0x0 + *fill* 0x000000004018dc9a 0x0 + *fill* 0x000000004018dc9a 0x0 + *fill* 0x000000004018dc9a 0x0 + *fill* 0x000000004018dc9a 0x0 + *fill* 0x000000004018dc9a 0x0 + *fill* 0x000000004018dc9a 0x0 + *fill* 0x000000004018dc9a 0x0 + *fill* 0x000000004018dc9a 0x0 + *fill* 0x000000004018dc9a 0x0 + *fill* 0x000000004018dc9a 0x0 *libesp_event.a:default_event_loop.*(.literal.esp_event_handler_register .literal.esp_event_handler_instance_register .literal.esp_event_handler_unregister .literal.esp_event_handler_instance_unregister .literal.esp_event_post .literal.esp_event_loop_create_default .literal.esp_event_loop_delete_default .literal.esp_event_send_to_default_loop .text.esp_event_handler_register .text.esp_event_handler_instance_register .text.esp_event_handler_unregister .text.esp_event_handler_instance_unregister .text.esp_event_post .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_send_to_default_loop) - *fill* 0x000000004017acf2 0x2 + *fill* 0x000000004018dc9a 0x2 .text.esp_event_handler_register - 0x000000004017acf4 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - 0x000000004017acf4 esp_event_handler_register - *fill* 0x000000004017ad16 0x2 + 0x000000004018dc9c 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x000000004018dc9c esp_event_handler_register + *fill* 0x000000004018dcbe 0x2 .text.esp_event_handler_unregister - 0x000000004017ad18 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - 0x000000004017ad18 esp_event_handler_unregister - *fill* 0x000000004017ad39 0x3 + 0x000000004018dcc0 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x000000004018dcc0 esp_event_handler_unregister + *fill* 0x000000004018dce1 0x3 .text.esp_event_post - 0x000000004017ad3c 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - 0x000000004017ad3c esp_event_post - *fill* 0x000000004017ad61 0x3 + 0x000000004018dce4 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x000000004018dce4 esp_event_post + *fill* 0x000000004018dd09 0x3 .text.esp_event_loop_create_default - 0x000000004017ad64 0x2a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x000000004018dd0c 0x2a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) 0x2e (size before relaxing) - 0x000000004017ad64 esp_event_loop_create_default - *fill* 0x000000004017ad8e 0x0 - *fill* 0x000000004017ad8e 0x0 - *fill* 0x000000004017ad8e 0x0 - *fill* 0x000000004017ad8e 0x0 + 0x000000004018dd0c esp_event_loop_create_default + *fill* 0x000000004018dd36 0x0 + *fill* 0x000000004018dd36 0x0 + *fill* 0x000000004018dd36 0x0 + *fill* 0x000000004018dd36 0x0 *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text.esp_log_system_timestamp) *liblog.a:log.*(.literal.heap_bubble_down .literal.esp_log_set_vprintf .literal.esp_log_level_set .literal.esp_log_writev .text.heap_bubble_down .text.esp_log_set_vprintf .text.esp_log_level_set .text.esp_log_writev) - *fill* 0x000000004017ad8e 0x2 + *fill* 0x000000004018dd36 0x2 .text.heap_bubble_down - 0x000000004017ad90 0x5a esp-idf/log/liblog.a(log.c.obj) - *fill* 0x000000004017adea 0x2 + 0x000000004018dd38 0x5a esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000004018dd92 0x2 .text.esp_log_level_set - 0x000000004017adec 0x128 esp-idf/log/liblog.a(log.c.obj) + 0x000000004018dd94 0x128 esp-idf/log/liblog.a(log.c.obj) 0x12c (size before relaxing) - 0x000000004017adec esp_log_level_set + 0x000000004018dd94 esp_log_level_set .text.esp_log_writev - 0x000000004017af14 0x162 esp-idf/log/liblog.a(log.c.obj) + 0x000000004018debc 0x162 esp-idf/log/liblog.a(log.c.obj) 0x166 (size before relaxing) - 0x000000004017af14 esp_log_writev - *fill* 0x000000004017b076 0x0 - *fill* 0x000000004017b076 0x0 + 0x000000004018debc esp_log_writev + *fill* 0x000000004018e01e 0x0 + *fill* 0x000000004018e01e 0x0 *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) *(.irom0.text) *(.fini.literal) *(.fini) - *fill* 0x000000004017b076 0x2 - .fini 0x000000004017b078 0x3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o - 0x000000004017b078 _fini + *fill* 0x000000004018e01e 0x2 + .fini 0x000000004018e020 0x3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + 0x000000004018e020 _fini *(.gnu.version) - 0x000000004017b07b _text_end = ABSOLUTE (.) - 0x000000004017b07b _etext = . + 0x000000004018e023 _text_end = ABSOLUTE (.) + 0x000000004018e023 _etext = . 0x0000000000000000 _flash_cache_start = ABSOLUTE (0x0) .iram0.text_end - 0x0000000040096d95 0x3 - 0x0000000040096d98 . = ALIGN (0x4) - *fill* 0x0000000040096d95 0x3 - 0x0000000040096d98 _iram_end = ABSOLUTE (.) + 0x0000000040097e9d 0x3 + 0x0000000040097ea0 . = ALIGN (0x4) + *fill* 0x0000000040097e9d 0x3 + 0x0000000040097ea0 _iram_end = ABSOLUTE (.) .dram0.heap_start - 0x000000003ffb9620 0x0 - 0x000000003ffb9620 . = ALIGN (0x8) - 0x000000003ffb9620 _heap_start = ABSOLUTE (.) + 0x000000003ffce578 0x0 + 0x000000003ffce578 . = ALIGN (0x8) + 0x000000003ffce578 _heap_start = ABSOLUTE (.) 0x0000000000000001 ASSERT (((_iram_text_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) 0x0000000000000001 ASSERT (((_heap_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) 0x000000003ff40000 PROVIDE (UART0 = 0x3ff40000) @@ -57297,6 +61890,7 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .xtensa.info 0x0000000000000038 0x0 esp-idf/ca/libca.a(gen_key.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/display/libdisplay.a(display.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) @@ -57457,6 +62051,53 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .xtensa.info 0x0000000000000038 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) @@ -57596,6 +62237,7 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(spi_master.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) @@ -57604,8 +62246,11 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ethernetif.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(lldesc.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) @@ -57666,6 +62311,7 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) @@ -57881,6 +62527,7 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .comment 0x0000000000000025 0x26 esp-idf/ca/libca.a(gen_key.c.obj) .comment 0x0000000000000025 0x26 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .comment 0x0000000000000025 0x26 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/display/libdisplay.a(display.c.obj) .comment 0x0000000000000025 0x26 esp-idf/wifi/libwifi.a(wifi.c.obj) .comment 0x0000000000000025 0x26 esp-idf/https_server/libhttps_server.a(https_server.c.obj) .comment 0x0000000000000025 0x26 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) @@ -57996,6 +62643,7 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(rtc_io.c.obj) .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(spi_common.c.obj) .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(uart.c.obj) .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(hw_random.c.obj) .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) @@ -58030,6 +62678,51 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .comment 0x0000000000000025 0x26 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) .comment 0x0000000000000025 0x26 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) .comment 0x0000000000000025 0x26 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(select.c.obj) .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) @@ -58087,6 +62780,7 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .comment 0x0000000000000025 0x26 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) .comment 0x0000000000000025 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) .comment 0x0000000000000025 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) .comment 0x0000000000000025 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) .comment 0x0000000000000025 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) .comment 0x0000000000000025 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) @@ -58159,11 +62853,15 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .comment 0x0000000000000099 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) .comment 0x0000000000000099 0x26 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) .comment 0x0000000000000099 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/driver/libdriver.a(spi_master.c.obj) .comment 0x0000000000000099 0x26 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .comment 0x0000000000000099 0x26 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) .comment 0x0000000000000099 0x26 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) .comment 0x0000000000000099 0x26 esp-idf/lwip/liblwip.a(wlanif.c.obj) .comment 0x0000000000000099 0x26 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/soc/libsoc.a(lldesc.c.obj) .comment 0x0000000000000099 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .comment 0x0000000000000099 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) .comment 0x0000000000000099 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) @@ -58405,7 +63103,7 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .xt.prop._ZTVN10__cxxabiv117__class_type_infoE 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) -.debug_frame 0x0000000000000000 0x1e8b4 +.debug_frame 0x0000000000000000 0x22aa4 .debug_frame 0x0000000000000000 0x40 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) .debug_frame 0x0000000000000040 0x148 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) .debug_frame 0x0000000000000188 0xa0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) @@ -58461,323 +63159,373 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .debug_frame 0x0000000000003c70 0xa0 esp-idf/ca/libca.a(gen_key.c.obj) .debug_frame 0x0000000000003d10 0x190 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .debug_frame 0x0000000000003ea0 0x178 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - .debug_frame 0x0000000000004018 0x88 esp-idf/wifi/libwifi.a(wifi.c.obj) - .debug_frame 0x00000000000040a0 0xec esp-idf/https_server/libhttps_server.a(https_server.c.obj) - .debug_frame 0x000000000000418c 0x28 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) - .debug_frame 0x00000000000041b4 0x40 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) - .debug_frame 0x00000000000041f4 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_frame 0x0000000000004264 0xb8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x000000000000431c 0x130 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_frame 0x000000000000444c 0x1f0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x000000000000463c 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_frame 0x0000000000004694 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_frame 0x00000000000046bc 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) - .debug_frame 0x0000000000004744 0x130 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) - .debug_frame 0x0000000000004874 0x130 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_frame 0x00000000000049a4 0x118 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_frame 0x0000000000004abc 0x298 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_frame 0x0000000000004d54 0x88 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_frame 0x0000000000004ddc 0xd0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_frame 0x0000000000004eac 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_frame 0x0000000000004f1c 0x1c0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_frame 0x00000000000050dc 0x280 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_frame 0x000000000000535c 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_frame 0x00000000000053b4 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_frame 0x000000000000540c 0x100 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_frame 0x000000000000550c 0x148 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_frame 0x0000000000005654 0xb8 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - .debug_frame 0x000000000000570c 0x58 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) - .debug_frame 0x0000000000005764 0x118 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - .debug_frame 0x000000000000587c 0x28 esp-idf/soc/libsoc.a(mpu_hal.c.obj) - .debug_frame 0x00000000000058a4 0x58 esp-idf/soc/libsoc.a(brownout_hal.c.obj) - .debug_frame 0x00000000000058fc 0x58 esp-idf/soc/libsoc.a(rtc_init.c.obj) - .debug_frame 0x0000000000005954 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_frame 0x0000000000005a3c 0x748 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_frame 0x0000000000006184 0xd0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - .debug_frame 0x0000000000006254 0xe8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_frame 0x000000000000633c 0x238 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_frame 0x0000000000006574 0xa0 esp-idf/esp_event/libesp_event.a(event_send.c.obj) - .debug_frame 0x0000000000006614 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) - .debug_frame 0x000000000000669c 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) - .debug_frame 0x00000000000066dc 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_frame 0x0000000000006704 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) - .debug_frame 0x000000000000678c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) - .debug_frame 0x00000000000067b4 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) - .debug_frame 0x000000000000680c 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) - .debug_frame 0x000000000000687c 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) - .debug_frame 0x0000000000006904 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) - .debug_frame 0x0000000000006974 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - .debug_frame 0x000000000000699c 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) - .debug_frame 0x0000000000006a24 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_frame 0x0000000000006a4c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_frame 0x0000000000006a74 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_frame 0x0000000000006b44 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) - .debug_frame 0x0000000000006b6c 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_frame 0x0000000000006c54 0x730 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_frame 0x0000000000007384 0x238 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_frame 0x00000000000075bc 0x100 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_frame 0x00000000000076bc 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_frame 0x0000000000007774 0x2e0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_frame 0x0000000000007a54 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_frame 0x0000000000007ac4 0x1c0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_frame 0x0000000000007c84 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_frame 0x0000000000007cdc 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) - .debug_frame 0x0000000000007d1c 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_frame 0x0000000000007d74 0x208 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_frame 0x0000000000007f7c 0x100 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_frame 0x000000000000807c 0x5f8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_frame 0x0000000000008674 0x208 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - .debug_frame 0x000000000000887c 0x250 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_frame 0x0000000000008acc 0x1a8 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_frame 0x0000000000008c74 0xa0 esp-idf/lwip/liblwip.a(def.c.obj) - .debug_frame 0x0000000000008d14 0x220 esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_frame 0x0000000000008f34 0x28 esp-idf/lwip/liblwip.a(init.c.obj) - .debug_frame 0x0000000000008f5c 0x70 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_frame 0x0000000000008fcc 0x88 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_frame 0x0000000000009054 0xd0 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_frame 0x0000000000009124 0x388 esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_frame 0x00000000000094ac 0x388 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_frame 0x0000000000009834 0x160 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_frame 0x0000000000009994 0x538 esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_frame 0x0000000000009ecc 0x118 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_frame 0x0000000000009fe4 0x250 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_frame 0x000000000000a234 0x100 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_frame 0x000000000000a334 0x1a8 esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_frame 0x000000000000a4dc 0x3b8 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_frame 0x000000000000a894 0x190 esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_frame 0x000000000000aa24 0x58 esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_frame 0x000000000000aa7c 0x1d8 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_frame 0x000000000000ac54 0x130 esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_frame 0x000000000000ad84 0xa0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_frame 0x000000000000ae24 0x28 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_frame 0x000000000000ae4c 0xe8 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_frame 0x000000000000af34 0xd0 esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_frame 0x000000000000b004 0x58 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_frame 0x000000000000b05c 0x88 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_frame 0x000000000000b0e4 0x160 esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_frame 0x000000000000b244 0x310 esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_frame 0x000000000000b554 0x40 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_frame 0x000000000000b594 0x2b0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_frame 0x000000000000b844 0x118 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_frame 0x000000000000b95c 0xa0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_frame 0x000000000000b9fc 0x6b8 esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_frame 0x000000000000c0b4 0x328 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_frame 0x000000000000c3dc 0x370 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_frame 0x000000000000c74c 0x40 esp-idf/lwip/liblwip.a(err.c.obj) - .debug_frame 0x000000000000c78c 0xe8 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_frame 0x000000000000c874 0x88 esp-idf/log/liblog.a(log.c.obj) - .debug_frame 0x000000000000c8fc 0x2b0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_frame 0x000000000000cbac 0x88 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_frame 0x000000000000cc34 0x250 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_frame 0x000000000000ce84 0x388 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_frame 0x000000000000d20c 0x58 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) - .debug_frame 0x000000000000d264 0x1d8 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_frame 0x000000000000d43c 0x70 esp-idf/driver/libdriver.a(rtc_module.c.obj) - .debug_frame 0x000000000000d4ac 0x610 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_frame 0x000000000000dabc 0x40 esp-idf/esp32/libesp32.a(hw_random.c.obj) - .debug_frame 0x000000000000dafc 0x130 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) - .debug_frame 0x000000000000dc2c 0x2b0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - .debug_frame 0x000000000000dedc 0xa0 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - .debug_frame 0x000000000000df7c 0xd0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_frame 0x000000000000e04c 0x148 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_frame 0x000000000000e194 0xe8 esp-idf/console/libconsole.a(commands.c.obj) - .debug_frame 0x000000000000e27c 0x28 esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_frame 0x000000000000e2a4 0xa00 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_frame 0x000000000000eca4 0x3d0 esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_frame 0x000000000000f074 0x220 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_frame 0x000000000000f294 0xd0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_frame 0x000000000000f364 0x1f0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_frame 0x000000000000f554 0x148 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_frame 0x000000000000f69c 0x250 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_frame 0x000000000000f8ec 0x70 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_frame 0x000000000000f95c 0xe8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_frame 0x000000000000fa44 0x70 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) - .debug_frame 0x000000000000fab4 0xd0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - .debug_frame 0x000000000000fb84 0xd0 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - .debug_frame 0x000000000000fc54 0x568 esp-idf/fatfs/libfatfs.a(ff.c.obj) - .debug_frame 0x00000000000101bc 0xa0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - .debug_frame 0x000000000001025c 0x328 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - .debug_frame 0x0000000000010584 0xd0 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - .debug_frame 0x0000000000010654 0x100 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - .debug_frame 0x0000000000010754 0x220 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - .debug_frame 0x0000000000010974 0x28 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) - .debug_frame 0x000000000001099c 0x328 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - .debug_frame 0x0000000000010cc4 0xa0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) - .debug_frame 0x0000000000010d64 0x418 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - .debug_frame 0x000000000001117c 0x3a0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - .debug_frame 0x000000000001151c 0x118 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - .debug_frame 0x0000000000011634 0xa0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) - .debug_frame 0x00000000000116d4 0x28 esp-idf/newlib/libnewlib.a(select.c.obj) - .debug_frame 0x00000000000116fc 0x88 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - .debug_frame 0x0000000000011784 0x58 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - .debug_frame 0x00000000000117dc 0x268 esp-idf/soc/libsoc.a(uart_hal.c.obj) - .debug_frame 0x0000000000011a44 0x70 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - .debug_frame 0x0000000000011ab4 0x538 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_frame 0x0000000000011fec 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_frame 0x00000000000121ac 0x580 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_frame 0x000000000001272c 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_frame 0x000000000001285c 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_frame 0x00000000000129d4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) - .debug_frame 0x00000000000129fc 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_frame 0x0000000000012c1c 0x340 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - .debug_frame 0x0000000000012f5c 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_frame 0x000000000001311c 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_frame 0x0000000000013414 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_frame 0x0000000000013484 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_frame 0x000000000001365c 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_frame 0x0000000000013744 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_frame 0x00000000000137cc 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_frame 0x00000000000137f4 0x3d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_frame 0x0000000000013bc4 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - .debug_frame 0x0000000000013c4c 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_frame 0x0000000000013ca4 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_frame 0x0000000000013cfc 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_frame 0x0000000000013d54 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_frame 0x0000000000013d7c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_frame 0x0000000000013dbc 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_frame 0x0000000000013eec 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_frame 0x0000000000013fbc 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - .debug_frame 0x0000000000014134 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_frame 0x000000000001427c 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_frame 0x00000000000143c4 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - .debug_frame 0x000000000001450c 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_frame 0x0000000000014654 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_frame 0x00000000000147fc 0x2c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_frame 0x0000000000014ac4 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_frame 0x0000000000014cb4 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_frame 0x0000000000014e74 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_frame 0x0000000000014f8c 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_frame 0x0000000000015134 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_frame 0x0000000000015294 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_frame 0x0000000000015514 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_frame 0x00000000000155cc 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_frame 0x000000000001566c 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_frame 0x0000000000015724 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_frame 0x0000000000015824 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_frame 0x000000000001587c 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_frame 0x0000000000015964 0x208 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_frame 0x0000000000015b6c 0x460 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_frame 0x0000000000015fcc 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - .debug_frame 0x0000000000016084 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - .debug_frame 0x0000000000016274 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_frame 0x0000000000016344 0x268 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_frame 0x00000000000165ac 0x88 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_frame 0x0000000000016634 0x418 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - .debug_frame 0x0000000000016a4c 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_frame 0x0000000000016aa4 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_frame 0x0000000000016c4c 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_frame 0x0000000000016d04 0x508 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_frame 0x000000000001720c 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_frame 0x00000000000172ac 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_frame 0x00000000000173dc 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_frame 0x00000000000174dc 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_frame 0x000000000001754c 0x5b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_frame 0x0000000000017afc 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_frame 0x0000000000017bcc 0x3d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_frame 0x0000000000017f9c 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_frame 0x0000000000018114 0x370 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_frame 0x0000000000018484 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_frame 0x00000000000184dc 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_frame 0x000000000001851c 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_frame 0x00000000000185bc 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_frame 0x0000000000018734 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_frame 0x0000000000018834 0x1c0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) - .debug_frame 0x00000000000189f4 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) - .debug_frame 0x0000000000018a4c 0x4c0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - .debug_frame 0x0000000000018f0c 0x958 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - .debug_frame 0x0000000000019864 0x4a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - .debug_frame 0x0000000000019d0c 0x118 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_frame 0x0000000000019e24 0x3e8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_frame 0x000000000001a20c 0x190 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - .debug_frame 0x000000000001a39c 0x268 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_frame 0x000000000001a604 0x1d8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_frame 0x000000000001a7dc 0xb8 esp-idf/lwip/liblwip.a(wlanif.c.obj) - .debug_frame 0x000000000001a894 0x28 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_frame 0x000000000001a8bc 0x1288 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_frame 0x000000000001bb44 0x148 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_frame 0x000000000001bc8c 0x100 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_frame 0x000000000001bd8c 0x3a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - .debug_frame 0x000000000001c12c 0x3d0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - .debug_frame 0x000000000001c4fc 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) - .debug_frame 0x000000000001c674 0x238 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_frame 0x000000000001c8ac 0x208 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) - .debug_frame 0x000000000001cab4 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) - .debug_frame 0x000000000001cadc 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) - .debug_frame 0x000000000001cb04 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) - .debug_frame 0x000000000001cb44 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - .debug_frame 0x000000000001cb6c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) - .debug_frame 0x000000000001cb94 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_frame 0x000000000001cc34 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - .debug_frame 0x000000000001cd04 0x118 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - .debug_frame 0x000000000001ce1c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) - .debug_frame 0x000000000001ce44 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - .debug_frame 0x000000000001cecc 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - .debug_frame 0x000000000001cf9c 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) - .debug_frame 0x000000000001d024 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) - .debug_frame 0x000000000001d04c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) - .debug_frame 0x000000000001d074 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) - .debug_frame 0x000000000001d09c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) - .debug_frame 0x000000000001d0c4 0x2c0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) - .debug_frame 0x000000000001d384 0x280 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - .debug_frame 0x000000000001d604 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) - .debug_frame 0x000000000001d644 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) - .debug_frame 0x000000000001d684 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) - .debug_frame 0x000000000001d6ac 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) - .debug_frame 0x000000000001d6d4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) - .debug_frame 0x000000000001d714 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) - .debug_frame 0x000000000001d754 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) - .debug_frame 0x000000000001d77c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) - .debug_frame 0x000000000001d7bc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) - .debug_frame 0x000000000001d7fc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) - .debug_frame 0x000000000001d83c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) - .debug_frame 0x000000000001d87c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) - .debug_frame 0x000000000001d8bc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) - .debug_frame 0x000000000001d8fc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) - .debug_frame 0x000000000001d93c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) - .debug_frame 0x000000000001d97c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) - .debug_frame 0x000000000001d9bc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) - .debug_frame 0x000000000001d9fc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) - .debug_frame 0x000000000001da3c 0x118 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) - .debug_frame 0x000000000001db54 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) - .debug_frame 0x000000000001dbdc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) - .debug_frame 0x000000000001dc1c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_frame 0x000000000001dc5c 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) - .debug_frame 0x000000000001dd2c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) - .debug_frame 0x000000000001dd6c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) - .debug_frame 0x000000000001ddac 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) - .debug_frame 0x000000000001ddec 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) - .debug_frame 0x000000000001de2c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) - .debug_frame 0x000000000001de6c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) - .debug_frame 0x000000000001deac 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) - .debug_frame 0x000000000001ded4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) - .debug_frame 0x000000000001df14 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) - .debug_frame 0x000000000001df54 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) - .debug_frame 0x000000000001df94 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) - .debug_frame 0x000000000001e064 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) - .debug_frame 0x000000000001e08c 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) - .debug_frame 0x000000000001e0fc 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) - .debug_frame 0x000000000001e16c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_frame 0x000000000001e1ac 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) - .debug_frame 0x000000000001e1f0 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_frame 0x000000000001e218 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_frame 0x000000000001e2a0 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_frame 0x000000000001e310 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) - .debug_frame 0x000000000001e350 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) - .debug_frame 0x000000000001e390 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) - .debug_frame 0x000000000001e3d0 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) - .debug_frame 0x000000000001e3f8 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) - .debug_frame 0x000000000001e450 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) - .debug_frame 0x000000000001e4a8 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) - .debug_frame 0x000000000001e4e8 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) - .debug_frame 0x000000000001e510 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) - .debug_frame 0x000000000001e568 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_frame 0x000000000001e5a8 0x1d8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) - .debug_frame 0x000000000001e780 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_frame 0x000000000001e7a8 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) - .debug_frame 0x000000000001e7d0 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_frame 0x000000000001e828 0x8c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_frame 0x0000000000004018 0x40 esp-idf/display/libdisplay.a(display.c.obj) + .debug_frame 0x0000000000004058 0x88 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_frame 0x00000000000040e0 0xec esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_frame 0x00000000000041cc 0x28 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_frame 0x00000000000041f4 0x40 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_frame 0x0000000000004234 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000000042a4 0xb8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x000000000000435c 0x130 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x000000000000448c 0x1f0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x000000000000467c 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x00000000000046d4 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x00000000000046fc 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x0000000000004784 0x130 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_frame 0x00000000000048b4 0x130 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x00000000000049e4 0x118 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x0000000000004afc 0x298 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x0000000000004d94 0x88 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x0000000000004e1c 0xd0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x0000000000004eec 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000000000004f5c 0x1c0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_frame 0x000000000000511c 0x280 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x000000000000539c 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x00000000000053f4 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x000000000000544c 0x100 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x000000000000554c 0x148 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x0000000000005694 0xb8 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + .debug_frame 0x000000000000574c 0x58 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_frame 0x00000000000057a4 0x118 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x00000000000058bc 0x28 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_frame 0x00000000000058e4 0x58 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_frame 0x000000000000593c 0x58 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_frame 0x0000000000005994 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_frame 0x0000000000005a7c 0x748 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_frame 0x00000000000061c4 0xd0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_frame 0x0000000000006294 0xe8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_frame 0x000000000000637c 0x238 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_frame 0x00000000000065b4 0xa0 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_frame 0x0000000000006654 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_frame 0x00000000000066dc 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_frame 0x000000000000671c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_frame 0x0000000000006744 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_frame 0x00000000000067cc 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_frame 0x00000000000067f4 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_frame 0x000000000000684c 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_frame 0x00000000000068bc 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_frame 0x0000000000006944 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_frame 0x00000000000069b4 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_frame 0x00000000000069dc 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_frame 0x0000000000006a64 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_frame 0x0000000000006a8c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_frame 0x0000000000006ab4 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_frame 0x0000000000006b84 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_frame 0x0000000000006bac 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_frame 0x0000000000006c94 0x730 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_frame 0x00000000000073c4 0x238 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_frame 0x00000000000075fc 0x100 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_frame 0x00000000000076fc 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_frame 0x00000000000077b4 0x2e0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_frame 0x0000000000007a94 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_frame 0x0000000000007b04 0x1c0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_frame 0x0000000000007cc4 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_frame 0x0000000000007d1c 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_frame 0x0000000000007d5c 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_frame 0x0000000000007db4 0x208 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_frame 0x0000000000007fbc 0x100 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_frame 0x00000000000080bc 0x5f8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_frame 0x00000000000086b4 0x208 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_frame 0x00000000000088bc 0x250 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_frame 0x0000000000008b0c 0x1a8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_frame 0x0000000000008cb4 0xa0 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_frame 0x0000000000008d54 0x220 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_frame 0x0000000000008f74 0x28 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_frame 0x0000000000008f9c 0x70 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_frame 0x000000000000900c 0x88 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_frame 0x0000000000009094 0xd0 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_frame 0x0000000000009164 0x388 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_frame 0x00000000000094ec 0x388 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_frame 0x0000000000009874 0x160 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_frame 0x00000000000099d4 0x538 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_frame 0x0000000000009f0c 0x118 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_frame 0x000000000000a024 0x250 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_frame 0x000000000000a274 0x100 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_frame 0x000000000000a374 0x1a8 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_frame 0x000000000000a51c 0x3b8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_frame 0x000000000000a8d4 0x190 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_frame 0x000000000000aa64 0x58 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_frame 0x000000000000aabc 0x1d8 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_frame 0x000000000000ac94 0x130 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_frame 0x000000000000adc4 0xa0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_frame 0x000000000000ae64 0x28 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_frame 0x000000000000ae8c 0xe8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_frame 0x000000000000af74 0xd0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_frame 0x000000000000b044 0x58 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_frame 0x000000000000b09c 0x88 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_frame 0x000000000000b124 0x160 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_frame 0x000000000000b284 0x310 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_frame 0x000000000000b594 0x40 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_frame 0x000000000000b5d4 0x2b0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_frame 0x000000000000b884 0x118 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_frame 0x000000000000b99c 0xa0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_frame 0x000000000000ba3c 0x6b8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_frame 0x000000000000c0f4 0x328 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_frame 0x000000000000c41c 0x370 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_frame 0x000000000000c78c 0x40 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_frame 0x000000000000c7cc 0xe8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_frame 0x000000000000c8b4 0x88 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x000000000000c93c 0x2b0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x000000000000cbec 0x88 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x000000000000cc74 0x250 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x000000000000cec4 0x388 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_frame 0x000000000000d24c 0x58 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_frame 0x000000000000d2a4 0x1d8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_frame 0x000000000000d47c 0x70 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_frame 0x000000000000d4ec 0x1c0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_frame 0x000000000000d6ac 0x610 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_frame 0x000000000000dcbc 0x40 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_frame 0x000000000000dcfc 0x130 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_frame 0x000000000000de2c 0x2b0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_frame 0x000000000000e0dc 0xa0 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_frame 0x000000000000e17c 0xd0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_frame 0x000000000000e24c 0x148 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_frame 0x000000000000e394 0xe8 esp-idf/console/libconsole.a(commands.c.obj) + .debug_frame 0x000000000000e47c 0x28 esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_frame 0x000000000000e4a4 0xa00 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_frame 0x000000000000eea4 0x3d0 esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_frame 0x000000000000f274 0x220 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_frame 0x000000000000f494 0xd0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_frame 0x000000000000f564 0x1f0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_frame 0x000000000000f754 0x148 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_frame 0x000000000000f89c 0x250 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_frame 0x000000000000faec 0x70 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_frame 0x000000000000fb5c 0xe8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_frame 0x000000000000fc44 0x70 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_frame 0x000000000000fcb4 0xd0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_frame 0x000000000000fd84 0xd0 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_frame 0x000000000000fe54 0x568 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_frame 0x00000000000103bc 0xa0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_frame 0x000000000001045c 0x328 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_frame 0x0000000000010784 0xd0 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_frame 0x0000000000010854 0x100 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_frame 0x0000000000010954 0x220 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_frame 0x0000000000010b74 0x28 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_frame 0x0000000000010b9c 0x328 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_frame 0x0000000000010ec4 0xa0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_frame 0x0000000000010f64 0x418 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_frame 0x000000000001137c 0x3a0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_frame 0x000000000001171c 0x118 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_frame 0x0000000000011834 0xa0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_frame 0x00000000000118d4 0x28 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .debug_frame 0x00000000000118fc 0x58 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .debug_frame 0x0000000000011954 0x40 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .debug_frame 0x0000000000011994 0xb8 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .debug_frame 0x0000000000011a4c 0xa0 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .debug_frame 0x0000000000011aec 0xd0 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .debug_frame 0x0000000000011bbc 0x958 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .debug_frame 0x0000000000012514 0x160 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .debug_frame 0x0000000000012674 0xb8 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .debug_frame 0x000000000001272c 0x88 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .debug_frame 0x00000000000127b4 0xa0 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .debug_frame 0x0000000000012854 0x118 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .debug_frame 0x000000000001296c 0x58 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .debug_frame 0x00000000000129c4 0x1c0 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .debug_frame 0x0000000000012b84 0x58 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .debug_frame 0x0000000000012bdc 0x1a8 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .debug_frame 0x0000000000012d84 0x88 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .debug_frame 0x0000000000012e0c 0x58 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .debug_frame 0x0000000000012e64 0x178 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .debug_frame 0x0000000000012fdc 0x118 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .debug_frame 0x00000000000130f4 0x58 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .debug_frame 0x000000000001314c 0x250 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .debug_frame 0x000000000001339c 0x28 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .debug_frame 0x00000000000133c4 0x190 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .debug_frame 0x0000000000013554 0x40 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .debug_frame 0x0000000000013594 0x118 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .debug_frame 0x00000000000136ac 0x160 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .debug_frame 0x000000000001380c 0x430 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .debug_frame 0x0000000000013c3c 0x340 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .debug_frame 0x0000000000013f7c 0x250 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .debug_frame 0x00000000000141cc 0x40 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .debug_frame 0x000000000001420c 0x328 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .debug_frame 0x0000000000014534 0x2b0 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .debug_frame 0x00000000000147e4 0x160 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .debug_frame 0x0000000000014944 0x40 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .debug_frame 0x0000000000014984 0xd0 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .debug_frame 0x0000000000014a54 0x88 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .debug_frame 0x0000000000014adc 0x148 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .debug_frame 0x0000000000014c24 0x178 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .debug_frame 0x0000000000014d9c 0x40 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .debug_frame 0x0000000000014ddc 0x190 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .debug_frame 0x0000000000014f6c 0x190 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .debug_frame 0x00000000000150fc 0x130 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .debug_frame 0x000000000001522c 0x2c8 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .debug_frame 0x00000000000154f4 0x28 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_frame 0x000000000001551c 0x88 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_frame 0x00000000000155a4 0x58 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_frame 0x00000000000155fc 0x268 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_frame 0x0000000000015864 0x70 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_frame 0x00000000000158d4 0x538 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_frame 0x0000000000015e0c 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_frame 0x0000000000015fcc 0x580 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_frame 0x000000000001654c 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_frame 0x000000000001667c 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_frame 0x00000000000167f4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_frame 0x000000000001681c 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_frame 0x0000000000016a3c 0x340 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_frame 0x0000000000016d7c 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_frame 0x0000000000016f3c 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_frame 0x0000000000017234 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_frame 0x00000000000172a4 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_frame 0x000000000001747c 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_frame 0x0000000000017564 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_frame 0x00000000000175ec 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_frame 0x0000000000017614 0x3d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_frame 0x00000000000179e4 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_frame 0x0000000000017a6c 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_frame 0x0000000000017ac4 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_frame 0x0000000000017b1c 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_frame 0x0000000000017b74 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_frame 0x0000000000017b9c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_frame 0x0000000000017bdc 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_frame 0x0000000000017d0c 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_frame 0x0000000000017ddc 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_frame 0x0000000000017f54 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_frame 0x000000000001809c 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x00000000000181e4 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_frame 0x000000000001832c 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_frame 0x0000000000018474 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_frame 0x000000000001861c 0x2c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_frame 0x00000000000188e4 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_frame 0x0000000000018ad4 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_frame 0x0000000000018c94 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_frame 0x0000000000018dac 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_frame 0x0000000000018f54 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_frame 0x00000000000190b4 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_frame 0x0000000000019334 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_frame 0x00000000000193ec 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_frame 0x000000000001948c 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_frame 0x0000000000019544 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x0000000000019644 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_frame 0x000000000001969c 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_frame 0x0000000000019784 0x208 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_frame 0x000000000001998c 0x460 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_frame 0x0000000000019dec 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_frame 0x0000000000019ea4 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_frame 0x000000000001a094 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_frame 0x000000000001a164 0x268 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x000000000001a3cc 0x88 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_frame 0x000000000001a454 0x418 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_frame 0x000000000001a86c 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_frame 0x000000000001a8c4 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_frame 0x000000000001aa6c 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_frame 0x000000000001ab24 0x508 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_frame 0x000000000001b02c 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_frame 0x000000000001b0cc 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_frame 0x000000000001b1fc 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_frame 0x000000000001b2fc 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_frame 0x000000000001b36c 0x5b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_frame 0x000000000001b91c 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_frame 0x000000000001b9ec 0x3d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_frame 0x000000000001bdbc 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_frame 0x000000000001bf34 0x370 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_frame 0x000000000001c2a4 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_frame 0x000000000001c2fc 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_frame 0x000000000001c33c 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_frame 0x000000000001c3dc 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_frame 0x000000000001c554 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_frame 0x000000000001c654 0x1c0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_frame 0x000000000001c814 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_frame 0x000000000001c86c 0x4c0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_frame 0x000000000001cd2c 0x958 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_frame 0x000000000001d684 0x4a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_frame 0x000000000001db2c 0x118 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_frame 0x000000000001dc44 0x3e8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x000000000001e02c 0x268 esp-idf/driver/libdriver.a(spi_master.c.obj) + .debug_frame 0x000000000001e294 0x190 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_frame 0x000000000001e424 0x268 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_frame 0x000000000001e68c 0x1d8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_frame 0x000000000001e864 0xb8 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_frame 0x000000000001e91c 0x28 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_frame 0x000000000001e944 0xa0 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .debug_frame 0x000000000001e9e4 0xa0 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .debug_frame 0x000000000001ea84 0x28 esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_frame 0x000000000001eaac 0x1288 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_frame 0x000000000001fd34 0x148 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_frame 0x000000000001fe7c 0x100 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_frame 0x000000000001ff7c 0x3a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_frame 0x000000000002031c 0x3d0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_frame 0x00000000000206ec 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_frame 0x0000000000020864 0x238 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_frame 0x0000000000020a9c 0x208 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_frame 0x0000000000020ca4 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_frame 0x0000000000020ccc 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_frame 0x0000000000020cf4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_frame 0x0000000000020d34 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_frame 0x0000000000020d5c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_frame 0x0000000000020d84 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_frame 0x0000000000020e24 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_frame 0x0000000000020ef4 0x118 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_frame 0x000000000002100c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_frame 0x0000000000021034 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_frame 0x00000000000210bc 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_frame 0x000000000002118c 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_frame 0x0000000000021214 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_frame 0x000000000002123c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_frame 0x0000000000021264 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_frame 0x000000000002128c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_frame 0x00000000000212b4 0x2c0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_frame 0x0000000000021574 0x280 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_frame 0x00000000000217f4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_frame 0x0000000000021834 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_frame 0x0000000000021874 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_frame 0x000000000002189c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_frame 0x00000000000218c4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_frame 0x0000000000021904 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_frame 0x0000000000021944 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_frame 0x000000000002196c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_frame 0x00000000000219ac 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_frame 0x00000000000219ec 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_frame 0x0000000000021a2c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_frame 0x0000000000021a6c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_frame 0x0000000000021aac 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_frame 0x0000000000021aec 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_frame 0x0000000000021b2c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_frame 0x0000000000021b6c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_frame 0x0000000000021bac 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_frame 0x0000000000021bec 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_frame 0x0000000000021c2c 0x118 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_frame 0x0000000000021d44 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_frame 0x0000000000021dcc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_frame 0x0000000000021e0c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_frame 0x0000000000021e4c 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_frame 0x0000000000021f1c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_frame 0x0000000000021f5c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_frame 0x0000000000021f9c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_frame 0x0000000000021fdc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_frame 0x000000000002201c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_frame 0x000000000002205c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_frame 0x000000000002209c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_frame 0x00000000000220c4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_frame 0x0000000000022104 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_frame 0x0000000000022144 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_frame 0x0000000000022184 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_frame 0x0000000000022254 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_frame 0x000000000002227c 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_frame 0x00000000000222ec 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_frame 0x000000000002235c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_frame 0x000000000002239c 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_frame 0x00000000000223e0 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_frame 0x0000000000022408 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_frame 0x0000000000022490 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_frame 0x0000000000022500 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_frame 0x0000000000022540 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_frame 0x0000000000022580 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_frame 0x00000000000225c0 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_frame 0x00000000000225e8 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_frame 0x0000000000022640 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_frame 0x0000000000022698 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_frame 0x00000000000226d8 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_frame 0x0000000000022700 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_frame 0x0000000000022758 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_frame 0x0000000000022798 0x1d8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_frame 0x0000000000022970 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_frame 0x0000000000022998 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_frame 0x00000000000229c0 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_frame 0x0000000000022a18 0x8c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) -.debug_info 0x0000000000000000 0x41e685 +.debug_info 0x0000000000000000 0x4a9683 .debug_info 0x0000000000000000 0x10f7 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) .debug_info 0x00000000000010f7 0x26 esp-idf/esp_system/libesp_system.a(dport_panic_highint_hdl.S.obj) .debug_info 0x000000000000111d 0x72c0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) @@ -58834,348 +63582,400 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .debug_info 0x00000000000a38aa 0x4c8d esp-idf/newlib/libnewlib.a(time.c.obj) .debug_info 0x00000000000a8537 0x1684 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) .debug_info 0x00000000000a9bbb 0x26df esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_info 0x00000000000ac29a 0x5943 esp-idf/main/libmain.a(main.c.obj) - .debug_info 0x00000000000b1bdd 0x1015 esp-idf/files/libfiles.a(file.c.obj) - .debug_info 0x00000000000b2bf2 0x38df esp-idf/ca/libca.a(ca.c.obj) - .debug_info 0x00000000000b64d1 0x2dea esp-idf/ca/libca.a(gen_key.c.obj) - .debug_info 0x00000000000b92bb 0x37b9 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - .debug_info 0x00000000000bca74 0x7401 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - .debug_info 0x00000000000c3e75 0x6095 esp-idf/wifi/libwifi.a(wifi.c.obj) - .debug_info 0x00000000000c9f0a 0x6806 esp-idf/https_server/libhttps_server.a(https_server.c.obj) - .debug_info 0x00000000000d0710 0xa19 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) - .debug_info 0x00000000000d1129 0x1689 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) - .debug_info 0x00000000000d27b2 0xfb9 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_info 0x00000000000d376b 0x1135 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x00000000000d48a0 0x14e2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_info 0x00000000000d5d82 0x1bd7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x00000000000d7959 0x10c2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_info 0x00000000000d8a1b 0xdbc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_info 0x00000000000d97d7 0x127d esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_info 0x00000000000daa54 0x17ba esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) - .debug_info 0x00000000000dc20e 0x3704 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) - .debug_info 0x00000000000df912 0x2109 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_info 0x00000000000e1a1b 0x1ff2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_info 0x00000000000e3a0d 0x50bf esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_info 0x00000000000e8acc 0x5010 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_info 0x00000000000edadc 0x1232 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_info 0x00000000000eed0e 0x19d2 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_info 0x00000000000f06e0 0x23cd esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_info 0x00000000000f2aad 0x113a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_info 0x00000000000f3be7 0x21b6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_info 0x00000000000f5d9d 0x12b7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_info 0x00000000000f7054 0x12d1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_info 0x00000000000f8325 0x3c28 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_info 0x00000000000fbf4d 0x268b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_info 0x00000000000fe5d8 0x1485 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - .debug_info 0x00000000000ffa5d 0x26 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) - .debug_info 0x00000000000ffa83 0x3a22 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) - .debug_info 0x00000000001034a5 0x49be esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - .debug_info 0x0000000000107e63 0xab4 esp-idf/soc/libsoc.a(mpu_hal.c.obj) - .debug_info 0x0000000000108917 0x1f71 esp-idf/soc/libsoc.a(brownout_hal.c.obj) - .debug_info 0x000000000010a888 0x4be4 esp-idf/soc/libsoc.a(rtc_init.c.obj) - .debug_info 0x000000000010f46c 0x44d4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_info 0x0000000000113940 0x8ece esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_info 0x000000000011c80e 0x4c51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - .debug_info 0x000000000012145f 0x4d6d esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_info 0x00000000001261cc 0x6152 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_info 0x000000000012c31e 0x47da esp-idf/esp_event/libesp_event.a(event_send.c.obj) - .debug_info 0x0000000000130af8 0xf38 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_info 0x0000000000131a30 0xdf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) - .debug_info 0x0000000000132820 0xc4a esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) - .debug_info 0x000000000013346a 0xaef esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_info 0x0000000000133f59 0xf76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) - .debug_info 0x0000000000134ecf 0xbc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) - .debug_info 0x0000000000135a8f 0xe44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) - .debug_info 0x00000000001368d3 0xffa esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) - .debug_info 0x00000000001378cd 0x1376 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) - .debug_info 0x0000000000138c43 0x1223 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) - .debug_info 0x0000000000139e66 0xb48 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - .debug_info 0x000000000013a9ae 0xdad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) - .debug_info 0x000000000013b75b 0xc2a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_info 0x000000000013c385 0xc66 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_info 0x000000000013cfeb 0x1762 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_info 0x000000000013e74d 0xbaa esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) - .debug_info 0x000000000013f2f7 0x1535 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_info 0x000000000014082c 0xc83e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_info 0x000000000014d06a 0xc2ec esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_info 0x0000000000159356 0x91ee esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_info 0x0000000000162544 0x410e esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_info 0x0000000000166652 0x8052 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_info 0x000000000016e6a4 0x792f esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_info 0x0000000000175fd3 0x752e esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_info 0x000000000017d501 0x2ec0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_info 0x00000000001803c1 0x123d esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) - .debug_info 0x00000000001815fe 0x8005 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_info 0x0000000000189603 0x62b4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_info 0x000000000018f8b7 0x5507 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_info 0x0000000000194dbe 0x68cd esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_info 0x000000000019b68b 0x9e53 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - .debug_info 0x00000000001a54de 0x602e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_info 0x00000000001ab50c 0x2b44 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_info 0x00000000001ae050 0x1691 esp-idf/lwip/liblwip.a(def.c.obj) - .debug_info 0x00000000001af6e1 0x34cc esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_info 0x00000000001b2bad 0x2558 esp-idf/lwip/liblwip.a(init.c.obj) - .debug_info 0x00000000001b5105 0x1ee2 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_info 0x00000000001b6fe7 0x1669 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_info 0x00000000001b8650 0x2cf5 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_info 0x00000000001bb345 0x41dd esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_info 0x00000000001bf522 0x428d esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_info 0x00000000001c37af 0x281c esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_info 0x00000000001c5fcb 0x4f35 esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_info 0x00000000001caf00 0x3e2c esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_info 0x00000000001ced2c 0x49bb esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_info 0x00000000001d36e7 0x2ade esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_info 0x00000000001d61c5 0x2f8e esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_info 0x00000000001d9153 0x4a8d esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_info 0x00000000001ddbe0 0x33f9 esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_info 0x00000000001e0fd9 0x22c1 esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_info 0x00000000001e329a 0x2aea esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_info 0x00000000001e5d84 0x322f esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_info 0x00000000001e8fb3 0x1e52 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_info 0x00000000001eae05 0x1f2d esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_info 0x00000000001ecd32 0x26b3 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_info 0x00000000001ef3e5 0x348b esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_info 0x00000000001f2870 0x181d esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_info 0x00000000001f408d 0x29a5 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_info 0x00000000001f6a32 0x2847 esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_info 0x00000000001f9279 0x4380 esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_info 0x00000000001fd5f9 0x20e3 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_info 0x00000000001ff6dc 0x2694 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_info 0x0000000000201d70 0x1dce esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_info 0x0000000000203b3e 0x2d9a esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_info 0x00000000002068d8 0x8fe8 esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_info 0x000000000020f8c0 0x4482 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_info 0x0000000000213d42 0x562b esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_info 0x000000000021936d 0x1405 esp-idf/lwip/liblwip.a(err.c.obj) - .debug_info 0x000000000021a772 0x1ba1 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_info 0x000000000021c313 0x1269 esp-idf/log/liblog.a(log.c.obj) - .debug_info 0x000000000021d57c 0x2ada esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_info 0x0000000000220056 0x1cab esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_info 0x0000000000221d01 0x4488 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_info 0x0000000000226189 0x80a7 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_info 0x000000000022e230 0x1bf4 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) - .debug_info 0x000000000022fe24 0x67ed esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_info 0x0000000000236611 0x5955 esp-idf/driver/libdriver.a(rtc_module.c.obj) - .debug_info 0x000000000023bf66 0xa136 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_info 0x000000000024609c 0x134a esp-idf/esp32/libesp32.a(hw_random.c.obj) - .debug_info 0x00000000002473e6 0x69b2 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) - .debug_info 0x000000000024dd98 0xb28b esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - .debug_info 0x0000000000259023 0x136d esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - .debug_info 0x000000000025a390 0x18f0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_info 0x000000000025bc80 0x2331 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_info 0x000000000025dfb1 0x1362 esp-idf/console/libconsole.a(commands.c.obj) - .debug_info 0x000000000025f313 0xa92 esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_info 0x000000000025fda5 0x72c2 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_info 0x0000000000267067 0x2c07 esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_info 0x0000000000269c6e 0x37e0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_info 0x000000000026d44e 0x2c6c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_info 0x00000000002700ba 0x2eb9 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_info 0x0000000000272f73 0x3dbf esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_info 0x0000000000276d32 0x3eef esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_info 0x000000000027ac21 0x2039 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_info 0x000000000027cc5a 0x484f esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_info 0x00000000002814a9 0x581d esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) - .debug_info 0x0000000000286cc6 0x194f esp-idf/fatfs/libfatfs.a(diskio.c.obj) - .debug_info 0x0000000000288615 0x2017 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - .debug_info 0x000000000028a62c 0x565d esp-idf/fatfs/libfatfs.a(ff.c.obj) - .debug_info 0x000000000028fc89 0x14ea esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - .debug_info 0x0000000000291173 0x5348 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - .debug_info 0x00000000002964bb 0x28ad esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - .debug_info 0x0000000000298d68 0x1ff9 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - .debug_info 0x000000000029ad61 0x3f45 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - .debug_info 0x000000000029eca6 0x107 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) - .debug_info 0x000000000029edad 0x5695 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - .debug_info 0x00000000002a4442 0x2314 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) - .debug_info 0x00000000002a6756 0x4111 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - .debug_info 0x00000000002aa867 0x4918 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - .debug_info 0x00000000002af17f 0x189c esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - .debug_info 0x00000000002b0a1b 0x1b7e esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) - .debug_info 0x00000000002b2599 0x1425 esp-idf/newlib/libnewlib.a(select.c.obj) - .debug_info 0x00000000002b39be 0xefd esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - .debug_info 0x00000000002b48bb 0x4ed1 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - .debug_info 0x00000000002b978c 0x3225 esp-idf/soc/libsoc.a(uart_hal.c.obj) - .debug_info 0x00000000002bc9b1 0x65e4 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - .debug_info 0x00000000002c2f95 0xb6c esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) - .debug_info 0x00000000002c3b01 0x4a08 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_info 0x00000000002c8509 0x1f2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_info 0x00000000002ca436 0x68f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_info 0x00000000002d0d28 0x5cc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_info 0x00000000002d69ea 0x1a8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_info 0x00000000002d8478 0x2734 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) - .debug_info 0x00000000002dabac 0x17e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_info 0x00000000002dc38f 0x1b2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - .debug_info 0x00000000002ddebc 0x1a52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_info 0x00000000002df90e 0x22c3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_info 0x00000000002e1bd1 0x1a46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_info 0x00000000002e3617 0x3634 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_info 0x00000000002e6c4b 0x1d5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_info 0x00000000002e89a5 0xae8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_info 0x00000000002e948d 0x9d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_info 0x00000000002e9e66 0x5808 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_info 0x00000000002ef66e 0x189d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - .debug_info 0x00000000002f0f0b 0xebc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_info 0x00000000002f1dc7 0xf54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_info 0x00000000002f2d1b 0xf54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_info 0x00000000002f3c6f 0x9a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_info 0x00000000002f4614 0x9c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_info 0x00000000002f4fdd 0x23a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_info 0x00000000002f737f 0x21ee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_info 0x00000000002f956d 0x2242 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - .debug_info 0x00000000002fb7af 0x1140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_info 0x00000000002fc8ef 0x117d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_info 0x00000000002fda6c 0x12fd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - .debug_info 0x00000000002fed69 0x128a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_info 0x00000000002ffff3 0x173c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_info 0x000000000030172f 0x247a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_info 0x0000000000303ba9 0x1e0e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_info 0x00000000003059b7 0x28f9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_info 0x00000000003082b0 0x22ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_info 0x000000000030a55c 0x1d94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_info 0x000000000030c2f0 0x1251 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_info 0x000000000030d541 0x1bd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_info 0x000000000030f119 0x18e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_info 0x0000000000310a01 0x1a18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_info 0x0000000000312419 0xfc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_info 0x00000000003133e2 0x212d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_info 0x000000000031550f 0xdc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_info 0x00000000003162d8 0x1cce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_info 0x0000000000317fa6 0x2a49 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_info 0x000000000031a9ef 0x4b3a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_info 0x000000000031f529 0x1600 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - .debug_info 0x0000000000320b29 0x1ffc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - .debug_info 0x0000000000322b25 0x137a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_info 0x0000000000323e9f 0x3863 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_info 0x0000000000327702 0x129e esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) - .debug_info 0x00000000003289a0 0x367a esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) - .debug_info 0x000000000032c01a 0x1e00 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) - .debug_info 0x000000000032de1a 0x4447 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_info 0x0000000000332261 0x3e3f esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .debug_info 0x00000000003360a0 0x54a4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .debug_info 0x000000000033b544 0x78d4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - .debug_info 0x0000000000342e18 0xb04 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_info 0x000000000034391c 0x69ed esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_info 0x000000000034a309 0x59ed esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_info 0x000000000034fcf6 0x994c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_info 0x0000000000359642 0x1e64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_info 0x000000000035b4a6 0x12cc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_info 0x000000000035c772 0x154e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_info 0x000000000035dcc0 0xd8d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_info 0x000000000035ea4d 0x9d41 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_info 0x000000000036878e 0x2049 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_info 0x000000000036a7d7 0x3fb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_info 0x000000000036e78b 0x1953 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_info 0x00000000003700de 0x27b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_info 0x0000000000372896 0xf11 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_info 0x00000000003737a7 0x5aa7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_info 0x000000000037924e 0x1417 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_info 0x000000000037a665 0x1f56 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_info 0x000000000037c5bb 0x57fd esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_info 0x0000000000381db8 0x1459 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) - .debug_info 0x0000000000383211 0x230 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) - .debug_info 0x0000000000383441 0x3b1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - .debug_info 0x0000000000386f5c 0x5799 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - .debug_info 0x000000000038c6f5 0x4212 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - .debug_info 0x0000000000390907 0xec6 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_info 0x00000000003917cd 0x4686 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_info 0x0000000000395e53 0x2761 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - .debug_info 0x00000000003985b4 0x58da esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_info 0x000000000039de8e 0x59fa esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_info 0x00000000003a3888 0x5807 esp-idf/lwip/liblwip.a(wlanif.c.obj) - .debug_info 0x00000000003a908f 0x1bf4 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_info 0x00000000003aac83 0xb66e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_info 0x00000000003b62f1 0x2e0d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_info 0x00000000003b90fe 0x10cc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_info 0x00000000003ba1ca 0x5acc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - .debug_info 0x00000000003bfc96 0x6157 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - .debug_info 0x00000000003c5ded 0x1fc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) - .debug_info 0x00000000003c7db3 0x1d33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_info 0x00000000003c9ae6 0x181c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) - .debug_info 0x00000000003cb302 0x1151 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) - .debug_info 0x00000000003cc453 0x3ad /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) - .debug_info 0x00000000003cc800 0x440 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) - .debug_info 0x00000000003ccc40 0x49f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - .debug_info 0x00000000003cd0df 0x3dc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) - .debug_info 0x00000000003cd4bb 0x8df /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_info 0x00000000003cdd9a 0x146f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - .debug_info 0x00000000003cf209 0x286f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - .debug_info 0x00000000003d1a78 0x3c0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) - .debug_info 0x00000000003d1e38 0x19c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - .debug_info 0x00000000003d37fb 0x9cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - .debug_info 0x00000000003d41c7 0x57d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) - .debug_info 0x00000000003d4744 0x11ec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) - .debug_info 0x00000000003d5930 0x44f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) - .debug_info 0x00000000003d5d7f 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) - .debug_info 0x00000000003d5da5 0x114b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) - .debug_info 0x00000000003d6ef0 0x11ac /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) - .debug_info 0x00000000003d809c 0x10fd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) - .debug_info 0x00000000003d9199 0x1175 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) - .debug_info 0x00000000003da30e 0x2700 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) - .debug_info 0x00000000003dca0e 0x2f9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - .debug_info 0x00000000003df9ac 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) - .debug_info 0x00000000003df9d2 0x5d /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) - .debug_info 0x00000000003dfa2f 0x78 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) - .debug_info 0x00000000003dfaa7 0x55 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) - .debug_info 0x00000000003dfafc 0x7a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) - .debug_info 0x00000000003dfb76 0x7a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) - .debug_info 0x00000000003dfbf0 0xcdb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) - .debug_info 0x00000000003e08cb 0xa3e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) - .debug_info 0x00000000003e1309 0x977 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) - .debug_info 0x00000000003e1c80 0xc72 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) - .debug_info 0x00000000003e28f2 0xcec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) - .debug_info 0x00000000003e35de 0xe0d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) - .debug_info 0x00000000003e43eb 0xca8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) - .debug_info 0x00000000003e5093 0xa93 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) - .debug_info 0x00000000003e5b26 0xe40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) - .debug_info 0x00000000003e6966 0xa9c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) - .debug_info 0x00000000003e7402 0xd14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) - .debug_info 0x00000000003e8116 0xdcd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) - .debug_info 0x00000000003e8ee3 0xe12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) - .debug_info 0x00000000003e9cf5 0xce9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) - .debug_info 0x00000000003ea9de 0x11f0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) - .debug_info 0x00000000003ebbce 0xca5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) - .debug_info 0x00000000003ec873 0xd28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) - .debug_info 0x00000000003ed59b 0xe28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) - .debug_info 0x00000000003ee3c3 0x1623 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) - .debug_info 0x00000000003ef9e6 0x115a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) - .debug_info 0x00000000003f0b40 0xf4b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) - .debug_info 0x00000000003f1a8b 0x105f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_info 0x00000000003f2aea 0x130c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) - .debug_info 0x00000000003f3df6 0xcd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) - .debug_info 0x00000000003f4ac9 0xd8b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) - .debug_info 0x00000000003f5854 0xc39 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) - .debug_info 0x00000000003f648d 0xde8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) - .debug_info 0x00000000003f7275 0xb1e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) - .debug_info 0x00000000003f7d93 0xc6f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) - .debug_info 0x00000000003f8a02 0xdf7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) - .debug_info 0x00000000003f97f9 0xd51 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) - .debug_info 0x00000000003fa54a 0xcec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) - .debug_info 0x00000000003fb236 0xd1b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) - .debug_info 0x00000000003fbf51 0x1eb4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) - .debug_info 0x00000000003fde05 0xa0f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) - .debug_info 0x00000000003fe814 0x1259 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) - .debug_info 0x00000000003ffa6d 0x1253 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) - .debug_info 0x0000000000400cc0 0x2c10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_info 0x00000000004038d0 0x29c2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) - .debug_info 0x0000000000406292 0xa0f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_info 0x0000000000406ca1 0x285f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_info 0x0000000000409500 0x2f2f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_info 0x000000000040c42f 0xca7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) - .debug_info 0x000000000040d0d6 0xd10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) - .debug_info 0x000000000040dde6 0x1a1b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) - .debug_info 0x000000000040f801 0x9fd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) - .debug_info 0x00000000004101fe 0x173b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) - .debug_info 0x0000000000411939 0x121b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) - .debug_info 0x0000000000412b54 0x9f7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) - .debug_info 0x000000000041354b 0xed9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) - .debug_info 0x0000000000414424 0x1022 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) - .debug_info 0x0000000000415446 0x10c5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_info 0x000000000041650b 0x1ff0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) - .debug_info 0x00000000004184fb 0xa9d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_info 0x0000000000418f98 0x995 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) - .debug_info 0x000000000041992d 0x2567 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_info 0x000000000041be94 0x27f1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_info 0x00000000000ac29a 0x5fa9 esp-idf/main/libmain.a(main.c.obj) + .debug_info 0x00000000000b2243 0x1015 esp-idf/files/libfiles.a(file.c.obj) + .debug_info 0x00000000000b3258 0x38df esp-idf/ca/libca.a(ca.c.obj) + .debug_info 0x00000000000b6b37 0x2dea esp-idf/ca/libca.a(gen_key.c.obj) + .debug_info 0x00000000000b9921 0x37b9 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .debug_info 0x00000000000bd0da 0x7401 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .debug_info 0x00000000000c44db 0x28b5 esp-idf/display/libdisplay.a(display.c.obj) + .debug_info 0x00000000000c6d90 0x6095 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_info 0x00000000000cce25 0x6806 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_info 0x00000000000d362b 0xa19 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_info 0x00000000000d4044 0x1689 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_info 0x00000000000d56cd 0xfb9 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000000d6686 0x1135 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000000d77bb 0x14e2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00000000000d8c9d 0x1bd7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000000da874 0x10c2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x00000000000db936 0xdbc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00000000000dc6f2 0x127d esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x00000000000dd96f 0x17ba esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x00000000000df129 0x3704 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_info 0x00000000000e282d 0x2109 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x00000000000e4936 0x1ff2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x00000000000e6928 0x50bf esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x00000000000eb9e7 0x5010 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x00000000000f09f7 0x1232 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00000000000f1c29 0x19d2 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x00000000000f35fb 0x23cd esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_info 0x00000000000f59c8 0x113a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x00000000000f6b02 0x21b6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x00000000000f8cb8 0x12b7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x00000000000f9f6f 0x12d1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x00000000000fb240 0x3c28 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x00000000000fee68 0x268b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x00000000001014f3 0x1485 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + .debug_info 0x0000000000102978 0x26 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_info 0x000000000010299e 0x3a22 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_info 0x00000000001063c0 0x49be esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_info 0x000000000010ad7e 0xab4 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_info 0x000000000010b832 0x1f71 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_info 0x000000000010d7a3 0x4be4 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_info 0x0000000000112387 0x44d4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_info 0x000000000011685b 0x8ece esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_info 0x000000000011f729 0x4c51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_info 0x000000000012437a 0x4d6d esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_info 0x00000000001290e7 0x6152 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_info 0x000000000012f239 0x47da esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_info 0x0000000000133a13 0xf38 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_info 0x000000000013494b 0xdf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_info 0x000000000013573b 0xc4a esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_info 0x0000000000136385 0xaef esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_info 0x0000000000136e74 0xf76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_info 0x0000000000137dea 0xbc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_info 0x00000000001389aa 0xe44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_info 0x00000000001397ee 0xffa esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_info 0x000000000013a7e8 0x1376 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_info 0x000000000013bb5e 0x1223 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_info 0x000000000013cd81 0xb48 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_info 0x000000000013d8c9 0xdad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_info 0x000000000013e676 0xc2a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_info 0x000000000013f2a0 0xc66 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_info 0x000000000013ff06 0x1762 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_info 0x0000000000141668 0xbaa esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_info 0x0000000000142212 0x1535 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_info 0x0000000000143747 0xc83e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_info 0x000000000014ff85 0xc2ec esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_info 0x000000000015c271 0x91ee esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_info 0x000000000016545f 0x410e esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_info 0x000000000016956d 0x8052 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_info 0x00000000001715bf 0x792f esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_info 0x0000000000178eee 0x752e esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_info 0x000000000018041c 0x2ec0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_info 0x00000000001832dc 0x123d esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_info 0x0000000000184519 0x8005 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_info 0x000000000018c51e 0x62b4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_info 0x00000000001927d2 0x5507 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_info 0x0000000000197cd9 0x68cd esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_info 0x000000000019e5a6 0x9e53 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_info 0x00000000001a83f9 0x602e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_info 0x00000000001ae427 0x2b44 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_info 0x00000000001b0f6b 0x1691 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_info 0x00000000001b25fc 0x34cc esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_info 0x00000000001b5ac8 0x2558 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_info 0x00000000001b8020 0x1ee2 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_info 0x00000000001b9f02 0x1669 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_info 0x00000000001bb56b 0x2cf5 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_info 0x00000000001be260 0x41dd esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_info 0x00000000001c243d 0x428d esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_info 0x00000000001c66ca 0x281c esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_info 0x00000000001c8ee6 0x4f35 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_info 0x00000000001cde1b 0x3e2c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_info 0x00000000001d1c47 0x49bb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_info 0x00000000001d6602 0x2ade esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_info 0x00000000001d90e0 0x2f8e esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_info 0x00000000001dc06e 0x4a8d esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_info 0x00000000001e0afb 0x33f9 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_info 0x00000000001e3ef4 0x22c1 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_info 0x00000000001e61b5 0x2aea esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_info 0x00000000001e8c9f 0x322f esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_info 0x00000000001ebece 0x1e52 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_info 0x00000000001edd20 0x1f2d esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_info 0x00000000001efc4d 0x26b3 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_info 0x00000000001f2300 0x348b esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_info 0x00000000001f578b 0x181d esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_info 0x00000000001f6fa8 0x29a5 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_info 0x00000000001f994d 0x2847 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_info 0x00000000001fc194 0x4380 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_info 0x0000000000200514 0x20e3 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_info 0x00000000002025f7 0x2694 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_info 0x0000000000204c8b 0x1dce esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_info 0x0000000000206a59 0x2d9a esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_info 0x00000000002097f3 0x8fe8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_info 0x00000000002127db 0x4482 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_info 0x0000000000216c5d 0x562b esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_info 0x000000000021c288 0x1405 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_info 0x000000000021d68d 0x1ba1 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_info 0x000000000021f22e 0x1269 esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x0000000000220497 0x2ada esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x0000000000222f71 0x1cab esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x0000000000224c1c 0x4488 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x00000000002290a4 0x80a7 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_info 0x000000000023114b 0x1bf4 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_info 0x0000000000232d3f 0x67ed esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_info 0x000000000023952c 0x5955 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_info 0x000000000023ee81 0x5997 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_info 0x0000000000244818 0xa136 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_info 0x000000000024e94e 0x134a esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_info 0x000000000024fc98 0x69b2 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_info 0x000000000025664a 0xb28b esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_info 0x00000000002618d5 0x136d esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_info 0x0000000000262c42 0x18f0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_info 0x0000000000264532 0x2331 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_info 0x0000000000266863 0x1362 esp-idf/console/libconsole.a(commands.c.obj) + .debug_info 0x0000000000267bc5 0xa92 esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_info 0x0000000000268657 0x72c2 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_info 0x000000000026f919 0x2c07 esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_info 0x0000000000272520 0x37e0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_info 0x0000000000275d00 0x2c6c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_info 0x000000000027896c 0x2eb9 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_info 0x000000000027b825 0x3dbf esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_info 0x000000000027f5e4 0x3eef esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_info 0x00000000002834d3 0x2039 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_info 0x000000000028550c 0x484f esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_info 0x0000000000289d5b 0x581d esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_info 0x000000000028f578 0x194f esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_info 0x0000000000290ec7 0x2017 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_info 0x0000000000292ede 0x565d esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_info 0x000000000029853b 0x14ea esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_info 0x0000000000299a25 0x5348 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_info 0x000000000029ed6d 0x28ad esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_info 0x00000000002a161a 0x1ff9 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_info 0x00000000002a3613 0x3f45 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_info 0x00000000002a7558 0x107 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_info 0x00000000002a765f 0x5695 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_info 0x00000000002accf4 0x2314 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_info 0x00000000002af008 0x4111 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_info 0x00000000002b3119 0x4918 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_info 0x00000000002b7a31 0x189c esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_info 0x00000000002b92cd 0x1b7e esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_info 0x00000000002bae4b 0x4020 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .debug_info 0x00000000002bee6b 0x1bcb esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .debug_info 0x00000000002c0a36 0x4313 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .debug_info 0x00000000002c4d49 0x56a1 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .debug_info 0x00000000002ca3ea 0x51ae esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .debug_info 0x00000000002cf598 0x192f esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .debug_info 0x00000000002d0ec7 0x6588 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .debug_info 0x00000000002d744f 0x2926 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .debug_info 0x00000000002d9d75 0x2486 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .debug_info 0x00000000002dc1fb 0x17ba esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .debug_info 0x00000000002dd9b5 0x2968 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .debug_info 0x00000000002e031d 0x4b0e esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .debug_info 0x00000000002e4e2b 0x1651 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .debug_info 0x00000000002e647c 0x2a87 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .debug_info 0x00000000002e8f03 0x35e esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .debug_info 0x00000000002e9261 0x131e esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .debug_info 0x00000000002ea57f 0x228d esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .debug_info 0x00000000002ec80c 0x1f81 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .debug_info 0x00000000002ee78d 0x159 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .debug_info 0x00000000002ee8e6 0x1c39 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .debug_info 0x00000000002f051f 0xdcd esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .debug_info 0x00000000002f12ec 0xa0e esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .debug_info 0x00000000002f1cfa 0x208f esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .debug_info 0x00000000002f3d89 0x1261 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .debug_info 0x00000000002f4fea 0x1395 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .debug_info 0x00000000002f637f 0xa5e esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .debug_info 0x00000000002f6ddd 0x1018 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .debug_info 0x00000000002f7df5 0x1896 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .debug_info 0x00000000002f968b 0x5042 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .debug_info 0x00000000002fe6cd 0x45e2 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .debug_info 0x0000000000302caf 0x37af esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .debug_info 0x000000000030645e 0x1bed esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .debug_info 0x000000000030804b 0x31fa esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .debug_info 0x000000000030b245 0x3a6f esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .debug_info 0x000000000030ecb4 0x271d esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .debug_info 0x00000000003113d1 0x1965 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .debug_info 0x0000000000312d36 0x1d42 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .debug_info 0x0000000000314a78 0x16ec esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .debug_info 0x0000000000316164 0x1e2d esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .debug_info 0x0000000000317f91 0x194a esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .debug_info 0x00000000003198db 0x237 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .debug_info 0x0000000000319b12 0x2c27 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .debug_info 0x000000000031c739 0x3864 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .debug_info 0x000000000031ff9d 0x222f esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .debug_info 0x00000000003221cc 0x53d1 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .debug_info 0x000000000032759d 0x1425 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_info 0x00000000003289c2 0xefd esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_info 0x00000000003298bf 0x4ed1 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_info 0x000000000032e790 0x3225 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_info 0x00000000003319b5 0x65e4 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_info 0x0000000000337f99 0xb6c esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_info 0x0000000000338b05 0x4a08 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_info 0x000000000033d50d 0x1f2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_info 0x000000000033f43a 0x68f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_info 0x0000000000345d2c 0x5cc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_info 0x000000000034b9ee 0x1a8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_info 0x000000000034d47c 0x2734 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_info 0x000000000034fbb0 0x17e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_info 0x0000000000351393 0x1b2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_info 0x0000000000352ec0 0x1a52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_info 0x0000000000354912 0x22c3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_info 0x0000000000356bd5 0x1a46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_info 0x000000000035861b 0x3634 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_info 0x000000000035bc4f 0x1d5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_info 0x000000000035d9a9 0xae8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_info 0x000000000035e491 0x9d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_info 0x000000000035ee6a 0x5808 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_info 0x0000000000364672 0x189d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_info 0x0000000000365f0f 0xebc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_info 0x0000000000366dcb 0xf54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_info 0x0000000000367d1f 0xf54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_info 0x0000000000368c73 0x9a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_info 0x0000000000369618 0x9c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_info 0x0000000000369fe1 0x23a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_info 0x000000000036c383 0x21ee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_info 0x000000000036e571 0x2242 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_info 0x00000000003707b3 0x1140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_info 0x00000000003718f3 0x117d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x0000000000372a70 0x12fd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_info 0x0000000000373d6d 0x128a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_info 0x0000000000374ff7 0x173c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_info 0x0000000000376733 0x247a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_info 0x0000000000378bad 0x1e0e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_info 0x000000000037a9bb 0x28f9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_info 0x000000000037d2b4 0x22ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_info 0x000000000037f560 0x1d94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_info 0x00000000003812f4 0x1251 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_info 0x0000000000382545 0x1bd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_info 0x000000000038411d 0x18e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_info 0x0000000000385a05 0x1a18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_info 0x000000000038741d 0xfc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_info 0x00000000003883e6 0x212d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x000000000038a513 0xdc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_info 0x000000000038b2dc 0x1cce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_info 0x000000000038cfaa 0x2a49 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_info 0x000000000038f9f3 0x4b3a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_info 0x000000000039452d 0x1600 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_info 0x0000000000395b2d 0x1ffc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_info 0x0000000000397b29 0x137a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_info 0x0000000000398ea3 0x3863 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x000000000039c706 0x129e esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_info 0x000000000039d9a4 0x367a esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_info 0x00000000003a101e 0x30c0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_info 0x00000000003a40de 0x1e00 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_info 0x00000000003a5ede 0x4447 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_info 0x00000000003aa325 0x3e3f esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_info 0x00000000003ae164 0x54a4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_info 0x00000000003b3608 0x78d4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_info 0x00000000003baedc 0xb04 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_info 0x00000000003bb9e0 0x69ed esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_info 0x00000000003c23cd 0x59ed esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_info 0x00000000003c7dba 0x994c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_info 0x00000000003d1706 0x1e64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_info 0x00000000003d356a 0x12cc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_info 0x00000000003d4836 0x154e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_info 0x00000000003d5d84 0xd8d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_info 0x00000000003d6b11 0x9d41 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_info 0x00000000003e0852 0x2049 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_info 0x00000000003e289b 0x3fb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_info 0x00000000003e684f 0x1953 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_info 0x00000000003e81a2 0x27b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_info 0x00000000003ea95a 0xf11 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_info 0x00000000003eb86b 0x5aa7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_info 0x00000000003f1312 0x1417 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_info 0x00000000003f2729 0x1f56 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_info 0x00000000003f467f 0x57fd esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_info 0x00000000003f9e7c 0x1459 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_info 0x00000000003fb2d5 0x230 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_info 0x00000000003fb505 0x3b1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_info 0x00000000003ff020 0x5799 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_info 0x00000000004047b9 0x4212 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_info 0x00000000004089cb 0xec6 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_info 0x0000000000409891 0x4686 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x000000000040df17 0xabbd esp-idf/driver/libdriver.a(spi_master.c.obj) + .debug_info 0x0000000000418ad4 0x2761 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_info 0x000000000041b235 0x58da esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_info 0x0000000000420b0f 0x59fa esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_info 0x0000000000426509 0x5807 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_info 0x000000000042bd10 0x1bf4 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_info 0x000000000042d904 0x3e26 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .debug_info 0x000000000043172a 0x4349 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .debug_info 0x0000000000435a73 0x20e esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_info 0x0000000000435c81 0xb66e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_info 0x00000000004412ef 0x2e0d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_info 0x00000000004440fc 0x10cc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_info 0x00000000004451c8 0x5acc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_info 0x000000000044ac94 0x6157 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_info 0x0000000000450deb 0x1fc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_info 0x0000000000452db1 0x1d33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_info 0x0000000000454ae4 0x181c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_info 0x0000000000456300 0x1151 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_info 0x0000000000457451 0x3ad /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_info 0x00000000004577fe 0x440 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_info 0x0000000000457c3e 0x49f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_info 0x00000000004580dd 0x3dc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_info 0x00000000004584b9 0x8df /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_info 0x0000000000458d98 0x146f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_info 0x000000000045a207 0x286f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_info 0x000000000045ca76 0x3c0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_info 0x000000000045ce36 0x19c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_info 0x000000000045e7f9 0x9cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_info 0x000000000045f1c5 0x57d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_info 0x000000000045f742 0x11ec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_info 0x000000000046092e 0x44f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_info 0x0000000000460d7d 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .debug_info 0x0000000000460da3 0x114b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_info 0x0000000000461eee 0x11ac /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_info 0x000000000046309a 0x10fd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_info 0x0000000000464197 0x1175 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_info 0x000000000046530c 0x2700 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_info 0x0000000000467a0c 0x2f9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_info 0x000000000046a9aa 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .debug_info 0x000000000046a9d0 0x5d /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_info 0x000000000046aa2d 0x78 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_info 0x000000000046aaa5 0x55 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_info 0x000000000046aafa 0x7a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_info 0x000000000046ab74 0x7a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_info 0x000000000046abee 0xcdb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_info 0x000000000046b8c9 0xa3e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_info 0x000000000046c307 0x977 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_info 0x000000000046cc7e 0xc72 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_info 0x000000000046d8f0 0xcec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_info 0x000000000046e5dc 0xe0d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_info 0x000000000046f3e9 0xca8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_info 0x0000000000470091 0xa93 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_info 0x0000000000470b24 0xe40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_info 0x0000000000471964 0xa9c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_info 0x0000000000472400 0xd14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_info 0x0000000000473114 0xdcd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_info 0x0000000000473ee1 0xe12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_info 0x0000000000474cf3 0xce9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_info 0x00000000004759dc 0x11f0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_info 0x0000000000476bcc 0xca5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_info 0x0000000000477871 0xd28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_info 0x0000000000478599 0xe28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_info 0x00000000004793c1 0x1623 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_info 0x000000000047a9e4 0x115a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_info 0x000000000047bb3e 0xf4b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_info 0x000000000047ca89 0x105f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_info 0x000000000047dae8 0x130c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_info 0x000000000047edf4 0xcd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_info 0x000000000047fac7 0xd8b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_info 0x0000000000480852 0xc39 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_info 0x000000000048148b 0xde8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_info 0x0000000000482273 0xb1e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_info 0x0000000000482d91 0xc6f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_info 0x0000000000483a00 0xdf7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_info 0x00000000004847f7 0xd51 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_info 0x0000000000485548 0xcec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_info 0x0000000000486234 0xd1b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_info 0x0000000000486f4f 0x1eb4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_info 0x0000000000488e03 0xa0f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_info 0x0000000000489812 0x1259 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_info 0x000000000048aa6b 0x1253 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_info 0x000000000048bcbe 0x2c10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_info 0x000000000048e8ce 0x29c2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_info 0x0000000000491290 0xa0f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_info 0x0000000000491c9f 0x285f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_info 0x00000000004944fe 0x2f2f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_info 0x000000000049742d 0xca7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_info 0x00000000004980d4 0xd10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_info 0x0000000000498de4 0x1a1b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_info 0x000000000049a7ff 0x9fd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_info 0x000000000049b1fc 0x173b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_info 0x000000000049c937 0x121b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_info 0x000000000049db52 0x9f7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_info 0x000000000049e549 0xed9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_info 0x000000000049f422 0x1022 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_info 0x00000000004a0444 0x10c5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_info 0x00000000004a1509 0x1ff0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_info 0x00000000004a34f9 0xa9d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_info 0x00000000004a3f96 0x995 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_info 0x00000000004a492b 0x2567 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_info 0x00000000004a6e92 0x27f1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) -.debug_abbrev 0x0000000000000000 0x5811a +.debug_abbrev 0x0000000000000000 0x63986 .debug_abbrev 0x0000000000000000 0x2a6 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) .debug_abbrev 0x00000000000002a6 0x14 esp-idf/esp_system/libesp_system.a(dport_panic_highint_hdl.S.obj) .debug_abbrev 0x00000000000002ba 0x58a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) @@ -59238,342 +64038,394 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .debug_abbrev 0x000000000000c2a0 0x418 esp-idf/ca/libca.a(gen_key.c.obj) .debug_abbrev 0x000000000000c6b8 0x3d3 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .debug_abbrev 0x000000000000ca8b 0x436 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - .debug_abbrev 0x000000000000cec1 0x406 esp-idf/wifi/libwifi.a(wifi.c.obj) - .debug_abbrev 0x000000000000d2c7 0x4db esp-idf/https_server/libhttps_server.a(https_server.c.obj) - .debug_abbrev 0x000000000000d7a2 0x248 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) - .debug_abbrev 0x000000000000d9ea 0x2f5 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) - .debug_abbrev 0x000000000000dcdf 0x2b8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_abbrev 0x000000000000df97 0x350 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x000000000000e2e7 0x2c7 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_abbrev 0x000000000000e5ae 0x407 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x000000000000e9b5 0x1da esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_abbrev 0x000000000000eb8f 0x24d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_abbrev 0x000000000000eddc 0x294 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_abbrev 0x000000000000f070 0x2c5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) - .debug_abbrev 0x000000000000f335 0x418 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) - .debug_abbrev 0x000000000000f74d 0x3f3 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_abbrev 0x000000000000fb40 0x48e esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_abbrev 0x000000000000ffce 0x53a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_abbrev 0x0000000000010508 0x390 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_abbrev 0x0000000000010898 0x2a6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_abbrev 0x0000000000010b3e 0x2fb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_abbrev 0x0000000000010e39 0x439 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_abbrev 0x0000000000011272 0x1b4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_abbrev 0x0000000000011426 0x42e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_abbrev 0x0000000000011854 0x284 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_abbrev 0x0000000000011ad8 0x298 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_abbrev 0x0000000000011d70 0x392 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_abbrev 0x0000000000012102 0x477 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_abbrev 0x0000000000012579 0x2a1 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - .debug_abbrev 0x000000000001281a 0x14 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) - .debug_abbrev 0x000000000001282e 0x38e esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) - .debug_abbrev 0x0000000000012bbc 0x49f esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - .debug_abbrev 0x000000000001305b 0x269 esp-idf/soc/libsoc.a(mpu_hal.c.obj) - .debug_abbrev 0x00000000000132c4 0x1cb esp-idf/soc/libsoc.a(brownout_hal.c.obj) - .debug_abbrev 0x000000000001348f 0x33f esp-idf/soc/libsoc.a(rtc_init.c.obj) - .debug_abbrev 0x00000000000137ce 0x3ae esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_abbrev 0x0000000000013b7c 0x5e3 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_abbrev 0x000000000001415f 0x34c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - .debug_abbrev 0x00000000000144ab 0x356 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_abbrev 0x0000000000014801 0x4ef esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_abbrev 0x0000000000014cf0 0x375 esp-idf/esp_event/libesp_event.a(event_send.c.obj) - .debug_abbrev 0x0000000000015065 0x195 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_abbrev 0x00000000000151fa 0x29d esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) - .debug_abbrev 0x0000000000015497 0x26c esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) - .debug_abbrev 0x0000000000015703 0x231 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_abbrev 0x0000000000015934 0x352 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) - .debug_abbrev 0x0000000000015c86 0x278 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) - .debug_abbrev 0x0000000000015efe 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) - .debug_abbrev 0x000000000001617e 0x2ed esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) - .debug_abbrev 0x000000000001646b 0x31f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) - .debug_abbrev 0x000000000001678a 0x2c1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) - .debug_abbrev 0x0000000000016a4b 0x225 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - .debug_abbrev 0x0000000000016c70 0x278 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) - .debug_abbrev 0x0000000000016ee8 0x264 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_abbrev 0x000000000001714c 0x275 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_abbrev 0x00000000000173c1 0x3bd esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_abbrev 0x000000000001777e 0x27e esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) - .debug_abbrev 0x00000000000179fc 0x2f1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_abbrev 0x0000000000017ced 0xe9e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_abbrev 0x0000000000018b8b 0xe40 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_abbrev 0x00000000000199cb 0xcbb esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_abbrev 0x000000000001a686 0x84b esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_abbrev 0x000000000001aed1 0xbcb esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_abbrev 0x000000000001ba9c 0xca0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_abbrev 0x000000000001c73c 0xb50 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_abbrev 0x000000000001d28c 0x655 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_abbrev 0x000000000001d8e1 0x303 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) - .debug_abbrev 0x000000000001dbe4 0x3b2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_abbrev 0x000000000001df96 0x53a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_abbrev 0x000000000001e4d0 0x404 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_abbrev 0x000000000001e8d4 0x5e9 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_abbrev 0x000000000001eebd 0x597 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - .debug_abbrev 0x000000000001f454 0x51e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_abbrev 0x000000000001f972 0x42b esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_abbrev 0x000000000001fd9d 0x27c esp-idf/lwip/liblwip.a(def.c.obj) - .debug_abbrev 0x0000000000020019 0x3bc esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_abbrev 0x00000000000203d5 0x257 esp-idf/lwip/liblwip.a(init.c.obj) - .debug_abbrev 0x000000000002062c 0x2c5 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_abbrev 0x00000000000208f1 0x2de esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_abbrev 0x0000000000020bcf 0x3a5 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_abbrev 0x0000000000020f74 0x46d esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_abbrev 0x00000000000213e1 0x459 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_abbrev 0x000000000002183a 0x421 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_abbrev 0x0000000000021c5b 0x47c esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_abbrev 0x00000000000220d7 0x40b esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_abbrev 0x00000000000224e2 0x480 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_abbrev 0x0000000000022962 0x3f1 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_abbrev 0x0000000000022d53 0x40b esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_abbrev 0x000000000002315e 0x43f esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_abbrev 0x000000000002359d 0x3ed esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_abbrev 0x000000000002398a 0x3ae esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_abbrev 0x0000000000023d38 0x44c esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_abbrev 0x0000000000024184 0x3fc esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_abbrev 0x0000000000024580 0x365 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_abbrev 0x00000000000248e5 0x2fd esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_abbrev 0x0000000000024be2 0x35a esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_abbrev 0x0000000000024f3c 0x3d2 esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_abbrev 0x000000000002530e 0x2d7 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_abbrev 0x00000000000255e5 0x3bd esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_abbrev 0x00000000000259a2 0x407 esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_abbrev 0x0000000000025da9 0x45b esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_abbrev 0x0000000000026204 0x362 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_abbrev 0x0000000000026566 0x3b1 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_abbrev 0x0000000000026917 0x314 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_abbrev 0x0000000000026c2b 0x33a esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_abbrev 0x0000000000026f65 0x3f5 esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_abbrev 0x000000000002735a 0x447 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_abbrev 0x00000000000277a1 0x4bf esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_abbrev 0x0000000000027c60 0x1db esp-idf/lwip/liblwip.a(err.c.obj) - .debug_abbrev 0x0000000000027e3b 0x2c9 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_abbrev 0x0000000000028104 0x464 esp-idf/log/liblog.a(log.c.obj) - .debug_abbrev 0x0000000000028568 0x483 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_abbrev 0x00000000000289eb 0x3b8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_abbrev 0x0000000000028da3 0x4a7 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_abbrev 0x000000000002924a 0x5bc esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_abbrev 0x0000000000029806 0x2bd esp-idf/driver/libdriver.a(periph_ctrl.c.obj) - .debug_abbrev 0x0000000000029ac3 0x3a6 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_abbrev 0x0000000000029e69 0x346 esp-idf/driver/libdriver.a(rtc_module.c.obj) - .debug_abbrev 0x000000000002a1af 0x583 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_abbrev 0x000000000002a732 0x258 esp-idf/esp32/libesp32.a(hw_random.c.obj) - .debug_abbrev 0x000000000002a98a 0x4db esp-idf/esp32/libesp32.a(pm_esp32.c.obj) - .debug_abbrev 0x000000000002ae65 0x5c4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - .debug_abbrev 0x000000000002b429 0x2c2 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - .debug_abbrev 0x000000000002b6eb 0x2a8 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_abbrev 0x000000000002b993 0x3d1 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_abbrev 0x000000000002bd64 0x309 esp-idf/console/libconsole.a(commands.c.obj) - .debug_abbrev 0x000000000002c06d 0x1ff esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_abbrev 0x000000000002c26c 0x421 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_abbrev 0x000000000002c68d 0x43c esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_abbrev 0x000000000002cac9 0x4aa esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_abbrev 0x000000000002cf73 0x411 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_abbrev 0x000000000002d384 0x4f8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_abbrev 0x000000000002d87c 0x58e esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_abbrev 0x000000000002de0a 0x482 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_abbrev 0x000000000002e28c 0x330 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_abbrev 0x000000000002e5bc 0x409 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_abbrev 0x000000000002e9c5 0x3f2 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) - .debug_abbrev 0x000000000002edb7 0x2e6 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - .debug_abbrev 0x000000000002f09d 0x2d2 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - .debug_abbrev 0x000000000002f36f 0x334 esp-idf/fatfs/libfatfs.a(ff.c.obj) - .debug_abbrev 0x000000000002f6a3 0x22c esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - .debug_abbrev 0x000000000002f8cf 0x4ed esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - .debug_abbrev 0x000000000002fdbc 0x643 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - .debug_abbrev 0x00000000000303ff 0x4d1 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - .debug_abbrev 0x00000000000308d0 0x6ea esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - .debug_abbrev 0x0000000000030fba 0xd0 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) - .debug_abbrev 0x000000000003108a 0x434 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - .debug_abbrev 0x00000000000314be 0x2b9 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) - .debug_abbrev 0x0000000000031777 0x3fe esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - .debug_abbrev 0x0000000000031b75 0x44a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - .debug_abbrev 0x0000000000031fbf 0x383 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - .debug_abbrev 0x0000000000032342 0x344 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) - .debug_abbrev 0x0000000000032686 0x1e9 esp-idf/newlib/libnewlib.a(select.c.obj) - .debug_abbrev 0x000000000003286f 0x33c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - .debug_abbrev 0x0000000000032bab 0x344 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - .debug_abbrev 0x0000000000032eef 0x42f esp-idf/soc/libsoc.a(uart_hal.c.obj) - .debug_abbrev 0x000000000003331e 0x36b esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - .debug_abbrev 0x0000000000033689 0x198 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) - .debug_abbrev 0x0000000000033821 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_abbrev 0x0000000000033c41 0x3de esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_abbrev 0x000000000003401f 0x3ef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_abbrev 0x000000000003440e 0x3ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_abbrev 0x00000000000347fa 0x3c5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_abbrev 0x0000000000034bbf 0x23e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) - .debug_abbrev 0x0000000000034dfd 0x3df esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_abbrev 0x00000000000351dc 0x30a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - .debug_abbrev 0x00000000000354e6 0x46a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_abbrev 0x0000000000035950 0x3ce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_abbrev 0x0000000000035d1e 0x36a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_abbrev 0x0000000000036088 0x3f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_abbrev 0x000000000003647a 0x40c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_abbrev 0x0000000000036886 0x288 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_abbrev 0x0000000000036b0e 0x1cf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_abbrev 0x0000000000036cdd 0x4c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_abbrev 0x000000000003719d 0x31b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - .debug_abbrev 0x00000000000374b8 0x29c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_abbrev 0x0000000000037754 0x293 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_abbrev 0x00000000000379e7 0x293 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_abbrev 0x0000000000037c7a 0x1f5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_abbrev 0x0000000000037e6f 0x211 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_abbrev 0x0000000000038080 0x453 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_abbrev 0x00000000000384d3 0x415 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_abbrev 0x00000000000388e8 0x429 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - .debug_abbrev 0x0000000000038d11 0x3a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_abbrev 0x00000000000390b2 0x3a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_abbrev 0x0000000000039455 0x439 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - .debug_abbrev 0x000000000003988e 0x2ee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_abbrev 0x0000000000039b7c 0x31b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_abbrev 0x0000000000039e97 0x4d3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_abbrev 0x000000000003a36a 0x351 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_abbrev 0x000000000003a6bb 0x38b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_abbrev 0x000000000003aa46 0x41d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_abbrev 0x000000000003ae63 0x423 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_abbrev 0x000000000003b286 0x343 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_abbrev 0x000000000003b5c9 0x34c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_abbrev 0x000000000003b915 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_abbrev 0x000000000003bccb 0x33f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_abbrev 0x000000000003c00a 0x308 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_abbrev 0x000000000003c312 0x44a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_abbrev 0x000000000003c75c 0x253 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_abbrev 0x000000000003c9af 0x39e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_abbrev 0x000000000003cd4d 0x3e4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_abbrev 0x000000000003d131 0x46d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_abbrev 0x000000000003d59e 0x370 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - .debug_abbrev 0x000000000003d90e 0x3ba esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - .debug_abbrev 0x000000000003dcc8 0x362 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_abbrev 0x000000000003e02a 0x46f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_abbrev 0x000000000003e499 0x1cd esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) - .debug_abbrev 0x000000000003e666 0x228 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) - .debug_abbrev 0x000000000003e88e 0x244 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) - .debug_abbrev 0x000000000003ead2 0x357 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_abbrev 0x000000000003ee29 0x26f esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .debug_abbrev 0x000000000003f098 0x2da esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .debug_abbrev 0x000000000003f372 0x525 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - .debug_abbrev 0x000000000003f897 0x227 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_abbrev 0x000000000003fabe 0x429 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_abbrev 0x000000000003fee7 0x454 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_abbrev 0x000000000004033b 0x6bb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_abbrev 0x00000000000409f6 0x3df esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_abbrev 0x0000000000040dd5 0x391 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_abbrev 0x0000000000041166 0x425 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_abbrev 0x000000000004158b 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_abbrev 0x0000000000041823 0x6de esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_abbrev 0x0000000000041f01 0x457 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_abbrev 0x0000000000042358 0x528 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_abbrev 0x0000000000042880 0x3f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_abbrev 0x0000000000042c74 0x3c9 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_abbrev 0x000000000004303d 0x2e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_abbrev 0x000000000004331d 0x398 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_abbrev 0x00000000000436b5 0x2d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_abbrev 0x0000000000043989 0x502 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_abbrev 0x0000000000043e8b 0x407 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_abbrev 0x0000000000044292 0x306 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) - .debug_abbrev 0x0000000000044598 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) - .debug_abbrev 0x000000000004466c 0x4f5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - .debug_abbrev 0x0000000000044b61 0x531 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - .debug_abbrev 0x0000000000045092 0x4ef /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - .debug_abbrev 0x0000000000045581 0x2b4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_abbrev 0x0000000000045835 0x3cd esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_abbrev 0x0000000000045c02 0x39d esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - .debug_abbrev 0x0000000000045f9f 0x56a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_abbrev 0x0000000000046509 0x527 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_abbrev 0x0000000000046a30 0x440 esp-idf/lwip/liblwip.a(wlanif.c.obj) - .debug_abbrev 0x0000000000046e70 0x2a0 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_abbrev 0x0000000000047110 0x645 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_abbrev 0x0000000000047755 0x492 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_abbrev 0x0000000000047be7 0x289 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_abbrev 0x0000000000047e70 0x551 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - .debug_abbrev 0x00000000000483c1 0x5a6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - .debug_abbrev 0x0000000000048967 0x3d6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) - .debug_abbrev 0x0000000000048d3d 0x3bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_abbrev 0x00000000000490f9 0x2d4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) - .debug_abbrev 0x00000000000493cd 0x3e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) - .debug_abbrev 0x00000000000497ae 0x268 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) - .debug_abbrev 0x0000000000049a16 0x2b7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) - .debug_abbrev 0x0000000000049ccd 0x2d8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - .debug_abbrev 0x0000000000049fa5 0x27e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) - .debug_abbrev 0x000000000004a223 0x456 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_abbrev 0x000000000004a679 0x50e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - .debug_abbrev 0x000000000004ab87 0x837 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - .debug_abbrev 0x000000000004b3be 0x271 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) - .debug_abbrev 0x000000000004b62f 0x662 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - .debug_abbrev 0x000000000004bc91 0x479 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - .debug_abbrev 0x000000000004c10a 0x32b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) - .debug_abbrev 0x000000000004c435 0x405 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) - .debug_abbrev 0x000000000004c83a 0x291 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) - .debug_abbrev 0x000000000004cacb 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) - .debug_abbrev 0x000000000004cadf 0x28e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) - .debug_abbrev 0x000000000004cd6d 0x29b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) - .debug_abbrev 0x000000000004d008 0x27a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) - .debug_abbrev 0x000000000004d282 0x294 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) - .debug_abbrev 0x000000000004d516 0x643 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) - .debug_abbrev 0x000000000004db59 0x650 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - .debug_abbrev 0x000000000004e1a9 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) - .debug_abbrev 0x000000000004e1bd 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) - .debug_abbrev 0x000000000004e1d1 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) - .debug_abbrev 0x000000000004e1e5 0x43 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) - .debug_abbrev 0x000000000004e228 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) - .debug_abbrev 0x000000000004e23c 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) - .debug_abbrev 0x000000000004e250 0x2b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) - .debug_abbrev 0x000000000004e509 0x210 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) - .debug_abbrev 0x000000000004e719 0x1b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) - .debug_abbrev 0x000000000004e8d1 0x25c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) - .debug_abbrev 0x000000000004eb2d 0x27a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) - .debug_abbrev 0x000000000004eda7 0x2a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) - .debug_abbrev 0x000000000004f04b 0x261 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) - .debug_abbrev 0x000000000004f2ac 0x224 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) - .debug_abbrev 0x000000000004f4d0 0x2bf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) - .debug_abbrev 0x000000000004f78f 0x249 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) - .debug_abbrev 0x000000000004f9d8 0x2b0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) - .debug_abbrev 0x000000000004fc88 0x29f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) - .debug_abbrev 0x000000000004ff27 0x2ec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) - .debug_abbrev 0x0000000000050213 0x28d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) - .debug_abbrev 0x00000000000504a0 0x2eb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) - .debug_abbrev 0x000000000005078b 0x291 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) - .debug_abbrev 0x0000000000050a1c 0x27e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) - .debug_abbrev 0x0000000000050c9a 0x2e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) - .debug_abbrev 0x0000000000050f7b 0x366 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) - .debug_abbrev 0x00000000000512e1 0x2c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) - .debug_abbrev 0x00000000000515a4 0x305 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) - .debug_abbrev 0x00000000000518a9 0x264 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_abbrev 0x0000000000051b0d 0x32e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) - .debug_abbrev 0x0000000000051e3b 0x2a1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) - .debug_abbrev 0x00000000000520dc 0x2e2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) - .debug_abbrev 0x00000000000523be 0x266 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) - .debug_abbrev 0x0000000000052624 0x2a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) - .debug_abbrev 0x00000000000528c8 0x24f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) - .debug_abbrev 0x0000000000052b17 0x258 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) - .debug_abbrev 0x0000000000052d6f 0x293 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) - .debug_abbrev 0x0000000000053002 0x2a0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) - .debug_abbrev 0x00000000000532a2 0x294 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) - .debug_abbrev 0x0000000000053536 0x2a1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) - .debug_abbrev 0x00000000000537d7 0x442 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) - .debug_abbrev 0x0000000000053c19 0x245 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) - .debug_abbrev 0x0000000000053e5e 0x314 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) - .debug_abbrev 0x0000000000054172 0x31d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) - .debug_abbrev 0x000000000005448f 0x462 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_abbrev 0x00000000000548f1 0x420 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) - .debug_abbrev 0x0000000000054d11 0x202 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_abbrev 0x0000000000054f13 0x480 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_abbrev 0x0000000000055393 0x4b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_abbrev 0x000000000005584b 0x28b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) - .debug_abbrev 0x0000000000055ad6 0x287 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) - .debug_abbrev 0x0000000000055d5d 0x31e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) - .debug_abbrev 0x000000000005607b 0x1f8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) - .debug_abbrev 0x0000000000056273 0x379 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) - .debug_abbrev 0x00000000000565ec 0x294 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) - .debug_abbrev 0x0000000000056880 0x213 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) - .debug_abbrev 0x0000000000056a93 0x1c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) - .debug_abbrev 0x0000000000056c56 0x27a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) - .debug_abbrev 0x0000000000056ed0 0x25b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_abbrev 0x000000000005712b 0x38a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) - .debug_abbrev 0x00000000000574b5 0x262 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_abbrev 0x0000000000057717 0x1cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) - .debug_abbrev 0x00000000000578e3 0x3ff /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_abbrev 0x0000000000057ce2 0x438 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_abbrev 0x000000000000cec1 0x2d6 esp-idf/display/libdisplay.a(display.c.obj) + .debug_abbrev 0x000000000000d197 0x406 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_abbrev 0x000000000000d59d 0x4db esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_abbrev 0x000000000000da78 0x248 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_abbrev 0x000000000000dcc0 0x2f5 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_abbrev 0x000000000000dfb5 0x2b8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x000000000000e26d 0x350 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x000000000000e5bd 0x2c7 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x000000000000e884 0x407 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x000000000000ec8b 0x1da esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x000000000000ee65 0x24d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x000000000000f0b2 0x294 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x000000000000f346 0x2c5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x000000000000f60b 0x418 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_abbrev 0x000000000000fa23 0x3f3 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x000000000000fe16 0x48e esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x00000000000102a4 0x53a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x00000000000107de 0x390 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x0000000000010b6e 0x2a6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x0000000000010e14 0x2fb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x000000000001110f 0x439 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_abbrev 0x0000000000011548 0x1b4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x00000000000116fc 0x42e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x0000000000011b2a 0x284 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x0000000000011dae 0x298 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x0000000000012046 0x392 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x00000000000123d8 0x477 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x000000000001284f 0x2a1 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + .debug_abbrev 0x0000000000012af0 0x14 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_abbrev 0x0000000000012b04 0x38e esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_abbrev 0x0000000000012e92 0x49f esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x0000000000013331 0x269 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_abbrev 0x000000000001359a 0x1cb esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_abbrev 0x0000000000013765 0x33f esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_abbrev 0x0000000000013aa4 0x3ae esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_abbrev 0x0000000000013e52 0x5e3 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_abbrev 0x0000000000014435 0x34c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_abbrev 0x0000000000014781 0x356 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_abbrev 0x0000000000014ad7 0x4ef esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_abbrev 0x0000000000014fc6 0x375 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_abbrev 0x000000000001533b 0x195 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_abbrev 0x00000000000154d0 0x29d esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_abbrev 0x000000000001576d 0x26c esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_abbrev 0x00000000000159d9 0x231 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_abbrev 0x0000000000015c0a 0x352 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_abbrev 0x0000000000015f5c 0x278 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_abbrev 0x00000000000161d4 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_abbrev 0x0000000000016454 0x2ed esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_abbrev 0x0000000000016741 0x31f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_abbrev 0x0000000000016a60 0x2c1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_abbrev 0x0000000000016d21 0x225 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_abbrev 0x0000000000016f46 0x278 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_abbrev 0x00000000000171be 0x264 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_abbrev 0x0000000000017422 0x275 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_abbrev 0x0000000000017697 0x3bd esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_abbrev 0x0000000000017a54 0x27e esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_abbrev 0x0000000000017cd2 0x2f1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_abbrev 0x0000000000017fc3 0xe9e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_abbrev 0x0000000000018e61 0xe40 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_abbrev 0x0000000000019ca1 0xcbb esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_abbrev 0x000000000001a95c 0x84b esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_abbrev 0x000000000001b1a7 0xbcb esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_abbrev 0x000000000001bd72 0xca0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_abbrev 0x000000000001ca12 0xb50 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_abbrev 0x000000000001d562 0x655 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_abbrev 0x000000000001dbb7 0x303 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_abbrev 0x000000000001deba 0x3b2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_abbrev 0x000000000001e26c 0x53a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_abbrev 0x000000000001e7a6 0x404 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_abbrev 0x000000000001ebaa 0x5e9 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_abbrev 0x000000000001f193 0x597 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_abbrev 0x000000000001f72a 0x51e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_abbrev 0x000000000001fc48 0x42b esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_abbrev 0x0000000000020073 0x27c esp-idf/lwip/liblwip.a(def.c.obj) + .debug_abbrev 0x00000000000202ef 0x3bc esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_abbrev 0x00000000000206ab 0x257 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_abbrev 0x0000000000020902 0x2c5 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_abbrev 0x0000000000020bc7 0x2de esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_abbrev 0x0000000000020ea5 0x3a5 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_abbrev 0x000000000002124a 0x46d esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_abbrev 0x00000000000216b7 0x459 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_abbrev 0x0000000000021b10 0x421 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_abbrev 0x0000000000021f31 0x47c esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_abbrev 0x00000000000223ad 0x40b esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_abbrev 0x00000000000227b8 0x480 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_abbrev 0x0000000000022c38 0x3f1 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_abbrev 0x0000000000023029 0x40b esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_abbrev 0x0000000000023434 0x43f esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_abbrev 0x0000000000023873 0x3ed esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_abbrev 0x0000000000023c60 0x3ae esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_abbrev 0x000000000002400e 0x44c esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_abbrev 0x000000000002445a 0x3fc esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_abbrev 0x0000000000024856 0x365 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_abbrev 0x0000000000024bbb 0x2fd esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_abbrev 0x0000000000024eb8 0x35a esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_abbrev 0x0000000000025212 0x3d2 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_abbrev 0x00000000000255e4 0x2d7 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_abbrev 0x00000000000258bb 0x3bd esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_abbrev 0x0000000000025c78 0x407 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_abbrev 0x000000000002607f 0x45b esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_abbrev 0x00000000000264da 0x362 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_abbrev 0x000000000002683c 0x3b1 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_abbrev 0x0000000000026bed 0x314 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_abbrev 0x0000000000026f01 0x33a esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_abbrev 0x000000000002723b 0x3f5 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_abbrev 0x0000000000027630 0x447 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_abbrev 0x0000000000027a77 0x4bf esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_abbrev 0x0000000000027f36 0x1db esp-idf/lwip/liblwip.a(err.c.obj) + .debug_abbrev 0x0000000000028111 0x2c9 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_abbrev 0x00000000000283da 0x464 esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x000000000002883e 0x483 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x0000000000028cc1 0x3b8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x0000000000029079 0x4a7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x0000000000029520 0x5bc esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_abbrev 0x0000000000029adc 0x2bd esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_abbrev 0x0000000000029d99 0x3a6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_abbrev 0x000000000002a13f 0x346 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_abbrev 0x000000000002a485 0x4b9 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_abbrev 0x000000000002a93e 0x583 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_abbrev 0x000000000002aec1 0x258 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_abbrev 0x000000000002b119 0x4db esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_abbrev 0x000000000002b5f4 0x5c4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_abbrev 0x000000000002bbb8 0x2c2 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_abbrev 0x000000000002be7a 0x2a8 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x000000000002c122 0x3d1 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_abbrev 0x000000000002c4f3 0x309 esp-idf/console/libconsole.a(commands.c.obj) + .debug_abbrev 0x000000000002c7fc 0x1ff esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_abbrev 0x000000000002c9fb 0x421 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_abbrev 0x000000000002ce1c 0x43c esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_abbrev 0x000000000002d258 0x4aa esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_abbrev 0x000000000002d702 0x411 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_abbrev 0x000000000002db13 0x4f8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_abbrev 0x000000000002e00b 0x58e esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_abbrev 0x000000000002e599 0x482 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_abbrev 0x000000000002ea1b 0x330 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_abbrev 0x000000000002ed4b 0x409 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_abbrev 0x000000000002f154 0x3f2 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_abbrev 0x000000000002f546 0x2e6 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_abbrev 0x000000000002f82c 0x2d2 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_abbrev 0x000000000002fafe 0x334 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_abbrev 0x000000000002fe32 0x22c esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_abbrev 0x000000000003005e 0x4ed esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_abbrev 0x000000000003054b 0x643 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_abbrev 0x0000000000030b8e 0x4d1 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_abbrev 0x000000000003105f 0x6ea esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_abbrev 0x0000000000031749 0xd0 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_abbrev 0x0000000000031819 0x434 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_abbrev 0x0000000000031c4d 0x2b9 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_abbrev 0x0000000000031f06 0x3fe esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_abbrev 0x0000000000032304 0x44a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_abbrev 0x000000000003274e 0x383 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_abbrev 0x0000000000032ad1 0x344 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_abbrev 0x0000000000032e15 0x295 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .debug_abbrev 0x00000000000330aa 0x2cd esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .debug_abbrev 0x0000000000033377 0x2c2 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .debug_abbrev 0x0000000000033639 0x38d esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .debug_abbrev 0x00000000000339c6 0x3b6 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .debug_abbrev 0x0000000000033d7c 0x2ce esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .debug_abbrev 0x000000000003404a 0x52b esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .debug_abbrev 0x0000000000034575 0x494 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .debug_abbrev 0x0000000000034a09 0x3e6 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .debug_abbrev 0x0000000000034def 0x2dd esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .debug_abbrev 0x00000000000350cc 0x4de esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .debug_abbrev 0x00000000000355aa 0x4a8 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .debug_abbrev 0x0000000000035a52 0x2f2 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .debug_abbrev 0x0000000000035d44 0x47d esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .debug_abbrev 0x00000000000361c1 0x172 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .debug_abbrev 0x0000000000036333 0x20b esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .debug_abbrev 0x000000000003653e 0x394 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .debug_abbrev 0x00000000000368d2 0x2c4 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .debug_abbrev 0x0000000000036b96 0xbc esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .debug_abbrev 0x0000000000036c52 0x3d1 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .debug_abbrev 0x0000000000037023 0x28f esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .debug_abbrev 0x00000000000372b2 0x1ee esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .debug_abbrev 0x00000000000374a0 0x422 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .debug_abbrev 0x00000000000378c2 0x1e0 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .debug_abbrev 0x0000000000037aa2 0x30c esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .debug_abbrev 0x0000000000037dae 0x209 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .debug_abbrev 0x0000000000037fb7 0x379 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .debug_abbrev 0x0000000000038330 0x36c esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .debug_abbrev 0x000000000003869c 0x531 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .debug_abbrev 0x0000000000038bcd 0x563 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .debug_abbrev 0x0000000000039130 0x4c7 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .debug_abbrev 0x00000000000395f7 0x296 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .debug_abbrev 0x000000000003988d 0x496 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .debug_abbrev 0x0000000000039d23 0x445 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .debug_abbrev 0x000000000003a168 0x4be esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .debug_abbrev 0x000000000003a626 0x3ca esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .debug_abbrev 0x000000000003a9f0 0x3ab esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .debug_abbrev 0x000000000003ad9b 0x348 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .debug_abbrev 0x000000000003b0e3 0x38c esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .debug_abbrev 0x000000000003b46f 0x496 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .debug_abbrev 0x000000000003b905 0x123 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .debug_abbrev 0x000000000003ba28 0x49f esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .debug_abbrev 0x000000000003bec7 0x486 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .debug_abbrev 0x000000000003c34d 0x402 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .debug_abbrev 0x000000000003c74f 0x51c esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .debug_abbrev 0x000000000003cc6b 0x1e9 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_abbrev 0x000000000003ce54 0x33c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_abbrev 0x000000000003d190 0x344 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_abbrev 0x000000000003d4d4 0x42f esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_abbrev 0x000000000003d903 0x36b esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_abbrev 0x000000000003dc6e 0x198 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_abbrev 0x000000000003de06 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_abbrev 0x000000000003e226 0x3de esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_abbrev 0x000000000003e604 0x3ef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_abbrev 0x000000000003e9f3 0x3ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_abbrev 0x000000000003eddf 0x3c5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_abbrev 0x000000000003f1a4 0x23e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_abbrev 0x000000000003f3e2 0x3df esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_abbrev 0x000000000003f7c1 0x30a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_abbrev 0x000000000003facb 0x46a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_abbrev 0x000000000003ff35 0x3ce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_abbrev 0x0000000000040303 0x36a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_abbrev 0x000000000004066d 0x3f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_abbrev 0x0000000000040a5f 0x40c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_abbrev 0x0000000000040e6b 0x288 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_abbrev 0x00000000000410f3 0x1cf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_abbrev 0x00000000000412c2 0x4c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_abbrev 0x0000000000041782 0x31b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_abbrev 0x0000000000041a9d 0x29c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_abbrev 0x0000000000041d39 0x293 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_abbrev 0x0000000000041fcc 0x293 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_abbrev 0x000000000004225f 0x1f5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_abbrev 0x0000000000042454 0x211 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_abbrev 0x0000000000042665 0x453 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_abbrev 0x0000000000042ab8 0x415 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_abbrev 0x0000000000042ecd 0x429 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_abbrev 0x00000000000432f6 0x3a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_abbrev 0x0000000000043697 0x3a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x0000000000043a3a 0x439 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_abbrev 0x0000000000043e73 0x2ee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_abbrev 0x0000000000044161 0x31b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_abbrev 0x000000000004447c 0x4d3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_abbrev 0x000000000004494f 0x351 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_abbrev 0x0000000000044ca0 0x38b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_abbrev 0x000000000004502b 0x41d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_abbrev 0x0000000000045448 0x423 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_abbrev 0x000000000004586b 0x343 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_abbrev 0x0000000000045bae 0x34c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_abbrev 0x0000000000045efa 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_abbrev 0x00000000000462b0 0x33f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_abbrev 0x00000000000465ef 0x308 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_abbrev 0x00000000000468f7 0x44a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x0000000000046d41 0x253 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_abbrev 0x0000000000046f94 0x39e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_abbrev 0x0000000000047332 0x3e4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_abbrev 0x0000000000047716 0x46d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_abbrev 0x0000000000047b83 0x370 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_abbrev 0x0000000000047ef3 0x3ba esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_abbrev 0x00000000000482ad 0x362 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_abbrev 0x000000000004860f 0x46f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x0000000000048a7e 0x1cd esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_abbrev 0x0000000000048c4b 0x228 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0000000000048e73 0x255 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_abbrev 0x00000000000490c8 0x244 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_abbrev 0x000000000004930c 0x357 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_abbrev 0x0000000000049663 0x26f esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_abbrev 0x00000000000498d2 0x2da esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_abbrev 0x0000000000049bac 0x525 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_abbrev 0x000000000004a0d1 0x227 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_abbrev 0x000000000004a2f8 0x429 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_abbrev 0x000000000004a721 0x454 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_abbrev 0x000000000004ab75 0x6bb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_abbrev 0x000000000004b230 0x3df esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_abbrev 0x000000000004b60f 0x391 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_abbrev 0x000000000004b9a0 0x425 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_abbrev 0x000000000004bdc5 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_abbrev 0x000000000004c05d 0x6de esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_abbrev 0x000000000004c73b 0x457 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_abbrev 0x000000000004cb92 0x528 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_abbrev 0x000000000004d0ba 0x3f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_abbrev 0x000000000004d4ae 0x3c9 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_abbrev 0x000000000004d877 0x2e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_abbrev 0x000000000004db57 0x398 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_abbrev 0x000000000004deef 0x2d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_abbrev 0x000000000004e1c3 0x502 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_abbrev 0x000000000004e6c5 0x407 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_abbrev 0x000000000004eacc 0x306 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_abbrev 0x000000000004edd2 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_abbrev 0x000000000004eea6 0x4f5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_abbrev 0x000000000004f39b 0x531 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_abbrev 0x000000000004f8cc 0x4ef /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_abbrev 0x000000000004fdbb 0x2b4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_abbrev 0x000000000005006f 0x3cd esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x000000000005043c 0x594 esp-idf/driver/libdriver.a(spi_master.c.obj) + .debug_abbrev 0x00000000000509d0 0x39d esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_abbrev 0x0000000000050d6d 0x56a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_abbrev 0x00000000000512d7 0x527 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_abbrev 0x00000000000517fe 0x440 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_abbrev 0x0000000000051c3e 0x2a0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_abbrev 0x0000000000051ede 0x4bb esp-idf/soc/libsoc.a(spi_hal.c.obj) + .debug_abbrev 0x0000000000052399 0x469 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .debug_abbrev 0x0000000000052802 0x17a esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_abbrev 0x000000000005297c 0x645 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_abbrev 0x0000000000052fc1 0x492 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_abbrev 0x0000000000053453 0x289 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_abbrev 0x00000000000536dc 0x551 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_abbrev 0x0000000000053c2d 0x5a6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_abbrev 0x00000000000541d3 0x3d6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_abbrev 0x00000000000545a9 0x3bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_abbrev 0x0000000000054965 0x2d4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_abbrev 0x0000000000054c39 0x3e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_abbrev 0x000000000005501a 0x268 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_abbrev 0x0000000000055282 0x2b7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_abbrev 0x0000000000055539 0x2d8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_abbrev 0x0000000000055811 0x27e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_abbrev 0x0000000000055a8f 0x456 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_abbrev 0x0000000000055ee5 0x50e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_abbrev 0x00000000000563f3 0x837 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_abbrev 0x0000000000056c2a 0x271 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_abbrev 0x0000000000056e9b 0x662 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_abbrev 0x00000000000574fd 0x479 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_abbrev 0x0000000000057976 0x32b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_abbrev 0x0000000000057ca1 0x405 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_abbrev 0x00000000000580a6 0x291 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_abbrev 0x0000000000058337 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .debug_abbrev 0x000000000005834b 0x28e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_abbrev 0x00000000000585d9 0x29b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_abbrev 0x0000000000058874 0x27a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_abbrev 0x0000000000058aee 0x294 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_abbrev 0x0000000000058d82 0x643 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_abbrev 0x00000000000593c5 0x650 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_abbrev 0x0000000000059a15 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .debug_abbrev 0x0000000000059a29 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_abbrev 0x0000000000059a3d 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_abbrev 0x0000000000059a51 0x43 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_abbrev 0x0000000000059a94 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_abbrev 0x0000000000059aa8 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_abbrev 0x0000000000059abc 0x2b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_abbrev 0x0000000000059d75 0x210 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_abbrev 0x0000000000059f85 0x1b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_abbrev 0x000000000005a13d 0x25c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_abbrev 0x000000000005a399 0x27a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_abbrev 0x000000000005a613 0x2a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_abbrev 0x000000000005a8b7 0x261 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_abbrev 0x000000000005ab18 0x224 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_abbrev 0x000000000005ad3c 0x2bf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_abbrev 0x000000000005affb 0x249 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_abbrev 0x000000000005b244 0x2b0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_abbrev 0x000000000005b4f4 0x29f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_abbrev 0x000000000005b793 0x2ec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_abbrev 0x000000000005ba7f 0x28d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_abbrev 0x000000000005bd0c 0x2eb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_abbrev 0x000000000005bff7 0x291 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_abbrev 0x000000000005c288 0x27e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_abbrev 0x000000000005c506 0x2e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_abbrev 0x000000000005c7e7 0x366 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_abbrev 0x000000000005cb4d 0x2c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_abbrev 0x000000000005ce10 0x305 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_abbrev 0x000000000005d115 0x264 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_abbrev 0x000000000005d379 0x32e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_abbrev 0x000000000005d6a7 0x2a1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_abbrev 0x000000000005d948 0x2e2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_abbrev 0x000000000005dc2a 0x266 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_abbrev 0x000000000005de90 0x2a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_abbrev 0x000000000005e134 0x24f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_abbrev 0x000000000005e383 0x258 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_abbrev 0x000000000005e5db 0x293 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_abbrev 0x000000000005e86e 0x2a0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_abbrev 0x000000000005eb0e 0x294 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_abbrev 0x000000000005eda2 0x2a1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_abbrev 0x000000000005f043 0x442 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_abbrev 0x000000000005f485 0x245 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_abbrev 0x000000000005f6ca 0x314 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_abbrev 0x000000000005f9de 0x31d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_abbrev 0x000000000005fcfb 0x462 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_abbrev 0x000000000006015d 0x420 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_abbrev 0x000000000006057d 0x202 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_abbrev 0x000000000006077f 0x480 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_abbrev 0x0000000000060bff 0x4b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_abbrev 0x00000000000610b7 0x28b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_abbrev 0x0000000000061342 0x287 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_abbrev 0x00000000000615c9 0x31e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_abbrev 0x00000000000618e7 0x1f8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_abbrev 0x0000000000061adf 0x379 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_abbrev 0x0000000000061e58 0x294 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_abbrev 0x00000000000620ec 0x213 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_abbrev 0x00000000000622ff 0x1c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_abbrev 0x00000000000624c2 0x27a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_abbrev 0x000000000006273c 0x25b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_abbrev 0x0000000000062997 0x38a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_abbrev 0x0000000000062d21 0x262 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_abbrev 0x0000000000062f83 0x1cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_abbrev 0x000000000006314f 0x3ff /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_abbrev 0x000000000006354e 0x438 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) -.debug_loc 0x0000000000000000 0xf25f9 +.debug_loc 0x0000000000000000 0x10fc9b .debug_loc 0x0000000000000000 0x12c esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) .debug_loc 0x000000000000012c 0x59f esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) .debug_loc 0x00000000000006cb 0xc8 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) @@ -59626,318 +64478,364 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .debug_loc 0x0000000000014077 0x587 esp-idf/ca/libca.a(gen_key.c.obj) .debug_loc 0x00000000000145fe 0xcfb esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .debug_loc 0x00000000000152f9 0x516 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - .debug_loc 0x000000000001580f 0x2af esp-idf/wifi/libwifi.a(wifi.c.obj) - .debug_loc 0x0000000000015abe 0x454 esp-idf/https_server/libhttps_server.a(https_server.c.obj) - .debug_loc 0x0000000000015f12 0x9c esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) - .debug_loc 0x0000000000015fae 0x4a4 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) - .debug_loc 0x0000000000016452 0x84 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_loc 0x00000000000164d6 0x40f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x00000000000168e5 0x4fa esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_loc 0x0000000000016ddf 0xbdc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x00000000000179bb 0x172 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_loc 0x0000000000017b2d 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_loc 0x0000000000017b50 0x1f4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) - .debug_loc 0x0000000000017d44 0x2c4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) - .debug_loc 0x0000000000018008 0x420 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_loc 0x0000000000018428 0x35b esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_loc 0x0000000000018783 0x109c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_loc 0x000000000001981f 0x256 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_loc 0x0000000000019a75 0x220 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_loc 0x0000000000019c95 0x13d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_loc 0x0000000000019dd2 0xb72 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_loc 0x000000000001a944 0xb39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_loc 0x000000000001b47d 0x133 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_loc 0x000000000001b5b0 0x17c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_loc 0x000000000001b72c 0x1d5 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_loc 0x000000000001b901 0xd8b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_loc 0x000000000001c68c 0x122 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - .debug_loc 0x000000000001c7ae 0x2e7 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) - .debug_loc 0x000000000001ca95 0xd84 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - .debug_loc 0x000000000001d819 0xed esp-idf/soc/libsoc.a(mpu_hal.c.obj) - .debug_loc 0x000000000001d906 0x4a esp-idf/soc/libsoc.a(brownout_hal.c.obj) - .debug_loc 0x000000000001d950 0x275 esp-idf/soc/libsoc.a(rtc_init.c.obj) - .debug_loc 0x000000000001dbc5 0x34b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_loc 0x000000000001df10 0x2a97 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_loc 0x00000000000209a7 0xb9 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - .debug_loc 0x0000000000020a60 0x581 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_loc 0x0000000000020fe1 0x1851 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_loc 0x0000000000022832 0x189 esp-idf/esp_event/libesp_event.a(event_send.c.obj) - .debug_loc 0x00000000000229bb 0x565 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) - .debug_loc 0x0000000000022f20 0x1ce esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) - .debug_loc 0x00000000000230ee 0x215 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_loc 0x0000000000023303 0x316 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) - .debug_loc 0x0000000000023619 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) - .debug_loc 0x0000000000023733 0x367 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) - .debug_loc 0x0000000000023a9a 0x4b5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) - .debug_loc 0x0000000000023f4f 0x79a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) - .debug_loc 0x00000000000246e9 0x648 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) - .debug_loc 0x0000000000024d31 0x226 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - .debug_loc 0x0000000000024f57 0x402 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) - .debug_loc 0x0000000000025359 0x157 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_loc 0x00000000000254b0 0x139 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_loc 0x00000000000255e9 0xbf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_loc 0x00000000000261dd 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) - .debug_loc 0x0000000000026281 0x6fe esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_loc 0x000000000002697f 0x1c70 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_loc 0x00000000000285ef 0x2e27 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_loc 0x000000000002b416 0xbc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_loc 0x000000000002bfde 0x6df esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_loc 0x000000000002c6bd 0x2c88 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_loc 0x000000000002f345 0x148c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_loc 0x00000000000307d1 0x473 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_loc 0x0000000000030c44 0x159 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_loc 0x0000000000030d9d 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) - .debug_loc 0x0000000000030de7 0xa1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_loc 0x0000000000030e88 0x5d1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_loc 0x0000000000031459 0x307 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_loc 0x0000000000031760 0x683 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_loc 0x0000000000031de3 0x85a esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - .debug_loc 0x000000000003263d 0x15bb esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_loc 0x0000000000033bf8 0x32e esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_loc 0x0000000000033f26 0x4e0 esp-idf/lwip/liblwip.a(def.c.obj) - .debug_loc 0x0000000000034406 0x199b esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_loc 0x0000000000035da1 0x16 esp-idf/lwip/liblwip.a(init.c.obj) - .debug_loc 0x0000000000035db7 0x18e esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_loc 0x0000000000035f45 0x74 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_loc 0x0000000000035fb9 0x173 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_loc 0x000000000003612c 0xc91 esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_loc 0x0000000000036dbd 0x17c1 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_loc 0x000000000003857e 0x975 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_loc 0x0000000000038ef3 0x194e esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_loc 0x000000000003a841 0xae2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_loc 0x000000000003b323 0x16ba esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_loc 0x000000000003c9dd 0x329 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_loc 0x000000000003cd06 0xefe esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_loc 0x000000000003dc04 0x1890 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_loc 0x000000000003f494 0x121b esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_loc 0x00000000000406af 0x1c1 esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_loc 0x0000000000040870 0x795 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_loc 0x0000000000041005 0x8c0 esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_loc 0x00000000000418c5 0x63c esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_loc 0x0000000000041f01 0x2de esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_loc 0x00000000000421df 0x1a1 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_loc 0x0000000000042380 0x1034 esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_loc 0x00000000000433b4 0x726 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_loc 0x0000000000043ada 0x8c4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_loc 0x000000000004439e 0x6fd esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_loc 0x0000000000044a9b 0x209b esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_loc 0x0000000000046b36 0x149 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_loc 0x0000000000046c7f 0x710 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_loc 0x000000000004738f 0x8ae esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_loc 0x0000000000047c3d 0x6c esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_loc 0x0000000000047ca9 0x4e5f esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_loc 0x000000000004cb08 0x10b4 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_loc 0x000000000004dbbc 0x14e6 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_loc 0x000000000004f0a2 0x4a esp-idf/lwip/liblwip.a(err.c.obj) - .debug_loc 0x000000000004f0ec 0x1fe esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_loc 0x000000000004f2ea 0x47f esp-idf/log/liblog.a(log.c.obj) - .debug_loc 0x000000000004f769 0xddb esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_loc 0x0000000000050544 0x6d9 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_loc 0x0000000000050c1d 0x2aa4 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_loc 0x00000000000536c1 0x1c1f esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_loc 0x00000000000552e0 0x438 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) - .debug_loc 0x0000000000055718 0xbce esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_loc 0x00000000000562e6 0x336 esp-idf/driver/libdriver.a(rtc_module.c.obj) - .debug_loc 0x000000000005661c 0x2e20 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_loc 0x000000000005943c 0x10f esp-idf/esp32/libesp32.a(hw_random.c.obj) - .debug_loc 0x000000000005954b 0x722 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) - .debug_loc 0x0000000000059c6d 0x994 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - .debug_loc 0x000000000005a601 0x368 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - .debug_loc 0x000000000005a969 0x10e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_loc 0x000000000005aa77 0x7ed esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_loc 0x000000000005b264 0x40d esp-idf/console/libconsole.a(commands.c.obj) - .debug_loc 0x000000000005b671 0x321 esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_loc 0x000000000005b992 0x5400 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_loc 0x0000000000060d92 0xd0d esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_loc 0x0000000000061a9f 0x11ad esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_loc 0x0000000000062c4c 0x97e esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_loc 0x00000000000635ca 0x927 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_loc 0x0000000000063ef1 0xc11 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_loc 0x0000000000064b02 0x151a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_loc 0x000000000006601c 0x24a esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_loc 0x0000000000066266 0x2d0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_loc 0x0000000000066536 0x5b8 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) - .debug_loc 0x0000000000066aee 0x1ff esp-idf/fatfs/libfatfs.a(diskio.c.obj) - .debug_loc 0x0000000000066ced 0x2dd esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - .debug_loc 0x0000000000066fca 0x46e3 esp-idf/fatfs/libfatfs.a(ff.c.obj) - .debug_loc 0x000000000006b6ad 0x94 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - .debug_loc 0x000000000006b741 0x1f59 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - .debug_loc 0x000000000006d69a 0x4bb esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - .debug_loc 0x000000000006db55 0x1ab esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - .debug_loc 0x000000000006dd00 0x161c esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - .debug_loc 0x000000000006f31c 0x25 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) - .debug_loc 0x000000000006f341 0x148a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - .debug_loc 0x00000000000707cb 0x152 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) - .debug_loc 0x000000000007091d 0x1f89 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - .debug_loc 0x00000000000728a6 0x3d9a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - .debug_loc 0x0000000000076640 0xa01 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - .debug_loc 0x0000000000077041 0x1141 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) - .debug_loc 0x0000000000078182 0x25 esp-idf/newlib/libnewlib.a(select.c.obj) - .debug_loc 0x00000000000781a7 0x33b esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - .debug_loc 0x00000000000784e2 0x60b esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - .debug_loc 0x0000000000078aed 0xcea esp-idf/soc/libsoc.a(uart_hal.c.obj) - .debug_loc 0x00000000000797d7 0xb3 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - .debug_loc 0x000000000007988a 0x2f16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_loc 0x000000000007c7a0 0xa9f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_loc 0x000000000007d23f 0x2be0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_loc 0x000000000007fe1f 0x5ccc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_loc 0x0000000000085aeb 0x86f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_loc 0x000000000008635a 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) - .debug_loc 0x0000000000086416 0x910 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_loc 0x0000000000086d26 0x382 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - .debug_loc 0x00000000000870a8 0x7f5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_loc 0x000000000008789d 0x7be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_loc 0x000000000008805b 0x522 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_loc 0x000000000008857d 0x12d7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_loc 0x0000000000089854 0x6aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_loc 0x0000000000089efe 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_loc 0x0000000000089f6e 0x3b6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_loc 0x000000000008dad9 0x70f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - .debug_loc 0x000000000008e1e8 0x142 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_loc 0x000000000008e32a 0x239 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_loc 0x000000000008e563 0x239 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_loc 0x000000000008e79c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_loc 0x000000000008e7c1 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_loc 0x000000000008e7e6 0xba4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_loc 0x000000000008f38a 0xd32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_loc 0x00000000000900bc 0xb74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - .debug_loc 0x0000000000090c30 0x1e9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_loc 0x0000000000092acc 0x1639 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_loc 0x0000000000094105 0xdcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - .debug_loc 0x0000000000094ed1 0x692 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_loc 0x0000000000095563 0xc52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_loc 0x00000000000961b5 0x154d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_loc 0x0000000000097702 0x2e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_loc 0x00000000000979e5 0xd4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_loc 0x0000000000098734 0xbcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_loc 0x0000000000099301 0x8b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_loc 0x0000000000099bb5 0xbba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_loc 0x000000000009a76f 0xefb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_loc 0x000000000009b66a 0x939 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_loc 0x000000000009bfa3 0x87c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_loc 0x000000000009c81f 0x4af esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_loc 0x000000000009ccce 0x661 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_loc 0x000000000009d32f 0x654 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_loc 0x000000000009d983 0xa2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_loc 0x000000000009e3b0 0x1471 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_loc 0x000000000009f821 0x30c3 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_loc 0x00000000000a28e4 0x691 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - .debug_loc 0x00000000000a2f75 0xad6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - .debug_loc 0x00000000000a3a4b 0x75f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_loc 0x00000000000a41aa 0xfa0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_loc 0x00000000000a514a 0x161 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_loc 0x00000000000a52ab 0xf3f esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - .debug_loc 0x00000000000a61ea 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_loc 0x00000000000a6249 0x29d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_loc 0x00000000000a64e6 0x3bc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_loc 0x00000000000a68a2 0x277e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_loc 0x00000000000a9020 0xd93 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_loc 0x00000000000a9db3 0xc62 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_loc 0x00000000000aaa15 0x75d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_loc 0x00000000000ab172 0x69c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_loc 0x00000000000ab80e 0x1da3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_loc 0x00000000000ad5b1 0xe9f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_loc 0x00000000000ae450 0x2322 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_loc 0x00000000000b0772 0x10fb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_loc 0x00000000000b186d 0xb66 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_loc 0x00000000000b23d3 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_loc 0x00000000000b266b 0xe7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_loc 0x00000000000b2752 0x1c1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_loc 0x00000000000b2913 0x89f esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_loc 0x00000000000b31b2 0x442 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_loc 0x00000000000b35f4 0x12e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) - .debug_loc 0x00000000000b3722 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) - .debug_loc 0x00000000000b3764 0x1404 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - .debug_loc 0x00000000000b4b68 0x3854 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - .debug_loc 0x00000000000b83bc 0x2ee5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - .debug_loc 0x00000000000bb2a1 0x2a3 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_loc 0x00000000000bb544 0x1bd8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_loc 0x00000000000bd11c 0x3d2e esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - .debug_loc 0x00000000000c0e4a 0xde6 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_loc 0x00000000000c1c30 0x1178 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_loc 0x00000000000c2da8 0x1e7 esp-idf/lwip/liblwip.a(wlanif.c.obj) - .debug_loc 0x00000000000c2f8f 0x7c esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_loc 0x00000000000c300b 0x6735 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_loc 0x00000000000c9740 0xd42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_loc 0x00000000000ca482 0x3a2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_loc 0x00000000000ca824 0x2b8e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - .debug_loc 0x00000000000cd3b2 0x32ce esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - .debug_loc 0x00000000000d0680 0xc68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) - .debug_loc 0x00000000000d12e8 0x666 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_loc 0x00000000000d194e 0x610 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) - .debug_loc 0x00000000000d1f5e 0x4f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) - .debug_loc 0x00000000000d1fad 0x4c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - .debug_loc 0x00000000000d1ff9 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) - .debug_loc 0x00000000000d201e 0x1fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_loc 0x00000000000d221a 0x9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - .debug_loc 0x00000000000d22b8 0xe5a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - .debug_loc 0x00000000000d3112 0x20a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - .debug_loc 0x00000000000d331c 0x150 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - .debug_loc 0x00000000000d346c 0xbe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) - .debug_loc 0x00000000000d352a 0xac9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) - .debug_loc 0x00000000000d3ff3 0x7e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) - .debug_loc 0x00000000000d47d4 0xa12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) - .debug_loc 0x00000000000d51e6 0x94c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) - .debug_loc 0x00000000000d5b32 0x13a1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) - .debug_loc 0x00000000000d6ed3 0x1809 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - .debug_loc 0x00000000000d86dc 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) - .debug_loc 0x00000000000d8750 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) - .debug_loc 0x00000000000d8775 0x4c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) - .debug_loc 0x00000000000d87c1 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) - .debug_loc 0x00000000000d88a1 0x20c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) - .debug_loc 0x00000000000d8aad 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) - .debug_loc 0x00000000000d8b15 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) - .debug_loc 0x00000000000d8b89 0xea /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) - .debug_loc 0x00000000000d8c73 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) - .debug_loc 0x00000000000d8ce7 0xa6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) - .debug_loc 0x00000000000d8d8d 0xa6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) - .debug_loc 0x00000000000d8e33 0x1ef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) - .debug_loc 0x00000000000d9022 0x9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) - .debug_loc 0x00000000000d90c0 0x3af /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) - .debug_loc 0x00000000000d946f 0x9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) - .debug_loc 0x00000000000d950d 0xfa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) - .debug_loc 0x00000000000d9607 0x10d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) - .debug_loc 0x00000000000d9714 0x803 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) - .debug_loc 0x00000000000d9f17 0xb1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) - .debug_loc 0x00000000000d9fc8 0x1e0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) - .debug_loc 0x00000000000da1a8 0xea /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_loc 0x00000000000da292 0x483 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) - .debug_loc 0x00000000000da715 0x89 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) - .debug_loc 0x00000000000da79e 0x161 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) - .debug_loc 0x00000000000da8ff 0x5f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) - .debug_loc 0x00000000000da95e 0xfe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) - .debug_loc 0x00000000000daa5c 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) - .debug_loc 0x00000000000daaa0 0x91 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) - .debug_loc 0x00000000000dab31 0x214 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) - .debug_loc 0x00000000000dad45 0x147 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) - .debug_loc 0x00000000000dae8c 0xc5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) - .debug_loc 0x00000000000daf51 0x99 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) - .debug_loc 0x00000000000dafea 0x1470 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) - .debug_loc 0x00000000000dc45a 0x64 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) - .debug_loc 0x00000000000dc4be 0x49a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) - .debug_loc 0x00000000000dc958 0x468 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) - .debug_loc 0x00000000000dcdc0 0x3e12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_loc 0x00000000000e0bd2 0x2315 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) - .debug_loc 0x00000000000e2ee7 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_loc 0x00000000000e2f0c 0x270a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_loc 0x00000000000e5616 0x3ee7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_loc 0x00000000000e94fd 0x5f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) - .debug_loc 0x00000000000e955c 0xbe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) - .debug_loc 0x00000000000e961a 0x190a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) - .debug_loc 0x00000000000eaf24 0x10c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) - .debug_loc 0x00000000000eb030 0xcee /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) - .debug_loc 0x00000000000ebd1e 0x50a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) - .debug_loc 0x00000000000ec228 0x4a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) - .debug_loc 0x00000000000ec272 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) - .debug_loc 0x00000000000ec297 0xc9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) - .debug_loc 0x00000000000ec360 0xef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_loc 0x00000000000ec44f 0x17ae /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) - .debug_loc 0x00000000000edbfd 0xe2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_loc 0x00000000000edcdf 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) - .debug_loc 0x00000000000edd04 0x288d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_loc 0x00000000000f0591 0x2068 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_loc 0x000000000001580f 0x44 esp-idf/display/libdisplay.a(display.c.obj) + .debug_loc 0x0000000000015853 0x2af esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_loc 0x0000000000015b02 0x454 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_loc 0x0000000000015f56 0x9c esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_loc 0x0000000000015ff2 0x4a4 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_loc 0x0000000000016496 0x84 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x000000000001651a 0x40f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x0000000000016929 0x4fa esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x0000000000016e23 0xbdc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000000179ff 0x172 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x0000000000017b71 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_loc 0x0000000000017b94 0x1f4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x0000000000017d88 0x2c4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_loc 0x000000000001804c 0x420 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x000000000001846c 0x35b esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x00000000000187c7 0x109c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x0000000000019863 0x256 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x0000000000019ab9 0x220 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x0000000000019cd9 0x13d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x0000000000019e16 0xb72 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_loc 0x000000000001a988 0xb39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x000000000001b4c1 0x133 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x000000000001b5f4 0x17c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x000000000001b770 0x1d5 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x000000000001b945 0xd8b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x000000000001c6d0 0x122 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + .debug_loc 0x000000000001c7f2 0x2e7 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_loc 0x000000000001cad9 0xd84 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x000000000001d85d 0xed esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_loc 0x000000000001d94a 0x4a esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_loc 0x000000000001d994 0x275 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_loc 0x000000000001dc09 0x34b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_loc 0x000000000001df54 0x2a97 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_loc 0x00000000000209eb 0xb9 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_loc 0x0000000000020aa4 0x581 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_loc 0x0000000000021025 0x1851 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_loc 0x0000000000022876 0x189 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_loc 0x00000000000229ff 0x565 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_loc 0x0000000000022f64 0x1ce esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_loc 0x0000000000023132 0x215 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_loc 0x0000000000023347 0x316 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_loc 0x000000000002365d 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_loc 0x0000000000023777 0x367 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_loc 0x0000000000023ade 0x4b5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_loc 0x0000000000023f93 0x79a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_loc 0x000000000002472d 0x648 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_loc 0x0000000000024d75 0x226 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_loc 0x0000000000024f9b 0x402 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_loc 0x000000000002539d 0x157 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_loc 0x00000000000254f4 0x139 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_loc 0x000000000002562d 0xbf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_loc 0x0000000000026221 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_loc 0x00000000000262c5 0x6fe esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_loc 0x00000000000269c3 0x1c70 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_loc 0x0000000000028633 0x2e27 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_loc 0x000000000002b45a 0xbc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_loc 0x000000000002c022 0x6df esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_loc 0x000000000002c701 0x2c88 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_loc 0x000000000002f389 0x148c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_loc 0x0000000000030815 0x473 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_loc 0x0000000000030c88 0x159 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_loc 0x0000000000030de1 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_loc 0x0000000000030e2b 0xa1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_loc 0x0000000000030ecc 0x5d1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_loc 0x000000000003149d 0x307 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_loc 0x00000000000317a4 0x683 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_loc 0x0000000000031e27 0x85a esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_loc 0x0000000000032681 0x15bb esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_loc 0x0000000000033c3c 0x32e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_loc 0x0000000000033f6a 0x4e0 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_loc 0x000000000003444a 0x199b esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_loc 0x0000000000035de5 0x16 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_loc 0x0000000000035dfb 0x18e esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_loc 0x0000000000035f89 0x74 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_loc 0x0000000000035ffd 0x173 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_loc 0x0000000000036170 0xc91 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_loc 0x0000000000036e01 0x17c1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_loc 0x00000000000385c2 0x975 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_loc 0x0000000000038f37 0x194e esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_loc 0x000000000003a885 0xae2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_loc 0x000000000003b367 0x16ba esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_loc 0x000000000003ca21 0x329 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_loc 0x000000000003cd4a 0xefe esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_loc 0x000000000003dc48 0x1890 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_loc 0x000000000003f4d8 0x121b esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_loc 0x00000000000406f3 0x1c1 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_loc 0x00000000000408b4 0x795 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_loc 0x0000000000041049 0x8c0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_loc 0x0000000000041909 0x63c esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_loc 0x0000000000041f45 0x2de esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_loc 0x0000000000042223 0x1a1 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_loc 0x00000000000423c4 0x1034 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_loc 0x00000000000433f8 0x726 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_loc 0x0000000000043b1e 0x8c4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_loc 0x00000000000443e2 0x6fd esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_loc 0x0000000000044adf 0x209b esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_loc 0x0000000000046b7a 0x149 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_loc 0x0000000000046cc3 0x710 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_loc 0x00000000000473d3 0x8ae esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_loc 0x0000000000047c81 0x6c esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_loc 0x0000000000047ced 0x4e5f esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_loc 0x000000000004cb4c 0x10b4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_loc 0x000000000004dc00 0x14e6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_loc 0x000000000004f0e6 0x4a esp-idf/lwip/liblwip.a(err.c.obj) + .debug_loc 0x000000000004f130 0x1fe esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_loc 0x000000000004f32e 0x47f esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x000000000004f7ad 0xddb esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x0000000000050588 0x6d9 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x0000000000050c61 0x2aa4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x0000000000053705 0x1c1f esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_loc 0x0000000000055324 0x438 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_loc 0x000000000005575c 0xbce esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_loc 0x000000000005632a 0x336 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_loc 0x0000000000056660 0xb8b esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_loc 0x00000000000571eb 0x2e20 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_loc 0x000000000005a00b 0x10f esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_loc 0x000000000005a11a 0x722 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_loc 0x000000000005a83c 0x994 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_loc 0x000000000005b1d0 0x368 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_loc 0x000000000005b538 0x10e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_loc 0x000000000005b646 0x7ed esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_loc 0x000000000005be33 0x40d esp-idf/console/libconsole.a(commands.c.obj) + .debug_loc 0x000000000005c240 0x321 esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_loc 0x000000000005c561 0x5400 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_loc 0x0000000000061961 0xd0d esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_loc 0x000000000006266e 0x11ad esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_loc 0x000000000006381b 0x97e esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_loc 0x0000000000064199 0x927 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_loc 0x0000000000064ac0 0xc11 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_loc 0x00000000000656d1 0x151a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_loc 0x0000000000066beb 0x24a esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_loc 0x0000000000066e35 0x2d0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_loc 0x0000000000067105 0x5b8 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_loc 0x00000000000676bd 0x1ff esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_loc 0x00000000000678bc 0x2dd esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_loc 0x0000000000067b99 0x46e3 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_loc 0x000000000006c27c 0x94 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_loc 0x000000000006c310 0x1f59 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_loc 0x000000000006e269 0x4bb esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_loc 0x000000000006e724 0x1ab esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_loc 0x000000000006e8cf 0x161c esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_loc 0x000000000006feeb 0x25 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_loc 0x000000000006ff10 0x148a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_loc 0x000000000007139a 0x152 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_loc 0x00000000000714ec 0x1f89 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_loc 0x0000000000073475 0x3d9a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_loc 0x000000000007720f 0xa01 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_loc 0x0000000000077c10 0x1141 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_loc 0x0000000000078d51 0x157 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .debug_loc 0x0000000000078ea8 0x109 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .debug_loc 0x0000000000078fb1 0x172 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .debug_loc 0x0000000000079123 0x105 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .debug_loc 0x0000000000079228 0x1e93 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .debug_loc 0x000000000007b0bb 0x77e esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .debug_loc 0x000000000007b839 0xb0b esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .debug_loc 0x000000000007c344 0x328 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .debug_loc 0x000000000007c66c 0x167d esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .debug_loc 0x000000000007dce9 0x29c5 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .debug_loc 0x00000000000806ae 0x287 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .debug_loc 0x0000000000080935 0x1093 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .debug_loc 0x00000000000819c8 0xa1 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .debug_loc 0x0000000000081a69 0x2cc esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .debug_loc 0x0000000000081d35 0x109 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .debug_loc 0x0000000000081e3e 0x8e esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .debug_loc 0x0000000000081ecc 0x742 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .debug_loc 0x000000000008260e 0x419 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .debug_loc 0x0000000000082a27 0x4a esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .debug_loc 0x0000000000082a71 0xc43 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .debug_loc 0x00000000000836b4 0x606 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .debug_loc 0x0000000000083cba 0x25 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .debug_loc 0x0000000000083cdf 0x497 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .debug_loc 0x0000000000084176 0x2cd esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .debug_loc 0x0000000000084443 0x1de6 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .debug_loc 0x0000000000086229 0x1952 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .debug_loc 0x0000000000087b7b 0xaad esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .debug_loc 0x0000000000088628 0x972 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .debug_loc 0x0000000000088f9a 0xa44 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .debug_loc 0x00000000000899de 0x166f esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .debug_loc 0x000000000008b04d 0x853 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .debug_loc 0x000000000008b8a0 0xb53 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .debug_loc 0x000000000008c3f3 0x8f0 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .debug_loc 0x000000000008cce3 0xfe7 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .debug_loc 0x000000000008dcca 0xf15 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .debug_loc 0x000000000008ebdf 0x24a esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .debug_loc 0x000000000008ee29 0x627 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .debug_loc 0x000000000008f450 0xdc5 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .debug_loc 0x0000000000090215 0x697 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .debug_loc 0x00000000000908ac 0x1974 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .debug_loc 0x0000000000092220 0x25 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_loc 0x0000000000092245 0x33b esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_loc 0x0000000000092580 0x60b esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_loc 0x0000000000092b8b 0xcea esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_loc 0x0000000000093875 0xb3 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_loc 0x0000000000093928 0x2f16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_loc 0x000000000009683e 0xa9f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_loc 0x00000000000972dd 0x2be0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_loc 0x0000000000099ebd 0x5ccc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_loc 0x000000000009fb89 0x86f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_loc 0x00000000000a03f8 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_loc 0x00000000000a04b4 0x910 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_loc 0x00000000000a0dc4 0x382 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_loc 0x00000000000a1146 0x7f5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_loc 0x00000000000a193b 0x7be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_loc 0x00000000000a20f9 0x522 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_loc 0x00000000000a261b 0x12d7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_loc 0x00000000000a38f2 0x6aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_loc 0x00000000000a3f9c 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_loc 0x00000000000a400c 0x3b6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_loc 0x00000000000a7b77 0x70f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_loc 0x00000000000a8286 0x142 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_loc 0x00000000000a83c8 0x239 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_loc 0x00000000000a8601 0x239 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_loc 0x00000000000a883a 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_loc 0x00000000000a885f 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_loc 0x00000000000a8884 0xba4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_loc 0x00000000000a9428 0xd32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_loc 0x00000000000aa15a 0xb74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_loc 0x00000000000aacce 0x1e9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_loc 0x00000000000acb6a 0x1639 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x00000000000ae1a3 0xdcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_loc 0x00000000000aef6f 0x692 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_loc 0x00000000000af601 0xc52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_loc 0x00000000000b0253 0x154d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_loc 0x00000000000b17a0 0x2e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_loc 0x00000000000b1a83 0xd4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_loc 0x00000000000b27d2 0xbcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_loc 0x00000000000b339f 0x8b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_loc 0x00000000000b3c53 0xbba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_loc 0x00000000000b480d 0xefb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_loc 0x00000000000b5708 0x939 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_loc 0x00000000000b6041 0x87c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_loc 0x00000000000b68bd 0x4af esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_loc 0x00000000000b6d6c 0x661 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x00000000000b73cd 0x654 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_loc 0x00000000000b7a21 0xa2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_loc 0x00000000000b844e 0x1471 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_loc 0x00000000000b98bf 0x30c3 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_loc 0x00000000000bc982 0x691 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_loc 0x00000000000bd013 0xad6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_loc 0x00000000000bdae9 0x75f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_loc 0x00000000000be248 0xfa0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x00000000000bf1e8 0x161 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_loc 0x00000000000bf349 0xf3f esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_loc 0x00000000000c0288 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_loc 0x00000000000c02e7 0x29d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_loc 0x00000000000c0584 0x3bc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_loc 0x00000000000c0940 0x277e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_loc 0x00000000000c30be 0xd93 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_loc 0x00000000000c3e51 0xc62 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_loc 0x00000000000c4ab3 0x75d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_loc 0x00000000000c5210 0x69c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_loc 0x00000000000c58ac 0x1da3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_loc 0x00000000000c764f 0xe9f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_loc 0x00000000000c84ee 0x2322 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_loc 0x00000000000ca810 0x10fb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_loc 0x00000000000cb90b 0xb66 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_loc 0x00000000000cc471 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_loc 0x00000000000cc709 0xe7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_loc 0x00000000000cc7f0 0x1c1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_loc 0x00000000000cc9b1 0x89f esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_loc 0x00000000000cd250 0x442 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_loc 0x00000000000cd692 0x12e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_loc 0x00000000000cd7c0 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_loc 0x00000000000cd802 0x1404 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_loc 0x00000000000cec06 0x3854 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_loc 0x00000000000d245a 0x2ee5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_loc 0x00000000000d533f 0x2a3 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_loc 0x00000000000d55e2 0x1bd8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x00000000000d71ba 0x202a esp-idf/driver/libdriver.a(spi_master.c.obj) + .debug_loc 0x00000000000d91e4 0x3d2e esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_loc 0x00000000000dcf12 0xde6 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_loc 0x00000000000ddcf8 0x1178 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_loc 0x00000000000dee70 0x1e7 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_loc 0x00000000000df057 0x7c esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_loc 0x00000000000df0d3 0x9d3 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .debug_loc 0x00000000000dfaa6 0xb3d esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .debug_loc 0x00000000000e05e3 0xca esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_loc 0x00000000000e06ad 0x6735 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_loc 0x00000000000e6de2 0xd42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_loc 0x00000000000e7b24 0x3a2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_loc 0x00000000000e7ec6 0x2b8e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_loc 0x00000000000eaa54 0x32ce esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_loc 0x00000000000edd22 0xc68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_loc 0x00000000000ee98a 0x666 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_loc 0x00000000000eeff0 0x610 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_loc 0x00000000000ef600 0x4f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_loc 0x00000000000ef64f 0x4c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_loc 0x00000000000ef69b 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_loc 0x00000000000ef6c0 0x1fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_loc 0x00000000000ef8bc 0x9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_loc 0x00000000000ef95a 0xe5a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_loc 0x00000000000f07b4 0x20a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_loc 0x00000000000f09be 0x150 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_loc 0x00000000000f0b0e 0xbe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_loc 0x00000000000f0bcc 0xac9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_loc 0x00000000000f1695 0x7e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_loc 0x00000000000f1e76 0xa12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_loc 0x00000000000f2888 0x94c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_loc 0x00000000000f31d4 0x13a1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_loc 0x00000000000f4575 0x1809 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_loc 0x00000000000f5d7e 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_loc 0x00000000000f5df2 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_loc 0x00000000000f5e17 0x4c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_loc 0x00000000000f5e63 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_loc 0x00000000000f5f43 0x20c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_loc 0x00000000000f614f 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_loc 0x00000000000f61b7 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_loc 0x00000000000f622b 0xea /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_loc 0x00000000000f6315 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_loc 0x00000000000f6389 0xa6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_loc 0x00000000000f642f 0xa6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_loc 0x00000000000f64d5 0x1ef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_loc 0x00000000000f66c4 0x9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_loc 0x00000000000f6762 0x3af /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_loc 0x00000000000f6b11 0x9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_loc 0x00000000000f6baf 0xfa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_loc 0x00000000000f6ca9 0x10d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_loc 0x00000000000f6db6 0x803 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_loc 0x00000000000f75b9 0xb1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_loc 0x00000000000f766a 0x1e0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_loc 0x00000000000f784a 0xea /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_loc 0x00000000000f7934 0x483 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_loc 0x00000000000f7db7 0x89 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_loc 0x00000000000f7e40 0x161 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_loc 0x00000000000f7fa1 0x5f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_loc 0x00000000000f8000 0xfe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_loc 0x00000000000f80fe 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_loc 0x00000000000f8142 0x91 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_loc 0x00000000000f81d3 0x214 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_loc 0x00000000000f83e7 0x147 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_loc 0x00000000000f852e 0xc5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_loc 0x00000000000f85f3 0x99 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_loc 0x00000000000f868c 0x1470 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_loc 0x00000000000f9afc 0x64 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_loc 0x00000000000f9b60 0x49a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_loc 0x00000000000f9ffa 0x468 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_loc 0x00000000000fa462 0x3e12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_loc 0x00000000000fe274 0x2315 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_loc 0x0000000000100589 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_loc 0x00000000001005ae 0x270a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_loc 0x0000000000102cb8 0x3ee7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_loc 0x0000000000106b9f 0x5f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_loc 0x0000000000106bfe 0xbe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_loc 0x0000000000106cbc 0x190a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_loc 0x00000000001085c6 0x10c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_loc 0x00000000001086d2 0xcee /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_loc 0x00000000001093c0 0x50a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_loc 0x00000000001098ca 0x4a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_loc 0x0000000000109914 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_loc 0x0000000000109939 0xc9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_loc 0x0000000000109a02 0xef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_loc 0x0000000000109af1 0x17ae /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_loc 0x000000000010b29f 0xe2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_loc 0x000000000010b381 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_loc 0x000000000010b3a6 0x288d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_loc 0x000000000010dc33 0x2068 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) -.debug_aranges 0x0000000000000000 0xbc18 +.debug_aranges 0x0000000000000000 0xd5e8 .debug_aranges 0x0000000000000000 0x28 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) .debug_aranges @@ -60063,675 +64961,779 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .debug_aranges 0x00000000000019f8 0x90 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) .debug_aranges - 0x0000000000001a88 0x40 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x0000000000001a88 0x28 esp-idf/display/libdisplay.a(display.c.obj) .debug_aranges - 0x0000000000001ac8 0x60 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x0000000000001ab0 0x40 esp-idf/wifi/libwifi.a(wifi.c.obj) .debug_aranges - 0x0000000000001b28 0x20 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + 0x0000000000001af0 0x60 esp-idf/https_server/libhttps_server.a(https_server.c.obj) .debug_aranges - 0x0000000000001b48 0x28 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + 0x0000000000001b50 0x20 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) .debug_aranges - 0x0000000000001b70 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x0000000000001b70 0x28 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) .debug_aranges - 0x0000000000001ba8 0x50 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x0000000000001b98 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) .debug_aranges - 0x0000000000001bf8 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x0000000000001bd0 0x50 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) .debug_aranges - 0x0000000000001c70 0xb8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x0000000000001c20 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) .debug_aranges - 0x0000000000001d28 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x0000000000001c98 0xb8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) .debug_aranges - 0x0000000000001d40 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x0000000000001d50 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) .debug_aranges - 0x0000000000001d70 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x0000000000001d68 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) .debug_aranges - 0x0000000000001d90 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000000001d98 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) .debug_aranges - 0x0000000000001dd0 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x0000000000001db8 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) .debug_aranges - 0x0000000000001e48 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000000001df8 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) .debug_aranges - 0x0000000000001ec0 0x70 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000000001e70 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) .debug_aranges - 0x0000000000001f30 0xf0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000000001ee8 0x70 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) .debug_aranges - 0x0000000000002020 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x0000000000001f58 0xf0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) .debug_aranges - 0x0000000000002060 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x0000000000002048 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) .debug_aranges - 0x00000000000020b8 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x0000000000002088 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) .debug_aranges - 0x00000000000020f0 0xa8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000000020e0 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) .debug_aranges - 0x0000000000002198 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x0000000000002118 0xa8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) .debug_aranges - 0x00000000000021b0 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000000021c0 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) .debug_aranges - 0x0000000000002298 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x00000000000021d8 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) .debug_aranges - 0x00000000000022c8 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x00000000000022c0 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) .debug_aranges - 0x00000000000022f8 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x00000000000022f0 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) .debug_aranges - 0x0000000000002360 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x0000000000002320 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) .debug_aranges - 0x00000000000023e0 0x50 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + 0x0000000000002388 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) .debug_aranges - 0x0000000000002430 0x20 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x0000000000002408 0x50 esp-idf/esp_system/libesp_system.a(system_api.c.obj) .debug_aranges - 0x0000000000002450 0x30 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x0000000000002458 0x20 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) .debug_aranges - 0x0000000000002480 0x70 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000000002478 0x30 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) .debug_aranges - 0x00000000000024f0 0x20 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + 0x00000000000024a8 0x70 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) .debug_aranges - 0x0000000000002510 0x30 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x0000000000002518 0x20 esp-idf/soc/libsoc.a(mpu_hal.c.obj) .debug_aranges - 0x0000000000002540 0x30 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x0000000000002538 0x30 esp-idf/soc/libsoc.a(brownout_hal.c.obj) .debug_aranges - 0x0000000000002570 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x0000000000002568 0x30 esp-idf/soc/libsoc.a(rtc_init.c.obj) .debug_aranges - 0x00000000000025d0 0x280 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000000002598 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) .debug_aranges - 0x0000000000002850 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x00000000000025f8 0x280 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) .debug_aranges - 0x00000000000028a8 0x60 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x0000000000002878 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) .debug_aranges - 0x0000000000002908 0xd0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000000028d0 0x60 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) .debug_aranges - 0x00000000000029d8 0x48 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x0000000000002930 0xd0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) .debug_aranges - 0x0000000000002a20 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x0000000000002a00 0x48 esp-idf/esp_event/libesp_event.a(event_send.c.obj) .debug_aranges - 0x0000000000002a38 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x0000000000002a48 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) .debug_aranges - 0x0000000000002a78 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + 0x0000000000002a60 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) .debug_aranges - 0x0000000000002aa0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x0000000000002aa0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) .debug_aranges - 0x0000000000002ac0 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + 0x0000000000002ac8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) .debug_aranges - 0x0000000000002b00 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + 0x0000000000002ae8 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) .debug_aranges - 0x0000000000002b20 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x0000000000002b28 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) .debug_aranges - 0x0000000000002b50 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x0000000000002b48 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) .debug_aranges - 0x0000000000002b88 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x0000000000002b78 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) .debug_aranges - 0x0000000000002bc8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x0000000000002bb0 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) .debug_aranges - 0x0000000000002c00 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x0000000000002bf0 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) .debug_aranges - 0x0000000000002c20 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x0000000000002c28 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) .debug_aranges - 0x0000000000002c60 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x0000000000002c48 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) .debug_aranges - 0x0000000000002c80 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x0000000000002c88 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) .debug_aranges - 0x0000000000002ca0 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x0000000000002ca8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) .debug_aranges - 0x0000000000002cf8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + 0x0000000000002cc8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) .debug_aranges - 0x0000000000002d18 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x0000000000002d20 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) .debug_aranges - 0x0000000000002d78 0x278 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000000002d40 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) .debug_aranges - 0x0000000000002ff0 0xd0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000000002da0 0x278 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) .debug_aranges - 0x00000000000030c0 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000000003018 0xd0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) .debug_aranges - 0x0000000000003128 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000000030e8 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) .debug_aranges - 0x0000000000003178 0x108 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000000003150 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) .debug_aranges - 0x0000000000003280 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x00000000000031a0 0x108 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) .debug_aranges - 0x00000000000032b8 0xa8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000000032a8 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) .debug_aranges - 0x0000000000003360 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000000032e0 0xa8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) .debug_aranges - 0x0000000000003390 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + 0x0000000000003388 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) .debug_aranges - 0x00000000000033b8 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x00000000000033b8 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) .debug_aranges - 0x00000000000033e8 0xc0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000000033e0 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) .debug_aranges - 0x00000000000034a8 0x68 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x0000000000003410 0xc0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) .debug_aranges - 0x0000000000003510 0x210 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x00000000000034d0 0x68 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) .debug_aranges - 0x0000000000003720 0xc0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x0000000000003538 0x210 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) .debug_aranges - 0x00000000000037e0 0xd8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000000003748 0xc0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) .debug_aranges - 0x00000000000038b8 0xa0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x0000000000003808 0xd8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) .debug_aranges - 0x0000000000003958 0x48 esp-idf/lwip/liblwip.a(def.c.obj) + 0x00000000000038e0 0xa0 esp-idf/lwip/liblwip.a(tcpip.c.obj) .debug_aranges - 0x00000000000039a0 0xc8 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x0000000000003980 0x48 esp-idf/lwip/liblwip.a(def.c.obj) .debug_aranges - 0x0000000000003a68 0x20 esp-idf/lwip/liblwip.a(init.c.obj) + 0x00000000000039c8 0xc8 esp-idf/lwip/liblwip.a(dns.c.obj) .debug_aranges - 0x0000000000003a88 0x38 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x0000000000003a90 0x20 esp-idf/lwip/liblwip.a(init.c.obj) .debug_aranges - 0x0000000000003ac0 0x40 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x0000000000003ab0 0x38 esp-idf/lwip/liblwip.a(ip.c.obj) .debug_aranges - 0x0000000000003b00 0x58 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x0000000000003ae8 0x40 esp-idf/lwip/liblwip.a(mem.c.obj) .debug_aranges - 0x0000000000003b58 0x140 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000000003b28 0x58 esp-idf/lwip/liblwip.a(memp.c.obj) .debug_aranges - 0x0000000000003c98 0x140 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000000003b80 0x140 esp-idf/lwip/liblwip.a(netif.c.obj) .debug_aranges - 0x0000000000003dd8 0x88 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x0000000000003cc0 0x140 esp-idf/lwip/liblwip.a(pbuf.c.obj) .debug_aranges - 0x0000000000003e60 0x1d0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000000003e00 0x88 esp-idf/lwip/liblwip.a(raw.c.obj) .debug_aranges - 0x0000000000004030 0x70 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x0000000000003e88 0x1d0 esp-idf/lwip/liblwip.a(tcp.c.obj) .debug_aranges - 0x00000000000040a0 0xd8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x0000000000004058 0x70 esp-idf/lwip/liblwip.a(tcp_in.c.obj) .debug_aranges - 0x0000000000004178 0x68 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000000040c8 0xd8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) .debug_aranges - 0x00000000000041e0 0xa0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000000041a0 0x68 esp-idf/lwip/liblwip.a(timeouts.c.obj) .debug_aranges - 0x0000000000004280 0x150 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x0000000000004208 0xa0 esp-idf/lwip/liblwip.a(udp.c.obj) .debug_aranges - 0x00000000000043d0 0x98 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000000042a8 0x150 esp-idf/lwip/liblwip.a(dhcp.c.obj) .debug_aranges - 0x0000000000004468 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x00000000000043f8 0x98 esp-idf/lwip/liblwip.a(etharp.c.obj) .debug_aranges - 0x0000000000004498 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x0000000000004490 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) .debug_aranges - 0x0000000000004548 0x78 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000000044c0 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) .debug_aranges - 0x00000000000045c0 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x0000000000004570 0x78 esp-idf/lwip/liblwip.a(ip4.c.obj) .debug_aranges - 0x0000000000004608 0x20 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x00000000000045e8 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) .debug_aranges - 0x0000000000004628 0x60 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x0000000000004630 0x20 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) .debug_aranges - 0x0000000000004688 0x58 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x0000000000004650 0x60 esp-idf/lwip/liblwip.a(icmp6.c.obj) .debug_aranges - 0x00000000000046e0 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x00000000000046b0 0x58 esp-idf/lwip/liblwip.a(ip6.c.obj) .debug_aranges - 0x0000000000004710 0x40 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x0000000000004708 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) .debug_aranges - 0x0000000000004750 0x88 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x0000000000004738 0x40 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) .debug_aranges - 0x00000000000047d8 0x118 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x0000000000004778 0x88 esp-idf/lwip/liblwip.a(mld6.c.obj) .debug_aranges - 0x00000000000048f0 0x28 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x0000000000004800 0x118 esp-idf/lwip/liblwip.a(nd6.c.obj) .debug_aranges - 0x0000000000004918 0xf8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x0000000000004918 0x28 esp-idf/lwip/liblwip.a(ethernet.c.obj) .debug_aranges - 0x0000000000004a10 0x70 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x0000000000004940 0xf8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) .debug_aranges - 0x0000000000004a80 0x48 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x0000000000004a38 0x70 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) .debug_aranges - 0x0000000000004ac8 0x250 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x0000000000004aa8 0x48 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) .debug_aranges - 0x0000000000004d18 0x120 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x0000000000004af0 0x250 esp-idf/lwip/liblwip.a(sockets.c.obj) .debug_aranges - 0x0000000000004e38 0x138 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x0000000000004d40 0x120 esp-idf/lwip/liblwip.a(api_lib.c.obj) .debug_aranges - 0x0000000000004f70 0x28 esp-idf/lwip/liblwip.a(err.c.obj) + 0x0000000000004e60 0x138 esp-idf/lwip/liblwip.a(api_msg.c.obj) .debug_aranges - 0x0000000000004f98 0x60 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x0000000000004f98 0x28 esp-idf/lwip/liblwip.a(err.c.obj) .debug_aranges - 0x0000000000004ff8 0x40 esp-idf/log/liblog.a(log.c.obj) + 0x0000000000004fc0 0x60 esp-idf/lwip/liblwip.a(netbuf.c.obj) .debug_aranges - 0x0000000000005038 0xf8 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000000005020 0x40 esp-idf/log/liblog.a(log.c.obj) .debug_aranges - 0x0000000000005130 0x40 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x0000000000005060 0xf8 esp-idf/heap/libheap.a(heap_caps.c.obj) .debug_aranges - 0x0000000000005170 0xd8 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000000005158 0x40 esp-idf/heap/libheap.a(heap_caps_init.c.obj) .debug_aranges - 0x0000000000005248 0x140 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x0000000000005198 0xd8 esp-idf/heap/libheap.a(multi_heap.c.obj) .debug_aranges - 0x0000000000005388 0x30 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x0000000000005270 0x140 esp-idf/driver/libdriver.a(gpio.c.obj) .debug_aranges - 0x00000000000053b8 0xb0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x00000000000053b0 0x30 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) .debug_aranges - 0x0000000000005468 0x38 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x00000000000053e0 0xb0 esp-idf/driver/libdriver.a(rtc_io.c.obj) .debug_aranges - 0x00000000000054a0 0x218 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000000005490 0x38 esp-idf/driver/libdriver.a(rtc_module.c.obj) .debug_aranges - 0x00000000000056b8 0x28 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x00000000000054c8 0xa8 esp-idf/driver/libdriver.a(spi_common.c.obj) .debug_aranges - 0x00000000000056e0 0x78 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + 0x0000000000005570 0x218 esp-idf/driver/libdriver.a(uart.c.obj) .debug_aranges - 0x0000000000005758 0xf8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x0000000000005788 0x28 esp-idf/esp32/libesp32.a(hw_random.c.obj) .debug_aranges - 0x0000000000005850 0x48 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000000057b0 0x78 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) .debug_aranges - 0x0000000000005898 0x58 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x0000000000005828 0xf8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) .debug_aranges - 0x00000000000058f0 0x80 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x0000000000005920 0x48 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) .debug_aranges - 0x0000000000005970 0x60 esp-idf/console/libconsole.a(commands.c.obj) + 0x0000000000005968 0x58 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) .debug_aranges - 0x00000000000059d0 0x20 esp-idf/console/libconsole.a(split_argv.c.obj) + 0x00000000000059c0 0x80 esp-idf/freertos/libfreertos.a(event_groups.c.obj) .debug_aranges - 0x00000000000059f0 0x368 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x0000000000005a40 0x60 esp-idf/console/libconsole.a(commands.c.obj) .debug_aranges - 0x0000000000005d58 0x158 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x0000000000005aa0 0x20 esp-idf/console/libconsole.a(split_argv.c.obj) .debug_aranges - 0x0000000000005eb0 0xc8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x0000000000005ac0 0x368 esp-idf/console/libconsole.a(argtable3.c.obj) .debug_aranges - 0x0000000000005f78 0x58 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x0000000000005e28 0x158 esp-idf/console/libconsole.a(linenoise.c.obj) .debug_aranges - 0x0000000000005fd0 0xb8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x0000000000005f80 0xc8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) .debug_aranges - 0x0000000000006088 0x80 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x0000000000006048 0x58 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) .debug_aranges - 0x0000000000006108 0xd8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x00000000000060a0 0xb8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) .debug_aranges - 0x00000000000061e0 0x38 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x0000000000006158 0x80 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) .debug_aranges - 0x0000000000006218 0x60 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x00000000000061d8 0xd8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) .debug_aranges - 0x0000000000006278 0x38 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + 0x00000000000062b0 0x38 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) .debug_aranges - 0x00000000000062b0 0x58 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x00000000000062e8 0x60 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) .debug_aranges - 0x0000000000006308 0x58 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x0000000000006348 0x38 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) .debug_aranges - 0x0000000000006360 0x1e0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x0000000000006380 0x58 esp-idf/fatfs/libfatfs.a(diskio.c.obj) .debug_aranges - 0x0000000000006540 0x48 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x00000000000063d8 0x58 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) .debug_aranges - 0x0000000000006588 0x120 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x0000000000006430 0x1e0 esp-idf/fatfs/libfatfs.a(ff.c.obj) .debug_aranges - 0x00000000000066a8 0x58 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x0000000000006610 0x48 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) .debug_aranges - 0x0000000000006700 0x68 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x0000000000006658 0x120 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) .debug_aranges - 0x0000000000006768 0xc8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000000006778 0x58 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) .debug_aranges - 0x0000000000006830 0x20 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + 0x00000000000067d0 0x68 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) .debug_aranges - 0x0000000000006850 0x120 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x0000000000006838 0xc8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) .debug_aranges - 0x0000000000006970 0x48 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x0000000000006900 0x20 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) .debug_aranges - 0x00000000000069b8 0x170 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x0000000000006920 0x120 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) .debug_aranges - 0x0000000000006b28 0x148 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x0000000000006a40 0x48 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) .debug_aranges - 0x0000000000006c70 0x70 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x0000000000006a88 0x170 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) .debug_aranges - 0x0000000000006ce0 0x48 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x0000000000006bf8 0x148 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) .debug_aranges - 0x0000000000006d28 0x20 esp-idf/newlib/libnewlib.a(select.c.obj) + 0x0000000000006d40 0x70 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) .debug_aranges - 0x0000000000006d48 0x40 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x0000000000006db0 0x48 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) .debug_aranges - 0x0000000000006d88 0x30 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + 0x0000000000006df8 0x20 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) .debug_aranges - 0x0000000000006db8 0xe0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x0000000000006e18 0x30 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) .debug_aranges - 0x0000000000006e98 0x38 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x0000000000006e48 0x28 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) .debug_aranges - 0x0000000000006ed0 0x18 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x0000000000006e70 0x50 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) .debug_aranges - 0x0000000000006ee8 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000000006ec0 0x48 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) .debug_aranges - 0x00000000000070b8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x0000000000006f08 0x58 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) .debug_aranges - 0x0000000000007160 0x1e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000000006f60 0x330 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) .debug_aranges - 0x0000000000007348 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x0000000000007290 0x88 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) .debug_aranges - 0x00000000000073c0 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x0000000000007318 0x50 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) .debug_aranges - 0x0000000000007450 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + 0x0000000000007368 0x40 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) .debug_aranges - 0x0000000000007470 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x00000000000073a8 0x48 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) .debug_aranges - 0x0000000000007538 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x00000000000073f0 0x70 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) .debug_aranges - 0x0000000000007660 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000000007460 0x30 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) .debug_aranges - 0x0000000000007708 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x0000000000007490 0xa8 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) .debug_aranges - 0x0000000000007818 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x0000000000007538 0x30 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) .debug_aranges - 0x0000000000007850 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x0000000000007568 0x18 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) .debug_aranges - 0x0000000000007900 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x0000000000007580 0xa0 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) .debug_aranges - 0x0000000000007960 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x0000000000007620 0x40 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) .debug_aranges - 0x00000000000079a0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x0000000000007660 0x30 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) .debug_aranges - 0x00000000000079c0 0x158 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000000007690 0x90 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) .debug_aranges - 0x0000000000007b18 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x0000000000007720 0x70 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) .debug_aranges - 0x0000000000007b58 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x0000000000007790 0x30 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) .debug_aranges - 0x0000000000007b88 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x00000000000077c0 0xd8 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) .debug_aranges - 0x0000000000007bb8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x0000000000007898 0x20 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) .debug_aranges - 0x0000000000007be8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x00000000000078b8 0x98 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) .debug_aranges - 0x0000000000007c08 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x0000000000007950 0x28 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) .debug_aranges - 0x0000000000007c30 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x0000000000007978 0x70 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) .debug_aranges - 0x0000000000007ca8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x00000000000079e8 0x88 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) .debug_aranges - 0x0000000000007d00 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x0000000000007a70 0x178 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) .debug_aranges - 0x0000000000007d90 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x0000000000007be8 0x128 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) .debug_aranges - 0x0000000000007e10 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x0000000000007d10 0xd8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) .debug_aranges - 0x0000000000007e90 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x0000000000007de8 0x28 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) .debug_aranges - 0x0000000000007f10 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x0000000000007e10 0x120 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) .debug_aranges - 0x0000000000007f90 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x0000000000007f30 0xf8 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) .debug_aranges - 0x0000000000008030 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000000008028 0x88 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) .debug_aranges - 0x0000000000008130 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x00000000000080b0 0x28 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) .debug_aranges - 0x00000000000081e8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x00000000000080d8 0x58 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) .debug_aranges - 0x0000000000008290 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x0000000000008130 0x40 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) .debug_aranges - 0x0000000000008300 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x0000000000008170 0x80 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) .debug_aranges - 0x00000000000083a0 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x00000000000081f0 0x90 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) .debug_aranges - 0x0000000000008428 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000000008280 0x28 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) .debug_aranges - 0x0000000000008510 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x00000000000082a8 0x98 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) .debug_aranges - 0x0000000000008560 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x0000000000008340 0x98 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) .debug_aranges - 0x00000000000085a8 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x00000000000083d8 0x78 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) .debug_aranges - 0x00000000000085f8 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000000008450 0x100 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) .debug_aranges - 0x0000000000008660 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x0000000000008550 0x20 esp-idf/newlib/libnewlib.a(select.c.obj) .debug_aranges - 0x0000000000008690 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x0000000000008570 0x40 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) .debug_aranges - 0x00000000000086f0 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x00000000000085b0 0x30 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) .debug_aranges - 0x00000000000087b0 0x188 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x00000000000085e0 0xe0 esp-idf/soc/libsoc.a(uart_hal.c.obj) .debug_aranges - 0x0000000000008938 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x00000000000086c0 0x38 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) .debug_aranges - 0x0000000000008988 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x00000000000086f8 0x18 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) .debug_aranges - 0x0000000000008a40 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x0000000000008710 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) .debug_aranges - 0x0000000000008a98 0xe0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x00000000000088e0 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) .debug_aranges - 0x0000000000008b78 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + 0x0000000000008988 0x1e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) .debug_aranges - 0x0000000000008b90 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + 0x0000000000008b70 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) .debug_aranges - 0x0000000000008ba8 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + 0x0000000000008be8 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) .debug_aranges - 0x0000000000008bc0 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x0000000000008c78 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) .debug_aranges - 0x0000000000008c00 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x0000000000008c98 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) .debug_aranges - 0x0000000000008c18 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x0000000000008d60 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) .debug_aranges - 0x0000000000008c30 0x170 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x0000000000008e88 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) .debug_aranges - 0x0000000000008da0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x0000000000008f30 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) .debug_aranges - 0x0000000000008dd0 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000000009040 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) .debug_aranges - 0x0000000000008e70 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x0000000000009078 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) .debug_aranges - 0x0000000000008ec0 0x1c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000000009128 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) .debug_aranges - 0x0000000000009080 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x0000000000009188 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) .debug_aranges - 0x00000000000090c8 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x00000000000091c8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) .debug_aranges - 0x0000000000009140 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x00000000000091e8 0x158 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) .debug_aranges - 0x00000000000091a8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x0000000000009340 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) .debug_aranges - 0x00000000000091e0 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000000009380 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) .debug_aranges - 0x00000000000093d8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x00000000000093b0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) .debug_aranges - 0x0000000000009430 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x00000000000093e0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) .debug_aranges - 0x0000000000009588 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000000009410 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) .debug_aranges - 0x0000000000009618 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x0000000000009430 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) .debug_aranges - 0x0000000000009750 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x0000000000009458 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) .debug_aranges - 0x0000000000009780 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x00000000000094d0 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) .debug_aranges - 0x00000000000097a8 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x0000000000009528 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) .debug_aranges - 0x00000000000097f0 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x00000000000095b8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) .debug_aranges - 0x0000000000009880 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x0000000000009638 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) .debug_aranges - 0x00000000000098e8 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + 0x00000000000096b8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) .debug_aranges - 0x0000000000009990 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + 0x0000000000009738 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) .debug_aranges - 0x00000000000099c0 0x1a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x00000000000097b8 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) .debug_aranges - 0x0000000000009b68 0x328 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000000009858 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) .debug_aranges - 0x0000000000009e90 0x1a0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x0000000000009958 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) .debug_aranges - 0x000000000000a030 0x70 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x0000000000009a10 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) .debug_aranges - 0x000000000000a0a0 0x160 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000000009ab8 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) .debug_aranges - 0x000000000000a200 0x98 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000000009b28 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) .debug_aranges - 0x000000000000a298 0xe0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x0000000000009bc8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) .debug_aranges - 0x000000000000a378 0xb0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000000009c50 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) .debug_aranges - 0x000000000000a428 0x50 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x0000000000009d38 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) .debug_aranges - 0x000000000000a478 0x20 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x0000000000009d88 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) .debug_aranges - 0x000000000000a498 0x640 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000000009dd0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) .debug_aranges - 0x000000000000aad8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x0000000000009e20 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) .debug_aranges - 0x000000000000ab58 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x0000000000009e88 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) .debug_aranges - 0x000000000000abc0 0x148 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x0000000000009eb8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) .debug_aranges - 0x000000000000ad08 0x158 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x0000000000009f18 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) .debug_aranges - 0x000000000000ae60 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x0000000000009fd8 0x188 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) .debug_aranges - 0x000000000000aef0 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000000000a160 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) .debug_aranges - 0x000000000000afc0 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + 0x000000000000a1b0 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) .debug_aranges - 0x000000000000b080 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x000000000000a268 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) .debug_aranges - 0x000000000000b0a0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x000000000000a2c0 0xe0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) .debug_aranges - 0x000000000000b0c0 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x000000000000a3a0 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) .debug_aranges - 0x000000000000b0e8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000000000a3b8 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) .debug_aranges - 0x000000000000b108 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x000000000000a3d0 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) .debug_aranges - 0x000000000000b128 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x000000000000a3e8 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) .debug_aranges - 0x000000000000b170 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x000000000000a400 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) .debug_aranges - 0x000000000000b1c8 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x000000000000a440 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) .debug_aranges - 0x000000000000b238 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x000000000000a458 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) .debug_aranges - 0x000000000000b258 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x000000000000a470 0x170 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) .debug_aranges - 0x000000000000b298 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x000000000000a5e0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) .debug_aranges - 0x000000000000b2f0 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x000000000000a610 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) .debug_aranges - 0x000000000000b330 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + 0x000000000000a6b0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) .debug_aranges - 0x000000000000b348 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + 0x000000000000a700 0x1c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) .debug_aranges - 0x000000000000b360 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + 0x000000000000a8c0 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) .debug_aranges - 0x000000000000b380 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + 0x000000000000a908 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) .debug_aranges - 0x000000000000b3a0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + 0x000000000000a980 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) .debug_aranges - 0x000000000000b3c0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + 0x000000000000a9e8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) .debug_aranges - 0x000000000000b3e0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + 0x000000000000aa20 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) .debug_aranges - 0x000000000000b400 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + 0x000000000000ac18 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) .debug_aranges - 0x000000000000b420 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + 0x000000000000ac70 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) .debug_aranges - 0x000000000000b440 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + 0x000000000000adc8 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) .debug_aranges - 0x000000000000b460 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + 0x000000000000ae58 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) .debug_aranges - 0x000000000000b480 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + 0x000000000000af90 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) .debug_aranges - 0x000000000000b4a0 0x18 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + 0x000000000000afc0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) .debug_aranges - 0x000000000000b4b8 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + 0x000000000000afe8 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) .debug_aranges - 0x000000000000b4d8 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + 0x000000000000b030 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) .debug_aranges - 0x000000000000b4f8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + 0x000000000000b0c0 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) .debug_aranges - 0x000000000000b518 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x000000000000b128 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) .debug_aranges - 0x000000000000b538 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0x000000000000b1d0 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) .debug_aranges - 0x000000000000b558 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + 0x000000000000b200 0x1a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) .debug_aranges - 0x000000000000b578 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + 0x000000000000b3a8 0x328 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) .debug_aranges - 0x000000000000b598 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + 0x000000000000b6d0 0x1a0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) .debug_aranges - 0x000000000000b5b8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + 0x000000000000b870 0x70 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) .debug_aranges - 0x000000000000b5d8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + 0x000000000000b8e0 0x160 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) .debug_aranges - 0x000000000000b5f8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x000000000000ba40 0xe0 esp-idf/driver/libdriver.a(spi_master.c.obj) .debug_aranges - 0x000000000000b618 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + 0x000000000000bb20 0x98 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) .debug_aranges - 0x000000000000b638 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + 0x000000000000bbb8 0xe0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) .debug_aranges - 0x000000000000b658 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + 0x000000000000bc98 0xb0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) .debug_aranges - 0x000000000000b678 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + 0x000000000000bd48 0x50 esp-idf/lwip/liblwip.a(wlanif.c.obj) .debug_aranges - 0x000000000000b698 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x000000000000bd98 0x20 esp-idf/lwip/liblwip.a(ethip6.c.obj) .debug_aranges - 0x000000000000b6b8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x000000000000bdb8 0x48 esp-idf/soc/libsoc.a(spi_hal.c.obj) .debug_aranges - 0x000000000000b6d8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + 0x000000000000be00 0x48 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) .debug_aranges - 0x000000000000b6f8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + 0x000000000000be48 0x20 esp-idf/soc/libsoc.a(lldesc.c.obj) .debug_aranges - 0x000000000000b718 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + 0x000000000000be68 0x640 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) .debug_aranges - 0x000000000000b738 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + 0x000000000000c4a8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) .debug_aranges - 0x000000000000b758 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x000000000000c528 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) .debug_aranges - 0x000000000000b778 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + 0x000000000000c590 0x148 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) .debug_aranges - 0x000000000000b798 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x000000000000c6d8 0x158 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) .debug_aranges - 0x000000000000b7b8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + 0x000000000000c830 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) .debug_aranges - 0x000000000000b7d8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x000000000000c8c0 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) .debug_aranges - 0x000000000000b7f8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + 0x000000000000c990 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) .debug_aranges - 0x000000000000b818 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x000000000000ca50 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) .debug_aranges - 0x000000000000b838 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x000000000000ca70 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) .debug_aranges - 0x000000000000b858 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x000000000000ca90 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) .debug_aranges - 0x000000000000b878 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + 0x000000000000cab8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) .debug_aranges - 0x000000000000b898 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + 0x000000000000cad8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) .debug_aranges - 0x000000000000b8b8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x000000000000caf8 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) .debug_aranges - 0x000000000000b8d8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + 0x000000000000cb40 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) .debug_aranges - 0x000000000000b8f8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + 0x000000000000cb98 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) .debug_aranges - 0x000000000000b918 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0x000000000000cc08 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) .debug_aranges - 0x000000000000b938 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + 0x000000000000cc28 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) .debug_aranges - 0x000000000000b958 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x000000000000cc68 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) .debug_aranges - 0x000000000000b978 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x000000000000ccc0 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) .debug_aranges - 0x000000000000b998 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x000000000000cd00 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) .debug_aranges - 0x000000000000b9b8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0x000000000000cd18 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) .debug_aranges - 0x000000000000b9d8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + 0x000000000000cd30 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) .debug_aranges - 0x000000000000b9f8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0x000000000000cd50 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) .debug_aranges - 0x000000000000ba18 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x000000000000cd70 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) .debug_aranges - 0x000000000000ba38 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x000000000000cd90 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) .debug_aranges - 0x000000000000ba58 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x000000000000cdb0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) .debug_aranges - 0x000000000000ba78 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0x000000000000cdd0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) .debug_aranges - 0x000000000000ba98 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x000000000000cdf0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) .debug_aranges - 0x000000000000bab8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + 0x000000000000ce10 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) .debug_aranges - 0x000000000000bad8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0x000000000000ce30 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) .debug_aranges - 0x000000000000baf8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + 0x000000000000ce50 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) .debug_aranges - 0x000000000000bb18 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0x000000000000ce70 0x18 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) .debug_aranges - 0x000000000000bb38 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x000000000000ce88 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) .debug_aranges - 0x000000000000bb58 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + 0x000000000000cea8 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) .debug_aranges - 0x000000000000bb78 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x000000000000cec8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) .debug_aranges - 0x000000000000bb98 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x000000000000cee8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) .debug_aranges - 0x000000000000bbb8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + 0x000000000000cf08 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) .debug_aranges - 0x000000000000bbd8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x000000000000cf28 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) .debug_aranges - 0x000000000000bbf8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + 0x000000000000cf48 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_aranges + 0x000000000000cf68 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_aranges + 0x000000000000cf88 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_aranges + 0x000000000000cfa8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_aranges + 0x000000000000cfc8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_aranges + 0x000000000000cfe8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_aranges + 0x000000000000d008 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_aranges + 0x000000000000d028 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_aranges + 0x000000000000d048 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_aranges + 0x000000000000d068 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_aranges + 0x000000000000d088 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_aranges + 0x000000000000d0a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_aranges + 0x000000000000d0c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_aranges + 0x000000000000d0e8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_aranges + 0x000000000000d108 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_aranges + 0x000000000000d128 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_aranges + 0x000000000000d148 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_aranges + 0x000000000000d168 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_aranges + 0x000000000000d188 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_aranges + 0x000000000000d1a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_aranges + 0x000000000000d1c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_aranges + 0x000000000000d1e8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_aranges + 0x000000000000d208 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_aranges + 0x000000000000d228 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_aranges + 0x000000000000d248 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_aranges + 0x000000000000d268 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_aranges + 0x000000000000d288 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_aranges + 0x000000000000d2a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_aranges + 0x000000000000d2c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_aranges + 0x000000000000d2e8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_aranges + 0x000000000000d308 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_aranges + 0x000000000000d328 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_aranges + 0x000000000000d348 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_aranges + 0x000000000000d368 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_aranges + 0x000000000000d388 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_aranges + 0x000000000000d3a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_aranges + 0x000000000000d3c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_aranges + 0x000000000000d3e8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_aranges + 0x000000000000d408 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_aranges + 0x000000000000d428 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_aranges + 0x000000000000d448 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_aranges + 0x000000000000d468 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_aranges + 0x000000000000d488 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_aranges + 0x000000000000d4a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_aranges + 0x000000000000d4c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_aranges + 0x000000000000d4e8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_aranges + 0x000000000000d508 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_aranges + 0x000000000000d528 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_aranges + 0x000000000000d548 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_aranges + 0x000000000000d568 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_aranges + 0x000000000000d588 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_aranges + 0x000000000000d5a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_aranges + 0x000000000000d5c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) -.debug_ranges 0x0000000000000000 0xe718 +.debug_ranges 0x0000000000000000 0x10040 .debug_ranges 0x0000000000000000 0x18 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) .debug_ranges 0x0000000000000018 0x88 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) .debug_ranges 0x00000000000000a0 0x38 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) @@ -60788,286 +65790,336 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .debug_ranges 0x0000000000002be0 0x50 esp-idf/ca/libca.a(gen_key.c.obj) .debug_ranges 0x0000000000002c30 0x88 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) .debug_ranges 0x0000000000002cb8 0x80 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - .debug_ranges 0x0000000000002d38 0x30 esp-idf/wifi/libwifi.a(wifi.c.obj) - .debug_ranges 0x0000000000002d68 0x50 esp-idf/https_server/libhttps_server.a(https_server.c.obj) - .debug_ranges 0x0000000000002db8 0x10 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) - .debug_ranges 0x0000000000002dc8 0x48 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) - .debug_ranges 0x0000000000002e10 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_ranges 0x0000000000002e38 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x0000000000002f20 0x80 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_ranges 0x0000000000002fa0 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x0000000000003090 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_ranges 0x00000000000030c8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_ranges 0x00000000000030d8 0x120 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) - .debug_ranges 0x00000000000031f8 0x80 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) - .debug_ranges 0x0000000000003278 0x110 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_ranges 0x0000000000003388 0x78 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_ranges 0x0000000000003400 0x100 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_ranges 0x0000000000003500 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_ranges 0x0000000000003530 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_ranges 0x0000000000003578 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_ranges 0x00000000000035a0 0xb8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_ranges 0x0000000000003658 0xd8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_ranges 0x0000000000003730 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_ranges 0x0000000000003750 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_ranges 0x0000000000003770 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_ranges 0x00000000000037c8 0xf0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_ranges 0x00000000000038b8 0x58 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - .debug_ranges 0x0000000000003910 0x20 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) - .debug_ranges 0x0000000000003930 0x60 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - .debug_ranges 0x0000000000003990 0x10 esp-idf/soc/libsoc.a(mpu_hal.c.obj) - .debug_ranges 0x00000000000039a0 0x20 esp-idf/soc/libsoc.a(brownout_hal.c.obj) - .debug_ranges 0x00000000000039c0 0x20 esp-idf/soc/libsoc.a(rtc_init.c.obj) - .debug_ranges 0x00000000000039e0 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_ranges 0x0000000000003a30 0x2a0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_ranges 0x0000000000003cd0 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - .debug_ranges 0x0000000000003d18 0x50 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_ranges 0x0000000000003d68 0x120 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_ranges 0x0000000000003e88 0x38 esp-idf/esp_event/libesp_event.a(event_send.c.obj) - .debug_ranges 0x0000000000003ec0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) - .debug_ranges 0x0000000000003ef0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) - .debug_ranges 0x0000000000003f08 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_ranges 0x0000000000003f18 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) - .debug_ranges 0x0000000000003f48 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) - .debug_ranges 0x0000000000003f58 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) - .debug_ranges 0x0000000000003f78 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) - .debug_ranges 0x0000000000003fa0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) - .debug_ranges 0x0000000000003fd0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) - .debug_ranges 0x0000000000003ff8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - .debug_ranges 0x0000000000004008 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) - .debug_ranges 0x0000000000004038 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_ranges 0x0000000000004048 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_ranges 0x0000000000004058 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_ranges 0x00000000000040a0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) - .debug_ranges 0x00000000000040c8 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_ranges 0x0000000000004118 0x280 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_ranges 0x0000000000004398 0x560 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_ranges 0x00000000000048f8 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_ranges 0x0000000000004950 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_ranges 0x00000000000049a8 0x3c8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_ranges 0x0000000000004d70 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_ranges 0x0000000000004eb8 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_ranges 0x0000000000004f50 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_ranges 0x0000000000004f70 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) - .debug_ranges 0x0000000000004f88 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_ranges 0x0000000000004fa8 0xb0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_ranges 0x0000000000005058 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_ranges 0x00000000000050b0 0x200 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_ranges 0x00000000000052b0 0xb0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - .debug_ranges 0x0000000000005360 0xc8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_ranges 0x0000000000005428 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_ranges 0x00000000000054b8 0x98 esp-idf/lwip/liblwip.a(def.c.obj) - .debug_ranges 0x0000000000005550 0xe8 esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_ranges 0x0000000000005638 0x10 esp-idf/lwip/liblwip.a(init.c.obj) - .debug_ranges 0x0000000000005648 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_ranges 0x0000000000005670 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_ranges 0x00000000000056a0 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_ranges 0x00000000000056e8 0x130 esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_ranges 0x0000000000005818 0x178 esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_ranges 0x0000000000005990 0x90 esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_ranges 0x0000000000005a20 0x208 esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_ranges 0x0000000000005c28 0x60 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_ranges 0x0000000000005c88 0xf8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_ranges 0x0000000000005d80 0x58 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_ranges 0x0000000000005dd8 0x90 esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_ranges 0x0000000000005e68 0x188 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_ranges 0x0000000000005ff0 0xd0 esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_ranges 0x00000000000060c0 0x20 esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_ranges 0x00000000000060e0 0xa0 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_ranges 0x0000000000006180 0xf8 esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_ranges 0x0000000000006278 0x38 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_ranges 0x00000000000062b0 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_ranges 0x00000000000062c0 0x50 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_ranges 0x0000000000006310 0x60 esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_ranges 0x0000000000006370 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_ranges 0x0000000000006390 0x30 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_ranges 0x00000000000063c0 0x90 esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_ranges 0x0000000000006450 0x108 esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_ranges 0x0000000000006558 0x18 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_ranges 0x0000000000006570 0xe8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_ranges 0x0000000000006658 0x60 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_ranges 0x00000000000066b8 0x38 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_ranges 0x00000000000066f0 0x3a0 esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_ranges 0x0000000000006a90 0x170 esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_ranges 0x0000000000006c00 0x188 esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_ranges 0x0000000000006d88 0x18 esp-idf/lwip/liblwip.a(err.c.obj) - .debug_ranges 0x0000000000006da0 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_ranges 0x0000000000006df0 0x30 esp-idf/log/liblog.a(log.c.obj) - .debug_ranges 0x0000000000006e20 0x208 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_ranges 0x0000000000007028 0x90 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_ranges 0x00000000000070b8 0x150 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_ranges 0x0000000000007208 0x218 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_ranges 0x0000000000007420 0x20 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) - .debug_ranges 0x0000000000007440 0xe8 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_ranges 0x0000000000007528 0x28 esp-idf/driver/libdriver.a(rtc_module.c.obj) - .debug_ranges 0x0000000000007550 0x208 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_ranges 0x0000000000007758 0x18 esp-idf/esp32/libesp32.a(hw_random.c.obj) - .debug_ranges 0x0000000000007770 0xe0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) - .debug_ranges 0x0000000000007850 0x148 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - .debug_ranges 0x0000000000007998 0x38 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - .debug_ranges 0x00000000000079d0 0x48 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_ranges 0x0000000000007a18 0xb8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_ranges 0x0000000000007ad0 0x50 esp-idf/console/libconsole.a(commands.c.obj) - .debug_ranges 0x0000000000007b20 0x28 esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_ranges 0x0000000000007b48 0x400 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_ranges 0x0000000000007f48 0x178 esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_ranges 0x00000000000080c0 0xe8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_ranges 0x00000000000081a8 0x60 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_ranges 0x0000000000008208 0xa8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_ranges 0x00000000000082b0 0xa0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_ranges 0x0000000000008350 0x148 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_ranges 0x0000000000008498 0x28 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_ranges 0x00000000000084c0 0x68 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_ranges 0x0000000000008528 0x48 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) - .debug_ranges 0x0000000000008570 0x48 esp-idf/fatfs/libfatfs.a(diskio.c.obj) - .debug_ranges 0x00000000000085b8 0x48 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - .debug_ranges 0x0000000000008600 0x1d0 esp-idf/fatfs/libfatfs.a(ff.c.obj) - .debug_ranges 0x00000000000087d0 0x38 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - .debug_ranges 0x0000000000008808 0x110 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - .debug_ranges 0x0000000000008918 0x48 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - .debug_ranges 0x0000000000008960 0x58 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - .debug_ranges 0x00000000000089b8 0x148 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - .debug_ranges 0x0000000000008b00 0x10 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) - .debug_ranges 0x0000000000008b10 0x110 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - .debug_ranges 0x0000000000008c20 0x38 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) - .debug_ranges 0x0000000000008c58 0x178 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - .debug_ranges 0x0000000000008dd0 0x218 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - .debug_ranges 0x0000000000008fe8 0x90 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - .debug_ranges 0x0000000000009078 0x80 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) - .debug_ranges 0x00000000000090f8 0x10 esp-idf/newlib/libnewlib.a(select.c.obj) - .debug_ranges 0x0000000000009108 0x58 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - .debug_ranges 0x0000000000009160 0x20 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - .debug_ranges 0x0000000000009180 0x120 esp-idf/soc/libsoc.a(uart_hal.c.obj) - .debug_ranges 0x00000000000092a0 0x28 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - .debug_ranges 0x00000000000092c8 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_ranges 0x0000000000009488 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_ranges 0x0000000000009520 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_ranges 0x00000000000096f8 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_ranges 0x0000000000009808 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_ranges 0x0000000000009888 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) - .debug_ranges 0x0000000000009898 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_ranges 0x0000000000009950 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - .debug_ranges 0x0000000000009a68 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_ranges 0x0000000000009b18 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_ranges 0x0000000000009c18 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_ranges 0x0000000000009c40 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_ranges 0x0000000000009cf8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_ranges 0x0000000000009d78 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_ranges 0x0000000000009da8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_ranges 0x0000000000009db8 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_ranges 0x0000000000009f18 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - .debug_ranges 0x0000000000009f48 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_ranges 0x0000000000009f68 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_ranges 0x0000000000009f88 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_ranges 0x0000000000009fa8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_ranges 0x0000000000009fb8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_ranges 0x0000000000009fd0 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_ranges 0x000000000000a038 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_ranges 0x000000000000a080 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - .debug_ranges 0x000000000000a100 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_ranges 0x000000000000a170 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_ranges 0x000000000000a1e0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - .debug_ranges 0x000000000000a250 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_ranges 0x000000000000a2c0 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_ranges 0x000000000000a368 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_ranges 0x000000000000a4a0 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_ranges 0x000000000000a548 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_ranges 0x000000000000a5e0 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_ranges 0x000000000000a658 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_ranges 0x000000000000a700 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_ranges 0x000000000000a778 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_ranges 0x000000000000a850 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_ranges 0x000000000000a890 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_ranges 0x000000000000a8c8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_ranges 0x000000000000a928 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_ranges 0x000000000000a9b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_ranges 0x000000000000a9d0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_ranges 0x000000000000aa20 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_ranges 0x000000000000ab00 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_ranges 0x000000000000aca8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - .debug_ranges 0x000000000000ace8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - .debug_ranges 0x000000000000ad90 0x60 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_ranges 0x000000000000adf0 0x168 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_ranges 0x000000000000af58 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_ranges 0x000000000000af88 0x160 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - .debug_ranges 0x000000000000b0e8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_ranges 0x000000000000b108 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_ranges 0x000000000000b198 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_ranges 0x000000000000b1f0 0x250 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_ranges 0x000000000000b440 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_ranges 0x000000000000b478 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_ranges 0x000000000000b528 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_ranges 0x000000000000b610 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_ranges 0x000000000000b638 0x200 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_ranges 0x000000000000b838 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_ranges 0x000000000000b880 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_ranges 0x000000000000ba10 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_ranges 0x000000000000ba90 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_ranges 0x000000000000bbb8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_ranges 0x000000000000bbd8 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_ranges 0x000000000000bbf0 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_ranges 0x000000000000bc28 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_ranges 0x000000000000bca8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_ranges 0x000000000000bd00 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) - .debug_ranges 0x000000000000bdf0 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) - .debug_ranges 0x000000000000be10 0x1e0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - .debug_ranges 0x000000000000bff0 0x4a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - .debug_ranges 0x000000000000c498 0x1f0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - .debug_ranges 0x000000000000c688 0x60 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_ranges 0x000000000000c6e8 0x180 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_ranges 0x000000000000c868 0x140 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - .debug_ranges 0x000000000000c9a8 0x100 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_ranges 0x000000000000caa8 0xb8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_ranges 0x000000000000cb60 0x40 esp-idf/lwip/liblwip.a(wlanif.c.obj) - .debug_ranges 0x000000000000cba0 0x10 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_ranges 0x000000000000cbb0 0x7f0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_ranges 0x000000000000d3a0 0x88 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_ranges 0x000000000000d428 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_ranges 0x000000000000d480 0x190 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - .debug_ranges 0x000000000000d610 0x190 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - .debug_ranges 0x000000000000d7a0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) - .debug_ranges 0x000000000000d820 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_ranges 0x000000000000d8e0 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) - .debug_ranges 0x000000000000d990 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) - .debug_ranges 0x000000000000d9a0 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) - .debug_ranges 0x000000000000d9b0 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) - .debug_ranges 0x000000000000d9c8 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - .debug_ranges 0x000000000000d9f0 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) - .debug_ranges 0x000000000000da00 0x50 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_ranges 0x000000000000da50 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - .debug_ranges 0x000000000000da98 0x138 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - .debug_ranges 0x000000000000dbd0 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) - .debug_ranges 0x000000000000dbe0 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - .debug_ranges 0x000000000000dc48 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - .debug_ranges 0x000000000000dcb0 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) - .debug_ranges 0x000000000000dce0 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) - .debug_ranges 0x000000000000dd80 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) - .debug_ranges 0x000000000000ddc0 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) - .debug_ranges 0x000000000000de60 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) - .debug_ranges 0x000000000000deb8 0x100 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) - .debug_ranges 0x000000000000dfb8 0x270 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - .debug_ranges 0x000000000000e228 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) - .debug_ranges 0x000000000000e240 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) - .debug_ranges 0x000000000000e258 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) - .debug_ranges 0x000000000000e270 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) - .debug_ranges 0x000000000000e290 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) - .debug_ranges 0x000000000000e2a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) - .debug_ranges 0x000000000000e2c8 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) - .debug_ranges 0x000000000000e2e0 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) - .debug_ranges 0x000000000000e2f8 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) - .debug_ranges 0x000000000000e310 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) - .debug_ranges 0x000000000000e328 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) - .debug_ranges 0x000000000000e348 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) - .debug_ranges 0x000000000000e360 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_ranges 0x000000000000e3d0 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) - .debug_ranges 0x000000000000e470 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_ranges 0x000000000000e4f8 0xb8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_ranges 0x000000000000e5b0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) - .debug_ranges 0x000000000000e5d0 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_ranges 0x000000000000e618 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_ranges 0x000000000000e660 0xb8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_ranges 0x0000000000002d38 0x18 esp-idf/display/libdisplay.a(display.c.obj) + .debug_ranges 0x0000000000002d50 0x30 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_ranges 0x0000000000002d80 0x50 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_ranges 0x0000000000002dd0 0x10 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_ranges 0x0000000000002de0 0x48 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_ranges 0x0000000000002e28 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x0000000000002e50 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x0000000000002f38 0x80 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x0000000000002fb8 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000000030a8 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000000000030e0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x00000000000030f0 0x120 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x0000000000003210 0x80 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_ranges 0x0000000000003290 0x110 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x00000000000033a0 0x78 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x0000000000003418 0x100 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x0000000000003518 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x0000000000003548 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x0000000000003590 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00000000000035b8 0xb8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_ranges 0x0000000000003670 0xd8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x0000000000003748 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x0000000000003768 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x0000000000003788 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x00000000000037e0 0xf0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x00000000000038d0 0x58 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + .debug_ranges 0x0000000000003928 0x20 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_ranges 0x0000000000003948 0x60 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x00000000000039a8 0x10 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_ranges 0x00000000000039b8 0x20 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_ranges 0x00000000000039d8 0x20 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_ranges 0x00000000000039f8 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_ranges 0x0000000000003a48 0x2a0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_ranges 0x0000000000003ce8 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_ranges 0x0000000000003d30 0x50 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_ranges 0x0000000000003d80 0x120 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_ranges 0x0000000000003ea0 0x38 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_ranges 0x0000000000003ed8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_ranges 0x0000000000003f08 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_ranges 0x0000000000003f20 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_ranges 0x0000000000003f30 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_ranges 0x0000000000003f60 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_ranges 0x0000000000003f70 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_ranges 0x0000000000003f90 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_ranges 0x0000000000003fb8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_ranges 0x0000000000003fe8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_ranges 0x0000000000004010 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_ranges 0x0000000000004020 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_ranges 0x0000000000004050 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_ranges 0x0000000000004060 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_ranges 0x0000000000004070 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_ranges 0x00000000000040b8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_ranges 0x00000000000040e0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_ranges 0x0000000000004130 0x280 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_ranges 0x00000000000043b0 0x560 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_ranges 0x0000000000004910 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_ranges 0x0000000000004968 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_ranges 0x00000000000049c0 0x3c8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_ranges 0x0000000000004d88 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_ranges 0x0000000000004ed0 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_ranges 0x0000000000004f68 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_ranges 0x0000000000004f88 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_ranges 0x0000000000004fa0 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_ranges 0x0000000000004fc0 0xb0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_ranges 0x0000000000005070 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_ranges 0x00000000000050c8 0x200 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_ranges 0x00000000000052c8 0xb0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_ranges 0x0000000000005378 0xc8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_ranges 0x0000000000005440 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_ranges 0x00000000000054d0 0x98 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_ranges 0x0000000000005568 0xe8 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_ranges 0x0000000000005650 0x10 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_ranges 0x0000000000005660 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_ranges 0x0000000000005688 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_ranges 0x00000000000056b8 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_ranges 0x0000000000005700 0x130 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_ranges 0x0000000000005830 0x178 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_ranges 0x00000000000059a8 0x90 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_ranges 0x0000000000005a38 0x208 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_ranges 0x0000000000005c40 0x60 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_ranges 0x0000000000005ca0 0xf8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_ranges 0x0000000000005d98 0x58 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_ranges 0x0000000000005df0 0x90 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_ranges 0x0000000000005e80 0x188 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_ranges 0x0000000000006008 0xd0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_ranges 0x00000000000060d8 0x20 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_ranges 0x00000000000060f8 0xa0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_ranges 0x0000000000006198 0xf8 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_ranges 0x0000000000006290 0x38 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_ranges 0x00000000000062c8 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_ranges 0x00000000000062d8 0x50 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_ranges 0x0000000000006328 0x60 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_ranges 0x0000000000006388 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_ranges 0x00000000000063a8 0x30 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_ranges 0x00000000000063d8 0x90 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_ranges 0x0000000000006468 0x108 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_ranges 0x0000000000006570 0x18 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_ranges 0x0000000000006588 0xe8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_ranges 0x0000000000006670 0x60 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_ranges 0x00000000000066d0 0x38 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_ranges 0x0000000000006708 0x3a0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_ranges 0x0000000000006aa8 0x170 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_ranges 0x0000000000006c18 0x188 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_ranges 0x0000000000006da0 0x18 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_ranges 0x0000000000006db8 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_ranges 0x0000000000006e08 0x30 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x0000000000006e38 0x208 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x0000000000007040 0x90 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x00000000000070d0 0x150 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x0000000000007220 0x218 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_ranges 0x0000000000007438 0x20 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_ranges 0x0000000000007458 0xe8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_ranges 0x0000000000007540 0x28 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_ranges 0x0000000000007568 0x98 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_ranges 0x0000000000007600 0x208 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_ranges 0x0000000000007808 0x18 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_ranges 0x0000000000007820 0xe0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_ranges 0x0000000000007900 0x148 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_ranges 0x0000000000007a48 0x38 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_ranges 0x0000000000007a80 0x48 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_ranges 0x0000000000007ac8 0xb8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_ranges 0x0000000000007b80 0x50 esp-idf/console/libconsole.a(commands.c.obj) + .debug_ranges 0x0000000000007bd0 0x28 esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_ranges 0x0000000000007bf8 0x400 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_ranges 0x0000000000007ff8 0x178 esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_ranges 0x0000000000008170 0xe8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_ranges 0x0000000000008258 0x60 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_ranges 0x00000000000082b8 0xa8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_ranges 0x0000000000008360 0xa0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_ranges 0x0000000000008400 0x148 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_ranges 0x0000000000008548 0x28 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_ranges 0x0000000000008570 0x68 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_ranges 0x00000000000085d8 0x48 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_ranges 0x0000000000008620 0x48 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_ranges 0x0000000000008668 0x48 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_ranges 0x00000000000086b0 0x1d0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_ranges 0x0000000000008880 0x38 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_ranges 0x00000000000088b8 0x110 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_ranges 0x00000000000089c8 0x48 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_ranges 0x0000000000008a10 0x58 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_ranges 0x0000000000008a68 0x148 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_ranges 0x0000000000008bb0 0x10 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_ranges 0x0000000000008bc0 0x110 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_ranges 0x0000000000008cd0 0x38 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_ranges 0x0000000000008d08 0x178 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_ranges 0x0000000000008e80 0x218 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_ranges 0x0000000000009098 0x90 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_ranges 0x0000000000009128 0x80 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_ranges 0x00000000000091a8 0x10 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .debug_ranges 0x00000000000091b8 0x20 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .debug_ranges 0x00000000000091d8 0x18 esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .debug_ranges 0x00000000000091f0 0x40 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .debug_ranges 0x0000000000009230 0x38 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .debug_ranges 0x0000000000009268 0x48 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .debug_ranges 0x00000000000092b0 0x338 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .debug_ranges 0x00000000000095e8 0xc8 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .debug_ranges 0x00000000000096b0 0x40 esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .debug_ranges 0x00000000000096f0 0x30 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .debug_ranges 0x0000000000009720 0x68 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .debug_ranges 0x0000000000009788 0x78 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .debug_ranges 0x0000000000009800 0x20 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .debug_ranges 0x0000000000009820 0xb0 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .debug_ranges 0x00000000000098d0 0x20 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .debug_ranges 0x00000000000098f0 0x90 esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .debug_ranges 0x0000000000009980 0x30 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .debug_ranges 0x00000000000099b0 0x20 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .debug_ranges 0x00000000000099d0 0x80 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .debug_ranges 0x0000000000009a50 0x60 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .debug_ranges 0x0000000000009ab0 0x20 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .debug_ranges 0x0000000000009ad0 0xc8 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .debug_ranges 0x0000000000009b98 0x10 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .debug_ranges 0x0000000000009ba8 0x88 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .debug_ranges 0x0000000000009c30 0x18 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .debug_ranges 0x0000000000009c48 0x60 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .debug_ranges 0x0000000000009ca8 0x78 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .debug_ranges 0x0000000000009d20 0x198 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .debug_ranges 0x0000000000009eb8 0x130 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .debug_ranges 0x0000000000009fe8 0xc8 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .debug_ranges 0x000000000000a0b0 0x18 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .debug_ranges 0x000000000000a0c8 0x110 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .debug_ranges 0x000000000000a1d8 0x120 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .debug_ranges 0x000000000000a2f8 0x98 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .debug_ranges 0x000000000000a390 0x18 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .debug_ranges 0x000000000000a3a8 0x60 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .debug_ranges 0x000000000000a408 0x30 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .debug_ranges 0x000000000000a438 0xb8 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .debug_ranges 0x000000000000a4f0 0x98 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .debug_ranges 0x000000000000a588 0x18 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .debug_ranges 0x000000000000a5a0 0x88 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .debug_ranges 0x000000000000a628 0x88 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .debug_ranges 0x000000000000a6b0 0x98 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .debug_ranges 0x000000000000a748 0x110 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .debug_ranges 0x000000000000a858 0x10 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_ranges 0x000000000000a868 0x58 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_ranges 0x000000000000a8c0 0x20 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_ranges 0x000000000000a8e0 0x120 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_ranges 0x000000000000aa00 0x28 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_ranges 0x000000000000aa28 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_ranges 0x000000000000abe8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_ranges 0x000000000000ac80 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_ranges 0x000000000000ae58 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_ranges 0x000000000000af68 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_ranges 0x000000000000afe8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_ranges 0x000000000000aff8 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_ranges 0x000000000000b0b0 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_ranges 0x000000000000b1c8 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_ranges 0x000000000000b278 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_ranges 0x000000000000b378 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_ranges 0x000000000000b3a0 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_ranges 0x000000000000b458 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_ranges 0x000000000000b4d8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_ranges 0x000000000000b508 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_ranges 0x000000000000b518 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_ranges 0x000000000000b678 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_ranges 0x000000000000b6a8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_ranges 0x000000000000b6c8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_ranges 0x000000000000b6e8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_ranges 0x000000000000b708 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_ranges 0x000000000000b718 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_ranges 0x000000000000b730 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_ranges 0x000000000000b798 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_ranges 0x000000000000b7e0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_ranges 0x000000000000b860 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_ranges 0x000000000000b8d0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x000000000000b940 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_ranges 0x000000000000b9b0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_ranges 0x000000000000ba20 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_ranges 0x000000000000bac8 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_ranges 0x000000000000bc00 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_ranges 0x000000000000bca8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_ranges 0x000000000000bd40 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_ranges 0x000000000000bdb8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_ranges 0x000000000000be60 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_ranges 0x000000000000bed8 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_ranges 0x000000000000bfb0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_ranges 0x000000000000bff0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_ranges 0x000000000000c028 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_ranges 0x000000000000c088 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x000000000000c110 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_ranges 0x000000000000c130 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_ranges 0x000000000000c180 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_ranges 0x000000000000c260 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_ranges 0x000000000000c408 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_ranges 0x000000000000c448 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_ranges 0x000000000000c4f0 0x60 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_ranges 0x000000000000c550 0x168 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x000000000000c6b8 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_ranges 0x000000000000c6e8 0x160 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_ranges 0x000000000000c848 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_ranges 0x000000000000c868 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_ranges 0x000000000000c8f8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_ranges 0x000000000000c950 0x250 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_ranges 0x000000000000cba0 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_ranges 0x000000000000cbd8 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_ranges 0x000000000000cc88 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_ranges 0x000000000000cd70 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_ranges 0x000000000000cd98 0x200 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_ranges 0x000000000000cf98 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_ranges 0x000000000000cfe0 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_ranges 0x000000000000d170 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_ranges 0x000000000000d1f0 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_ranges 0x000000000000d318 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_ranges 0x000000000000d338 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_ranges 0x000000000000d350 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_ranges 0x000000000000d388 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_ranges 0x000000000000d408 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_ranges 0x000000000000d460 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_ranges 0x000000000000d550 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_ranges 0x000000000000d570 0x1e0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_ranges 0x000000000000d750 0x4a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_ranges 0x000000000000dbf8 0x1f0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_ranges 0x000000000000dde8 0x60 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_ranges 0x000000000000de48 0x180 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x000000000000dfc8 0x118 esp-idf/driver/libdriver.a(spi_master.c.obj) + .debug_ranges 0x000000000000e0e0 0x140 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_ranges 0x000000000000e220 0x100 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_ranges 0x000000000000e320 0xb8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_ranges 0x000000000000e3d8 0x40 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_ranges 0x000000000000e418 0x10 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_ranges 0x000000000000e428 0x38 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .debug_ranges 0x000000000000e460 0x68 esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .debug_ranges 0x000000000000e4c8 0x10 esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_ranges 0x000000000000e4d8 0x7f0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_ranges 0x000000000000ecc8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_ranges 0x000000000000ed50 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_ranges 0x000000000000eda8 0x190 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_ranges 0x000000000000ef38 0x190 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_ranges 0x000000000000f0c8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_ranges 0x000000000000f148 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_ranges 0x000000000000f208 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_ranges 0x000000000000f2b8 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_ranges 0x000000000000f2c8 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_ranges 0x000000000000f2d8 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_ranges 0x000000000000f2f0 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_ranges 0x000000000000f318 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_ranges 0x000000000000f328 0x50 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_ranges 0x000000000000f378 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_ranges 0x000000000000f3c0 0x138 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_ranges 0x000000000000f4f8 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_ranges 0x000000000000f508 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_ranges 0x000000000000f570 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_ranges 0x000000000000f5d8 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_ranges 0x000000000000f608 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_ranges 0x000000000000f6a8 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_ranges 0x000000000000f6e8 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_ranges 0x000000000000f788 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_ranges 0x000000000000f7e0 0x100 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_ranges 0x000000000000f8e0 0x270 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_ranges 0x000000000000fb50 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_ranges 0x000000000000fb68 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_ranges 0x000000000000fb80 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_ranges 0x000000000000fb98 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_ranges 0x000000000000fbb8 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_ranges 0x000000000000fbd0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_ranges 0x000000000000fbf0 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_ranges 0x000000000000fc08 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_ranges 0x000000000000fc20 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_ranges 0x000000000000fc38 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_ranges 0x000000000000fc50 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_ranges 0x000000000000fc70 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_ranges 0x000000000000fc88 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_ranges 0x000000000000fcf8 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_ranges 0x000000000000fd98 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_ranges 0x000000000000fe20 0xb8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_ranges 0x000000000000fed8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_ranges 0x000000000000fef8 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_ranges 0x000000000000ff40 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_ranges 0x000000000000ff88 0xb8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) -.debug_line 0x0000000000000000 0x22593f +.debug_line 0x0000000000000000 0x27468f .debug_line 0x0000000000000000 0x59a esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) .debug_line 0x000000000000059a 0x277 esp-idf/esp_system/libesp_system.a(dport_panic_highint_hdl.S.obj) .debug_line 0x0000000000000811 0x1786 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) @@ -61124,1130 +66176,1286 @@ OUTPUT(bakalarka.elf elf32-xtensa-le) .debug_line 0x00000000000368c2 0x1465 esp-idf/newlib/libnewlib.a(time.c.obj) .debug_line 0x0000000000037d27 0x4c8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) .debug_line 0x00000000000381ef 0xe06 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_line 0x0000000000038ff5 0xfbd esp-idf/main/libmain.a(main.c.obj) - .debug_line 0x0000000000039fb2 0x846 esp-idf/files/libfiles.a(file.c.obj) - .debug_line 0x000000000003a7f8 0x1ffe esp-idf/ca/libca.a(ca.c.obj) - .debug_line 0x000000000003c7f6 0x129c esp-idf/ca/libca.a(gen_key.c.obj) - .debug_line 0x000000000003da92 0x2085 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) - .debug_line 0x000000000003fb17 0x16b1 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) - .debug_line 0x00000000000411c8 0xfc4 esp-idf/wifi/libwifi.a(wifi.c.obj) - .debug_line 0x000000000004218c 0x1471 esp-idf/https_server/libhttps_server.a(https_server.c.obj) - .debug_line 0x00000000000435fd 0x409 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) - .debug_line 0x0000000000043a06 0x963 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) - .debug_line 0x0000000000044369 0x756 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_line 0x0000000000044abf 0x1072 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x0000000000045b31 0xd68 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_line 0x0000000000046899 0x1523 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x0000000000047dbc 0x3b3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_line 0x000000000004816f 0x693 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_line 0x0000000000048802 0x474 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_line 0x0000000000048c76 0x1283 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) - .debug_line 0x0000000000049ef9 0xc1f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) - .debug_line 0x000000000004ab18 0xfde esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_line 0x000000000004baf6 0xb8c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_line 0x000000000004c682 0x27ca esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_line 0x000000000004ee4c 0xdad esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_line 0x000000000004fbf9 0x723 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_line 0x000000000005031c 0x6cb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_line 0x00000000000509e7 0x1847 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_line 0x000000000005222e 0x3d0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_line 0x00000000000525fe 0x1876 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_line 0x0000000000053e74 0x4e0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_line 0x0000000000054354 0x53a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_line 0x000000000005488e 0xaa2 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_line 0x0000000000055330 0x1b51 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_line 0x0000000000056e81 0x817 esp-idf/esp_system/libesp_system.a(system_api.c.obj) - .debug_line 0x0000000000057698 0xfd esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) - .debug_line 0x0000000000057795 0x7ef esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) - .debug_line 0x0000000000057f84 0x1798 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) - .debug_line 0x000000000005971c 0x3e9 esp-idf/soc/libsoc.a(mpu_hal.c.obj) - .debug_line 0x0000000000059b05 0x303 esp-idf/soc/libsoc.a(brownout_hal.c.obj) - .debug_line 0x0000000000059e08 0x1897 esp-idf/soc/libsoc.a(rtc_init.c.obj) - .debug_line 0x000000000005b69f 0xf2d esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) - .debug_line 0x000000000005c5cc 0x5828 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) - .debug_line 0x0000000000061df4 0x9fd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) - .debug_line 0x00000000000627f1 0xcab esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_line 0x000000000006349c 0x2cc9 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_line 0x0000000000066165 0xc26 esp-idf/esp_event/libesp_event.a(event_send.c.obj) - .debug_line 0x0000000000066d8b 0x39d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) - .debug_line 0x0000000000067128 0xe52 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) - .debug_line 0x0000000000067f7a 0x606 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) - .debug_line 0x0000000000068580 0x61c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) - .debug_line 0x0000000000068b9c 0x105c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) - .debug_line 0x0000000000069bf8 0x476 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) - .debug_line 0x000000000006a06e 0x7d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) - .debug_line 0x000000000006a843 0x947 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) - .debug_line 0x000000000006b18a 0xfa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) - .debug_line 0x000000000006c12c 0xc06 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) - .debug_line 0x000000000006cd32 0xa25 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) - .debug_line 0x000000000006d757 0x898 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) - .debug_line 0x000000000006dfef 0x60d esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) - .debug_line 0x000000000006e5fc 0x5c5 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) - .debug_line 0x000000000006ebc1 0x12c6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) - .debug_line 0x000000000006fe87 0x4b7 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) - .debug_line 0x000000000007033e 0xcc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) - .debug_line 0x0000000000071000 0x3387 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_line 0x0000000000074387 0x3acd esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_line 0x0000000000077e54 0x15b4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_line 0x0000000000079408 0x1044 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_line 0x000000000007a44c 0x44f4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_line 0x000000000007e940 0x211b esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_line 0x0000000000080a5b 0x1077 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_line 0x0000000000081ad2 0x88e esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_line 0x0000000000082360 0x560 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) - .debug_line 0x00000000000828c0 0xbc9 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) - .debug_line 0x0000000000083489 0x1696 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) - .debug_line 0x0000000000084b1f 0xcc3 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) - .debug_line 0x00000000000857e2 0x1a3a esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) - .debug_line 0x000000000008721c 0x23a0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) - .debug_line 0x00000000000895bc 0x2bad esp-idf/lwip/liblwip.a(dhcpserver.c.obj) - .debug_line 0x000000000008c169 0x111d esp-idf/lwip/liblwip.a(tcpip.c.obj) - .debug_line 0x000000000008d286 0x9de esp-idf/lwip/liblwip.a(def.c.obj) - .debug_line 0x000000000008dc64 0x2dbe esp-idf/lwip/liblwip.a(dns.c.obj) - .debug_line 0x0000000000090a22 0x68c esp-idf/lwip/liblwip.a(init.c.obj) - .debug_line 0x00000000000910ae 0x821 esp-idf/lwip/liblwip.a(ip.c.obj) - .debug_line 0x00000000000918cf 0x657 esp-idf/lwip/liblwip.a(mem.c.obj) - .debug_line 0x0000000000091f26 0x998 esp-idf/lwip/liblwip.a(memp.c.obj) - .debug_line 0x00000000000928be 0x2bd2 esp-idf/lwip/liblwip.a(netif.c.obj) - .debug_line 0x0000000000095490 0x292c esp-idf/lwip/liblwip.a(pbuf.c.obj) - .debug_line 0x0000000000097dbc 0x1f2e esp-idf/lwip/liblwip.a(raw.c.obj) - .debug_line 0x0000000000099cea 0x5448 esp-idf/lwip/liblwip.a(tcp.c.obj) - .debug_line 0x000000000009f132 0x4421 esp-idf/lwip/liblwip.a(tcp_in.c.obj) - .debug_line 0x00000000000a3553 0x3586 esp-idf/lwip/liblwip.a(tcp_out.c.obj) - .debug_line 0x00000000000a6ad9 0xdb9 esp-idf/lwip/liblwip.a(timeouts.c.obj) - .debug_line 0x00000000000a7892 0x30dd esp-idf/lwip/liblwip.a(udp.c.obj) - .debug_line 0x00000000000aa96f 0x43f1 esp-idf/lwip/liblwip.a(dhcp.c.obj) - .debug_line 0x00000000000aed60 0x2012 esp-idf/lwip/liblwip.a(etharp.c.obj) - .debug_line 0x00000000000b0d72 0xc16 esp-idf/lwip/liblwip.a(icmp.c.obj) - .debug_line 0x00000000000b1988 0x1b41 esp-idf/lwip/liblwip.a(igmp.c.obj) - .debug_line 0x00000000000b34c9 0x191d esp-idf/lwip/liblwip.a(ip4.c.obj) - .debug_line 0x00000000000b4de6 0xec4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) - .debug_line 0x00000000000b5caa 0x8d3 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) - .debug_line 0x00000000000b657d 0xb44 esp-idf/lwip/liblwip.a(icmp6.c.obj) - .debug_line 0x00000000000b70c1 0x271f esp-idf/lwip/liblwip.a(ip6.c.obj) - .debug_line 0x00000000000b97e0 0x10cd esp-idf/lwip/liblwip.a(ip6_addr.c.obj) - .debug_line 0x00000000000ba8ad 0x1a38 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) - .debug_line 0x00000000000bc2e5 0x1826 esp-idf/lwip/liblwip.a(mld6.c.obj) - .debug_line 0x00000000000bdb0b 0x55fc esp-idf/lwip/liblwip.a(nd6.c.obj) - .debug_line 0x00000000000c3107 0x984 esp-idf/lwip/liblwip.a(ethernet.c.obj) - .debug_line 0x00000000000c3a8b 0x13f2 esp-idf/lwip/liblwip.a(sys_arch.c.obj) - .debug_line 0x00000000000c4e7d 0x119c esp-idf/lwip/liblwip.a(inet_chksum.c.obj) - .debug_line 0x00000000000c6019 0x874 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) - .debug_line 0x00000000000c688d 0x9b64 esp-idf/lwip/liblwip.a(sockets.c.obj) - .debug_line 0x00000000000d03f1 0x2bee esp-idf/lwip/liblwip.a(api_lib.c.obj) - .debug_line 0x00000000000d2fdf 0x477e esp-idf/lwip/liblwip.a(api_msg.c.obj) - .debug_line 0x00000000000d775d 0x53e esp-idf/lwip/liblwip.a(err.c.obj) - .debug_line 0x00000000000d7c9b 0xc24 esp-idf/lwip/liblwip.a(netbuf.c.obj) - .debug_line 0x00000000000d88bf 0xa53 esp-idf/log/liblog.a(log.c.obj) - .debug_line 0x00000000000d9312 0x1bcd esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_line 0x00000000000daedf 0xf76 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_line 0x00000000000dbe55 0x36a9 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_line 0x00000000000df4fe 0x3803 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_line 0x00000000000e2d01 0x16a9 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) - .debug_line 0x00000000000e43aa 0x209c esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_line 0x00000000000e6446 0x986 esp-idf/driver/libdriver.a(rtc_module.c.obj) - .debug_line 0x00000000000e6dcc 0x79d8 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_line 0x00000000000ee7a4 0x5ab esp-idf/esp32/libesp32.a(hw_random.c.obj) - .debug_line 0x00000000000eed4f 0x1424 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) - .debug_line 0x00000000000f0173 0x28a5 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) - .debug_line 0x00000000000f2a18 0xcaa esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) - .debug_line 0x00000000000f36c2 0x783 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) - .debug_line 0x00000000000f3e45 0x1365 esp-idf/freertos/libfreertos.a(event_groups.c.obj) - .debug_line 0x00000000000f51aa 0xd78 esp-idf/console/libconsole.a(commands.c.obj) - .debug_line 0x00000000000f5f22 0x55c esp-idf/console/libconsole.a(split_argv.c.obj) - .debug_line 0x00000000000f647e 0x9512 esp-idf/console/libconsole.a(argtable3.c.obj) - .debug_line 0x00000000000ff990 0x2ecc esp-idf/console/libconsole.a(linenoise.c.obj) - .debug_line 0x000000000010285c 0x1d96 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) - .debug_line 0x00000000001045f2 0x1715 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) - .debug_line 0x0000000000105d07 0x196b esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) - .debug_line 0x0000000000107672 0x1d85 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) - .debug_line 0x00000000001093f7 0x2f5c esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) - .debug_line 0x000000000010c353 0x7b5 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) - .debug_line 0x000000000010cb08 0x1213 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) - .debug_line 0x000000000010dd1b 0x10f4 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) - .debug_line 0x000000000010ee0f 0x84b esp-idf/fatfs/libfatfs.a(diskio.c.obj) - .debug_line 0x000000000010f65a 0xae4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) - .debug_line 0x000000000011013e 0x8913 esp-idf/fatfs/libfatfs.a(ff.c.obj) - .debug_line 0x0000000000118a51 0x5fd esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) - .debug_line 0x000000000011904e 0x2cea esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) - .debug_line 0x000000000011bd38 0x1178 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) - .debug_line 0x000000000011ceb0 0x8ed esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) - .debug_line 0x000000000011d79d 0x3f5b esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) - .debug_line 0x00000000001216f8 0xea esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) - .debug_line 0x00000000001217e2 0x2d0e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) - .debug_line 0x00000000001244f0 0x93a esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) - .debug_line 0x0000000000124e2a 0x54ee esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) - .debug_line 0x000000000012a318 0x74c1 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) - .debug_line 0x00000000001317d9 0x108f esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) - .debug_line 0x0000000000132868 0x2122 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) - .debug_line 0x000000000013498a 0x461 esp-idf/newlib/libnewlib.a(select.c.obj) - .debug_line 0x0000000000134deb 0x939 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - .debug_line 0x0000000000135724 0x12c7 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - .debug_line 0x00000000001369eb 0x153b esp-idf/soc/libsoc.a(uart_hal.c.obj) - .debug_line 0x0000000000137f26 0x24fe esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - .debug_line 0x000000000013a424 0x2df esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) - .debug_line 0x000000000013a703 0x5e43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_line 0x0000000000140546 0x14e9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - .debug_line 0x0000000000141a2f 0x6297 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - .debug_line 0x0000000000147cc6 0x7fdb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - .debug_line 0x000000000014fca1 0x115f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - .debug_line 0x0000000000150e00 0x194d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) - .debug_line 0x000000000015274d 0x133c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - .debug_line 0x0000000000153a89 0xb50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - .debug_line 0x00000000001545d9 0xfed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - .debug_line 0x00000000001555c6 0xdc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - .debug_line 0x000000000015638c 0xcce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - .debug_line 0x000000000015705a 0x2bd7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - .debug_line 0x0000000000159c31 0x1212 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - .debug_line 0x000000000015ae43 0x381 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_line 0x000000000015b1c4 0x255 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_line 0x000000000015b419 0x4ed6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - .debug_line 0x00000000001602ef 0xf40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - .debug_line 0x000000000016122f 0x628 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - .debug_line 0x0000000000161857 0x706 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - .debug_line 0x0000000000161f5d 0x706 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - .debug_line 0x0000000000162663 0x286 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - .debug_line 0x00000000001628e9 0x2a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_line 0x0000000000162b8a 0x124d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - .debug_line 0x0000000000163dd7 0x1376 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - .debug_line 0x000000000016514d 0x15f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - .debug_line 0x000000000016673f 0x195d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - .debug_line 0x000000000016809c 0x14b3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_line 0x000000000016954f 0x18e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - .debug_line 0x000000000016ae35 0x100c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - .debug_line 0x000000000016be41 0x1533 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - .debug_line 0x000000000016d374 0x267a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - .debug_line 0x000000000016f9ee 0x8e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - .debug_line 0x00000000001702d2 0x1486 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - .debug_line 0x0000000000171758 0x1cb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - .debug_line 0x000000000017340e 0x1224 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - .debug_line 0x0000000000174632 0x152b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - .debug_line 0x0000000000175b5d 0xf41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - .debug_line 0x0000000000176a9e 0x1273 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - .debug_line 0x0000000000177d11 0xc35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - .debug_line 0x0000000000178946 0xaac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_line 0x00000000001793f2 0xf11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_line 0x000000000017a303 0xd63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - .debug_line 0x000000000017b066 0x10a7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - .debug_line 0x000000000017c10d 0x232b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - .debug_line 0x000000000017e438 0x54fa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - .debug_line 0x0000000000183932 0xd7a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - .debug_line 0x00000000001846ac 0x162d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - .debug_line 0x0000000000185cd9 0xdd0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - .debug_line 0x0000000000186aa9 0x2637 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_line 0x00000000001890e0 0x330 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) - .debug_line 0x0000000000189410 0x34b esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) - .debug_line 0x000000000018975b 0x341 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) - .debug_line 0x0000000000189a9c 0xa70 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - .debug_line 0x000000000018a50c 0x6a5 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - .debug_line 0x000000000018abb1 0x800 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - .debug_line 0x000000000018b3b1 0x304a esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - .debug_line 0x000000000018e3fb 0x3d7 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - .debug_line 0x000000000018e7d2 0x10af esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - .debug_line 0x000000000018f881 0xf42 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - .debug_line 0x00000000001907c3 0x5005 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - .debug_line 0x00000000001957c8 0x1d1b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - .debug_line 0x00000000001974e3 0x1449 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - .debug_line 0x000000000019892c 0xd89 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - .debug_line 0x00000000001996b5 0x664 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - .debug_line 0x0000000000199d19 0x581f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - .debug_line 0x000000000019f538 0x1f9e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - .debug_line 0x00000000001a14d6 0x3e61 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - .debug_line 0x00000000001a5337 0x1fb5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - .debug_line 0x00000000001a72ec 0x1587 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - .debug_line 0x00000000001a8873 0x97d esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - .debug_line 0x00000000001a91f0 0xd13 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - .debug_line 0x00000000001a9f03 0x73c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - .debug_line 0x00000000001aa63f 0x15fe esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - .debug_line 0x00000000001abc3d 0x10d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - .debug_line 0x00000000001acd13 0x822 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) - .debug_line 0x00000000001ad535 0xb1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) - .debug_line 0x00000000001ad5e6 0x1b76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - .debug_line 0x00000000001af15c 0x317e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - .debug_line 0x00000000001b22da 0x2509 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - .debug_line 0x00000000001b47e3 0x733 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - .debug_line 0x00000000001b4f16 0x3f99 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_line 0x00000000001b8eaf 0x5b6d esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - .debug_line 0x00000000001bea1c 0x208c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - .debug_line 0x00000000001c0aa8 0x297d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - .debug_line 0x00000000001c3425 0xcf5 esp-idf/lwip/liblwip.a(wlanif.c.obj) - .debug_line 0x00000000001c411a 0x740 esp-idf/lwip/liblwip.a(ethip6.c.obj) - .debug_line 0x00000000001c485a 0xf8b9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - .debug_line 0x00000000001d4113 0x14d2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - .debug_line 0x00000000001d55e5 0x833 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - .debug_line 0x00000000001d5e18 0x64d6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - .debug_line 0x00000000001dc2ee 0x6df1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - .debug_line 0x00000000001e30df 0x1694 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) - .debug_line 0x00000000001e4773 0xdd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - .debug_line 0x00000000001e5548 0xdba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) - .debug_line 0x00000000001e6302 0x3a8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) - .debug_line 0x00000000001e66aa 0x277 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) - .debug_line 0x00000000001e6921 0x2cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) - .debug_line 0x00000000001e6bed 0x2fe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - .debug_line 0x00000000001e6eeb 0x27f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) - .debug_line 0x00000000001e716a 0x571 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - .debug_line 0x00000000001e76db 0x5c6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - .debug_line 0x00000000001e7ca1 0x17d2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - .debug_line 0x00000000001e9473 0x277 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) - .debug_line 0x00000000001e96ea 0x7ef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - .debug_line 0x00000000001e9ed9 0x5bf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - .debug_line 0x00000000001ea498 0x347 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) - .debug_line 0x00000000001ea7df 0x3be /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) - .debug_line 0x00000000001eab9d 0x2ee /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) - .debug_line 0x00000000001eae8b 0x182 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) - .debug_line 0x00000000001eb00d 0xaf6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) - .debug_line 0x00000000001ebb03 0xb63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) - .debug_line 0x00000000001ec666 0xa2b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) - .debug_line 0x00000000001ed091 0xae0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) - .debug_line 0x00000000001edb71 0x1eda /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) - .debug_line 0x00000000001efa4b 0x2ad0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - .debug_line 0x00000000001f251b 0x15c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) - .debug_line 0x00000000001f2677 0x2ef /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) - .debug_line 0x00000000001f2966 0x6a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) - .debug_line 0x00000000001f29d0 0x50 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) - .debug_line 0x00000000001f2a20 0x66 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) - .debug_line 0x00000000001f2a86 0x66 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) - .debug_line 0x00000000001f2aec 0x49f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) - .debug_line 0x00000000001f2f8b 0x2a2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) - .debug_line 0x00000000001f322d 0x203 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) - .debug_line 0x00000000001f3430 0x3b5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) - .debug_line 0x00000000001f37e5 0x3ec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) - .debug_line 0x00000000001f3bd1 0x608 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) - .debug_line 0x00000000001f41d9 0x3f8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) - .debug_line 0x00000000001f45d1 0x31c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) - .debug_line 0x00000000001f48ed 0x4b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) - .debug_line 0x00000000001f4da5 0x31b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) - .debug_line 0x00000000001f50c0 0x3d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) - .debug_line 0x00000000001f5494 0x483 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) - .debug_line 0x00000000001f5917 0x5d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) - .debug_line 0x00000000001f5eeb 0x2ee /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) - .debug_line 0x00000000001f61d9 0xcd8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) - .debug_line 0x00000000001f6eb1 0x31a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) - .debug_line 0x00000000001f71cb 0x5a2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) - .debug_line 0x00000000001f776d 0x4ce /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) - .debug_line 0x00000000001f7c3b 0x1384 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) - .debug_line 0x00000000001f8fbf 0x455 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) - .debug_line 0x00000000001f9414 0x5c6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) - .debug_line 0x00000000001f99da 0x3d1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_line 0x00000000001f9dab 0xca9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) - .debug_line 0x00000000001faa54 0x3d7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) - .debug_line 0x00000000001fae2b 0x42f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) - .debug_line 0x00000000001fb25a 0x315 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) - .debug_line 0x00000000001fb56f 0x500 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) - .debug_line 0x00000000001fba6f 0x4fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) - .debug_line 0x00000000001fbf6b 0x38c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) - .debug_line 0x00000000001fc2f7 0x765 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) - .debug_line 0x00000000001fca5c 0x5d6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) - .debug_line 0x00000000001fd032 0x43f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) - .debug_line 0x00000000001fd471 0x4e0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) - .debug_line 0x00000000001fd951 0x26db /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) - .debug_line 0x000000000020002c 0x397 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) - .debug_line 0x00000000002003c3 0x806 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) - .debug_line 0x0000000000200bc9 0x7d3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) - .debug_line 0x000000000020139c 0x5893 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_line 0x0000000000206c2f 0x4452 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) - .debug_line 0x000000000020b081 0x28a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_line 0x000000000020b30b 0x4191 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_line 0x000000000020f49c 0x5c34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_line 0x00000000002150d0 0x346 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) - .debug_line 0x0000000000215416 0x445 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) - .debug_line 0x000000000021585b 0x2683 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) - .debug_line 0x0000000000217ede 0x3c5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) - .debug_line 0x00000000002182a3 0x13c9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) - .debug_line 0x000000000021966c 0x89f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) - .debug_line 0x0000000000219f0b 0x299 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) - .debug_line 0x000000000021a1a4 0x30d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) - .debug_line 0x000000000021a4b1 0x3b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) - .debug_line 0x000000000021a869 0x410 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_line 0x000000000021ac79 0x25cd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) - .debug_line 0x000000000021d246 0x4b1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_line 0x000000000021d6f7 0x264 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) - .debug_line 0x000000000021d95b 0x3fde /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_line 0x0000000000221939 0x4006 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_line 0x0000000000038ff5 0x11e4 esp-idf/main/libmain.a(main.c.obj) + .debug_line 0x000000000003a1d9 0x846 esp-idf/files/libfiles.a(file.c.obj) + .debug_line 0x000000000003aa1f 0x1ffe esp-idf/ca/libca.a(ca.c.obj) + .debug_line 0x000000000003ca1d 0x129c esp-idf/ca/libca.a(gen_key.c.obj) + .debug_line 0x000000000003dcb9 0x2085 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .debug_line 0x000000000003fd3e 0x16b1 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .debug_line 0x00000000000413ef 0xa1c esp-idf/display/libdisplay.a(display.c.obj) + .debug_line 0x0000000000041e0b 0xfc4 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_line 0x0000000000042dcf 0x1471 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_line 0x0000000000044240 0x409 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_line 0x0000000000044649 0x963 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_line 0x0000000000044fac 0x756 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x0000000000045702 0x1072 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0000000000046774 0xd68 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x00000000000474dc 0x1523 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000000489ff 0x3b3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x0000000000048db2 0x693 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x0000000000049445 0x474 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x00000000000498b9 0x1283 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x000000000004ab3c 0xc1f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_line 0x000000000004b75b 0xfde esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x000000000004c739 0xb8c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x000000000004d2c5 0x27ca esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x000000000004fa8f 0xdad esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x000000000005083c 0x723 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x0000000000050f5f 0x6cb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x000000000005162a 0x1847 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_line 0x0000000000052e71 0x3d0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x0000000000053241 0x1876 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x0000000000054ab7 0x4e0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x0000000000054f97 0x53a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x00000000000554d1 0xaa2 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x0000000000055f73 0x1b51 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x0000000000057ac4 0x817 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + .debug_line 0x00000000000582db 0xfd esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_line 0x00000000000583d8 0x7ef esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_line 0x0000000000058bc7 0x1798 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_line 0x000000000005a35f 0x3e9 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_line 0x000000000005a748 0x303 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_line 0x000000000005aa4b 0x1897 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_line 0x000000000005c2e2 0xf2d esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_line 0x000000000005d20f 0x5828 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_line 0x0000000000062a37 0x9fd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_line 0x0000000000063434 0xcab esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_line 0x00000000000640df 0x2cc9 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_line 0x0000000000066da8 0xc26 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_line 0x00000000000679ce 0x39d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_line 0x0000000000067d6b 0xe52 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_line 0x0000000000068bbd 0x606 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_line 0x00000000000691c3 0x61c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_line 0x00000000000697df 0x105c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_line 0x000000000006a83b 0x476 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_line 0x000000000006acb1 0x7d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_line 0x000000000006b486 0x947 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_line 0x000000000006bdcd 0xfa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_line 0x000000000006cd6f 0xc06 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_line 0x000000000006d975 0xa25 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_line 0x000000000006e39a 0x898 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_line 0x000000000006ec32 0x60d esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_line 0x000000000006f23f 0x5c5 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_line 0x000000000006f804 0x12c6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_line 0x0000000000070aca 0x4b7 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_line 0x0000000000070f81 0xcc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_line 0x0000000000071c43 0x3387 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_line 0x0000000000074fca 0x3acd esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_line 0x0000000000078a97 0x15b4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_line 0x000000000007a04b 0x1044 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_line 0x000000000007b08f 0x44f4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_line 0x000000000007f583 0x211b esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_line 0x000000000008169e 0x1077 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_line 0x0000000000082715 0x88e esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_line 0x0000000000082fa3 0x560 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_line 0x0000000000083503 0xbc9 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_line 0x00000000000840cc 0x1696 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_line 0x0000000000085762 0xcc3 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_line 0x0000000000086425 0x1a3a esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_line 0x0000000000087e5f 0x23a0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_line 0x000000000008a1ff 0x2bad esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_line 0x000000000008cdac 0x111d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_line 0x000000000008dec9 0x9de esp-idf/lwip/liblwip.a(def.c.obj) + .debug_line 0x000000000008e8a7 0x2dbe esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_line 0x0000000000091665 0x68c esp-idf/lwip/liblwip.a(init.c.obj) + .debug_line 0x0000000000091cf1 0x821 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_line 0x0000000000092512 0x657 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_line 0x0000000000092b69 0x998 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_line 0x0000000000093501 0x2bd2 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_line 0x00000000000960d3 0x292c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_line 0x00000000000989ff 0x1f2e esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_line 0x000000000009a92d 0x5448 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_line 0x000000000009fd75 0x4421 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_line 0x00000000000a4196 0x3586 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_line 0x00000000000a771c 0xdb9 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_line 0x00000000000a84d5 0x30dd esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_line 0x00000000000ab5b2 0x43f1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_line 0x00000000000af9a3 0x2012 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_line 0x00000000000b19b5 0xc16 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_line 0x00000000000b25cb 0x1b41 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_line 0x00000000000b410c 0x191d esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_line 0x00000000000b5a29 0xec4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_line 0x00000000000b68ed 0x8d3 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_line 0x00000000000b71c0 0xb44 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_line 0x00000000000b7d04 0x271f esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_line 0x00000000000ba423 0x10cd esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_line 0x00000000000bb4f0 0x1a38 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_line 0x00000000000bcf28 0x1826 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_line 0x00000000000be74e 0x55fc esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_line 0x00000000000c3d4a 0x984 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_line 0x00000000000c46ce 0x13f2 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_line 0x00000000000c5ac0 0x119c esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_line 0x00000000000c6c5c 0x874 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_line 0x00000000000c74d0 0x9b64 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_line 0x00000000000d1034 0x2bee esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_line 0x00000000000d3c22 0x477e esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_line 0x00000000000d83a0 0x53e esp-idf/lwip/liblwip.a(err.c.obj) + .debug_line 0x00000000000d88de 0xc24 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_line 0x00000000000d9502 0xa53 esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x00000000000d9f55 0x1bcd esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x00000000000dbb22 0xf76 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x00000000000dca98 0x36a9 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x00000000000e0141 0x3803 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_line 0x00000000000e3944 0x16a9 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_line 0x00000000000e4fed 0x209c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_line 0x00000000000e7089 0x986 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_line 0x00000000000e7a0f 0x224b esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_line 0x00000000000e9c5a 0x79d8 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_line 0x00000000000f1632 0x5ab esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_line 0x00000000000f1bdd 0x1424 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_line 0x00000000000f3001 0x28a5 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_line 0x00000000000f58a6 0xcaa esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_line 0x00000000000f6550 0x783 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_line 0x00000000000f6cd3 0x1365 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_line 0x00000000000f8038 0xd78 esp-idf/console/libconsole.a(commands.c.obj) + .debug_line 0x00000000000f8db0 0x55c esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_line 0x00000000000f930c 0x9512 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_line 0x000000000010281e 0x2ecc esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_line 0x00000000001056ea 0x1d96 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_line 0x0000000000107480 0x1715 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_line 0x0000000000108b95 0x196b esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_line 0x000000000010a500 0x1d85 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_line 0x000000000010c285 0x2f5c esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_line 0x000000000010f1e1 0x7b5 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_line 0x000000000010f996 0x1213 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_line 0x0000000000110ba9 0x10f4 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_line 0x0000000000111c9d 0x84b esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_line 0x00000000001124e8 0xae4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_line 0x0000000000112fcc 0x8913 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_line 0x000000000011b8df 0x5fd esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_line 0x000000000011bedc 0x2cea esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_line 0x000000000011ebc6 0x1178 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_line 0x000000000011fd3e 0x8ed esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_line 0x000000000012062b 0x3f5b esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_line 0x0000000000124586 0xea esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_line 0x0000000000124670 0x2d0e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_line 0x000000000012737e 0x93a esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_line 0x0000000000127cb8 0x54ee esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_line 0x000000000012d1a6 0x74c1 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_line 0x0000000000134667 0x108f esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_line 0x00000000001356f6 0x2122 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_line 0x0000000000137818 0x678 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + .debug_line 0x0000000000137e90 0x8e5 esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + .debug_line 0x0000000000138775 0x6ed esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + .debug_line 0x0000000000138e62 0xc2d esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + .debug_line 0x0000000000139a8f 0xc68 esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + .debug_line 0x000000000013a6f7 0x8b2 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + .debug_line 0x000000000013afa9 0x51fc esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + .debug_line 0x00000000001401a5 0x1a92 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + .debug_line 0x0000000000141c37 0x1d8a esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + .debug_line 0x00000000001439c1 0x970 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + .debug_line 0x0000000000144331 0x2d39 esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + .debug_line 0x000000000014706a 0x6633 esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + .debug_line 0x000000000014d69d 0xb4d esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + .debug_line 0x000000000014e1ea 0x22b5 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + .debug_line 0x000000000015049f 0x27f esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + .debug_line 0x000000000015071e 0x4e2 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + .debug_line 0x0000000000150c00 0xdbe esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + .debug_line 0x00000000001519be 0x950 esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + .debug_line 0x000000000015230e 0x2b1 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + .debug_line 0x00000000001525bf 0x1426 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + .debug_line 0x00000000001539e5 0x98c esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + .debug_line 0x0000000000154371 0x3ca esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + .debug_line 0x000000000015473b 0x18cd esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + .debug_line 0x0000000000156008 0x492 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + .debug_line 0x000000000015649a 0xd46 esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + .debug_line 0x00000000001571e0 0x323 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + .debug_line 0x0000000000157503 0xbc1 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + .debug_line 0x00000000001580c4 0xf41 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + .debug_line 0x0000000000159005 0x4b32 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + .debug_line 0x000000000015db37 0x3c21 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + .debug_line 0x0000000000161758 0x1884 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + .debug_line 0x0000000000162fdc 0x455 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + .debug_line 0x0000000000163431 0x1e9a esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + .debug_line 0x00000000001652cb 0x36f5 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + .debug_line 0x00000000001689c0 0x21a3 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + .debug_line 0x000000000016ab63 0x1222 esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + .debug_line 0x000000000016bd85 0x2ac2 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + .debug_line 0x000000000016e847 0x16f8 esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + .debug_line 0x000000000016ff3f 0x19d0 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + .debug_line 0x000000000017190f 0x1c99 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + .debug_line 0x00000000001735a8 0x464 esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + .debug_line 0x0000000000173a0c 0x1379 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + .debug_line 0x0000000000174d85 0x22aa esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + .debug_line 0x000000000017702f 0x1328 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + .debug_line 0x0000000000178357 0x42cd esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + .debug_line 0x000000000017c624 0x461 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_line 0x000000000017ca85 0x939 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_line 0x000000000017d3be 0x12c7 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_line 0x000000000017e685 0x153b esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_line 0x000000000017fbc0 0x24fe esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_line 0x00000000001820be 0x2df esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_line 0x000000000018239d 0x5e43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_line 0x00000000001881e0 0x14e9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_line 0x00000000001896c9 0x6297 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_line 0x000000000018f960 0x7fdb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_line 0x000000000019793b 0x115f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_line 0x0000000000198a9a 0x194d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_line 0x000000000019a3e7 0x133c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_line 0x000000000019b723 0xb50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_line 0x000000000019c273 0xfed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_line 0x000000000019d260 0xdc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_line 0x000000000019e026 0xcce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_line 0x000000000019ecf4 0x2bd7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_line 0x00000000001a18cb 0x1212 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_line 0x00000000001a2add 0x381 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_line 0x00000000001a2e5e 0x255 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_line 0x00000000001a30b3 0x4ed6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_line 0x00000000001a7f89 0xf40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_line 0x00000000001a8ec9 0x628 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_line 0x00000000001a94f1 0x706 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_line 0x00000000001a9bf7 0x706 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_line 0x00000000001aa2fd 0x286 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_line 0x00000000001aa583 0x2a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_line 0x00000000001aa824 0x124d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_line 0x00000000001aba71 0x1376 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_line 0x00000000001acde7 0x15f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_line 0x00000000001ae3d9 0x195d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_line 0x00000000001afd36 0x14b3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x00000000001b11e9 0x18e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_line 0x00000000001b2acf 0x100c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_line 0x00000000001b3adb 0x1533 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_line 0x00000000001b500e 0x267a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_line 0x00000000001b7688 0x8e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_line 0x00000000001b7f6c 0x1486 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_line 0x00000000001b93f2 0x1cb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_line 0x00000000001bb0a8 0x1224 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_line 0x00000000001bc2cc 0x152b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_line 0x00000000001bd7f7 0xf41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_line 0x00000000001be738 0x1273 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_line 0x00000000001bf9ab 0xc35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_line 0x00000000001c05e0 0xaac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_line 0x00000000001c108c 0xf11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x00000000001c1f9d 0xd63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_line 0x00000000001c2d00 0x10a7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_line 0x00000000001c3da7 0x232b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_line 0x00000000001c60d2 0x54fa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_line 0x00000000001cb5cc 0xd7a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_line 0x00000000001cc346 0x162d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_line 0x00000000001cd973 0xdd0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_line 0x00000000001ce743 0x2637 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x00000000001d0d7a 0x330 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_line 0x00000000001d10aa 0x34b esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_line 0x00000000001d13f5 0x33e esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_line 0x00000000001d1733 0x341 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_line 0x00000000001d1a74 0xa70 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_line 0x00000000001d24e4 0x6a5 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_line 0x00000000001d2b89 0x800 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_line 0x00000000001d3389 0x304a esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_line 0x00000000001d63d3 0x3d7 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_line 0x00000000001d67aa 0x10af esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_line 0x00000000001d7859 0xf42 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_line 0x00000000001d879b 0x5005 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_line 0x00000000001dd7a0 0x1d1b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_line 0x00000000001df4bb 0x1449 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_line 0x00000000001e0904 0xd89 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_line 0x00000000001e168d 0x664 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_line 0x00000000001e1cf1 0x581f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_line 0x00000000001e7510 0x1f9e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_line 0x00000000001e94ae 0x3e61 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_line 0x00000000001ed30f 0x1fb5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_line 0x00000000001ef2c4 0x1587 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_line 0x00000000001f084b 0x97d esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_line 0x00000000001f11c8 0xd13 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_line 0x00000000001f1edb 0x73c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_line 0x00000000001f2617 0x15fe esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_line 0x00000000001f3c15 0x10d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_line 0x00000000001f4ceb 0x822 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_line 0x00000000001f550d 0xb1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_line 0x00000000001f55be 0x1b76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_line 0x00000000001f7134 0x317e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_line 0x00000000001fa2b2 0x2509 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_line 0x00000000001fc7bb 0x733 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_line 0x00000000001fceee 0x3f99 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x0000000000200e87 0x4423 esp-idf/driver/libdriver.a(spi_master.c.obj) + .debug_line 0x00000000002052aa 0x5b6d esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_line 0x000000000020ae17 0x208c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_line 0x000000000020cea3 0x297d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_line 0x000000000020f820 0xcf5 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_line 0x0000000000210515 0x740 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_line 0x0000000000210c55 0x1042 esp-idf/soc/libsoc.a(spi_hal.c.obj) + .debug_line 0x0000000000211c97 0x159c esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + .debug_line 0x0000000000213233 0x377 esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_line 0x00000000002135aa 0xf8b9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_line 0x0000000000222e63 0x14d2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_line 0x0000000000224335 0x833 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_line 0x0000000000224b68 0x64d6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_line 0x000000000022b03e 0x6df1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_line 0x0000000000231e2f 0x1694 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_line 0x00000000002334c3 0xdd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_line 0x0000000000234298 0xdba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_line 0x0000000000235052 0x3a8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_line 0x00000000002353fa 0x277 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_line 0x0000000000235671 0x2cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_line 0x000000000023593d 0x2fe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_line 0x0000000000235c3b 0x27f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_line 0x0000000000235eba 0x571 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_line 0x000000000023642b 0x5c6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_line 0x00000000002369f1 0x17d2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_line 0x00000000002381c3 0x277 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_line 0x000000000023843a 0x7ef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_line 0x0000000000238c29 0x5bf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_line 0x00000000002391e8 0x347 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_line 0x000000000023952f 0x3be /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_line 0x00000000002398ed 0x2ee /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_line 0x0000000000239bdb 0x182 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .debug_line 0x0000000000239d5d 0xaf6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_line 0x000000000023a853 0xb63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_line 0x000000000023b3b6 0xa2b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_line 0x000000000023bde1 0xae0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_line 0x000000000023c8c1 0x1eda /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_line 0x000000000023e79b 0x2ad0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_line 0x000000000024126b 0x15c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .debug_line 0x00000000002413c7 0x2ef /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_line 0x00000000002416b6 0x6a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_line 0x0000000000241720 0x50 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_line 0x0000000000241770 0x66 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_line 0x00000000002417d6 0x66 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_line 0x000000000024183c 0x49f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_line 0x0000000000241cdb 0x2a2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_line 0x0000000000241f7d 0x203 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_line 0x0000000000242180 0x3b5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_line 0x0000000000242535 0x3ec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_line 0x0000000000242921 0x608 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_line 0x0000000000242f29 0x3f8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_line 0x0000000000243321 0x31c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_line 0x000000000024363d 0x4b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_line 0x0000000000243af5 0x31b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_line 0x0000000000243e10 0x3d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_line 0x00000000002441e4 0x483 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_line 0x0000000000244667 0x5d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_line 0x0000000000244c3b 0x2ee /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_line 0x0000000000244f29 0xcd8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_line 0x0000000000245c01 0x31a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_line 0x0000000000245f1b 0x5a2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_line 0x00000000002464bd 0x4ce /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_line 0x000000000024698b 0x1384 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_line 0x0000000000247d0f 0x455 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_line 0x0000000000248164 0x5c6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_line 0x000000000024872a 0x3d1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_line 0x0000000000248afb 0xca9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_line 0x00000000002497a4 0x3d7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_line 0x0000000000249b7b 0x42f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_line 0x0000000000249faa 0x315 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_line 0x000000000024a2bf 0x500 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_line 0x000000000024a7bf 0x4fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_line 0x000000000024acbb 0x38c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_line 0x000000000024b047 0x765 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_line 0x000000000024b7ac 0x5d6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_line 0x000000000024bd82 0x43f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_line 0x000000000024c1c1 0x4e0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_line 0x000000000024c6a1 0x26db /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_line 0x000000000024ed7c 0x397 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + .debug_line 0x000000000024f113 0x806 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_line 0x000000000024f919 0x7d3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_line 0x00000000002500ec 0x5893 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_line 0x000000000025597f 0x4452 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_line 0x0000000000259dd1 0x28a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_line 0x000000000025a05b 0x4191 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_line 0x000000000025e1ec 0x5c34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_line 0x0000000000263e20 0x346 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_line 0x0000000000264166 0x445 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_line 0x00000000002645ab 0x2683 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_line 0x0000000000266c2e 0x3c5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_line 0x0000000000266ff3 0x13c9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_line 0x00000000002683bc 0x89f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_line 0x0000000000268c5b 0x299 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_line 0x0000000000268ef4 0x30d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_line 0x0000000000269201 0x3b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_line 0x00000000002695b9 0x410 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_line 0x00000000002699c9 0x25cd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_line 0x000000000026bf96 0x4b1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_line 0x000000000026c447 0x264 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_line 0x000000000026c6ab 0x3fde /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_line 0x0000000000270689 0x4006 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) -.debug_str 0x0000000000000000 0x5193a - .debug_str 0x0000000000000000 0x74e esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) +.debug_str 0x0000000000000000 0x5a2ca + .debug_str 0x0000000000000000 0x743 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) 0xa29 (size before relaxing) - .debug_str 0x000000000000074e 0x63 esp-idf/esp_system/libesp_system.a(dport_panic_highint_hdl.S.obj) + .debug_str 0x0000000000000743 0x63 esp-idf/esp_system/libesp_system.a(dport_panic_highint_hdl.S.obj) 0x85 (size before relaxing) - .debug_str 0x00000000000007b1 0x35ec esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_str 0x00000000000007a6 0x35e7 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) 0x3f82 (size before relaxing) - .debug_str 0x0000000000003d9d 0x2d7 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_str 0x0000000000003d8d 0x2d7 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) 0x2131 (size before relaxing) - .debug_str 0x0000000000004074 0x41f esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_str 0x0000000000004064 0x41f esp-idf/esp_system/libesp_system.a(panic.c.obj) 0x3f20 (size before relaxing) - .debug_str 0x0000000000004493 0x179 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_str 0x0000000000004483 0x179 esp-idf/soc/libsoc.a(cpu_util.c.obj) 0x2aac (size before relaxing) - .debug_str 0x000000000000460c 0xf0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_str 0x00000000000045fc 0xf0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) 0x1258 (size before relaxing) - .debug_str 0x00000000000046fc 0x154 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_str 0x00000000000046ec 0x154 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) 0x1096 (size before relaxing) - .debug_str 0x0000000000004850 0x99 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_str 0x0000000000004840 0x99 esp-idf/soc/libsoc.a(soc_hal.c.obj) 0x1153 (size before relaxing) - .debug_str 0x00000000000048e9 0x10e3 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_str 0x00000000000048d9 0x10e3 esp-idf/soc/libsoc.a(rtc_clk.c.obj) 0x47fb (size before relaxing) - .debug_str 0x00000000000059cc 0x18b esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_str 0x00000000000059bc 0x18b esp-idf/soc/libsoc.a(rtc_time.c.obj) 0x2331 (size before relaxing) - .debug_str 0x0000000000005b57 0x11a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_str 0x0000000000005b47 0x11a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) 0x213e (size before relaxing) - .debug_str 0x0000000000005c71 0x224 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_str 0x0000000000005c61 0x224 esp-idf/log/liblog.a(log_freertos.c.obj) 0x147d (size before relaxing) - .debug_str 0x0000000000005e95 0x8bd esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_str 0x0000000000005e85 0x8bd esp-idf/pthread/libpthread.a(pthread.c.obj) 0x1cd9 (size before relaxing) - .debug_str 0x0000000000006752 0x1ae esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_str 0x0000000000006742 0x1ae esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) 0x14da (size before relaxing) - .debug_str 0x0000000000006900 0x9f esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_str 0x00000000000068f0 0x9f esp-idf/esp32/libesp32.a(cache_err_int.c.obj) 0x126f (size before relaxing) - .debug_str 0x000000000000699f 0x206c esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_str 0x000000000000698f 0x205b esp-idf/esp32/libesp32.a(clk.c.obj) 0x5ce9 (size before relaxing) - .debug_str 0x0000000000008a0b 0x8e4 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_str 0x00000000000089ea 0x8e4 esp-idf/esp32/libesp32.a(cpu_start.c.obj) 0x49df (size before relaxing) - .debug_str 0x00000000000092ef 0x119 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_str 0x00000000000092ce 0x119 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) 0x393d (size before relaxing) - .debug_str 0x0000000000009408 0x19d esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_str 0x00000000000093e7 0x19d esp-idf/esp32/libesp32.a(dport_access.c.obj) 0x371d (size before relaxing) - .debug_str 0x00000000000095a5 0x8d esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_str 0x0000000000009584 0x8d esp-idf/esp32/libesp32.a(int_wdt.c.obj) 0x1a4e (size before relaxing) - .debug_str 0x0000000000009632 0x47e esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_str 0x0000000000009611 0x47e esp-idf/esp32/libesp32.a(intr_alloc.c.obj) 0x17f6 (size before relaxing) - .debug_str 0x0000000000009ab0 0xb39 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_str 0x0000000000009a8f 0xb2c esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) 0x61fc (size before relaxing) - .debug_str 0x000000000000a5e9 0x1b5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_str 0x000000000000a5bb 0x1b5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) 0x1de0 (size before relaxing) - .debug_str 0x000000000000a79e 0xf1 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_str 0x000000000000a770 0xf1 esp-idf/esp_common/libesp_common.a(brownout.c.obj) 0x2c03 (size before relaxing) - .debug_str 0x000000000000a88f 0x9c esp-idf/esp_common/libesp_common.a(esp_err.c.obj) + .debug_str 0x000000000000a861 0x9c esp-idf/esp_common/libesp_common.a(esp_err.c.obj) 0x779 (size before relaxing) - .debug_str 0x000000000000a92b 0x191 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_str 0x000000000000a8fd 0x191 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) 0x3e66 (size before relaxing) - .debug_str 0x000000000000aabc 0x1bc esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_str 0x000000000000aa8e 0x1bc esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) 0x2c6f (size before relaxing) - .debug_str 0x000000000000ac78 0x16e esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_str 0x000000000000ac4a 0x161 esp-idf/esp_common/libesp_common.a(ipc.c.obj) 0x1474 (size before relaxing) - .debug_str 0x000000000000ade6 0x2fd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_str 0x000000000000adab 0x2fd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) 0x172e (size before relaxing) - .debug_str 0x000000000000b0e3 0x18c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_str 0x000000000000b0a8 0x18c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) 0x309b (size before relaxing) - .debug_str 0x000000000000b26f 0x40b esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_str 0x000000000000b234 0x40b esp-idf/freertos/libfreertos.a(port.c.obj) 0x18d3 (size before relaxing) - .debug_str 0x000000000000b67a 0x3f esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_str 0x000000000000b63f 0x3f esp-idf/freertos/libfreertos.a(portasm.S.obj) 0x6f (size before relaxing) - .debug_str 0x000000000000b6b9 0x46 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_str 0x000000000000b67e 0x46 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) 0x76 (size before relaxing) - .debug_str 0x000000000000b6ff 0x51 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_str 0x000000000000b6c4 0x51 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) 0x113d (size before relaxing) - .debug_str 0x000000000000b750 0x47 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .debug_str 0x000000000000b715 0x47 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) 0x77 (size before relaxing) - .debug_str 0x000000000000b797 0xa1 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_str 0x000000000000b75c 0xa1 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) 0x12d6 (size before relaxing) - .debug_str 0x000000000000b838 0x46 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_str 0x000000000000b7fd 0x46 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) 0x76 (size before relaxing) - .debug_str 0x000000000000b87e 0x53 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_str 0x000000000000b843 0x53 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) 0x11c7 (size before relaxing) - .debug_str 0x000000000000b8d1 0x671 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_str 0x000000000000b896 0x671 esp-idf/freertos/libfreertos.a(queue.c.obj) 0x1abf (size before relaxing) - .debug_str 0x000000000000bf42 0xc9b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_str 0x000000000000bf07 0xc9b esp-idf/freertos/libfreertos.a(tasks.c.obj) 0x2674 (size before relaxing) - .debug_str 0x000000000000cbdd 0x4c8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_str 0x000000000000cba2 0x4c8 esp-idf/freertos/libfreertos.a(timers.c.obj) 0x19ab (size before relaxing) - .debug_str 0x000000000000d0a5 0x4e esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_str 0x000000000000d06a 0x4e esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) 0x7e (size before relaxing) - .debug_str 0x000000000000d0f3 0x76 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_str 0x000000000000d0b8 0x76 esp-idf/freertos/libfreertos.a(list.c.obj) 0x12e8 (size before relaxing) - .debug_str 0x000000000000d169 0x7ba esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_str 0x000000000000d12e 0x7ba esp-idf/vfs/libvfs.a(vfs.c.obj) 0x1e34 (size before relaxing) - .debug_str 0x000000000000d923 0x68d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_str 0x000000000000d8e8 0x68d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) 0x2c02 (size before relaxing) - .debug_str 0x000000000000dfb0 0x3d esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_str 0x000000000000df75 0x3d esp-idf/newlib/libnewlib.a(abort.c.obj) 0x111d (size before relaxing) - .debug_str 0x000000000000dfed 0x225 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_str 0x000000000000dfb2 0x225 esp-idf/newlib/libnewlib.a(heap.c.obj) 0x744 (size before relaxing) - .debug_str 0x000000000000e212 0x131 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_str 0x000000000000e1d7 0x131 esp-idf/newlib/libnewlib.a(locks.c.obj) 0x149a (size before relaxing) - .debug_str 0x000000000000e343 0xe0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_str 0x000000000000e308 0xe0 esp-idf/newlib/libnewlib.a(pthread.c.obj) 0x72a (size before relaxing) - .debug_str 0x000000000000e423 0x5a esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_str 0x000000000000e3e8 0x5a esp-idf/newlib/libnewlib.a(reent_init.c.obj) 0x5dc (size before relaxing) - .debug_str 0x000000000000e47d 0x179 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_str 0x000000000000e442 0x179 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) 0x1606 (size before relaxing) - .debug_str 0x000000000000e5f6 0x63 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_str 0x000000000000e5bb 0x63 esp-idf/newlib/libnewlib.a(syscalls.c.obj) 0x6aa (size before relaxing) - .debug_str 0x000000000000e659 0x2ae esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_str 0x000000000000e61e 0x2ae esp-idf/newlib/libnewlib.a(time.c.obj) 0x2f6b (size before relaxing) - .debug_str 0x000000000000e907 0x802 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_str 0x000000000000e8cc 0x7fa esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) 0xd9d (size before relaxing) - .debug_str 0x000000000000f109 0x306 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_str 0x000000000000f0c6 0x306 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) 0x1c6e (size before relaxing) - .debug_str 0x000000000000f40f 0x478 esp-idf/main/libmain.a(main.c.obj) - 0x3c7f (size before relaxing) - .debug_str 0x000000000000f887 0xab esp-idf/files/libfiles.a(file.c.obj) + .debug_str 0x000000000000f3cc 0x7d4 esp-idf/main/libmain.a(main.c.obj) + 0x4098 (size before relaxing) + .debug_str 0x000000000000fba0 0xab esp-idf/files/libfiles.a(file.c.obj) 0x763 (size before relaxing) - .debug_str 0x000000000000f932 0xaca esp-idf/ca/libca.a(ca.c.obj) + .debug_str 0x000000000000fc4b 0xac1 esp-idf/ca/libca.a(ca.c.obj) 0x1f18 (size before relaxing) - .debug_str 0x00000000000103fc 0x3d4 esp-idf/ca/libca.a(gen_key.c.obj) + .debug_str 0x000000000001070c 0x3d4 esp-idf/ca/libca.a(gen_key.c.obj) 0x1bf1 (size before relaxing) - .debug_str 0x00000000000107d0 0x423 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .debug_str 0x0000000000010ae0 0x419 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) 0x197a (size before relaxing) - .debug_str 0x0000000000010bf3 0x698 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .debug_str 0x0000000000010ef9 0x698 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) 0x41a2 (size before relaxing) - .debug_str 0x000000000001128b 0x7e7 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_str 0x0000000000011591 0x184 esp-idf/display/libdisplay.a(display.c.obj) + 0x1b78 (size before relaxing) + .debug_str 0x0000000000011715 0x7d6 esp-idf/wifi/libwifi.a(wifi.c.obj) 0x4447 (size before relaxing) - .debug_str 0x0000000000011a72 0x660 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_str 0x0000000000011eeb 0x660 esp-idf/https_server/libhttps_server.a(https_server.c.obj) 0x48bf (size before relaxing) - .debug_str 0x00000000000120d2 0x36 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_str 0x000000000001254b 0x36 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) 0x570 (size before relaxing) - .debug_str 0x0000000000012108 0x72 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_str 0x0000000000012581 0x72 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) 0x12c0 (size before relaxing) - .debug_str 0x000000000001217a 0x5f3 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000000125f3 0x5f3 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) 0xc3e (size before relaxing) - .debug_str 0x000000000001276d 0x234 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0000000000012be6 0x234 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) 0x969 (size before relaxing) - .debug_str 0x00000000000129a1 0x215 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x0000000000012e1a 0x215 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) 0xd8d (size before relaxing) - .debug_str 0x0000000000012bb6 0x2ea esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x000000000001302f 0x2ea esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) 0xc2b (size before relaxing) - .debug_str 0x0000000000012ea0 0x43 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x0000000000013319 0x43 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) 0xc18 (size before relaxing) - .debug_str 0x0000000000012ee3 0x7c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x000000000001335c 0x7c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) 0xb56 (size before relaxing) - .debug_str 0x0000000000012f5f 0xee esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_str 0x00000000000133d8 0xee esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) 0x119e (size before relaxing) - .debug_str 0x000000000001304d 0x1ae esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_str 0x00000000000134c6 0x1ae esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) 0xba7 (size before relaxing) - .debug_str 0x00000000000131fb 0x278 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_str 0x0000000000013674 0x278 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) 0x1fde (size before relaxing) - .debug_str 0x0000000000013473 0x2fc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_str 0x00000000000138ec 0x2fc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) 0x1762 (size before relaxing) - .debug_str 0x000000000001376f 0x2c1 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_str 0x0000000000013be8 0x2c1 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) 0x1963 (size before relaxing) - .debug_str 0x0000000000013a30 0x4cc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_str 0x0000000000013ea9 0x4c1 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) 0x2a63 (size before relaxing) - .debug_str 0x0000000000013efc 0x2b3 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_str 0x000000000001436a 0x29b esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) 0x3588 (size before relaxing) - .debug_str 0x00000000000141af 0x13f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_str 0x0000000000014605 0x13f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) 0xb80 (size before relaxing) - .debug_str 0x00000000000142ee 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_str 0x0000000000014744 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) 0x151f (size before relaxing) - .debug_str 0x0000000000014336 0x7f6 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_str 0x000000000001478c 0x7f6 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) 0x14c7 (size before relaxing) - .debug_str 0x0000000000014b2c 0x9e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_str 0x0000000000014f82 0x9e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) 0xa13 (size before relaxing) - .debug_str 0x0000000000014bca 0x4fd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_str 0x0000000000015020 0x4fd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) 0xfe3 (size before relaxing) - .debug_str 0x00000000000150c7 0xc3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_str 0x000000000001551d 0xc3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) 0xae4 (size before relaxing) - .debug_str 0x000000000001518a 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_str 0x00000000000155e0 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) 0xab5 (size before relaxing) - .debug_str 0x000000000001522c 0x145 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_str 0x0000000000015682 0x145 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) 0x261d (size before relaxing) - .debug_str 0x0000000000015371 0x21b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_str 0x00000000000157c7 0x21b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) 0x1875 (size before relaxing) - .debug_str 0x000000000001558c 0xd7 esp-idf/esp_system/libesp_system.a(system_api.c.obj) + .debug_str 0x00000000000159e2 0xd7 esp-idf/esp_system/libesp_system.a(system_api.c.obj) 0x131a (size before relaxing) - .debug_str 0x0000000000015663 0x49 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_str 0x0000000000015ab9 0x49 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) 0x79 (size before relaxing) - .debug_str 0x00000000000156ac 0x136 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_str 0x0000000000015b02 0x136 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) 0x2513 (size before relaxing) - .debug_str 0x00000000000157e2 0x3e2 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_str 0x0000000000015c38 0x3dc esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) 0x26fc (size before relaxing) - .debug_str 0x0000000000015bc4 0x99 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_str 0x0000000000016014 0x99 esp-idf/soc/libsoc.a(mpu_hal.c.obj) 0x646 (size before relaxing) - .debug_str 0x0000000000015c5d 0x50 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_str 0x00000000000160ad 0x50 esp-idf/soc/libsoc.a(brownout_hal.c.obj) 0x14b4 (size before relaxing) - .debug_str 0x0000000000015cad 0xbe esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_str 0x00000000000160fd 0xbe esp-idf/soc/libsoc.a(rtc_init.c.obj) 0x2c1d (size before relaxing) - .debug_str 0x0000000000015d6b 0x162 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_str 0x00000000000161bb 0x162 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) 0x31e5 (size before relaxing) - .debug_str 0x0000000000015ecd 0x1f2f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_str 0x000000000001631d 0x1f2f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) 0x535a (size before relaxing) - .debug_str 0x0000000000017dfc 0x14d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_str 0x000000000001824c 0x14d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) 0x38f8 (size before relaxing) - .debug_str 0x0000000000017f49 0x960 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_str 0x0000000000018399 0x960 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) 0x3d89 (size before relaxing) - .debug_str 0x00000000000188a9 0x555 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_str 0x0000000000018cf9 0x550 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) 0x3934 (size before relaxing) - .debug_str 0x0000000000018dfe 0xb5 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_str 0x0000000000019249 0xb5 esp-idf/esp_event/libesp_event.a(event_send.c.obj) 0x3b3a (size before relaxing) - .debug_str 0x0000000000018eb3 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_str 0x00000000000192fe 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) 0x96c (size before relaxing) - .debug_str 0x0000000000018eff 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_str 0x000000000001934a 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) 0x657 (size before relaxing) - .debug_str 0x0000000000018f91 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_str 0x00000000000193dc 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) 0x62d (size before relaxing) - .debug_str 0x0000000000018fe6 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_str 0x0000000000019431 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) 0x5e0 (size before relaxing) - .debug_str 0x0000000000019030 0x195 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_str 0x000000000001947b 0x195 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) 0x78f (size before relaxing) - .debug_str 0x00000000000191c5 0x107 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_str 0x0000000000019610 0x107 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) 0x750 (size before relaxing) - .debug_str 0x00000000000192cc 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_str 0x0000000000019717 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) 0x66b (size before relaxing) - .debug_str 0x000000000001931c 0x93 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_str 0x0000000000019767 0x93 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) 0x6c3 (size before relaxing) - .debug_str 0x00000000000193af 0xb7 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_str 0x00000000000197fa 0xb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) 0x676 (size before relaxing) - .debug_str 0x0000000000019466 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_str 0x00000000000198ab 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) 0x64b (size before relaxing) - .debug_str 0x00000000000194c8 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_str 0x000000000001990d 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) 0x5f5 (size before relaxing) - .debug_str 0x0000000000019516 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_str 0x000000000001995b 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) 0x65d (size before relaxing) - .debug_str 0x00000000000195a3 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_str 0x00000000000199e8 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) 0x666 (size before relaxing) - .debug_str 0x0000000000019631 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_str 0x0000000000019a76 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) 0x669 (size before relaxing) - .debug_str 0x0000000000019694 0x132 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_str 0x0000000000019ad9 0x132 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) 0x742 (size before relaxing) - .debug_str 0x00000000000197c6 0x14e esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_str 0x0000000000019c0b 0x14e esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) 0x6fb (size before relaxing) - .debug_str 0x0000000000019914 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_str 0x0000000000019d59 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) 0x719 (size before relaxing) - .debug_str 0x00000000000199f8 0x6422 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_str 0x0000000000019e3d 0x6422 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) 0x9000 (size before relaxing) - .debug_str 0x000000000001fe1a 0x2ca1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_str 0x000000000002025f 0x2ca1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) 0x83b7 (size before relaxing) - .debug_str 0x0000000000022abb 0x122a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_str 0x0000000000022f00 0x122a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) 0x899c (size before relaxing) - .debug_str 0x0000000000023ce5 0x6c5 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_str 0x000000000002412a 0x6c5 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) 0x2803 (size before relaxing) - .debug_str 0x00000000000243aa 0x656 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_str 0x00000000000247ef 0x656 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) 0x3639 (size before relaxing) - .debug_str 0x0000000000024a00 0x70c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_str 0x0000000000024e45 0x70c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) 0x5484 (size before relaxing) - .debug_str 0x000000000002510c 0x453 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_str 0x0000000000025551 0x453 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) 0x734e (size before relaxing) - .debug_str 0x000000000002555f 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_str 0x00000000000259a4 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) 0x1985 (size before relaxing) - .debug_str 0x00000000000255a0 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_str 0x00000000000259e5 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) 0x8f9 (size before relaxing) - .debug_str 0x00000000000255f0 0x16d esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_str 0x0000000000025a35 0x16d esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) 0x549d (size before relaxing) - .debug_str 0x000000000002575d 0x45f esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_str 0x0000000000025ba2 0x45f esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) 0x433c (size before relaxing) - .debug_str 0x0000000000025bbc 0x128 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_str 0x0000000000026001 0x128 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) 0x3cfc (size before relaxing) - .debug_str 0x0000000000025ce4 0x7be esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_str 0x0000000000026129 0x7be esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) 0x4654 (size before relaxing) - .debug_str 0x00000000000264a2 0x686 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_str 0x00000000000268e7 0x686 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) 0x60a2 (size before relaxing) - .debug_str 0x0000000000026b28 0x47e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_str 0x0000000000026f6d 0x47e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) 0x437a (size before relaxing) - .debug_str 0x0000000000026fa6 0x351 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_str 0x00000000000273eb 0x351 esp-idf/lwip/liblwip.a(tcpip.c.obj) 0x1de7 (size before relaxing) - .debug_str 0x00000000000272f7 0x8c esp-idf/lwip/liblwip.a(def.c.obj) + .debug_str 0x000000000002773c 0x8c esp-idf/lwip/liblwip.a(def.c.obj) 0x12e7 (size before relaxing) - .debug_str 0x0000000000027383 0x3f4 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_str 0x00000000000277c8 0x3f4 esp-idf/lwip/liblwip.a(dns.c.obj) 0x1f75 (size before relaxing) - .debug_str 0x0000000000027777 0x377 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_str 0x0000000000027bbc 0x36e esp-idf/lwip/liblwip.a(init.c.obj) 0x1c0f (size before relaxing) - .debug_str 0x0000000000027aee 0x94 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_str 0x0000000000027f2a 0x94 esp-idf/lwip/liblwip.a(ip.c.obj) 0x19f9 (size before relaxing) - .debug_str 0x0000000000027b82 0x9a esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_str 0x0000000000027fbe 0x9a esp-idf/lwip/liblwip.a(mem.c.obj) 0x1318 (size before relaxing) - .debug_str 0x0000000000027c1c 0x2e8 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_str 0x0000000000028058 0x2e8 esp-idf/lwip/liblwip.a(memp.c.obj) 0x20fb (size before relaxing) - .debug_str 0x0000000000027f04 0x4a2 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_str 0x0000000000028340 0x4a2 esp-idf/lwip/liblwip.a(netif.c.obj) 0x246a (size before relaxing) - .debug_str 0x00000000000283a6 0x3d1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_str 0x00000000000287e2 0x3d1 esp-idf/lwip/liblwip.a(pbuf.c.obj) 0x2338 (size before relaxing) - .debug_str 0x0000000000028777 0x22d esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_str 0x0000000000028bb3 0x22d esp-idf/lwip/liblwip.a(raw.c.obj) 0x1d43 (size before relaxing) - .debug_str 0x00000000000289a4 0x605 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_str 0x0000000000028de0 0x605 esp-idf/lwip/liblwip.a(tcp.c.obj) 0x251d (size before relaxing) - .debug_str 0x0000000000028fa9 0x261 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_str 0x00000000000293e5 0x261 esp-idf/lwip/liblwip.a(tcp_in.c.obj) 0x21bb (size before relaxing) - .debug_str 0x000000000002920a 0x225 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_str 0x0000000000029646 0x225 esp-idf/lwip/liblwip.a(tcp_out.c.obj) 0x21ba (size before relaxing) - .debug_str 0x000000000002942f 0x123 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_str 0x000000000002986b 0x123 esp-idf/lwip/liblwip.a(timeouts.c.obj) 0x1ed0 (size before relaxing) - .debug_str 0x0000000000029552 0x23d esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_str 0x000000000002998e 0x23d esp-idf/lwip/liblwip.a(udp.c.obj) 0x1ecd (size before relaxing) - .debug_str 0x000000000002978f 0x770 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_str 0x0000000000029bcb 0x770 esp-idf/lwip/liblwip.a(dhcp.c.obj) 0x24cc (size before relaxing) - .debug_str 0x0000000000029eff 0x458 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_str 0x000000000002a33b 0x458 esp-idf/lwip/liblwip.a(etharp.c.obj) 0x1fad (size before relaxing) - .debug_str 0x000000000002a357 0xbd esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_str 0x000000000002a793 0xbd esp-idf/lwip/liblwip.a(icmp.c.obj) 0x1985 (size before relaxing) - .debug_str 0x000000000002a414 0x208 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_str 0x000000000002a850 0x208 esp-idf/lwip/liblwip.a(igmp.c.obj) 0x1cac (size before relaxing) - .debug_str 0x000000000002a61c 0x147 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_str 0x000000000002aa58 0x147 esp-idf/lwip/liblwip.a(ip4.c.obj) 0x225f (size before relaxing) - .debug_str 0x000000000002a763 0x6c esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_str 0x000000000002ab9f 0x6c esp-idf/lwip/liblwip.a(ip4_addr.c.obj) 0x1868 (size before relaxing) - .debug_str 0x000000000002a7cf 0x73 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_str 0x000000000002ac0b 0x73 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) 0x187c (size before relaxing) - .debug_str 0x000000000002a842 0x32d esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_str 0x000000000002ac7e 0x32d esp-idf/lwip/liblwip.a(icmp6.c.obj) 0x1c1e (size before relaxing) - .debug_str 0x000000000002ab6f 0x1cd esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_str 0x000000000002afab 0x1cd esp-idf/lwip/liblwip.a(ip6.c.obj) 0x200d (size before relaxing) - .debug_str 0x000000000002ad3c 0xe7 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_str 0x000000000002b178 0xe7 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) 0x1452 (size before relaxing) - .debug_str 0x000000000002ae23 0x179 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_str 0x000000000002b25f 0x179 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) 0x1cf1 (size before relaxing) - .debug_str 0x000000000002af9c 0x138 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_str 0x000000000002b3d8 0x138 esp-idf/lwip/liblwip.a(mld6.c.obj) 0x1e04 (size before relaxing) - .debug_str 0x000000000002b0d4 0x50b esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_str 0x000000000002b510 0x50b esp-idf/lwip/liblwip.a(nd6.c.obj) 0x24d3 (size before relaxing) - .debug_str 0x000000000002b5df 0x8b esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_str 0x000000000002ba1b 0x8b esp-idf/lwip/liblwip.a(ethernet.c.obj) 0x1b4d (size before relaxing) - .debug_str 0x000000000002b66a 0x1c5 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_str 0x000000000002baa6 0x1c5 esp-idf/lwip/liblwip.a(sys_arch.c.obj) 0x1976 (size before relaxing) - .debug_str 0x000000000002b82f 0x120 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_str 0x000000000002bc6b 0x120 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) 0x14f2 (size before relaxing) - .debug_str 0x000000000002b94f 0xd5 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_str 0x000000000002bd8b 0xd5 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) 0x1c48 (size before relaxing) - .debug_str 0x000000000002ba24 0xf8b esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_str 0x000000000002be60 0xf8b esp-idf/lwip/liblwip.a(sockets.c.obj) 0x31ff (size before relaxing) - .debug_str 0x000000000002c9af 0x1e8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_str 0x000000000002cdeb 0x1e8 esp-idf/lwip/liblwip.a(api_lib.c.obj) 0x25a4 (size before relaxing) - .debug_str 0x000000000002cb97 0x3bc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_str 0x000000000002cfd3 0x3bc esp-idf/lwip/liblwip.a(api_msg.c.obj) 0x2950 (size before relaxing) - .debug_str 0x000000000002cf53 0x67 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_str 0x000000000002d38f 0x67 esp-idf/lwip/liblwip.a(err.c.obj) 0x126b (size before relaxing) - .debug_str 0x000000000002cfba 0x88 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_str 0x000000000002d3f6 0x88 esp-idf/lwip/liblwip.a(netbuf.c.obj) 0x167c (size before relaxing) - .debug_str 0x000000000002d042 0x1e5 esp-idf/log/liblog.a(log.c.obj) + .debug_str 0x000000000002d47e 0x1e5 esp-idf/log/liblog.a(log.c.obj) 0x904 (size before relaxing) - .debug_str 0x000000000002d227 0x4ae esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_str 0x000000000002d663 0x4a8 esp-idf/heap/libheap.a(heap_caps.c.obj) 0x1868 (size before relaxing) - .debug_str 0x000000000002d6d5 0x128 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_str 0x000000000002db0b 0x128 esp-idf/heap/libheap.a(heap_caps_init.c.obj) 0x1511 (size before relaxing) - .debug_str 0x000000000002d7fd 0x35f esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_str 0x000000000002dc33 0x35f esp-idf/heap/libheap.a(multi_heap.c.obj) 0x175a (size before relaxing) - .debug_str 0x000000000002db5c 0x89f esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_str 0x000000000002df92 0x89f esp-idf/driver/libdriver.a(gpio.c.obj) 0x3a6a (size before relaxing) - .debug_str 0x000000000002e3fb 0x118 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_str 0x000000000002e831 0x111 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) 0x1640 (size before relaxing) - .debug_str 0x000000000002e513 0x3e4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_str 0x000000000002e942 0x3e4 esp-idf/driver/libdriver.a(rtc_io.c.obj) 0x34e3 (size before relaxing) - .debug_str 0x000000000002e8f7 0x301 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_str 0x000000000002ed26 0x301 esp-idf/driver/libdriver.a(rtc_module.c.obj) 0x3906 (size before relaxing) - .debug_str 0x000000000002ebf8 0xf90 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_str 0x000000000002f027 0x4a8 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x34f6 (size before relaxing) + .debug_str 0x000000000002f4cf 0xf90 esp-idf/driver/libdriver.a(uart.c.obj) 0x36bf (size before relaxing) - .debug_str 0x000000000002fb88 0x73 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_str 0x000000000003045f 0x73 esp-idf/esp32/libesp32.a(hw_random.c.obj) 0x11a0 (size before relaxing) - .debug_str 0x000000000002fbfb 0x3fc esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_str 0x00000000000304d2 0x3fc esp-idf/esp32/libesp32.a(pm_esp32.c.obj) 0x3e43 (size before relaxing) - .debug_str 0x000000000002fff7 0x7b9 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_str 0x00000000000308ce 0x7b9 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) 0x6c89 (size before relaxing) - .debug_str 0x00000000000307b0 0x144 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_str 0x0000000000031087 0x144 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) 0xbfd (size before relaxing) - .debug_str 0x00000000000308f4 0xf3 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_str 0x00000000000311cb 0xf3 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) 0x1434 (size before relaxing) - .debug_str 0x00000000000309e7 0x292 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_str 0x00000000000312be 0x292 esp-idf/freertos/libfreertos.a(event_groups.c.obj) 0x178d (size before relaxing) - .debug_str 0x0000000000030c79 0x171 esp-idf/console/libconsole.a(commands.c.obj) + .debug_str 0x0000000000031550 0x171 esp-idf/console/libconsole.a(commands.c.obj) 0x8e1 (size before relaxing) - .debug_str 0x0000000000030dea 0xc9 esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_str 0x00000000000316c1 0xc9 esp-idf/console/libconsole.a(split_argv.c.obj) 0x63e (size before relaxing) - .debug_str 0x0000000000030eb3 0x921 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_str 0x000000000003178a 0x916 esp-idf/console/libconsole.a(argtable3.c.obj) 0x12d3 (size before relaxing) - .debug_str 0x00000000000317d4 0x3dc esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_str 0x00000000000320a0 0x3cc esp-idf/console/libconsole.a(linenoise.c.obj) 0xc55 (size before relaxing) - .debug_str 0x0000000000031bb0 0x582 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_str 0x000000000003246c 0x578 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) 0x22fb (size before relaxing) - .debug_str 0x0000000000032132 0x12c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_str 0x00000000000329e4 0x12c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) 0x2128 (size before relaxing) - .debug_str 0x000000000003225e 0x259 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_str 0x0000000000032b10 0x259 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) 0x2253 (size before relaxing) - .debug_str 0x00000000000324b7 0x264 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_str 0x0000000000032d69 0x264 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) 0x25c2 (size before relaxing) - .debug_str 0x000000000003271b 0x48d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_str 0x0000000000032fcd 0x48d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) 0x25b2 (size before relaxing) - .debug_str 0x0000000000032ba8 0x69 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_str 0x000000000003345a 0x69 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) 0x1768 (size before relaxing) - .debug_str 0x0000000000032c11 0x1915 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_str 0x00000000000334c3 0x1915 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) 0x3eb7 (size before relaxing) - .debug_str 0x0000000000034526 0x3d0 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_str 0x0000000000034dd8 0x3d0 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) 0x3b88 (size before relaxing) - .debug_str 0x00000000000348f6 0x106 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_str 0x00000000000351a8 0xff esp-idf/fatfs/libfatfs.a(diskio.c.obj) 0x13e8 (size before relaxing) - .debug_str 0x00000000000349fc 0xc8 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_str 0x00000000000352a7 0xc8 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) 0x17d4 (size before relaxing) - .debug_str 0x0000000000034ac4 0x3e9 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_str 0x000000000003536f 0x3e0 esp-idf/fatfs/libfatfs.a(ff.c.obj) 0x188a (size before relaxing) - .debug_str 0x0000000000034ead 0x5c esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_str 0x000000000003574f 0x5c esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) 0x12cc (size before relaxing) - .debug_str 0x0000000000034f09 0x371 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_str 0x00000000000357ab 0x371 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) 0x2006 (size before relaxing) - .debug_str 0x000000000003527a 0x26a esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_str 0x0000000000035b1c 0x262 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) 0x19c2 (size before relaxing) - .debug_str 0x00000000000354e4 0x1c7 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_str 0x0000000000035d7e 0x1c7 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) 0x1481 (size before relaxing) - .debug_str 0x00000000000356ab 0x460 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_str 0x0000000000035f45 0x44e esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) 0xff3 (size before relaxing) - .debug_str 0x0000000000035b0b 0x3e esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_str 0x0000000000036393 0x3e esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) 0x17e (size before relaxing) - .debug_str 0x0000000000035b49 0x75e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_str 0x00000000000363d1 0x75e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) 0x2a26 (size before relaxing) - .debug_str 0x00000000000362a7 0xd6 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_str 0x0000000000036b2f 0xd6 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) 0x1f9c (size before relaxing) - .debug_str 0x000000000003637d 0x6e0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_str 0x0000000000036c05 0x6e0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) 0x12b3 (size before relaxing) - .debug_str 0x0000000000036a5d 0x610 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_str 0x00000000000372e5 0x610 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) 0x13d6 (size before relaxing) - .debug_str 0x000000000003706d 0xf3 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_str 0x00000000000378f5 0xf3 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) 0xbfd (size before relaxing) - .debug_str 0x0000000000037160 0x203 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_str 0x00000000000379e8 0x203 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) 0xd97 (size before relaxing) - .debug_str 0x0000000000037363 0x35 esp-idf/newlib/libnewlib.a(select.c.obj) - 0x1286 (size before relaxing) - .debug_str 0x0000000000037398 0x13c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) - 0x88a (size before relaxing) - .debug_str 0x00000000000374d4 0x1a8 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) - 0x2487 (size before relaxing) - .debug_str 0x000000000003767c 0x40d esp-idf/soc/libsoc.a(uart_hal.c.obj) - 0x1889 (size before relaxing) - .debug_str 0x0000000000037a89 0xae esp-idf/soc/libsoc.a(rtc_sleep.c.obj) - 0x3bbb (size before relaxing) - .debug_str 0x0000000000037b37 0x132 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) - 0x772 (size before relaxing) - .debug_str 0x0000000000037c69 0x59a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0xc9d (size before relaxing) - .debug_str 0x0000000000038203 0x2aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) - 0xa4a (size before relaxing) - .debug_str 0x00000000000384ad 0x62f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) - 0x11a3 (size before relaxing) - .debug_str 0x0000000000038adc 0x49b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) - 0xd4d (size before relaxing) - .debug_str 0x0000000000038f77 0x26f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) - 0xa77 (size before relaxing) - .debug_str 0x00000000000391e6 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) - 0x6a8 (size before relaxing) - .debug_str 0x0000000000039233 0x29d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) - 0x9ed (size before relaxing) - .debug_str 0x00000000000394d0 0x3d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) - 0xe4e (size before relaxing) - .debug_str 0x00000000000398a2 0x373 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) - 0xc24 (size before relaxing) - .debug_str 0x0000000000039c15 0x387 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) - 0xf2e (size before relaxing) - .debug_str 0x0000000000039f9c 0xc4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) - 0x14b2 (size before relaxing) - .debug_str 0x000000000003abeb 0x377 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) - 0x1865 (size before relaxing) - .debug_str 0x000000000003af62 0x21e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) - 0xb90 (size before relaxing) - .debug_str 0x000000000003b180 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - 0x675 (size before relaxing) - .debug_str 0x000000000003b259 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - 0x5cb (size before relaxing) - .debug_str 0x000000000003b2b2 0x518 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) - 0x119f (size before relaxing) - .debug_str 0x000000000003b7ca 0x5f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) - 0x7f1 (size before relaxing) - .debug_str 0x000000000003b829 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) - 0x784 (size before relaxing) - .debug_str 0x000000000003b8be 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) - 0x7ca (size before relaxing) - .debug_str 0x000000000003b969 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) - 0x7ca (size before relaxing) - .debug_str 0x000000000003ba14 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) - 0x5b5 (size before relaxing) - .debug_str 0x000000000003ba55 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - 0x5ca (size before relaxing) - .debug_str 0x000000000003babd 0x268 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) - 0x149b (size before relaxing) - .debug_str 0x000000000003bd25 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) - 0x15d1 (size before relaxing) - .debug_str 0x000000000003bdc3 0x17c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) - 0x1784 (size before relaxing) - .debug_str 0x000000000003bf3f 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) - 0x871 (size before relaxing) - .debug_str 0x000000000003c099 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - 0x8a4 (size before relaxing) - .debug_str 0x000000000003c172 0xda esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) - 0x8ba (size before relaxing) - .debug_str 0x000000000003c24c 0x12b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) - 0x7f8 (size before relaxing) - .debug_str 0x000000000003c377 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) - 0x8b2 (size before relaxing) - .debug_str 0x000000000003c4ed 0x61a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) - 0x1747 (size before relaxing) - .debug_str 0x000000000003cb07 0x446 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) - 0x178e (size before relaxing) - .debug_str 0x000000000003cf4d 0x2a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) - 0xefd (size before relaxing) - .debug_str 0x000000000003d1f2 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) - 0x13ed (size before relaxing) - .debug_str 0x000000000003d2be 0x20f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) - 0xb29 (size before relaxing) - .debug_str 0x000000000003d4cd 0xf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) - 0x7df (size before relaxing) - .debug_str 0x000000000003d5c0 0x35e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) - 0x1526 (size before relaxing) - .debug_str 0x000000000003d91e 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) - 0x1100 (size before relaxing) - .debug_str 0x000000000003d9f4 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) - 0x142b (size before relaxing) - .debug_str 0x000000000003dae6 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - 0x73e (size before relaxing) - .debug_str 0x000000000003dba8 0x1bb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - 0x18f4 (size before relaxing) - .debug_str 0x000000000003dd63 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) - 0x676 (size before relaxing) - .debug_str 0x000000000003de00 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) - 0x135b (size before relaxing) - .debug_str 0x000000000003dea7 0x2bc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) - 0x1e3b (size before relaxing) - .debug_str 0x000000000003e163 0x68c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) - 0x1953 (size before relaxing) - .debug_str 0x000000000003e7ef 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) - 0xab3 (size before relaxing) - .debug_str 0x000000000003e894 0x18d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) - 0xf24 (size before relaxing) - .debug_str 0x000000000003ea21 0xdb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) - 0x84a (size before relaxing) - .debug_str 0x000000000003eafc 0x692 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x2629 (size before relaxing) - .debug_str 0x000000000003f18e 0x41 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) - 0x84f (size before relaxing) - .debug_str 0x000000000003f1cf 0x43 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) - 0x1dad (size before relaxing) - .debug_str 0x000000000003f212 0x41 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) - 0xf03 (size before relaxing) - .debug_str 0x000000000003f253 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) - 0x32b1 (size before relaxing) - .debug_str 0x000000000003f2a4 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) - 0x2fc7 (size before relaxing) - .debug_str 0x000000000003f2e8 0xa3 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) - 0x3eec (size before relaxing) - .debug_str 0x000000000003f38b 0x738 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) - 0x4a6a (size before relaxing) - .debug_str 0x000000000003fac3 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) - 0x649 (size before relaxing) - .debug_str 0x000000000003fb32 0x1546 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) - 0x5056 (size before relaxing) - .debug_str 0x0000000000041078 0x37f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) - 0x3f63 (size before relaxing) - .debug_str 0x00000000000413f7 0xf7e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) - 0x5160 (size before relaxing) - .debug_str 0x0000000000042375 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) - 0xceb (size before relaxing) - .debug_str 0x0000000000042461 0x101 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) - 0x768 (size before relaxing) - .debug_str 0x0000000000042562 0xf1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) - 0x75d (size before relaxing) - .debug_str 0x0000000000042653 0xd7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) - 0x6ab (size before relaxing) - .debug_str 0x000000000004272a 0xa1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) - 0x54b6 (size before relaxing) - .debug_str 0x0000000000043148 0x1be esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) - 0x1055 (size before relaxing) - .debug_str 0x0000000000043306 0x73d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) - 0x108d (size before relaxing) - .debug_str 0x0000000000043a43 0xee esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) - 0x995 (size before relaxing) - .debug_str 0x0000000000043b31 0x95 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) - 0x1091 (size before relaxing) - .debug_str 0x0000000000043bc6 0xd3 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) - 0x727 (size before relaxing) - .debug_str 0x0000000000043c99 0x102 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) - 0x4376 (size before relaxing) - .debug_str 0x0000000000043d9b 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) - 0xc82 (size before relaxing) - .debug_str 0x0000000000043e11 0x1b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) - 0xf37 (size before relaxing) - .debug_str 0x0000000000043fc1 0x13e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) - 0x4056 (size before relaxing) - .debug_str 0x00000000000440ff 0x986 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) - 0xabe (size before relaxing) - .debug_str 0x0000000000044a85 0x16d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) - 0x252 (size before relaxing) - .debug_str 0x0000000000044bf2 0xbd7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) - 0x1768 (size before relaxing) - .debug_str 0x00000000000457c9 0x10c9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) - 0x2357 (size before relaxing) - .debug_str 0x0000000000046892 0x915 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) - 0x1b4c (size before relaxing) - .debug_str 0x00000000000471a7 0xb6 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) - 0x6cd (size before relaxing) - .debug_str 0x000000000004725d 0x6d3 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x1bde (size before relaxing) - .debug_str 0x0000000000047930 0xc3a esp-idf/nghttp/libnghttp.a(http_parser.c.obj) - 0x1698 (size before relaxing) - .debug_str 0x000000000004856a 0x5f5 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) - 0x42b4 (size before relaxing) - .debug_str 0x0000000000048b5f 0x328 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) - 0x4175 (size before relaxing) - .debug_str 0x0000000000048e87 0xbb esp-idf/lwip/liblwip.a(wlanif.c.obj) - 0x3e4b (size before relaxing) - .debug_str 0x0000000000048f42 0x54 esp-idf/lwip/liblwip.a(ethip6.c.obj) - 0x179d (size before relaxing) - .debug_str 0x0000000000048f96 0x1f3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) - 0x4917 (size before relaxing) - .debug_str 0x000000000004aed2 0x153 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) - 0x1ae6 (size before relaxing) - .debug_str 0x000000000004b025 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) - 0x13d1 (size before relaxing) - .debug_str 0x000000000004b1c9 0x61e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) - 0x326a (size before relaxing) - .debug_str 0x000000000004b7e7 0x575 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) - 0x3618 (size before relaxing) - .debug_str 0x000000000004bd5c 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) - 0xa0e (size before relaxing) - .debug_str 0x000000000004be68 0x1d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) - 0xc19 (size before relaxing) - .debug_str 0x000000000004c041 0x252 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) - 0xb67 (size before relaxing) - .debug_str 0x000000000004c293 0x155 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) - 0xb67 (size before relaxing) - .debug_str 0x000000000004c3e8 0xdd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) - 0x642 (size before relaxing) - .debug_str 0x000000000004c4c5 0x152 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) - 0x69a (size before relaxing) - .debug_str 0x000000000004c617 0x11b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) - 0x6c3 (size before relaxing) - .debug_str 0x000000000004c732 0xe1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) - 0x661 (size before relaxing) - .debug_str 0x000000000004c813 0x6a7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) - 0x831 (size before relaxing) - .debug_str 0x000000000004ceba 0x2fa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) - 0xe2c (size before relaxing) - .debug_str 0x000000000004d1b4 0x8ae /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) - 0x1613 (size before relaxing) - .debug_str 0x000000000004da62 0xdd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) - 0x637 (size before relaxing) - .debug_str 0x000000000004db3f 0x2c1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) - 0x11f0 (size before relaxing) - .debug_str 0x000000000004de00 0x3e0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) - 0x85f (size before relaxing) - .debug_str 0x000000000004e1e0 0x2b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) - 0x4cc (size before relaxing) - .debug_str 0x000000000004e499 0xed /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) - 0xc91 (size before relaxing) - .debug_str 0x000000000004e586 0xed /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) - 0x755 (size before relaxing) - .debug_str 0x000000000004e673 0xc5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) - 0xd3 (size before relaxing) - .debug_str 0x000000000004e738 0x1bd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) - 0x758 (size before relaxing) - .debug_str 0x000000000004e8f5 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) - 0x758 (size before relaxing) - .debug_str 0x000000000004e8fe 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) - 0x759 (size before relaxing) - .debug_str 0x000000000004e908 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) - 0x759 (size before relaxing) - .debug_str 0x000000000004e912 0x433 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) - 0xdf6 (size before relaxing) - .debug_str 0x000000000004ed45 0x43b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) - 0xc81 (size before relaxing) - .debug_str 0x000000000004f180 0x5a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) - 0xd2 (size before relaxing) - .debug_str 0x000000000004f1da 0x4f /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) - 0x82 (size before relaxing) - .debug_str 0x000000000004f229 0x20a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) - 0x777 (size before relaxing) - .debug_str 0x000000000004f433 0xda /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) - 0x5fe (size before relaxing) - .debug_str 0x000000000004f50d 0xc3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) - 0x5d0 (size before relaxing) - .debug_str 0x000000000004f5d0 0x7d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) - 0x789 (size before relaxing) - .debug_str 0x000000000004f64d 0x69 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) - 0x79a (size before relaxing) - .debug_str 0x000000000004f6b6 0x6b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) - 0x7aa (size before relaxing) - .debug_str 0x000000000004f721 0x57 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) - 0x7a0 (size before relaxing) - .debug_str 0x000000000004f778 0x72 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) - 0x61b (size before relaxing) - .debug_str 0x000000000004f7ea 0xb3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) - 0x80a (size before relaxing) - .debug_str 0x000000000004f89d 0x6f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) - 0x617 (size before relaxing) - .debug_str 0x000000000004f90c 0x67 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) - 0x79d (size before relaxing) - .debug_str 0x000000000004f973 0x97 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) - 0x7e7 (size before relaxing) - .debug_str 0x000000000004fa0a 0x5f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) - 0x7ba (size before relaxing) - .debug_str 0x000000000004fa69 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) - 0x74b (size before relaxing) - .debug_str 0x000000000004fac9 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) - 0x953 (size before relaxing) - .debug_str 0x000000000004fb59 0x69 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_str 0x0000000000037beb 0x59 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + 0x2f0f (size before relaxing) + .debug_str 0x0000000000037c44 0x8ee esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + 0x13b4 (size before relaxing) + .debug_str 0x0000000000038532 0x9f esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + 0x3026 (size before relaxing) + .debug_str 0x00000000000385d1 0x2c5 esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + 0x3893 (size before relaxing) + .debug_str 0x0000000000038896 0xef esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + 0x3487 (size before relaxing) + .debug_str 0x0000000000038985 0x165 esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + 0xd17 (size before relaxing) + .debug_str 0x0000000000038aea 0x13e8 esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + 0x272c (size before relaxing) + .debug_str 0x0000000000039ed2 0x261 esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + 0x13b5 (size before relaxing) + .debug_str 0x000000000003a133 0x1fd esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + 0xbb1 (size before relaxing) + .debug_str 0x000000000003a330 0xf6 esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + 0xd12 (size before relaxing) + .debug_str 0x000000000003a426 0x2fb esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + 0x10da (size before relaxing) + .debug_str 0x000000000003a721 0x47d esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + 0x1002 (size before relaxing) + .debug_str 0x000000000003ab9e 0x122 esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + 0xd07 (size before relaxing) + .debug_str 0x000000000003acc0 0x7c6 esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + 0x14db (size before relaxing) + .debug_str 0x000000000003b486 0x67 esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + 0x29d (size before relaxing) + .debug_str 0x000000000003b4ed 0x2ac esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + 0xc97 (size before relaxing) + .debug_str 0x000000000003b799 0xee esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + 0x1323 (size before relaxing) + .debug_str 0x000000000003b887 0xfe esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + 0x127e (size before relaxing) + .debug_str 0x000000000003b985 0x77 esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + 0x1cd (size before relaxing) + .debug_str 0x000000000003b9fc 0x179 esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + 0xe7e (size before relaxing) + .debug_str 0x000000000003bb75 0xc5 esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + 0x6e7 (size before relaxing) + .debug_str 0x000000000003bc3a 0x47 esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + 0x5cf (size before relaxing) + .debug_str 0x000000000003bc81 0x1c2 esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + 0xefa (size before relaxing) + .debug_str 0x000000000003be43 0x45 esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + 0xad9 (size before relaxing) + .debug_str 0x000000000003be88 0x10d esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) 0x73d (size before relaxing) - .debug_str 0x000000000004fbc2 0x5e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) - 0x7a3 (size before relaxing) - .debug_str 0x000000000004fc20 0x61 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) - 0x7e7 (size before relaxing) - .debug_str 0x000000000004fc81 0x1c1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) - 0x7d6 (size before relaxing) - .debug_str 0x000000000004fe42 0x2b1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) - 0x9b8 (size before relaxing) - .debug_str 0x00000000000500f3 0x7f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) - 0x8a3 (size before relaxing) - .debug_str 0x0000000000050172 0x73 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) - 0x961 (size before relaxing) - .debug_str 0x00000000000501e5 0xc7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) - 0x907 (size before relaxing) - .debug_str 0x00000000000502ac 0x61 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) - 0x76e (size before relaxing) - .debug_str 0x000000000005030d 0x69 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) - 0x7a6 (size before relaxing) - .debug_str 0x0000000000050376 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) - 0x733 (size before relaxing) - .debug_str 0x00000000000503d9 0x5d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) - 0x7e4 (size before relaxing) - .debug_str 0x0000000000050436 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) - 0x5f4 (size before relaxing) - .debug_str 0x0000000000050516 0x5d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) - 0x759 (size before relaxing) - .debug_str 0x0000000000050573 0x67 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) - 0x7d0 (size before relaxing) - .debug_str 0x00000000000505da 0x65 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) - 0x795 (size before relaxing) - .debug_str 0x000000000005063f 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) - 0x76f (size before relaxing) - .debug_str 0x00000000000506a2 0x6f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) - 0x774 (size before relaxing) - .debug_str 0x0000000000050711 0x300 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) - 0xc56 (size before relaxing) - .debug_str 0x0000000000050a11 0xd7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) - 0x5e3 (size before relaxing) - .debug_str 0x0000000000050ae8 0x82 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) - 0x993 (size before relaxing) - .debug_str 0x0000000000050b6a 0x72 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) - 0x998 (size before relaxing) - .debug_str 0x0000000000050bdc 0x2e8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_str 0x000000000003bf95 0x84 esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + 0x618 (size before relaxing) + .debug_str 0x000000000003c019 0xf2 esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + 0x788 (size before relaxing) + .debug_str 0x000000000003c10b 0x166 esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + 0xdbc (size before relaxing) + .debug_str 0x000000000003c271 0x7b3 esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + 0x1b92 (size before relaxing) + .debug_str 0x000000000003ca24 0x652 esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + 0x1912 (size before relaxing) + .debug_str 0x000000000003d076 0x522 esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + 0x1b3d (size before relaxing) + .debug_str 0x000000000003d598 0x87 esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + 0xcd9 (size before relaxing) + .debug_str 0x000000000003d61f 0x320 esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + 0x16b2 (size before relaxing) + .debug_str 0x000000000003d93f 0x3d1 esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + 0x19f2 (size before relaxing) + .debug_str 0x000000000003dd10 0x1a0 esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + 0x12b4 (size before relaxing) + .debug_str 0x000000000003deb0 0xaf esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + 0xcc2 (size before relaxing) + .debug_str 0x000000000003df5f 0x193 esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + 0xbe7 (size before relaxing) + .debug_str 0x000000000003e0f2 0xcb esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + 0xae6 (size before relaxing) + .debug_str 0x000000000003e1bd 0x307 esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + 0xece (size before relaxing) + .debug_str 0x000000000003e4c4 0x1c1 esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + 0xb34 (size before relaxing) + .debug_str 0x000000000003e685 0x6e esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + 0x1c9 (size before relaxing) + .debug_str 0x000000000003e6f3 0x1d1 esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + 0x161c (size before relaxing) + .debug_str 0x000000000003e8c4 0x292 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + 0x1800 (size before relaxing) + .debug_str 0x000000000003eb56 0x169 esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + 0x1461 (size before relaxing) + .debug_str 0x000000000003ecbf 0x4a1 esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + 0x21c6 (size before relaxing) + .debug_str 0x000000000003f160 0x35 esp-idf/newlib/libnewlib.a(select.c.obj) + 0x1286 (size before relaxing) + .debug_str 0x000000000003f195 0x13c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x88a (size before relaxing) + .debug_str 0x000000000003f2d1 0x1a8 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + 0x2487 (size before relaxing) + .debug_str 0x000000000003f479 0x40d esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x1889 (size before relaxing) + .debug_str 0x000000000003f886 0xae esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x3bbb (size before relaxing) + .debug_str 0x000000000003f934 0x132 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x772 (size before relaxing) + .debug_str 0x000000000003fa66 0x59a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc9d (size before relaxing) + .debug_str 0x0000000000040000 0x2aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xa4a (size before relaxing) + .debug_str 0x00000000000402aa 0x62f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x11a3 (size before relaxing) + .debug_str 0x00000000000408d9 0x49b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xd4d (size before relaxing) + .debug_str 0x0000000000040d74 0x26a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0xa77 (size before relaxing) + .debug_str 0x0000000000040fde 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + 0x6a8 (size before relaxing) + .debug_str 0x000000000004102b 0x29d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x9ed (size before relaxing) + .debug_str 0x00000000000412c8 0x3d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0xe4e (size before relaxing) + .debug_str 0x000000000004169a 0x373 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0xc24 (size before relaxing) + .debug_str 0x0000000000041a0d 0x387 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xf2e (size before relaxing) + .debug_str 0x0000000000041d94 0xc4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x14b2 (size before relaxing) + .debug_str 0x00000000000429e3 0x377 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x1865 (size before relaxing) + .debug_str 0x0000000000042d5a 0x21e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0xb90 (size before relaxing) + .debug_str 0x0000000000042f78 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x675 (size before relaxing) + .debug_str 0x0000000000043051 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x5cb (size before relaxing) + .debug_str 0x00000000000430aa 0x510 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x119f (size before relaxing) + .debug_str 0x00000000000435ba 0x5f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x7f1 (size before relaxing) + .debug_str 0x0000000000043619 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x784 (size before relaxing) + .debug_str 0x00000000000436ae 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x7ca (size before relaxing) + .debug_str 0x0000000000043759 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x7ca (size before relaxing) + .debug_str 0x0000000000043804 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x5b5 (size before relaxing) + .debug_str 0x0000000000043845 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x5ca (size before relaxing) + .debug_str 0x00000000000438ad 0x268 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x149b (size before relaxing) + .debug_str 0x0000000000043b15 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x15d1 (size before relaxing) + .debug_str 0x0000000000043bb3 0x17c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x1784 (size before relaxing) + .debug_str 0x0000000000043d2f 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x871 (size before relaxing) + .debug_str 0x0000000000043e89 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x8a4 (size before relaxing) + .debug_str 0x0000000000043f62 0xda esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8ba (size before relaxing) + .debug_str 0x000000000004403c 0x12b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x7f8 (size before relaxing) + .debug_str 0x0000000000044167 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8b2 (size before relaxing) + .debug_str 0x00000000000442dd 0x61a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x1747 (size before relaxing) + .debug_str 0x00000000000448f7 0x446 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x178e (size before relaxing) + .debug_str 0x0000000000044d3d 0x2a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xefd (size before relaxing) + .debug_str 0x0000000000044fe2 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x13ed (size before relaxing) + .debug_str 0x00000000000450ae 0x20f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xb29 (size before relaxing) + .debug_str 0x00000000000452bd 0xf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x7df (size before relaxing) + .debug_str 0x00000000000453b0 0x35e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1526 (size before relaxing) + .debug_str 0x000000000004570e 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x1100 (size before relaxing) + .debug_str 0x00000000000457e4 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x142b (size before relaxing) + .debug_str 0x00000000000458d6 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x73e (size before relaxing) + .debug_str 0x0000000000045998 0x1bb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x18f4 (size before relaxing) + .debug_str 0x0000000000045b53 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x676 (size before relaxing) + .debug_str 0x0000000000045bf0 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x135b (size before relaxing) + .debug_str 0x0000000000045c97 0x2bc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1e3b (size before relaxing) + .debug_str 0x0000000000045f53 0x686 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x1953 (size before relaxing) + .debug_str 0x00000000000465d9 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0xab3 (size before relaxing) + .debug_str 0x000000000004667e 0x18d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0xf24 (size before relaxing) + .debug_str 0x000000000004680b 0xdb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x84a (size before relaxing) + .debug_str 0x00000000000468e6 0x68c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x2629 (size before relaxing) + .debug_str 0x0000000000046f72 0x41 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + 0x84f (size before relaxing) + .debug_str 0x0000000000046fb3 0x43 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + 0x1dad (size before relaxing) + .debug_str 0x0000000000046ff6 0x40 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + 0x1f28 (size before relaxing) + .debug_str 0x0000000000047036 0x41 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) 0xf03 (size before relaxing) - .debug_str 0x0000000000050ec4 0x194 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) - 0xdc5 (size before relaxing) - .debug_str 0x0000000000051058 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) - 0x63f (size before relaxing) - .debug_str 0x0000000000051138 0x36 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) - 0xf33 (size before relaxing) - .debug_str 0x000000000005116e 0xfdf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_str 0x000000000005116e 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_str 0x0000000000047077 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x32b1 (size before relaxing) + .debug_str 0x00000000000470c8 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x2fc7 (size before relaxing) + .debug_str 0x000000000004710c 0xa3 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x3eec (size before relaxing) + .debug_str 0x00000000000471af 0x738 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x4a6a (size before relaxing) + .debug_str 0x00000000000478e7 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x649 (size before relaxing) + .debug_str 0x0000000000047956 0x1546 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x5056 (size before relaxing) + .debug_str 0x0000000000048e9c 0x37f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x3f63 (size before relaxing) + .debug_str 0x000000000004921b 0xf7e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x5160 (size before relaxing) + .debug_str 0x000000000004a199 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xceb (size before relaxing) + .debug_str 0x000000000004a285 0x101 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x768 (size before relaxing) + .debug_str 0x000000000004a386 0xe7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x75d (size before relaxing) + .debug_str 0x000000000004a46d 0xd7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x6ab (size before relaxing) + .debug_str 0x000000000004a544 0xa1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x54b6 (size before relaxing) + .debug_str 0x000000000004af62 0x1be esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x1055 (size before relaxing) + .debug_str 0x000000000004b120 0x73d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x108d (size before relaxing) + .debug_str 0x000000000004b85d 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x995 (size before relaxing) + .debug_str 0x000000000004b945 0x95 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1091 (size before relaxing) + .debug_str 0x000000000004b9da 0xd3 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x727 (size before relaxing) + .debug_str 0x000000000004baad 0x102 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x4376 (size before relaxing) + .debug_str 0x000000000004bbaf 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xc82 (size before relaxing) + .debug_str 0x000000000004bc25 0x1b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xf37 (size before relaxing) + .debug_str 0x000000000004bdd5 0x137 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4056 (size before relaxing) + .debug_str 0x000000000004bf0c 0x986 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + 0xabe (size before relaxing) + .debug_str 0x000000000004c892 0x161 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + 0x252 (size before relaxing) + .debug_str 0x000000000004c9f3 0xbd7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x1768 (size before relaxing) + .debug_str 0x000000000004d5ca 0x10c9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2357 (size before relaxing) + .debug_str 0x000000000004e693 0x915 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1b4c (size before relaxing) + .debug_str 0x000000000004efa8 0xb6 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x6cd (size before relaxing) + .debug_str 0x000000000004f05e 0x6d3 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1bde (size before relaxing) + .debug_str 0x000000000004f731 0x758 esp-idf/driver/libdriver.a(spi_master.c.obj) + 0x52d6 (size before relaxing) + .debug_str 0x000000000004fe89 0xc3a esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x1698 (size before relaxing) + .debug_str 0x0000000000050ac3 0x5f5 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x42b4 (size before relaxing) + .debug_str 0x00000000000510b8 0x328 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x4175 (size before relaxing) + .debug_str 0x00000000000513e0 0xbb esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x3e4b (size before relaxing) + .debug_str 0x000000000005149b 0x54 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x179d (size before relaxing) + .debug_str 0x00000000000514ef 0x11a esp-idf/soc/libsoc.a(spi_hal.c.obj) + 0x2443 (size before relaxing) + .debug_str 0x0000000000051609 0x2ec esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + 0x255e (size before relaxing) + .debug_str 0x00000000000518f5 0x4f esp-idf/soc/libsoc.a(lldesc.c.obj) + 0x1cc (size before relaxing) + .debug_str 0x0000000000051944 0x1f34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4917 (size before relaxing) + .debug_str 0x0000000000053878 0x153 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x1ae6 (size before relaxing) + .debug_str 0x00000000000539cb 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x13d1 (size before relaxing) + .debug_str 0x0000000000053b6f 0x61e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x326a (size before relaxing) + .debug_str 0x000000000005418d 0x575 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x3618 (size before relaxing) + .debug_str 0x0000000000054702 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0xa0e (size before relaxing) + .debug_str 0x000000000005480e 0x1d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0xc19 (size before relaxing) + .debug_str 0x00000000000549e7 0x252 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + 0xb67 (size before relaxing) + .debug_str 0x0000000000054c39 0x155 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0xb67 (size before relaxing) + .debug_str 0x0000000000054d8e 0xdd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x642 (size before relaxing) + .debug_str 0x0000000000054e6b 0x152 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x69a (size before relaxing) + .debug_str 0x0000000000054fbd 0x11b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x6c3 (size before relaxing) + .debug_str 0x00000000000550d8 0xe1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x661 (size before relaxing) + .debug_str 0x00000000000551b9 0x69e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x831 (size before relaxing) + .debug_str 0x0000000000055857 0x2fa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0xe2c (size before relaxing) + .debug_str 0x0000000000055b51 0x8ae /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x1613 (size before relaxing) + .debug_str 0x00000000000563ff 0xdd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x637 (size before relaxing) + .debug_str 0x00000000000564dc 0x2c1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x11f0 (size before relaxing) + .debug_str 0x000000000005679d 0x3e0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x85f (size before relaxing) + .debug_str 0x0000000000056b7d 0x2b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x4cc (size before relaxing) + .debug_str 0x0000000000056e36 0xed /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + 0xc91 (size before relaxing) + .debug_str 0x0000000000056f23 0xed /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + 0x755 (size before relaxing) + .debug_str 0x0000000000057010 0xc5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + 0xd3 (size before relaxing) + .debug_str 0x00000000000570d5 0x1bd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + 0x758 (size before relaxing) + .debug_str 0x0000000000057292 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + 0x758 (size before relaxing) + .debug_str 0x000000000005729b 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + 0x759 (size before relaxing) + .debug_str 0x00000000000572a5 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + 0x759 (size before relaxing) + .debug_str 0x00000000000572af 0x433 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + 0xdf6 (size before relaxing) + .debug_str 0x00000000000576e2 0x434 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + 0xc81 (size before relaxing) + .debug_str 0x0000000000057b16 0x5a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + 0xd2 (size before relaxing) + .debug_str 0x0000000000057b70 0x4f /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + 0x82 (size before relaxing) + .debug_str 0x0000000000057bbf 0x20a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) 0x777 (size before relaxing) - .debug_str 0x00000000000511d1 0x67 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_str 0x0000000000057dc9 0xda /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x5fe (size before relaxing) + .debug_str 0x0000000000057ea3 0xc3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0x5d0 (size before relaxing) + .debug_str 0x0000000000057f66 0x7d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + 0x789 (size before relaxing) + .debug_str 0x0000000000057fe3 0x69 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + 0x79a (size before relaxing) + .debug_str 0x000000000005804c 0x6b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + 0x7aa (size before relaxing) + .debug_str 0x00000000000580b7 0x57 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + 0x7a0 (size before relaxing) + .debug_str 0x000000000005810e 0x72 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + 0x61b (size before relaxing) + .debug_str 0x0000000000058180 0xb3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x80a (size before relaxing) + .debug_str 0x0000000000058233 0x6f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + 0x617 (size before relaxing) + .debug_str 0x00000000000582a2 0x67 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + 0x79d (size before relaxing) + .debug_str 0x0000000000058309 0x97 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + 0x7e7 (size before relaxing) + .debug_str 0x00000000000583a0 0x5f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + 0x7ba (size before relaxing) + .debug_str 0x00000000000583ff 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x74b (size before relaxing) + .debug_str 0x000000000005845f 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x953 (size before relaxing) + .debug_str 0x00000000000584ef 0x69 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + 0x73d (size before relaxing) + .debug_str 0x0000000000058558 0x5e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + 0x7a3 (size before relaxing) + .debug_str 0x00000000000585b6 0x61 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + 0x7e7 (size before relaxing) + .debug_str 0x0000000000058617 0x1c1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + 0x7d6 (size before relaxing) + .debug_str 0x00000000000587d8 0x2b1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x9b8 (size before relaxing) + .debug_str 0x0000000000058a89 0x7f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + 0x8a3 (size before relaxing) + .debug_str 0x0000000000058b08 0x73 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x961 (size before relaxing) + .debug_str 0x0000000000058b7b 0xc7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + 0x907 (size before relaxing) + .debug_str 0x0000000000058c42 0x61 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x76e (size before relaxing) + .debug_str 0x0000000000058ca3 0x69 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + 0x7a6 (size before relaxing) + .debug_str 0x0000000000058d0c 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x733 (size before relaxing) + .debug_str 0x0000000000058d6f 0x5d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x7e4 (size before relaxing) + .debug_str 0x0000000000058dcc 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x5f4 (size before relaxing) + .debug_str 0x0000000000058eac 0x5d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + 0x759 (size before relaxing) + .debug_str 0x0000000000058f09 0x67 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + 0x7d0 (size before relaxing) + .debug_str 0x0000000000058f70 0x65 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x795 (size before relaxing) + .debug_str 0x0000000000058fd5 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + 0x76f (size before relaxing) + .debug_str 0x0000000000059038 0x6f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + 0x774 (size before relaxing) + .debug_str 0x00000000000590a7 0x2fa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0xc56 (size before relaxing) + .debug_str 0x00000000000593a1 0xd7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtok.o) + 0x5e3 (size before relaxing) + .debug_str 0x0000000000059478 0x82 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x993 (size before relaxing) + .debug_str 0x00000000000594fa 0x72 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x998 (size before relaxing) + .debug_str 0x000000000005956c 0x2e8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0xf03 (size before relaxing) + .debug_str 0x0000000000059854 0x194 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0xdc5 (size before relaxing) + .debug_str 0x00000000000599e8 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + 0x63f (size before relaxing) + .debug_str 0x0000000000059ac8 0x36 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0xf33 (size before relaxing) + .debug_str 0x0000000000059afe 0xfdf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_str 0x0000000000059afe 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x777 (size before relaxing) + .debug_str 0x0000000000059b61 0x67 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) 0x798 (size before relaxing) - .debug_str 0x0000000000051238 0xf4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_str 0x0000000000059bc8 0xf4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) 0xab7 (size before relaxing) - .debug_str 0x000000000005132c 0x5b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_str 0x0000000000059cbc 0x5b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) 0x5ec (size before relaxing) - .debug_str 0x0000000000051387 0xf0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_str 0x0000000000059d17 0xf0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) 0xb8f (size before relaxing) - .debug_str 0x0000000000051477 0x66 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_str 0x0000000000059e07 0x66 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) 0xa9a (size before relaxing) - .debug_str 0x00000000000514dd 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_str 0x0000000000059e6d 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) 0x5e5 (size before relaxing) - .debug_str 0x0000000000051549 0xc6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_str 0x0000000000059ed9 0xc6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) 0x8e9 (size before relaxing) - .debug_str 0x000000000005160f 0x6b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_str 0x0000000000059f9f 0x6b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) 0x950 (size before relaxing) - .debug_str 0x000000000005167a 0x59 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_str 0x000000000005a00a 0x59 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) 0x955 (size before relaxing) - .debug_str 0x00000000000516d3 0x7f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_str 0x000000000005a063 0x7f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) 0xa60 (size before relaxing) - .debug_str 0x0000000000051752 0xf4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_str 0x000000000005a0e2 0xf4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) 0x666 (size before relaxing) - .debug_str 0x0000000000051846 0xc6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_str 0x000000000005a1d6 0xc6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) 0x61d (size before relaxing) - .debug_str 0x000000000005190c 0x15 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_str 0x000000000005a29c 0x15 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) 0xe7a (size before relaxing) - .debug_str 0x0000000000051921 0x19 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_str 0x000000000005a2b1 0x19 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) 0xd13 (size before relaxing) Cross Reference Table @@ -62339,6 +67547,7 @@ GPIO esp-idf/driver/libdriver.a(spi GPIO_HOLD_MASK esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) esp-idf/driver/libdriver.a(gpio.c.obj) GPIO_PIN_MUX_REG esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) esp-idf/driver/libdriver.a(spi_common.c.obj) @@ -62906,11 +68115,13 @@ __ascii_wctomb /home/mithras/.espressif/tools /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) __assert /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) __assert_func /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) esp-idf/lwip/liblwip.a(ethernetif.c.obj) esp-idf/lwip/liblwip.a(wlanif.c.obj) esp-idf/lwip/liblwip.a(netdb.c.obj) esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) @@ -62923,6 +68134,7 @@ __assert_func /home/mithras/.espressif/tools esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) @@ -63011,7 +68223,10 @@ __assert_func /home/mithras/.espressif/tools esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) __b2d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__bswapdi2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapdi2.o) + esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) __bswapsi2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) __chclass /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) @@ -63063,6 +68278,7 @@ __divdf3 /home/mithras/.espressif/tools /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/soc/libsoc.a(spi_hal.c.obj) esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) __divdi3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) @@ -63118,6 +68334,7 @@ __floatsidf /home/mithras/.espressif/tools /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/soc/libsoc.a(spi_hal.c.obj) esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) __floatundidf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) __floatundisf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) @@ -63674,6 +68891,7 @@ _esp_error_check_failed esp-idf/esp_common/libesp_comm esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) esp-idf/https_server/libhttps_server.a(https_server.c.obj) esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) esp-idf/ca/libca.a(gen_key.c.obj) @@ -63739,6 +68957,7 @@ _frxt_int_enter esp-idf/freertos/libfreertos.a _frxt_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) _frxt_setup_switch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) esp-idf/newlib/libnewlib.a(locks.c.obj) @@ -63927,6 +69146,29 @@ _lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(loc esp-idf/newlib/libnewlib.a(syscall_table.c.obj) _lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) +_lv_anim_ll esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) +_lv_disp_ll esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +_lv_draw_buf esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) +_lv_drv_ll esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +_lv_file_ll esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) +_lv_group_ll esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +_lv_img_cache_array esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) +_lv_img_defoder_ll esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +_lv_indev_ll esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +_lv_task_act esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) +_lv_task_ll esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) _malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) @@ -65210,6 +70452,20 @@ disable_wifi_agc /home/mithras/esp/esp-idf/comp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) discnx_reason_id2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +disp_driver_flush esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) +disp_driver_init esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) + esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) +disp_spi_add_device esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) +disp_spi_add_device_config esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) +disp_spi_init esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) +disp_spi_is_busy esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) +disp_spi_send_colors esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) +disp_spi_send_data esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) div /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) dns_clear_servers esp-idf/lwip/liblwip.a(dns.c.obj) @@ -65681,6 +70937,7 @@ esp_internal_aes_decrypt esp-idf/mbedtls/mbedtls/librar esp_internal_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) esp_intr_alloc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) esp-idf/driver/libdriver.a(rtc_module.c.obj) esp-idf/driver/libdriver.a(gpio.c.obj) @@ -65689,10 +70946,13 @@ esp_intr_alloc esp-idf/esp32/libesp32.a(intr_ esp-idf/esp32/libesp32.a(crosscore_int.c.obj) esp_intr_alloc_intrstatus esp-idf/esp32/libesp32.a(intr_alloc.c.obj) esp_intr_disable esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) esp_intr_enable esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) esp_intr_free esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) esp-idf/driver/libdriver.a(gpio.c.obj) esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) @@ -65731,9 +70991,11 @@ esp_log_set_vprintf esp-idf/log/liblog.a(log.c.obj esp_log_system_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) esp_log_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/soc/libsoc.a(spi_hal.c.obj) esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) @@ -65745,6 +71007,7 @@ esp_log_timestamp esp-idf/log/liblog.a(log_freer esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) @@ -65805,9 +71068,11 @@ esp_log_timestamp esp-idf/log/liblog.a(log_freer esp-idf/soc/libsoc.a(rtc_clk.c.obj) esp_log_write esp-idf/log/liblog.a(log.c.obj) esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/soc/libsoc.a(spi_hal.c.obj) esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) @@ -65817,6 +71082,7 @@ esp_log_write esp-idf/log/liblog.a(log.c.obj esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) @@ -66788,6 +72054,7 @@ esp_task_wdt_status esp-idf/esp32/libesp32.a(task_ esp_timer_create esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) esp_timer_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) esp_timer_delete esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) @@ -66831,6 +72098,7 @@ esp_timer_start_once esp-idf/esp_timer/libesp_timer esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) esp_timer_start_periodic esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) @@ -67531,6 +72799,7 @@ free esp-idf/newlib/libnewlib.a(hea esp-idf/lwip/liblwip.a(ethernetif.c.obj) esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) @@ -68145,11 +73414,13 @@ gpio_pullup_en esp-idf/driver/libdriver.a(gpi gpio_reset_pin esp-idf/driver/libdriver.a(gpio.c.obj) esp-idf/driver/libdriver.a(spi_common.c.obj) gpio_set_direction esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) esp-idf/driver/libdriver.a(spi_common.c.obj) gpio_set_drive_capability esp-idf/driver/libdriver.a(gpio.c.obj) gpio_set_intr_type esp-idf/driver/libdriver.a(gpio.c.obj) gpio_set_level esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) gpio_set_pull_mode esp-idf/driver/libdriver.a(gpio.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) @@ -68157,6 +73428,8 @@ gpio_uninstall_isr_service esp-idf/driver/libdriver.a(gpi gpio_wakeup_disable esp-idf/driver/libdriver.a(gpio.c.obj) gpio_wakeup_enable esp-idf/driver/libdriver.a(gpio.c.obj) esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +guiTask esp-idf/display/libdisplay.a(display.c.obj) + esp-idf/main/libmain.a(main.c.obj) h_errno esp-idf/lwip/liblwip.a(netdb.c.obj) hall_sens_amp_read /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) hall_sens_amp_read_full /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) @@ -68197,6 +73470,7 @@ heap_caps_get_total_size esp-idf/heap/libheap.a(heap_ca heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) esp-idf/esp32/libesp32.a(cpu_start.c.obj) heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/heap/libheap.a(heap_caps_init.c.obj) esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) @@ -69012,6 +74286,11 @@ igmp_start esp-idf/lwip/liblwip.a(igmp.c. igmp_stop esp-idf/lwip/liblwip.a(igmp.c.obj) esp-idf/lwip/liblwip.a(netif.c.obj) igmp_tmr esp-idf/lwip/liblwip.a(igmp.c.obj) +ili9341_enable_backlight esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) +ili9341_flush esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) +ili9341_init esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_driver.c.obj) in_blacklist_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) inc_byte_array esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) @@ -69248,6 +74527,8 @@ linenoiseSetHintsCallback esp-idf/console/libconsole.a(l esp-idf/main/libmain.a(main.c.obj) linenoiseSetMultiLine esp-idf/console/libconsole.a(linenoise.c.obj) esp-idf/main/libmain.a(main.c.obj) +lldesc_setup_link esp-idf/soc/libsoc.a(lldesc.c.obj) + esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) lmacAdjustTimestamp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) lmacConfMib /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) @@ -69305,6 +74586,1102 @@ longjmp /home/mithras/.espressif/tools esp-idf/console/libconsole.a(argtable3.c.obj) lr_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +lv_anim_core_init esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_anim_count_running esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) +lv_anim_create esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_anim_del esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_anim_init esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_anim_path_bounce esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) +lv_anim_path_ease_in esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) +lv_anim_path_ease_in_out esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) +lv_anim_path_ease_out esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) +lv_anim_path_linear esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_anim_path_overshoot esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) +lv_anim_path_step esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) +lv_anim_speed_to_time esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_area_get_size esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_area_increment esp-idf/lvgl/liblvgl.a(lv_area.c.obj) +lv_area_intersect esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_area_is_in esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_area_is_on esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_area_is_point_on esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_area_join esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_area_set esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) +lv_area_set_height esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_area_set_pos esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_area_set_width esp-idf/lvgl/liblvgl.a(lv_area.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_async_call esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_atan2 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) +lv_bezier3 esp-idf/lvgl/liblvgl.a(lv_math.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) +lv_btn_create esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_btn_get_ink_in_time esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_get_ink_out_time esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_get_ink_wait_time esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_get_state esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_get_style esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_get_toggle esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_set_ink_in_time esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_set_ink_out_time esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_set_ink_wait_time esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_set_state esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_set_style esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_btn_set_toggle esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_btn_toggle esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_chart_add_series esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_chart_clear_serie esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_create esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_chart_get_margin esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_get_point_cnt esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_get_series_darking esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_get_series_opa esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_get_series_width esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_get_type esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_init_points esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_refresh esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_div_line_count esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_margin esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_next esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_chart_set_point_count esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_chart_set_points esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_range esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_chart_set_secondary_y_tick_length esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_secondary_y_tick_texts esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_series_darking esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_series_opa esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_series_width esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_chart_set_type esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_chart_set_update_mode esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_x_tick_length esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_x_tick_texts esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_y_tick_length esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_chart_set_y_tick_texts esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_circ_cont esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) +lv_circ_init esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) +lv_circ_next esp-idf/lvgl/liblvgl.a(lv_circ.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) +lv_cont_create esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_cont_get_fit_bottom esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) +lv_cont_get_fit_left esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_cont_get_fit_right esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_cont_get_fit_top esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_cont_get_layout esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_cont_set_fit4 esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_cont_set_layout esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_deinit esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_disp_assign_screen esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_disp_buf_init esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) +lv_disp_drv_init esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) +lv_disp_drv_register esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) +lv_disp_drv_update esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) +lv_disp_flush_ready esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) +lv_disp_get_antialiasing esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) +lv_disp_get_buf esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_disp_get_default esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_disp_get_hor_res esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_disp_get_inactive_time esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_disp_get_inv_buf_size esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_disp_get_layer_sys esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_disp_get_layer_top esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_disp_get_next esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_disp_get_refr_task esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_disp_get_scr_act esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_disp_get_ver_res esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_disp_is_double_buf esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_disp_is_true_double_buf esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_disp_load_scr esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_disp_pop_from_inv_buf esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_disp_refr_task esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) +lv_disp_remove esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) +lv_disp_set_default esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_disp_trig_activity esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_draw_aa_get_opa esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) +lv_draw_aa_hor_seg esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) +lv_draw_aa_ver_seg esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) +lv_draw_fill esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) +lv_draw_free_buf esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_draw_get_buf esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) +lv_draw_img esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) +lv_draw_label esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_draw_letter esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) +lv_draw_line esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_draw_map esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_draw_polygon esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) +lv_draw_px esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) +lv_draw_rect esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_draw_triangle esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_event_get_data esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_event_send esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_event_send_func esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_font_get_bitmap_fmt_txt esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) +lv_font_get_glyph_bitmap esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) +lv_font_get_glyph_dsc esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) +lv_font_get_glyph_dsc_fmt_txt esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) +lv_font_get_glyph_width esp-idf/lvgl/liblvgl.a(lv_font.c.obj) + esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_font_roboto_16 esp-idf/lvgl/liblvgl.a(lv_font_roboto_16.c.obj) + esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_fs_close esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_fs_dir_close esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_dir_open esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_dir_read esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_drv_init esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_drv_register esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_free_space esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_get_drv esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_get_ext esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_fs_get_last esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_get_letters esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_init esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_fs_is_ready esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_open esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_fs_read esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_fs_remove esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_rename esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_seek esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_fs_size esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_tell esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_trunc esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_up esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_fs_write esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) +lv_gc_clear_roots esp-idf/lvgl/liblvgl.a(lv_gc.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_group_add_obj esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_group_create esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_del esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_focus_freeze esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_focus_next esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_group_focus_obj esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_group_focus_prev esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_group_get_click_focus esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_group_get_editing esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_group_get_focus_cb esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_get_focused esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_group_get_style_mod_cb esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_get_style_mod_edit_cb esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_get_wrap esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_init esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_group_mod_style esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_group_remove_all_objs esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_remove_obj esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_group_report_style_mod esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) +lv_group_send_data esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_group_set_click_focus esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_set_editing esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_group_set_focus_cb esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_set_refocus_policy esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_set_style_mod_cb esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_set_style_mod_edit_cb esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_group_set_wrap esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_img_buf_alloc esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_buf_free esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_buf_get_img_size esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_buf_get_px_alpha esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_buf_get_px_color esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_buf_set_palette esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_buf_set_px_alpha esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_buf_set_px_color esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_cache_invalidate_src esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) +lv_img_cache_open esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_cache_set_size esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_img_color_format_get_px_size esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_color_format_has_alpha esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_color_format_is_chroma_keyed esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_create esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_img_decoder_built_in_close esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_decoder_built_in_info esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_decoder_built_in_open esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_decoder_built_in_read_line esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_decoder_close esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) +lv_img_decoder_create esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_decoder_delete esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_decoder_get_info esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) +lv_img_decoder_init esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_img_decoder_open esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) +lv_img_decoder_read_line esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) +lv_img_decoder_set_close_cb esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_decoder_set_info_cb esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_decoder_set_open_cb esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_decoder_set_read_line_cb esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) +lv_img_get_auto_size esp-idf/lvgl/liblvgl.a(lv_img.c.obj) +lv_img_get_file_name esp-idf/lvgl/liblvgl.a(lv_img.c.obj) +lv_img_get_offset_x esp-idf/lvgl/liblvgl.a(lv_img.c.obj) +lv_img_get_offset_y esp-idf/lvgl/liblvgl.a(lv_img.c.obj) +lv_img_get_src esp-idf/lvgl/liblvgl.a(lv_img.c.obj) +lv_img_set_auto_size esp-idf/lvgl/liblvgl.a(lv_img.c.obj) +lv_img_set_offset_x esp-idf/lvgl/liblvgl.a(lv_img.c.obj) +lv_img_set_offset_y esp-idf/lvgl/liblvgl.a(lv_img.c.obj) +lv_img_set_src esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_img_src_get_type esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) +lv_indev_drv_init esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) +lv_indev_drv_register esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) +lv_indev_drv_update esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) +lv_indev_enable esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_indev_get_act esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_indev_get_key esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_indev_get_next esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_indev_get_obj_act esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_indev_get_point esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_indev_get_read_task esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_indev_get_type esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_indev_get_vect esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_indev_init esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_indev_is_dragging esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_indev_read esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_indev_read_task esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) +lv_indev_reset esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_indev_reset_long_press esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_indev_set_button_points esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_indev_set_cursor esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_indev_set_group esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_indev_wait_release esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_init esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) +lv_inv_area esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_label_create esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_label_cut_text esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_get_align esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_get_anim_speed esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_get_body_draw esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_get_letter_on esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_get_letter_pos esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_get_long_mode esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_get_recolor esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_get_text esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_label_get_text_sel_end esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_get_text_sel_start esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_ins_text esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_is_char_under_pos esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_set_align esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_set_anim_speed esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_set_array_text esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_set_body_draw esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_set_long_mode esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_set_recolor esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_label_set_static_text esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_set_text esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_label_set_text_fmt esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_set_text_sel_end esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_label_set_text_sel_start esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_ll_chg_list esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_ll_clear esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_ll_get_head esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_ll_get_len esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) +lv_ll_get_next esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_ll_get_prev esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_ll_get_tail esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_ll_init esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_ll_ins_head esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_ll_ins_prev esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) +lv_ll_ins_tail esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) +lv_ll_is_empty esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_ll_move_before esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) +lv_ll_rem esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_log_add esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_log_register_print_cb esp-idf/lvgl/liblvgl.a(lv_log.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_mem_alloc esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_mem_defrag esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) +lv_mem_deinit esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_mem_free esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_ll.c.obj) + esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_mem_get_size esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_mem_init esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_mem_monitor esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_mem_realloc esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_align esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_obj_align_origo esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_allocate_ext_attr esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_clean esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_obj_clear_protect esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) +lv_obj_count_children esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_count_children_recursive esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_create esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) +lv_obj_del esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_obj_del_async esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_auto_realign esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) +lv_obj_get_base_dir esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_get_child esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_obj_get_child_back esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_obj_get_click esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_obj_get_coords esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_obj_get_design_cb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_get_disp esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_obj_get_drag esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_obj_get_drag_dir esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_obj_get_drag_parent esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_obj_get_drag_throw esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_obj_get_event_cb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_ext_attr esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_get_ext_click_pad_bottom esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_ext_click_pad_left esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_ext_click_pad_right esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_ext_click_pad_top esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_ext_draw_pad esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_group esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_obj_get_height esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_get_height_fit esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_obj_get_hidden esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_obj_get_inner_coords esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_opa_scale esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_obj_get_opa_scale_enable esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_parent esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_obj_get_parent_event esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_protect esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_screen esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_signal_cb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_get_style esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_obj_get_top esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_type esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_get_width esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_get_width_fit esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_obj_get_x esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_obj_get_y esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) +lv_obj_handle_get_type_signal esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_invalidate esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_obj_invalidate_area esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_is_focused esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_obj_is_protected esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_obj_move_background esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_move_foreground esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) +lv_obj_realign esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) +lv_obj_refresh_ext_draw_pad esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_refresh_style esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_report_style_mod esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_obj_set_auto_realign esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_set_base_dir esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_set_click esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_obj_set_design_cb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_set_drag esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_obj_set_drag_dir esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_set_drag_parent esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_obj_set_drag_throw esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_obj_set_event_cb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_obj_set_ext_click_area esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_set_height esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_obj_set_hidden esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_set_opa_scale esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_set_opa_scale_enable esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_set_parent esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_obj_set_parent_event esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_set_pos esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_obj_set_protect esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_obj_set_signal_cb esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_obj_set_size esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_obj_set_style esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) +lv_obj_set_top esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_set_width esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_obj_set_x esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_obj_set_y esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_page_clean esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_create esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_page_focus esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_page_get_anim_time esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_page_get_edge_flash esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_get_fit_height esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_get_fit_width esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_get_sb_mode esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_page_get_scrl esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_page_get_scroll_propagation esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_get_style esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_page_glue_obj esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_on_edge esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_scroll_hor esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_scroll_ver esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_set_anim_time esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_page_set_edge_flash esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_set_sb_mode esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_page_set_scroll_propagation esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_page_set_style esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_page_start_edge_flash esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_refr_get_disp_refreshing esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_line.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) +lv_refr_init esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_refr_now esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_refr_set_disp_refreshing esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) +lv_signal_send esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_sqrt esp-idf/lvgl/liblvgl.a(lv_math.c.obj) +lv_style_anim_init esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_style_anim_set_styles esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_style_btn_ina esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_style_btn_pr esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_style_btn_rel esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_style_btn_tgl_pr esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_style_btn_tgl_rel esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) +lv_style_copy esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_style_init esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_style_mix esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_style_plain esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_style_plain_color esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_style_pretty esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_style_pretty_color esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) +lv_style_scr esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_style_transp esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) +lv_style_transp_fit esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_style_transp_tight esp-idf/lvgl/liblvgl.a(lv_style.c.obj) +lv_task_core_init esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_task_create esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_async.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_task_create_basic esp-idf/lvgl/liblvgl.a(lv_task.c.obj) +lv_task_del esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_task_enable esp-idf/lvgl/liblvgl.a(lv_task.c.obj) +lv_task_get_idle esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_task_handler esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) +lv_task_once esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_async.c.obj) +lv_task_ready esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) +lv_task_reset esp-idf/lvgl/liblvgl.a(lv_task.c.obj) +lv_task_set_cb esp-idf/lvgl/liblvgl.a(lv_task.c.obj) +lv_task_set_period esp-idf/lvgl/liblvgl.a(lv_task.c.obj) +lv_task_set_prio esp-idf/lvgl/liblvgl.a(lv_task.c.obj) +lv_theme_get_current esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_group.c.obj) + esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) +lv_theme_set_current esp-idf/lvgl/liblvgl.a(lv_theme.c.obj) +lv_tick_elaps esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_tick_get esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + esp-idf/lvgl/liblvgl.a(lv_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_task.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_disp.c.obj) +lv_tick_inc esp-idf/lvgl/liblvgl.a(lv_hal_tick.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) +lv_trigo_sin esp-idf/lvgl/liblvgl.a(lv_math.c.obj) +lv_txt_cut esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_encoded_conv_wc esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) +lv_txt_encoded_get_byte_id esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_encoded_get_char_id esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_encoded_next esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_encoded_prev esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_encoded_size esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_get_encoded_length esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_get_next_line esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_get_size esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) +lv_txt_get_width esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_ins esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_is_cmd esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) +lv_txt_unicode_to_encoded esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) +lv_utils_bsearch esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) + esp-idf/lvgl/liblvgl.a(lv_font_fmt_txt.c.obj) +lv_utils_num_to_str esp-idf/lvgl/liblvgl.a(lv_utils.c.obj) +lv_win_add_btn esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_win_clean esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_close_event_cb esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_create esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_win_focus esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_get_anim_time esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_get_btn_size esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_get_content esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_get_from_btn esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_get_layout esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_get_sb_mode esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_get_style esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_get_title esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_get_width esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_set_anim_time esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_set_btn_size esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_set_content_size esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_set_drag esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_set_layout esp-idf/lvgl/liblvgl.a(lv_win.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) +lv_win_set_sb_mode esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_set_style esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lv_win_set_title esp-idf/lvgl/liblvgl.a(lv_win.c.obj) +lvgl_driver_init esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a(lvgl_driver.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) lwip_accept esp-idf/lwip/liblwip.a(sockets.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) @@ -69475,6 +75852,7 @@ malloc esp-idf/newlib/libnewlib.a(hea /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) @@ -71352,8 +77730,10 @@ memcpy /home/mithras/.espressif/tools esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) esp-idf/lwip/liblwip.a(ethip6.c.obj) esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) @@ -71428,6 +77808,26 @@ memcpy /home/mithras/.espressif/tools esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/lvgl/liblvgl.a(lv_page.c.obj) + esp-idf/lvgl/liblvgl.a(lv_cont.c.obj) + esp-idf/lvgl/liblvgl.a(lv_btn.c.obj) + esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) + esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_basic.c.obj) + esp-idf/lvgl/liblvgl.a(lv_style.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) @@ -71596,9 +77996,11 @@ memset /home/mithras/.espressif/tools esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/soc/libsoc.a(spi_hal.c.obj) esp-idf/lwip/liblwip.a(netdb.c.obj) esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) @@ -71659,6 +78061,18 @@ memset /home/mithras/.espressif/tools esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_mem.c.obj) + esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_anim.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_indev.c.obj) + esp-idf/lvgl/liblvgl.a(lv_hal_disp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) + esp-idf/lvgl/liblvgl.a(lv_draw_rect.c.obj) + esp-idf/lvgl/liblvgl.a(lv_refr.c.obj) + esp-idf/lvgl/liblvgl.a(lv_obj.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) @@ -72968,6 +79382,7 @@ printf /home/mithras/.espressif/tools esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/lvgl/liblvgl.a(lv_log.c.obj) esp-idf/console/libconsole.a(argtable3.c.obj) esp-idf/console/libconsole.a(commands.c.obj) esp-idf/heap/libheap.a(heap_caps.c.obj) @@ -73757,6 +80172,7 @@ snprintf /home/mithras/.espressif/tools esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) @@ -73786,8 +80202,24 @@ soc_memory_types esp-idf/soc/libsoc.a(soc_memor esp-idf/heap/libheap.a(heap_caps_init.c.obj) soc_reserved_memory_region_end esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) soc_reserved_memory_region_start esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) +spi_bus_add_device esp-idf/driver/libdriver.a(spi_master.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) spi_bus_add_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_free esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_bus_initialize esp-idf/driver/libdriver.a(spi_master.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) +spi_bus_remove_device esp-idf/driver/libdriver.a(spi_master.c.obj) spi_bus_remove_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_cal_clock esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_device_acquire_bus esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_device_get_trans_result esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_device_polling_end esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_device_polling_start esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_device_polling_transmit esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_device_queue_trans esp-idf/driver/libdriver.a(spi_master.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(disp_spi.c.obj) +spi_device_release_bus esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_device_transmit esp-idf/driver/libdriver.a(spi_master.c.obj) spi_flash_cache2phys esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) spi_flash_cache_enabled esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) @@ -73960,26 +80392,65 @@ spi_flash_write esp-idf/spi_flash/libspi_flash spi_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +spi_get_actual_clock esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_get_freq_limit esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_get_timing esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_cal_timing esp-idf/soc/libsoc.a(spi_hal.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_deinit esp-idf/soc/libsoc.a(spi_hal.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_fetch_result esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_get_clock_conf esp-idf/soc/libsoc.a(spi_hal.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_get_freq_limit esp-idf/soc/libsoc.a(spi_hal.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_init esp-idf/soc/libsoc.a(spi_hal.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_master_cal_clock esp-idf/soc/libsoc.a(spi_hal.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_prepare_data esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_setup_device esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_setup_trans esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_user_start esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) +spi_hal_usr_is_done esp-idf/soc/libsoc.a(spi_hal_iram.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spi_periph_signal esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + esp-idf/soc/libsoc.a(spi_hal.c.obj) esp-idf/driver/libdriver.a(spi_common.c.obj) esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) spicommon_bus_free_io_cfg esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_bus_initialize_io esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_bus_using_iomux esp-idf/driver/libdriver.a(spi_common.c.obj) esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) spicommon_cs_free_io esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_cs_initialize esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_dma_chan_claim esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_dma_chan_free esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_dma_chan_in_use esp-idf/driver/libdriver.a(spi_common.c.obj) spicommon_dmaworkaround_idle esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_dmaworkaround_req_reset esp-idf/driver/libdriver.a(spi_common.c.obj) spicommon_dmaworkaround_reset_in_progress esp-idf/driver/libdriver.a(spi_common.c.obj) spicommon_dmaworkaround_transfer_active esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_irqdma_source_for_host esp-idf/driver/libdriver.a(spi_common.c.obj) spicommon_irqsource_for_host esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_periph_claim esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_periph_free esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) spicommon_periph_in_use esp-idf/driver/libdriver.a(spi_common.c.obj) spiffs_api_check esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) @@ -74153,6 +80624,8 @@ strcmp /home/mithras/.espressif/tools esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_cache.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) @@ -74172,6 +80645,9 @@ strcpy /home/mithras/.espressif/tools /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) esp-idf/ca/libca.a(gen_key.c.obj) esp-idf/ca/libca.a(ca.c.obj) @@ -74246,6 +80722,11 @@ strlen /home/mithras/.espressif/tools esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img.c.obj) + esp-idf/lvgl/liblvgl.a(lv_txt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) + esp-idf/lvgl/liblvgl.a(lv_fs.c.obj) + esp-idf/lvgl/liblvgl.a(lv_img_decoder.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) @@ -74305,6 +80786,7 @@ strncpy /home/mithras/.espressif/tools /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/lvgl/liblvgl.a(lv_chart.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) esp-idf/console/libconsole.a(linenoise.c.obj) @@ -74453,6 +80935,8 @@ sys_untimeout esp-idf/lwip/liblwip.a(timeout esp-idf/lwip/liblwip.a(igmp.c.obj) syscall_table_ptr_app esp-idf/newlib/libnewlib.a(syscall_table.c.obj) syscall_table_ptr_pro esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +sysmon_create esp-idf/lv_examples/liblv_examples.a(sysmon.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) system esp-idf/newlib/libnewlib.a(syscalls.c.obj) system_get_current_time esp-idf/newlib/libnewlib.a(time.c.obj) system_get_rtc_time esp-idf/newlib/libnewlib.a(time.c.obj) @@ -74793,6 +81277,8 @@ trex_getsubexpcount esp-idf/console/libconsole.a(a trex_match esp-idf/console/libconsole.a(argtable3.c.obj) trex_search esp-idf/console/libconsole.a(argtable3.c.obj) trex_searchrange esp-idf/console/libconsole.a(argtable3.c.obj) +tri_draw_flat esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) +tri_draw_tall esp-idf/lvgl/liblvgl.a(lv_draw_triangle.c.obj) truncate esp-idf/vfs/libvfs.a(vfs.c.obj) tsens_read_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) tx_cap_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) @@ -75029,6 +81515,7 @@ uxListRemove esp-idf/freertos/libfreertos.a esp-idf/freertos/libfreertos.a(tasks.c.obj) uxQueueGetQueueNumber esp-idf/freertos/libfreertos.a(queue.c.obj) uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) esp-idf/lwip/liblwip.a(sys_arch.c.obj) esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) @@ -75147,6 +81634,7 @@ vPortYieldFromInt esp-idf/freertos/libfreertos.a vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) esp-idf/freertos/libfreertos.a(tasks.c.obj) vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) @@ -75172,10 +81660,12 @@ vRingbufferReturnItemFromISR esp-idf/esp_ringbuf/libesp_rin esp-idf/driver/libdriver.a(uart.c.obj) vTaskAllocateMPURegions esp-idf/freertos/libfreertos.a(tasks.c.obj) vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/lvgl_tft/liblvgl_tft.a(ili9341.c.obj) esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) esp-idf/lwip/liblwip.a(sys_arch.c.obj) esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) esp-idf/ca/libca.a(ca.c.obj) esp-idf/newlib/libnewlib.a(time.c.obj) esp-idf/pthread/libpthread.a(pthread.c.obj) @@ -75242,6 +81732,7 @@ vprintf /home/mithras/.espressif/tools vsnprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/lvgl/liblvgl.a(lv_label.c.obj) wDevCheckBlockError /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) wDevCtrl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) @@ -75926,6 +82417,7 @@ xEventGroupSync esp-idf/freertos/libfreertos.a xEventGroupWaitBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) esp-idf/wifi/libwifi.a(wifi.c.obj) +xGuiSemaphore esp-idf/display/libdisplay.a(display.c.obj) xHandleServer esp-idf/https_server/libhttps_server.a(https_server.c.obj) xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) @@ -75961,6 +82453,7 @@ xQueueCreateMutex esp-idf/freertos/libfreertos.a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) esp-idf/newlib/libnewlib.a(locks.c.obj) esp-idf/esp_common/libesp_common.a(ipc.c.obj) @@ -75968,6 +82461,7 @@ xQueueCreateMutex esp-idf/freertos/libfreertos.a esp-idf/log/liblog.a(log_freertos.c.obj) xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) @@ -75978,6 +82472,7 @@ xQueueGenericCreate esp-idf/freertos/libfreertos.a esp-idf/freertos/libfreertos.a(timers.c.obj) esp-idf/esp_common/libesp_common.a(ipc.c.obj) xQueueGenericReceive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) @@ -75988,6 +82483,7 @@ xQueueGenericReceive esp-idf/freertos/libfreertos.a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) esp-idf/esp_event/libesp_event.a(esp_event.c.obj) esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) esp-idf/newlib/libnewlib.a(locks.c.obj) esp-idf/vfs/libvfs.a(vfs.c.obj) @@ -75998,6 +82494,7 @@ xQueueGenericReceive esp-idf/freertos/libfreertos.a esp-idf/log/liblog.a(log_freertos.c.obj) xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) @@ -76008,6 +82505,7 @@ xQueueGenericSend esp-idf/freertos/libfreertos.a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) esp-idf/esp_event/libesp_event.a(esp_event.c.obj) esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/display/libdisplay.a(display.c.obj) esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) esp-idf/newlib/libnewlib.a(locks.c.obj) esp-idf/vfs/libvfs.a(vfs.c.obj) @@ -76016,6 +82514,7 @@ xQueueGenericSend esp-idf/freertos/libfreertos.a esp-idf/pthread/libpthread.a(pthread.c.obj) esp-idf/log/liblog.a(log_freertos.c.obj) xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) esp-idf/lwip/liblwip.a(sys_arch.c.obj) esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) @@ -76025,6 +82524,7 @@ xQueueGetMutexHolder esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a(locks.c.obj) esp-idf/pthread/libpthread.a(pthread.c.obj) xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) esp-idf/lwip/liblwip.a(sys_arch.c.obj) @@ -76042,6 +82542,7 @@ xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) xQueuePeekFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) esp-idf/newlib/libnewlib.a(locks.c.obj) xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) @@ -76087,6 +82588,7 @@ xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) esp-idf/ca/libca.a(gen_key.c.obj) esp-idf/ca/libca.a(ca.c.obj) + esp-idf/main/libmain.a(main.c.obj) esp-idf/freertos/libfreertos.a(timers.c.obj) esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) esp-idf/esp_common/libesp_common.a(ipc.c.obj) @@ -76124,6 +82626,7 @@ xTaskGetSchedulerState esp-idf/freertos/libfreertos.a esp-idf/log/liblog.a(log_freertos.c.obj) xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/driver/libdriver.a(spi_master.c.obj) esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) esp-idf/driver/libdriver.a(uart.c.obj) diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure b/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-done b/build/bootloader-prefix/src/bootloader-stamp/bootloader-done new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-download b/build/bootloader-prefix/src/bootloader-stamp/bootloader-download new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-install b/build/bootloader-prefix/src/bootloader-stamp/bootloader-install new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir b/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch b/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-update b/build/bootloader-prefix/src/bootloader-stamp/bootloader-update new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader/.ninja_log b/build/bootloader/.ninja_log index 67b3d74..e1d5c3e 100644 --- a/build/bootloader/.ninja_log +++ b/build/bootloader/.ninja_log @@ -99,3 +99,4 @@ 888 1225 1585220848 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj 75552f94b62a77fd 3892 4065 1584850581 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 53bad9ca874fb9c6 0 1814 1585409937 build.ninja 67fcd4bb430fc215 +0 4153 1585440593 build.ninja 67fcd4bb430fc215 diff --git a/build/bootloader/bootloader.bin b/build/bootloader/bootloader.bin new file mode 100644 index 0000000..d0ac398 Binary files /dev/null and b/build/bootloader/bootloader.bin differ diff --git a/build/bootloader/bootloader.elf b/build/bootloader/bootloader.elf new file mode 100755 index 0000000..f094276 Binary files /dev/null and b/build/bootloader/bootloader.elf differ diff --git a/build/bootloader/bootloader.map b/build/bootloader/bootloader.map new file mode 100644 index 0000000..fa6e0ff --- /dev/null +++ b/build/bootloader/bootloader.map @@ -0,0 +1,4279 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/main/libmain.a(bootloader_start.c.obj) + (call_start_cpu0) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_common_get_reset_reason) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_mmap) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_utility_load_partition_table) +esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_load_image) +esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_common_get_chip_revision) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (__assert_func) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_sha256_start) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_init) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_clock_configure) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_init_mem) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (bootloader_fill_random) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) (bootloader_read_flash_id) +esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) (esp_rom_spiflash_wait_idle) +esp-idf/log/liblog.a(log_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_log_early_timestamp) +esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (GPIO_PIN_MUX_REG) +esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (esp_cpu_in_ocd_debug_mode) +esp-idf/soc/libsoc.a(cpu_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) (cpu_hal_set_breakpoint) +esp-idf/soc/libsoc.a(mpu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (mpu_hal_set_region_access) +esp-idf/soc/libsoc.a(soc_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) (soc_hal_stall_core) +esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) (rtc_clk_slow_freq_get) +esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) (rtc_clk_init) +esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (rtc_vddsdio_get_config) +esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) (rtc_clk_cal_ratio) +esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (rtc_wdt_protect_off) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (__bswapsi2) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) (__divdi3) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) (__udivdi3) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) (_global_impure_ptr) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (memcmp) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (memcpy) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) (memset) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strlen) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strncpy) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) + +Allocating common symbols +Common symbol size file + +bootloader_image_hdr + 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + +Discarded input sections + + .literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_line 0x0000000000000000 0x89 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_str 0x0000000000000000 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .xt.prop 0x0000000000000000 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .literal 0x0000000000000000 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .fini.literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .init.literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0xa6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .data 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .bss 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .eh_frame 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .tm_clone_table + 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .fini 0x0000000000000000 0x6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .init 0x0000000000000000 0x6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .xt.lit 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .xt.prop 0x0000000000000000 0x15c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj + .data 0x0000000000000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj + .bss 0x0000000000000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj + .comment 0x0000000000000000 0x26 CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj + .literal.__getreent + 0x0000000000000000 0x4 esp-idf/main/libmain.a(bootloader_start.c.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .text.__getreent + 0x0000000000000000 0xa esp-idf/main/libmain.a(bootloader_start.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/main/libmain.a(bootloader_start.c.obj) + .xt.prop 0x0000000000000000 0x84 esp-idf/main/libmain.a(bootloader_start.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_partition_description + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0x9b esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.1 + 0x0000000000000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x0000000000000000 0xaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x0000000000000000 0xcb esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0xba esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_partition_description + 0x0000000000000000 0x77 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.prop 0x0000000000000000 0x498 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_flash_erase_range + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x0000000000000000 0x5f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.prop 0x0000000000000000 0x300 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_sha256_flash_contents + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x0000000000000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x0000000000000000 0x86 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.prop 0x0000000000000000 0x5b8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_load_image_no_verify + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.prop 0x0000000000000000 0x6fc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x0000000000000000 0x108 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .xt.prop 0x0000000000000000 0x6c esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .xt.prop 0x0000000000000000 0x150 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x0000000000000000 0x18c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_configure_spi_pins + 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .text.bootloader_configure_spi_pins + 0x0000000000000000 0x16a esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .xt.prop 0x0000000000000000 0x1c8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .literal.esp_clk_apb_freq + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .text.esp_clk_apb_freq + 0x0000000000000000 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .xt.prop 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.prop 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.prop 0x0000000000000000 0xcc esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .iram1.1.literal + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.1 0x0000000000000000 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .rodata.CSWTCH$0 + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.prop 0x0000000000000000 0x180 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.write_status_8b_wrsr2 + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_rdsr2 + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_16b_wrsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_16b_rdsr_rdsr2 + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_8b_wrsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_rdsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_8b_xmc25qu64a + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_xmc25qu64a + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.bootloader_enable_qio_mode + 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_wrsr2 + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_rdsr2 + 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_16b_wrsr + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_16b_rdsr_rdsr2 + 0x0000000000000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_wrsr + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_rdsr + 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_xmc25qu64a + 0x0000000000000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_xmc25qu64a + 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.bootloader_enable_qio_mode.str1.1 + 0x0000000000000000 0x4d esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.bootloader_enable_qio_mode + 0x0000000000000000 0x11f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.str1.1 + 0x0000000000000000 0x1f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.chip_data + 0x0000000000000000 0x6c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xt.prop 0x0000000000000000 0x27c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.esp_rom_spiflash_lock + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_config_readmode + 0x0000000000000000 0x54 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_chip + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_block + 0x0000000000000000 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_area + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_lock + 0x0000000000000000 0x4d esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_config_readmode + 0x0000000000000000 0x28a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_chip + 0x0000000000000000 0x3b esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_block + 0x0000000000000000 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_area + 0x0000000000000000 0x94 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.CSWTCH$29 + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .xt.prop 0x0000000000000000 0x750 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_log_impl_lock + 0x0000000000000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj) + .literal.esp_log_lock_impl_timeout + 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_noos.c.obj) + .literal.esp_log_impl_unlock + 0x0000000000000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.esp_log_impl_lock.str1.1 + 0x0000000000000000 0x40 esp-idf/log/liblog.a(log_noos.c.obj) + .text.esp_log_impl_lock + 0x0000000000000000 0x22 esp-idf/log/liblog.a(log_noos.c.obj) + .text.esp_log_lock_impl_timeout + 0x0000000000000000 0xd esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.esp_log_impl_unlock.str1.1 + 0x0000000000000000 0xc esp-idf/log/liblog.a(log_noos.c.obj) + .text.esp_log_impl_unlock + 0x0000000000000000 0x22 esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.__func__$3205 + 0x0000000000000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.__func__$3198 + 0x0000000000000000 0x12 esp-idf/log/liblog.a(log_noos.c.obj) + .bss.s_lock 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_noos.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/log/liblog.a(log_noos.c.obj) + .xt.prop 0x0000000000000000 0xd8 esp-idf/log/liblog.a(log_noos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x0000000000000000 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .rodata.GPIO_PIN_MUX_REG + 0x0000000000000000 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_info 0x0000000000000000 0x9e4 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x11d esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_line 0x0000000000000000 0x20f esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_str 0x0000000000000000 0x444 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .xt.prop 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .iram1.0.literal + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.1.literal + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.2.literal + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.3.literal + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.4.literal + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.6.literal + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.0 0x0000000000000000 0xe esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.1 0x0000000000000000 0xe esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.2 0x0000000000000000 0x1e esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.3 0x0000000000000000 0x35 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.4 0x0000000000000000 0xe esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.6 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .xt.prop 0x0000000000000000 0x198 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .literal.cpu_hal_set_watchpoint + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text.cpu_hal_set_breakpoint + 0x0000000000000000 0x22 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text.cpu_hal_clear_breakpoint + 0x0000000000000000 0x23 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text.cpu_hal_set_watchpoint + 0x0000000000000000 0x59 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text.cpu_hal_clear_watchpoint + 0x0000000000000000 0x19 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text.cpu_hal_set_vecbase + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_frame 0x0000000000000000 0x88 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_info 0x0000000000000000 0x14f4 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x304 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_loc 0x0000000000000000 0x34a esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x40 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_ranges 0x0000000000000000 0xa8 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_line 0x0000000000000000 0x75d esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_str 0x0000000000000000 0x1289 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .xt.prop 0x0000000000000000 0x138 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .xt.prop 0x0000000000000000 0x54 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .literal.soc_hal_stall_core + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .literal.soc_hal_unstall_core + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .text.soc_hal_stall_core + 0x0000000000000000 0x87 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .text.soc_hal_unstall_core + 0x0000000000000000 0x48 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_info 0x0000000000000000 0x128a esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x222 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_loc 0x0000000000000000 0x94 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_line 0x0000000000000000 0x4d8 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_str 0x0000000000000000 0x117b esp-idf/soc/libsoc.a(soc_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .xt.prop 0x0000000000000000 0x60 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .literal.rtc_clk_32k_enable_external + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x0000000000000000 0x34 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_enable + 0x0000000000000000 0x54 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_config + 0x0000000000000000 0x1c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable_external + 0x0000000000000000 0xf esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x0000000000000000 0x9c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_apll_enable + 0x0000000000000000 0x153 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_to_config.str1.1 + 0x0000000000000000 0x34 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_config + 0x0000000000000000 0x6e esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_to_config + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x0000000000000000 0x1f esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x39 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .xt.lit 0x0000000000000000 0xe0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .xt.prop 0x0000000000000000 0x81c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .xt.prop 0x0000000000000000 0x12c esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .literal.rtc_init + 0x0000000000000000 0xbc esp-idf/soc/libsoc.a(rtc_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .text.rtc_init + 0x0000000000000000 0x342 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .xt.prop 0x0000000000000000 0xfc esp-idf/soc/libsoc.a(rtc_init.c.obj) + .literal.rtc_clk_cal + 0x0000000000000000 0xc esp-idf/soc/libsoc.a(rtc_time.c.obj) + .literal.rtc_time_us_to_slowclk + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .literal.rtc_time_get + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text.rtc_clk_cal + 0x0000000000000000 0x54 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text.rtc_time_us_to_slowclk + 0x0000000000000000 0x1f esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x0000000000000000 0x1c esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text.rtc_time_get + 0x0000000000000000 0x4f esp-idf/soc/libsoc.a(rtc_time.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .xt.prop 0x0000000000000000 0x234 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .literal.rtc_wdt_get_protect_status + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal.rtc_wdt_flashboot_mode_enable + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal.rtc_wdt_feed + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal.rtc_wdt_get_timeout + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal.rtc_wdt_is_on + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .text.rtc_wdt_get_protect_status + 0x0000000000000000 0x1b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .text.rtc_wdt_flashboot_mode_enable + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .text.rtc_wdt_feed + 0x0000000000000000 0x3e esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .text.rtc_wdt_get_timeout + 0x0000000000000000 0x4b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .text.rtc_wdt_is_on + 0x0000000000000000 0x1a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .xt.prop 0x0000000000000000 0x384 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .text 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_info 0x0000000000000000 0xb02 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_abbrev 0x0000000000000000 0x1b1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_line 0x0000000000000000 0x2e2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_str 0x0000000000000000 0x6df /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .text 0x0000000000000000 0x2aa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .eh_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_info 0x0000000000000000 0x114b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_abbrev 0x0000000000000000 0x28e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_loc 0x0000000000000000 0xac9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_ranges 0x0000000000000000 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_line 0x0000000000000000 0xaf6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_str 0x0000000000000000 0x758 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .xt.prop 0x0000000000000000 0x234 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x26a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .eh_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_info 0x0000000000000000 0x10fd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_abbrev 0x0000000000000000 0x27a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_loc 0x0000000000000000 0xa12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_ranges 0x0000000000000000 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_line 0x0000000000000000 0xa2b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_str 0x0000000000000000 0x759 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .xt.prop 0x0000000000000000 0x21c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .bss 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_info 0x0000000000000000 0x916 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_abbrev 0x0000000000000000 0x169 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_aranges + 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_line 0x0000000000000000 0x174 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_str 0x0000000000000000 0x5a7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .text 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_info 0x0000000000000000 0x999 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_abbrev 0x0000000000000000 0x1c0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_loc 0x0000000000000000 0xb9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_line 0x0000000000000000 0x2ca /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_str 0x0000000000000000 0x5b7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .xt.prop 0x0000000000000000 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .text 0x0000000000000000 0x135 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_line 0x0000000000000000 0x355 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_str 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .xt.prop 0x0000000000000000 0x150 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_line 0x0000000000000000 0x18c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_str 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .xt.prop 0x0000000000000000 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .text 0x0000000000000000 0x2b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_info 0x0000000000000000 0x97a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_abbrev 0x0000000000000000 0x1b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_loc 0x0000000000000000 0x83 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_line 0x0000000000000000 0x2f3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_str 0x0000000000000000 0x5b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .xt.prop 0x0000000000000000 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .literal 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_line 0x0000000000000000 0x168 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_str 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .xt.prop 0x0000000000000000 0xc0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .literal 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x113 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_line 0x0000000000000000 0x2ef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_str 0x0000000000000000 0xe5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .xt.prop 0x0000000000000000 0x1a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x3a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_info 0x0000000000000000 0x974 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_abbrev 0x0000000000000000 0x1c2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_loc 0x0000000000000000 0x6e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_line 0x0000000000000000 0x2fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_str 0x0000000000000000 0x5c8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .xt.prop 0x0000000000000000 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .init.literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x16 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .eh_frame 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .tm_clone_table + 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .init 0x0000000000000000 0x6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .xt.lit 0x0000000000000000 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .xt.prop 0x0000000000000000 0x84 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .init 0x0000000000000000 0x2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .fini 0x0000000000000000 0x2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + +Memory Configuration + +Name Origin Length Attributes +iram_loader_seg 0x0000000040078000 0x0000000000008000 xrw +iram_seg 0x0000000040080400 0x000000000000fc00 xrw +dram_seg 0x000000003fff0000 0x0000000000010000 rw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +LOAD CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/soc/soc/esp32/libsoc_esp32.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/soc/soc/esp32/libsoc_esp32.a +LOAD esp-idf/soc/libsoc.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libnosys.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + [!provide] PROVIDE (Add2SelfBigHex256 = 0x40015b7c) + [!provide] PROVIDE (AddBigHex256 = 0x40015b28) + [!provide] PROVIDE (AddBigHexModP256 = 0x40015c98) + [!provide] PROVIDE (AddP256 = 0x40015c74) + [!provide] PROVIDE (AddPdiv2_256 = 0x40015ce0) + [!provide] PROVIDE (app_gpio_arg = 0x3ffe003c) + [!provide] PROVIDE (app_gpio_handler = 0x3ffe0040) + [!provide] PROVIDE (BasePoint_x_256 = 0x3ff97488) + [!provide] PROVIDE (BasePoint_y_256 = 0x3ff97468) + [!provide] PROVIDE (bigHexInversion256 = 0x400168f0) + [!provide] PROVIDE (bigHexP256 = 0x3ff973bc) + [!provide] PROVIDE (btdm_r_ble_bt_handler_tab_p_get = 0x40019b0c) + [!provide] PROVIDE (btdm_r_btdm_option_data_p_get = 0x40010004) + [!provide] PROVIDE (btdm_r_btdm_rom_version_get = 0x40010078) + [!provide] PROVIDE (btdm_r_data_init = 0x4001002c) + [!provide] PROVIDE (btdm_r_import_rf_phy_func_p_get = 0x40054298) + [!provide] PROVIDE (btdm_r_ip_func_p_get = 0x40019af0) + [!provide] PROVIDE (btdm_r_ip_func_p_set = 0x40019afc) + [!provide] PROVIDE (btdm_r_modules_func_p_get = 0x4005427c) + [!provide] PROVIDE (btdm_r_modules_func_p_set = 0x40054270) + [!provide] PROVIDE (btdm_r_plf_func_p_set = 0x40054288) + [!provide] PROVIDE (bt_util_buf_env = 0x3ffb8bd4) + 0x00000000400095e0 PROVIDE (cache_flash_mmu_set_rom = 0x400095e0) + 0x0000000040009a14 PROVIDE (Cache_Flush_rom = 0x40009a14) + 0x0000000040009ab8 PROVIDE (Cache_Read_Disable_rom = 0x40009ab8) + 0x0000000040009a84 PROVIDE (Cache_Read_Enable_rom = 0x40009a84) + [!provide] PROVIDE (Cache_Read_Init_rom = 0x40009950) + [!provide] PROVIDE (cache_sram_mmu_set_rom = 0x400097f4) + [!provide] PROVIDE (calc_rtc_memory_crc = 0x40008170) + [!provide] PROVIDE (__clear_cache = 0x40063860) + [!provide] PROVIDE (co_default_bdaddr = 0x3ffae704) + [!provide] PROVIDE (co_null_bdaddr = 0x3ffb80e0) + [!provide] PROVIDE (co_sca2ppm = 0x3ff971e8) + [!provide] PROVIDE (crc16_be = 0x4005d09c) + [!provide] PROVIDE (crc16_le = 0x4005d05c) + [!provide] PROVIDE (crc32_be = 0x4005d024) + 0x000000004005cfec PROVIDE (crc32_le = 0x4005cfec) + [!provide] PROVIDE (crc8_be = 0x4005d114) + [!provide] PROVIDE (crc8_le = 0x4005d0e0) + [!provide] PROVIDE (_data_end_rom = 0x4000d5c8) + [!provide] PROVIDE (_data_end_btdm_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_btdm_rom = 0x4000d4f4) + [!provide] PROVIDE (_data_start_btdm = 0x3ffae6e0) + [!provide] PROVIDE (_data_end_btdm = 0x3ffaff10) + [!provide] PROVIDE (_bss_start_btdm = 0x3ffb8000) + [!provide] PROVIDE (_bss_end_btdm = 0x3ffbff70) + [!provide] PROVIDE (dbg_default_handler = 0x3ff97218) + [!provide] PROVIDE (dbg_default_state = 0x3ff97220) + [!provide] PROVIDE (dbg_state = 0x3ffb8d5d) + [!provide] PROVIDE (DebugE256PublicKey_x = 0x3ff97428) + [!provide] PROVIDE (DebugE256PublicKey_y = 0x3ff97408) + [!provide] PROVIDE (DebugE256SecretKey = 0x3ff973e8) + [!provide] PROVIDE (debug_timer = 0x3ffe042c) + [!provide] PROVIDE (debug_timerfn = 0x3ffe0430) + [!provide] PROVIDE (dh_group14_generator = 0x3ff9ac60) + [!provide] PROVIDE (dh_group14_prime = 0x3ff9ab60) + [!provide] PROVIDE (dh_group15_generator = 0x3ff9ab5f) + [!provide] PROVIDE (dh_group15_prime = 0x3ff9a9df) + [!provide] PROVIDE (dh_group16_generator = 0x3ff9a9de) + [!provide] PROVIDE (dh_group16_prime = 0x3ff9a7de) + [!provide] PROVIDE (dh_group17_generator = 0x3ff9a7dd) + [!provide] PROVIDE (dh_group17_prime = 0x3ff9a4dd) + [!provide] PROVIDE (dh_group18_generator = 0x3ff9a4dc) + [!provide] PROVIDE (dh_group18_prime = 0x3ff9a0dc) + [!provide] PROVIDE (dh_group1_generator = 0x3ff9ae03) + [!provide] PROVIDE (dh_group1_prime = 0x3ff9ada3) + [!provide] PROVIDE (dh_group2_generator = 0x3ff9ada2) + [!provide] PROVIDE (dh_group2_prime = 0x3ff9ad22) + [!provide] PROVIDE (dh_group5_generator = 0x3ff9ad21) + [!provide] PROVIDE (dh_group5_prime = 0x3ff9ac61) + 0x000000003ffae290 PROVIDE (g_rom_spiflash_dummy_len_plus = 0x3ffae290) + [!provide] PROVIDE (ecc_env = 0x3ffb8d60) + [!provide] PROVIDE (ecc_Jacobian_InfinityPoint256 = 0x3ff972e8) + [!provide] PROVIDE (em_buf_env = 0x3ffb8d74) + [!provide] PROVIDE (esp_crc8 = 0x4005d144) + [!provide] PROVIDE (_etext = 0x4000d66c) + [!provide] PROVIDE (ets_readySet_ = 0x3ffe01f0) + [!provide] PROVIDE (ets_startup_callback = 0x3ffe0404) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (exc_cause_table = 0x3ff991d0) + [!provide] PROVIDE (GF_Jacobian_Point_Addition256 = 0x400163a4) + [!provide] PROVIDE (GF_Jacobian_Point_Double256 = 0x40016260) + [!provide] PROVIDE (GF_Point_Jacobian_To_Affine256 = 0x40016b0c) + [!provide] PROVIDE (g_phyFuns_instance = 0x3ffae0c4) + 0x000000003ffae270 PROVIDE (g_rom_flashchip = 0x3ffae270) + [!provide] PROVIDE (gTxMsg = 0x3ffe0050) + [!provide] PROVIDE (hci_cmd_desc_root_tab = 0x3ff976d4) + [!provide] PROVIDE (hci_cmd_desc_tab_ctrl_bb = 0x3ff97b70) + [!provide] PROVIDE (hci_cmd_desc_tab_info_par = 0x3ff97b1c) + [!provide] PROVIDE (hci_cmd_desc_tab_le = 0x3ff97870) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_ctrl = 0x3ff97fc0) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_pol = 0x3ff97f3c) + [!provide] PROVIDE (hci_cmd_desc_tab_stat_par = 0x3ff97ac8) + [!provide] PROVIDE (hci_cmd_desc_tab_testing = 0x3ff97a98) + [!provide] PROVIDE (hci_cmd_desc_tab_vs = 0x3ff97714) + [!provide] PROVIDE (hci_command_handler = 0x4004c928) + [!provide] PROVIDE (hci_env = 0x3ffb9350) + [!provide] PROVIDE (rwip_env = 0x3ffb8bcc) + [!provide] PROVIDE (hci_evt_dbg_desc_tab = 0x3ff9750c) + [!provide] PROVIDE (hci_evt_desc_tab = 0x3ff9751c) + [!provide] PROVIDE (hci_evt_le_desc_tab = 0x3ff974b4) + [!provide] PROVIDE (hci_fc_env = 0x3ffb9340) + [!provide] PROVIDE (jd_decomp = 0x400613e8) + [!provide] PROVIDE (jd_prepare = 0x40060fa8) + [!provide] PROVIDE (ke_env = 0x3ffb93cc) + [!provide] PROVIDE (lb_default_handler = 0x3ff982b8) + [!provide] PROVIDE (lb_default_state_tab_p_get = 0x4001c198) + [!provide] PROVIDE (lb_env = 0x3ffb9424) + [!provide] PROVIDE (lb_hci_cmd_handler_tab_p_get = 0x4001c18c) + [!provide] PROVIDE (lb_state = 0x3ffb94e8) + [!provide] PROVIDE (lc_default_handler = 0x3ff98648) + [!provide] PROVIDE (lc_default_state_tab_p_get = 0x4002f494) + [!provide] PROVIDE (lc_env = 0x3ffb94ec) + [!provide] PROVIDE (lc_hci_cmd_handler_tab_p_get = 0x4002f488) + [!provide] PROVIDE (lc_state = 0x3ffb9508) + [!provide] PROVIDE (ld_acl_br_sizes = 0x3ff98a2a) + [!provide] PROVIDE (ld_acl_br_types = 0x3ff98a36) + [!provide] PROVIDE (ld_acl_edr_sizes = 0x3ff98a14) + [!provide] PROVIDE (ld_acl_edr_types = 0x3ff98a22) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_pcm_settings_dft = 0x3ff98a0c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sync_train_channels = 0x3ff98a3c) + [!provide] PROVIDE (llc_default_handler = 0x3ff98b3c) + [!provide] PROVIDE (llc_default_state_tab_p_get = 0x40046058) + [!provide] PROVIDE (llc_env = 0x3ffb96d0) + [!provide] PROVIDE (llc_hci_acl_data_tx_handler = 0x40042398) + [!provide] PROVIDE (llc_hci_cmd_handler_tab_p_get = 0x40042358) + [!provide] PROVIDE (llc_hci_command_handler = 0x40042360) + [!provide] PROVIDE (llcp_pdu_handler_tab_p_get = 0x40043f64) + [!provide] PROVIDE (llc_state = 0x3ffb96f8) + [!provide] PROVIDE (lldesc_build_chain = 0x4000a850) + [!provide] PROVIDE (lldesc_num2link = 0x4000a948) + [!provide] PROVIDE (lldesc_set_owner = 0x4000a974) + [!provide] PROVIDE (lld_evt_deferred_elt_push = 0x400466b4) + [!provide] PROVIDE (lld_evt_deferred_elt_pop = 0x400466dc) + [!provide] PROVIDE (lld_evt_winsize_change = 0x40046730) + [!provide] PROVIDE (lld_evt_rxwin_compute = 0x400467c8) + [!provide] PROVIDE (lld_evt_slave_time_compute = 0x40046818) + [!provide] PROVIDE (lld_evt_env = 0x3ffb9704) + [!provide] PROVIDE (lld_evt_elt_wait_get = 0x400468e4) + [!provide] PROVIDE (lld_evt_get_next_free_slot = 0x4004692c) + [!provide] PROVIDE (lld_pdu_adv_pk_desc_tab = 0x3ff98c70) + [!provide] PROVIDE (lld_pdu_llcp_pk_desc_tab = 0x3ff98b68) + [!provide] PROVIDE (lld_pdu_tx_flush_list = 0x4004a760) + [!provide] PROVIDE (lld_pdu_pack = 0x4004ab14) + [!provide] PROVIDE (LLM_AA_CT1 = 0x3ff98d8a) + [!provide] PROVIDE (LLM_AA_CT2 = 0x3ff98d88) + [!provide] PROVIDE (llm_default_handler = 0x3ff98d80) + [!provide] PROVIDE (llm_default_state_tab_p_get = 0x4004e718) + [!provide] PROVIDE (llm_hci_cmd_handler_tab_p_get = 0x4004c920) + [!provide] PROVIDE (llm_le_env = 0x3ffb976c) + [!provide] PROVIDE (llm_local_cmds = 0x3ff98d38) + [!provide] PROVIDE (llm_local_data_len_values = 0x3ff98d1c) + [!provide] PROVIDE (llm_local_le_feats = 0x3ff98d30) + [!provide] PROVIDE (llm_local_le_states = 0x3ff98d28) + [!provide] PROVIDE (llm_state = 0x3ffb985c) + [!provide] PROVIDE (lm_default_handler = 0x3ff990e0) + [!provide] PROVIDE (lm_default_state_tab_p_get = 0x40054268) + [!provide] PROVIDE (lm_env = 0x3ffb9860) + [!provide] PROVIDE (lm_hci_cmd_handler_tab_p_get = 0x4005425c) + [!provide] PROVIDE (lm_local_supp_feats = 0x3ff990ee) + [!provide] PROVIDE (lm_n_page_tab = 0x3ff990e8) + [!provide] PROVIDE (lmp_desc_tab = 0x3ff96e6c) + [!provide] PROVIDE (lmp_ext_desc_tab = 0x3ff96d9c) + [!provide] PROVIDE (lm_state = 0x3ffb9a1c) + [!provide] PROVIDE (maxSecretKey_256 = 0x3ff97448) + 0x00000000400095a4 PROVIDE (mmu_init = 0x400095a4) + [!provide] PROVIDE (MultiplyBigHexByUint32_256 = 0x40016214) + [!provide] PROVIDE (MultiplyBigHexModP256 = 0x400160b8) + [!provide] PROVIDE (MultiplyByU32ModP256 = 0x40015fdc) + [!provide] PROVIDE (multofup = 0x4000ab8c) + [!provide] PROVIDE (mz_adler32 = 0x4005edbc) + [!provide] PROVIDE (mz_crc32 = 0x4005ee88) + [!provide] PROVIDE (mz_free = 0x4005eed4) + [!provide] PROVIDE (notEqual256 = 0x40015b04) + [!provide] PROVIDE (one_bits = 0x3ff971f8) + [!provide] PROVIDE (phy_get_romfuncs = 0x40004100) + [!provide] PROVIDE (_Pri_4_HandlerAddress = 0x3ffe0648) + [!provide] PROVIDE (_Pri_5_HandlerAddress = 0x3ffe064c) + [!provide] PROVIDE (r_btdm_option_data = 0x3ffae6e0) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_alloc = 0x40010218) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_free = 0x40010234) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_alloc = 0x40010268) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_free = 0x40010280) + [!provide] PROVIDE (r_bt_util_buf_init = 0x400100e4) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_alloc = 0x400101d0) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_free = 0x400101ec) + [!provide] PROVIDE (r_bt_util_buf_sync_clear = 0x400103c8) + [!provide] PROVIDE (r_bt_util_buf_sync_init = 0x400102c4) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_alloc = 0x40010468) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_free = 0x4001049c) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_alloc = 0x400103ec) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_free = 0x40010428) + [!provide] PROVIDE (r_co_bdaddr_compare = 0x40014324) + [!provide] PROVIDE (r_co_bytes_to_string = 0x400142e4) + [!provide] PROVIDE (r_co_list_check_size_available = 0x400142c4) + [!provide] PROVIDE (r_co_list_extract = 0x4001404c) + [!provide] PROVIDE (r_co_list_extract_after = 0x40014118) + [!provide] PROVIDE (r_co_list_find = 0x4001419c) + [!provide] PROVIDE (r_co_list_init = 0x40013f14) + [!provide] PROVIDE (r_co_list_insert_after = 0x40014254) + [!provide] PROVIDE (r_co_list_insert_before = 0x40014200) + [!provide] PROVIDE (r_co_list_merge = 0x400141bc) + [!provide] PROVIDE (r_co_list_pool_init = 0x40013f30) + [!provide] PROVIDE (r_co_list_pop_front = 0x40014028) + [!provide] PROVIDE (r_co_list_push_back = 0x40013fb8) + [!provide] PROVIDE (r_co_list_push_front = 0x40013ff4) + [!provide] PROVIDE (r_co_list_size = 0x400142ac) + [!provide] PROVIDE (r_co_nb_good_channels = 0x40014360) + [!provide] PROVIDE (r_co_slot_to_duration = 0x40014348) + [!provide] PROVIDE (r_dbg_init = 0x40014394) + [!provide] PROVIDE (r_dbg_platform_reset_complete = 0x400143d0) + [!provide] PROVIDE (r_dbg_swdiag_init = 0x40014470) + [!provide] PROVIDE (r_dbg_swdiag_read = 0x400144a4) + [!provide] PROVIDE (r_dbg_swdiag_write = 0x400144d0) + [!provide] PROVIDE (r_E1 = 0x400108e8) + [!provide] PROVIDE (r_E21 = 0x40010968) + [!provide] PROVIDE (r_E22 = 0x400109b4) + [!provide] PROVIDE (r_E3 = 0x40010a58) + [!provide] PROVIDE (lm_n192_mod_mul = 0x40011dc0) + [!provide] PROVIDE (lm_n192_mod_add = 0x40011e9c) + [!provide] PROVIDE (lm_n192_mod_sub = 0x40011eec) + [!provide] PROVIDE (r_ea_alarm_clear = 0x40015ab4) + [!provide] PROVIDE (r_ea_alarm_set = 0x40015a10) + [!provide] PROVIDE (r_ea_elt_cancel = 0x400150d0) + [!provide] PROVIDE (r_ea_elt_create = 0x40015264) + [!provide] PROVIDE (r_ea_elt_insert = 0x400152a8) + [!provide] PROVIDE (r_ea_elt_remove = 0x400154f0) + [!provide] PROVIDE (r_ea_finetimer_isr = 0x400155d4) + [!provide] PROVIDE (r_ea_init = 0x40015228) + [!provide] PROVIDE (r_ea_interval_create = 0x4001555c) + [!provide] PROVIDE (r_ea_interval_delete = 0x400155a8) + [!provide] PROVIDE (r_ea_interval_duration_req = 0x4001597c) + [!provide] PROVIDE (r_ea_interval_insert = 0x4001557c) + [!provide] PROVIDE (r_ea_interval_remove = 0x40015590) + [!provide] PROVIDE (ea_conflict_check = 0x40014e9c) + [!provide] PROVIDE (ea_prog_timer = 0x40014f88) + [!provide] PROVIDE (r_ea_offset_req = 0x40015748) + [!provide] PROVIDE (r_ea_sleep_check = 0x40015928) + [!provide] PROVIDE (r_ea_sw_isr = 0x40015724) + [!provide] PROVIDE (r_ea_time_get_halfslot_rounded = 0x40015894) + [!provide] PROVIDE (r_ea_time_get_slot_rounded = 0x400158d4) + [!provide] PROVIDE (r_ecc_abort_key256_generation = 0x40017070) + [!provide] PROVIDE (r_ecc_generate_key256 = 0x40016e00) + [!provide] PROVIDE (r_ecc_gen_new_public_key = 0x400170c0) + [!provide] PROVIDE (r_ecc_gen_new_secret_key = 0x400170e4) + [!provide] PROVIDE (r_ecc_get_debug_Keys = 0x40017224) + [!provide] PROVIDE (r_ecc_init = 0x40016dbc) + [!provide] PROVIDE (ecc_point_multiplication_uint8_256 = 0x40016804) + [!provide] PROVIDE (RecvBuff = 0x3ffe009c) + [!provide] PROVIDE (r_em_buf_init = 0x4001729c) + [!provide] PROVIDE (r_em_buf_rx_buff_addr_get = 0x400173e8) + [!provide] PROVIDE (r_em_buf_rx_free = 0x400173c4) + [!provide] PROVIDE (r_em_buf_tx_buff_addr_get = 0x40017404) + [!provide] PROVIDE (r_em_buf_tx_free = 0x4001741c) + [!provide] PROVIDE (r_F1_256 = 0x400133e4) + [!provide] PROVIDE (r_F2_256 = 0x40013568) + [!provide] PROVIDE (r_F3_256 = 0x40013664) + [!provide] PROVIDE (RFPLL_ICP_TABLE = 0x3ffb8b7c) + [!provide] PROVIDE (r_G_256 = 0x40013470) + [!provide] PROVIDE (r_H3 = 0x40013760) + [!provide] PROVIDE (r_H4 = 0x40013830) + [!provide] PROVIDE (r_h4tl_init = 0x40017878) + [!provide] PROVIDE (r_h4tl_start = 0x40017924) + [!provide] PROVIDE (r_h4tl_stop = 0x40017934) + [!provide] PROVIDE (r_h4tl_write = 0x400178d0) + [!provide] PROVIDE (r_H5 = 0x400138dc) + [!provide] PROVIDE (r_hashConcat = 0x40013a38) + [!provide] PROVIDE (r_hci_acl_tx_data_alloc = 0x4001951c) + [!provide] PROVIDE (r_hci_acl_tx_data_received = 0x40019654) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_register = 0x40018900) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_unregister = 0x400189ac) + [!provide] PROVIDE (r_hci_bt_acl_conhdl_register = 0x4001895c) + [!provide] PROVIDE (r_hci_cmd_get_max_param_size = 0x400192d0) + [!provide] PROVIDE (r_hci_cmd_received = 0x400192f8) + [!provide] PROVIDE (r_hci_evt_filter_add = 0x40018a64) + [!provide] PROVIDE (r_hci_evt_mask_set = 0x400189e4) + [!provide] PROVIDE (r_hci_fc_acl_buf_size_set = 0x40017988) + [!provide] PROVIDE (r_hci_fc_acl_en = 0x400179d8) + [!provide] PROVIDE (r_hci_fc_acl_packet_sent = 0x40017a3c) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_acl_packets = 0x40017aa4) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_sync_packets = 0x40017ac8) + [!provide] PROVIDE (r_hci_fc_host_nb_acl_pkts_complete = 0x40017a6c) + [!provide] PROVIDE (r_hci_fc_host_nb_sync_pkts_complete = 0x40017a88) + [!provide] PROVIDE (r_hci_fc_init = 0x40017974) + [!provide] PROVIDE (r_hci_fc_sync_buf_size_set = 0x400179b0) + [!provide] PROVIDE (r_hci_fc_sync_en = 0x40017a30) + [!provide] PROVIDE (r_hci_fc_sync_packet_sent = 0x40017a54) + [!provide] PROVIDE (r_hci_init = 0x40018538) + [!provide] PROVIDE (r_hci_look_for_cmd_desc = 0x40018454) + [!provide] PROVIDE (r_hci_look_for_dbg_evt_desc = 0x400184c4) + [!provide] PROVIDE (r_hci_look_for_evt_desc = 0x400184a0) + [!provide] PROVIDE (r_hci_look_for_le_evt_desc = 0x400184e0) + [!provide] PROVIDE (r_hci_reset = 0x4001856c) + [!provide] PROVIDE (r_hci_send_2_host = 0x400185bc) + [!provide] PROVIDE (r_hci_sync_tx_data_alloc = 0x40019754) + [!provide] PROVIDE (r_hci_sync_tx_data_received = 0x400197c0) + [!provide] PROVIDE (r_hci_tl_init = 0x40019290) + [!provide] PROVIDE (r_hci_tl_send = 0x40019228) + [!provide] PROVIDE (r_hci_util_pack = 0x40019874) + [!provide] PROVIDE (r_hci_util_unpack = 0x40019998) + [!provide] PROVIDE (r_hci_voice_settings_get = 0x40018bdc) + [!provide] PROVIDE (r_hci_voice_settings_set = 0x40018be8) + [!provide] PROVIDE (r_HMAC = 0x40013968) + [!provide] PROVIDE (r_import_rf_phy_func = 0x3ffb8354) + [!provide] PROVIDE (r_import_rf_phy_func_p = 0x3ffafd64) + [!provide] PROVIDE (r_ip_funcs = 0x3ffae710) + [!provide] PROVIDE (r_ip_funcs_p = 0x3ffae70c) + [!provide] PROVIDE (r_ke_check_malloc = 0x40019de0) + [!provide] PROVIDE (r_ke_event_callback_set = 0x40019ba8) + [!provide] PROVIDE (r_ke_event_clear = 0x40019c2c) + [!provide] PROVIDE (r_ke_event_flush = 0x40019ccc) + [!provide] PROVIDE (r_ke_event_get = 0x40019c78) + [!provide] PROVIDE (r_ke_event_get_all = 0x40019cc0) + [!provide] PROVIDE (r_ke_event_init = 0x40019b90) + [!provide] PROVIDE (r_ke_event_schedule = 0x40019cdc) + [!provide] PROVIDE (r_ke_event_set = 0x40019be0) + [!provide] PROVIDE (r_ke_flush = 0x4001a374) + [!provide] PROVIDE (r_ke_free = 0x4001a014) + [!provide] PROVIDE (r_ke_get_max_mem_usage = 0x4001a1c8) + [!provide] PROVIDE (r_ke_get_mem_usage = 0x4001a1a0) + [!provide] PROVIDE (r_ke_init = 0x4001a318) + [!provide] PROVIDE (r_ke_is_free = 0x4001a184) + [!provide] PROVIDE (r_ke_malloc = 0x40019eb4) + [!provide] PROVIDE (r_ke_mem_init = 0x40019d3c) + [!provide] PROVIDE (r_ke_mem_is_empty = 0x40019d8c) + [!provide] PROVIDE (r_ke_msg_alloc = 0x4001a1e0) + [!provide] PROVIDE (r_ke_msg_dest_id_get = 0x4001a2e0) + [!provide] PROVIDE (r_ke_msg_discard = 0x4001a850) + [!provide] PROVIDE (r_ke_msg_forward = 0x4001a290) + [!provide] PROVIDE (r_ke_msg_forward_new_id = 0x4001a2ac) + [!provide] PROVIDE (r_ke_msg_free = 0x4001a2cc) + [!provide] PROVIDE (r_ke_msg_in_queue = 0x4001a2f8) + [!provide] PROVIDE (r_ke_msg_save = 0x4001a858) + [!provide] PROVIDE (r_ke_msg_send = 0x4001a234) + [!provide] PROVIDE (r_ke_msg_send_basic = 0x4001a26c) + [!provide] PROVIDE (r_ke_msg_src_id_get = 0x4001a2ec) + [!provide] PROVIDE (r_ke_queue_extract = 0x40055fd0) + [!provide] PROVIDE (r_ke_queue_insert = 0x40056020) + [!provide] PROVIDE (r_ke_sleep_check = 0x4001a3d8) + [!provide] PROVIDE (r_ke_state_get = 0x4001a7d8) + [!provide] PROVIDE (r_ke_state_set = 0x4001a6fc) + [!provide] PROVIDE (r_ke_stats_get = 0x4001a3f0) + [!provide] PROVIDE (r_ke_task_check = 0x4001a8a4) + [!provide] PROVIDE (r_ke_task_create = 0x4001a674) + [!provide] PROVIDE (r_ke_task_delete = 0x4001a6c0) + [!provide] PROVIDE (r_ke_task_init = 0x4001a650) + [!provide] PROVIDE (r_ke_task_msg_flush = 0x4001a860) + [!provide] PROVIDE (r_ke_timer_active = 0x4001ac08) + [!provide] PROVIDE (r_ke_timer_adjust_all = 0x4001ac30) + [!provide] PROVIDE (r_ke_timer_clear = 0x4001ab90) + [!provide] PROVIDE (r_ke_timer_init = 0x4001aa9c) + [!provide] PROVIDE (r_ke_timer_set = 0x4001aac0) + [!provide] PROVIDE (r_ke_timer_sleep_check = 0x4001ac50) + [!provide] PROVIDE (r_KPrimC = 0x40010ad4) + [!provide] PROVIDE (r_lb_clk_adj_activate = 0x4001ae70) + [!provide] PROVIDE (r_lb_clk_adj_id_get = 0x4001af14) + [!provide] PROVIDE (r_lb_clk_adj_period_update = 0x4001af20) + [!provide] PROVIDE (r_lb_init = 0x4001acd4) + [!provide] PROVIDE (r_lb_mst_key = 0x4001afc0) + [!provide] PROVIDE (r_lb_mst_key_cmp = 0x4001af74) + [!provide] PROVIDE (r_lb_mst_key_restart_enc = 0x4001b0d4) + [!provide] PROVIDE (r_lb_mst_start_act_bcst_enc = 0x4001b198) + [!provide] PROVIDE (r_lb_mst_stop_act_bcst_enc = 0x4001b24c) + [!provide] PROVIDE (r_lb_reset = 0x4001ad38) + [!provide] PROVIDE (r_lb_send_lmp = 0x4001adbc) + [!provide] PROVIDE (r_lb_send_pdu_clk_adj = 0x4001af3c) + [!provide] PROVIDE (r_lb_util_get_csb_mode = 0x4001ada4) + [!provide] PROVIDE (r_lb_util_get_nb_broadcast = 0x4001ad80) + [!provide] PROVIDE (r_lb_util_get_res_lt_addr = 0x4001ad98) + [!provide] PROVIDE (r_lb_util_set_nb_broadcast = 0x4001ad8c) + [!provide] PROVIDE (r_lc_afh_set = 0x4001cc74) + [!provide] PROVIDE (r_lc_afh_start = 0x4001d240) + [!provide] PROVIDE (r_lc_auth_cmp = 0x4001cd54) + [!provide] PROVIDE (r_lc_calc_link_key = 0x4001ce7c) + [!provide] PROVIDE (r_lc_chg_pkt_type_cmp = 0x4001d038) + [!provide] PROVIDE (r_lc_chg_pkt_type_cont = 0x4001cfbc) + [!provide] PROVIDE (r_lc_chg_pkt_type_retry = 0x4001d0ac) + [!provide] PROVIDE (r_lc_chk_to = 0x4001d2a8) + [!provide] PROVIDE (r_lc_cmd_stat_send = 0x4001c914) + [!provide] PROVIDE (r_lc_comb_key_svr = 0x4001d30c) + [!provide] PROVIDE (r_lc_con_cmp = 0x4001d44c) + [!provide] PROVIDE (r_lc_con_cmp_evt_send = 0x4001d4fc) + [!provide] PROVIDE (r_lc_conn_seq_done = 0x40021334) + [!provide] PROVIDE (r_lc_detach = 0x4002037c) + [!provide] PROVIDE (r_lc_dhkey = 0x4001d564) + [!provide] PROVIDE (r_lc_enc_cmp = 0x4001d8bc) + [!provide] PROVIDE (r_lc_enc_key_refresh = 0x4001d720) + [!provide] PROVIDE (r_lc_end_chk_colli = 0x4001d858) + [!provide] PROVIDE (r_lc_end_of_sniff_nego = 0x4001d9a4) + [!provide] PROVIDE (r_lc_enter_sniff_mode = 0x4001ddb8) + [!provide] PROVIDE (r_lc_epr_change_lk = 0x4001db38) + [!provide] PROVIDE (r_lc_epr_cmp = 0x4001da88) + [!provide] PROVIDE (r_lc_epr_resp = 0x4001e0b4) + [!provide] PROVIDE (r_lc_epr_rsw_cmp = 0x4001dd40) + [!provide] PROVIDE (r_lc_ext_feat = 0x40020d6c) + [!provide] PROVIDE (r_lc_feat = 0x40020984) + [!provide] PROVIDE (r_lc_hl_connect = 0x400209e8) + [!provide] PROVIDE (r_lc_init = 0x4001c948) + [!provide] PROVIDE (r_lc_init_calc_f3 = 0x4001deb0) + [!provide] PROVIDE (r_lc_initiator_epr = 0x4001e064) + [!provide] PROVIDE (r_lc_init_passkey_loop = 0x4001dfc0) + [!provide] PROVIDE (r_lc_init_start_mutual_auth = 0x4001df60) + [!provide] PROVIDE (r_lc_key_exch_end = 0x4001e140) + [!provide] PROVIDE (r_lc_legacy_pair = 0x4001e1c0) + [!provide] PROVIDE (r_lc_local_switch = 0x4001e22c) + [!provide] PROVIDE (r_lc_local_trans_mode = 0x4001e2e4) + [!provide] PROVIDE (r_lc_local_untrans_mode = 0x4001e3a0) + [!provide] PROVIDE (r_lc_loc_auth = 0x40020ecc) + [!provide] PROVIDE (r_lc_locepr_lkref = 0x4001d648) + [!provide] PROVIDE (r_lc_locepr_rsw = 0x4001d5d0) + [!provide] PROVIDE (r_lc_loc_sniff = 0x40020a6c) + [!provide] PROVIDE (r_lc_max_slot_mgt = 0x4001e410) + [!provide] PROVIDE (r_lc_mst_key = 0x4001e7c0) + [!provide] PROVIDE (r_lc_mst_qos_done = 0x4001ea80) + [!provide] PROVIDE (r_lc_mst_send_mst_key = 0x4001e8f4) + [!provide] PROVIDE (r_lc_mutual_auth_end = 0x4001e670) + [!provide] PROVIDE (r_lc_mutual_auth_end2 = 0x4001e4f4) + [!provide] PROVIDE (r_lc_packet_type = 0x40021038) + [!provide] PROVIDE (r_lc_pair = 0x40020ddc) + [!provide] PROVIDE (r_lc_pairing_cont = 0x4001eafc) + [!provide] PROVIDE (r_lc_passkey_comm = 0x4001ed20) + [!provide] PROVIDE (r_lc_prepare_all_links_for_clk_adj = 0x40021430) + [!provide] PROVIDE (r_lc_proc_rcv_dhkey = 0x4001edec) + [!provide] PROVIDE (r_lc_ptt = 0x4001ee2c) + [!provide] PROVIDE (r_lc_ptt_cmp = 0x4001eeec) + [!provide] PROVIDE (r_lc_qos_setup = 0x4001ef50) + [!provide] PROVIDE (r_lc_rd_rem_name = 0x4001efd0) + [!provide] PROVIDE (r_lc_release = 0x4001f8a8) + [!provide] PROVIDE (r_lc_rem_enc = 0x4001f124) + [!provide] PROVIDE (r_lc_rem_name_cont = 0x4001f290) + [!provide] PROVIDE (r_lc_rem_nego_trans_mode = 0x4001f1b4) + [!provide] PROVIDE (r_lc_rem_sniff = 0x40020ca4) + [!provide] PROVIDE (r_lc_rem_sniff_sub_rate = 0x40020b10) + [!provide] PROVIDE (r_lc_rem_switch = 0x4001f070) + [!provide] PROVIDE (r_lc_rem_trans_mode = 0x4001f314) + [!provide] PROVIDE (r_lc_rem_unsniff = 0x400207a0) + [!provide] PROVIDE (r_lc_rem_untrans_mode = 0x4001f36c) + [!provide] PROVIDE (r_lc_reset = 0x4001c99c) + [!provide] PROVIDE (r_lc_resp_auth = 0x4001f518) + [!provide] PROVIDE (r_lc_resp_calc_f3 = 0x4001f710) + [!provide] PROVIDE (r_lc_resp_num_comp = 0x40020074) + [!provide] PROVIDE (r_lc_resp_oob_nonce = 0x4001f694) + [!provide] PROVIDE (r_lc_resp_oob_wait_nonce = 0x4001f66c) + [!provide] PROVIDE (r_lc_resp_pair = 0x400208a4) + [!provide] PROVIDE (r_lc_resp_sec_auth = 0x4001f4a0) + [!provide] PROVIDE (r_lc_resp_wait_dhkey_cont = 0x4001f86c) + [!provide] PROVIDE (r_lc_restart_enc = 0x4001f8ec) + [!provide] PROVIDE (r_lc_restart_enc_cont = 0x4001f940) + [!provide] PROVIDE (r_lc_restore_afh_reporting = 0x4001f028) + [!provide] PROVIDE (r_lc_restore_to = 0x4001f9e0) + [!provide] PROVIDE (r_lc_ret_sniff_max_slot_chg = 0x4001fa30) + [!provide] PROVIDE (r_lc_rsw_clean_up = 0x4001dc70) + [!provide] PROVIDE (r_lc_rsw_done = 0x4001db94) + [!provide] PROVIDE (r_lc_sco_baseband_ack = 0x40022b00) + [!provide] PROVIDE (r_lc_sco_detach = 0x40021e40) + [!provide] PROVIDE (r_lc_sco_host_accept = 0x40022118) + [!provide] PROVIDE (r_lc_sco_host_reject = 0x400222b8) + [!provide] PROVIDE (r_lc_sco_host_request = 0x40021f4c) + [!provide] PROVIDE (r_lc_sco_host_request_disc = 0x4002235c) + [!provide] PROVIDE (r_lc_sco_init = 0x40021dc8) + [!provide] PROVIDE (r_lc_sco_peer_accept = 0x40022780) + [!provide] PROVIDE (r_lc_sco_peer_accept_disc = 0x40022a08) + [!provide] PROVIDE (r_lc_sco_peer_reject = 0x40022824) + [!provide] PROVIDE (r_lc_sco_peer_reject_disc = 0x40022a8c) + [!provide] PROVIDE (r_lc_sco_peer_request = 0x4002240c) + [!provide] PROVIDE (r_lc_sco_peer_request_disc = 0x400228ec) + [!provide] PROVIDE (r_lc_sco_release = 0x40021eec) + [!provide] PROVIDE (r_lc_sco_reset = 0x40021dfc) + [!provide] PROVIDE (r_lc_sco_timeout = 0x40022bd4) + [!provide] PROVIDE (r_lc_sec_auth_compute_sres = 0x4001f3ec) + [!provide] PROVIDE (r_lc_semi_key_cmp = 0x40020294) + [!provide] PROVIDE (r_lc_send_enc_chg_evt = 0x4002134c) + [!provide] PROVIDE (r_lc_send_enc_mode = 0x40020220) + [!provide] PROVIDE (r_lc_send_lmp = 0x4001c1a8) + [!provide] PROVIDE (r_lc_send_pdu_acc = 0x4001c21c) + [!provide] PROVIDE (r_lc_send_pdu_acc_ext4 = 0x4001c240) + [!provide] PROVIDE (r_lc_send_pdu_au_rand = 0x4001c308) + [!provide] PROVIDE (r_lc_send_pdu_auto_rate = 0x4001c5d0) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_ack = 0x4001c46c) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_req = 0x4001c494) + [!provide] PROVIDE (r_lc_send_pdu_comb_key = 0x4001c368) + [!provide] PROVIDE (r_lc_send_pdu_dhkey_chk = 0x4001c8e8) + [!provide] PROVIDE (r_lc_send_pdu_encaps_head = 0x4001c440) + [!provide] PROVIDE (r_lc_send_pdu_encaps_payl = 0x4001c410) + [!provide] PROVIDE (r_lc_send_pdu_enc_key_sz_req = 0x4001c670) + [!provide] PROVIDE (r_lc_send_pdu_esco_lk_rem_req = 0x4001c5a8) + [!provide] PROVIDE (r_lc_send_pdu_feats_ext_req = 0x4001c6ec) + [!provide] PROVIDE (r_lc_send_pdu_feats_res = 0x4001c694) + [!provide] PROVIDE (r_lc_send_pdu_in_rand = 0x4001c338) + [!provide] PROVIDE (r_lc_send_pdu_io_cap_res = 0x4001c72c) + [!provide] PROVIDE (r_lc_send_pdu_lsto = 0x4001c64c) + [!provide] PROVIDE (r_lc_send_pdu_max_slot = 0x4001c3c8) + [!provide] PROVIDE (r_lc_send_pdu_max_slot_req = 0x4001c3ec) + [!provide] PROVIDE (r_lc_send_pdu_not_acc = 0x4001c26c) + [!provide] PROVIDE (r_lc_send_pdu_not_acc_ext4 = 0x4001c294) + [!provide] PROVIDE (r_lc_send_pdu_num_comp_fail = 0x4001c770) + [!provide] PROVIDE (r_lc_send_pdu_pause_enc_aes_req = 0x4001c794) + [!provide] PROVIDE (r_lc_send_pdu_paus_enc_req = 0x4001c7c0) + [!provide] PROVIDE (r_lc_send_pdu_ptt_req = 0x4001c4c0) + [!provide] PROVIDE (r_lc_send_pdu_qos_req = 0x4001c82c) + [!provide] PROVIDE (r_lc_send_pdu_resu_enc_req = 0x4001c7e4) + [!provide] PROVIDE (r_lc_send_pdu_sco_lk_rem_req = 0x4001c580) + [!provide] PROVIDE (r_lc_send_pdu_set_afh = 0x4001c2c8) + [!provide] PROVIDE (r_lc_send_pdu_setup_cmp = 0x4001c808) + [!provide] PROVIDE (r_lc_send_pdu_slot_off = 0x4001c854) + [!provide] PROVIDE (r_lc_send_pdu_sniff_req = 0x4001c5f0) + [!provide] PROVIDE (r_lc_send_pdu_sp_cfm = 0x4001c518) + [!provide] PROVIDE (r_lc_send_pdu_sp_nb = 0x4001c4e8) + [!provide] PROVIDE (r_lc_send_pdu_sres = 0x4001c548) + [!provide] PROVIDE (r_lc_send_pdu_tim_acc = 0x4001c6cc) + [!provide] PROVIDE (r_lc_send_pdu_unit_key = 0x4001c398) + [!provide] PROVIDE (r_lc_send_pdu_unsniff_req = 0x4001c894) + [!provide] PROVIDE (r_lc_send_pdu_vers_req = 0x4001c8b4) + [!provide] PROVIDE (r_lc_skip_hl_oob_req = 0x400201bc) + [!provide] PROVIDE (r_lc_sniff_init = 0x40022cac) + [!provide] PROVIDE (r_lc_sniff_max_slot_chg = 0x40020590) + [!provide] PROVIDE (r_lc_sniff_reset = 0x40022cc8) + [!provide] PROVIDE (r_lc_sniff_slot_unchange = 0x40021100) + [!provide] PROVIDE (r_lc_sniff_sub_mode = 0x400204fc) + [!provide] PROVIDE (r_lc_sp_end = 0x400213a8) + [!provide] PROVIDE (r_lc_sp_fail = 0x40020470) + [!provide] PROVIDE (r_lc_sp_oob_tid_fail = 0x400204cc) + [!provide] PROVIDE (r_lc_ssr_nego = 0x4002125c) + [!provide] PROVIDE (r_lc_start = 0x4001ca28) + [!provide] PROVIDE (r_lc_start_enc = 0x4001fb28) + [!provide] PROVIDE (r_lc_start_enc_key_size = 0x4001fd9c) + [!provide] PROVIDE (r_lc_start_key_exch = 0x4001fe10) + [!provide] PROVIDE (r_lc_start_lmp_to = 0x4001fae8) + [!provide] PROVIDE (r_lc_start_oob = 0x4001fffc) + [!provide] PROVIDE (r_lc_start_passkey = 0x4001feac) + [!provide] PROVIDE (r_lc_start_passkey_loop = 0x4001ff88) + [!provide] PROVIDE (r_lc_stop_afh_report = 0x40020184) + [!provide] PROVIDE (r_lc_stop_enc = 0x40020110) + [!provide] PROVIDE (r_lc_switch_cmp = 0x40020448) + [!provide] PROVIDE (r_lc_unit_key_svr = 0x400206d8) + [!provide] PROVIDE (r_lc_unsniff = 0x40020c50) + [!provide] PROVIDE (r_lc_unsniff_cmp = 0x40020810) + [!provide] PROVIDE (r_lc_unsniff_cont = 0x40020750) + [!provide] PROVIDE (r_lc_upd_to = 0x4002065c) + [!provide] PROVIDE (r_lc_util_convert_pref_rate_to_packet_type = 0x4002f9b0) + [!provide] PROVIDE (r_lc_util_get_max_packet_size = 0x4002f4ac) + [!provide] PROVIDE (r_lc_util_get_offset_clke = 0x4002f538) + [!provide] PROVIDE (r_lc_util_get_offset_clkn = 0x4002f51c) + [!provide] PROVIDE (r_lc_util_set_loc_trans_coll = 0x4002f500) + [!provide] PROVIDE (r_lc_version = 0x40020a30) + [!provide] PROVIDE (lc_set_encap_pdu_data_p192 = 0x4002e4c8) + [!provide] PROVIDE (lc_set_encap_pdu_data_p256 = 0x4002e454) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lmp_clk_adj_req_handler = 0x4002751c) + [!provide] PROVIDE (lmp_feats_res_ext_handler = 0x4002cac4) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (lmp_pkt_type_tbl_req_handler = 0x40027574) + [!provide] PROVIDE (lmp_esco_link_req_handler = 0x40027610) + [!provide] PROVIDE (lmp_rmv_esco_link_req_handler = 0x400276e8) + [!provide] PROVIDE (lmp_ch_class_req_handler = 0x40027730) + [!provide] PROVIDE (lmp_ch_class_handler = 0x4002ca18) + [!provide] PROVIDE (lmp_ssr_req_handler = 0x4002780c) + [!provide] PROVIDE (lmp_ssr_res_handler = 0x40027900) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_pause_enc_req_handler = 0x4002df90) + [!provide] PROVIDE (lmp_resume_enc_req_handler = 0x4002e084) + [!provide] PROVIDE (lmp_num_comparison_fail_handler = 0x40027a74) + [!provide] PROVIDE (lmp_passkey_fail_handler = 0x40027aec) + [!provide] PROVIDE (lmp_keypress_notif_handler = 0x4002c5c8) + [!provide] PROVIDE (lmp_pwr_ctrl_req_handler = 0x400263bc) + [!provide] PROVIDE (lmp_pwr_ctrl_res_handler = 0x40026480) + [!provide] PROVIDE (lmp_auto_rate_handler = 0x40026548) + [!provide] PROVIDE (lmp_pref_rate_handler = 0x4002657c) + [!provide] PROVIDE (lmp_name_req_handler = 0x40025050) + [!provide] PROVIDE (lmp_name_res_handler = 0x400250bc) + [!provide] PROVIDE (lmp_not_accepted_handler = 0x400251d0) + [!provide] PROVIDE (lmp_accepted_handler = 0x4002e894) + [!provide] PROVIDE (lmp_clk_off_req_handler = 0x40025a44) + [!provide] PROVIDE (lmp_clk_off_res_handler = 0x40025ab8) + [!provide] PROVIDE (lmp_detach_handler = 0x40025b74) + [!provide] PROVIDE (lmp_tempkey_handler = 0x4002b6b0) + [!provide] PROVIDE (lmp_temprand_handler = 0x4002b74c) + [!provide] PROVIDE (lmp_sres_handler = 0x4002b840) + [!provide] PROVIDE (lmp_aurand_handler = 0x4002bda0) + [!provide] PROVIDE (lmp_unitkey_handler = 0x4002c13c) + [!provide] PROVIDE (lmp_combkey_handler = 0x4002c234) + [!provide] PROVIDE (lmp_inrand_handler = 0x4002c414) + [!provide] PROVIDE (lmp_oob_fail_handler = 0x40027b84) + [!provide] PROVIDE (lmp_ping_req_handler = 0x40027c08) + [!provide] PROVIDE (lmp_ping_res_handler = 0x40027c5c) + [!provide] PROVIDE (lmp_enc_mode_req_handler = 0x40025c60) + [!provide] PROVIDE (lmp_enc_key_size_req_handler = 0x40025e54) + [!provide] PROVIDE (lmp_switch_req_handler = 0x40025f84) + [!provide] PROVIDE (lmp_start_enc_req_handler = 0x4002e124) + [!provide] PROVIDE (lmp_stop_enc_req_handler = 0x4002de30) + [!provide] PROVIDE (lmp_sniff_req_handler = 0x400260c8) + [!provide] PROVIDE (lmp_unsniff_req_handler = 0x400261e0) + [!provide] PROVIDE (lmp_incr_pwr_req_handler = 0x4002629c) + [!provide] PROVIDE (lmp_decr_pwr_req_handler = 0x400262f8) + [!provide] PROVIDE (lmp_max_pwr_handler = 0x40026354) + [!provide] PROVIDE (lmp_min_pwr_handler = 0x40026388) + [!provide] PROVIDE (lmp_ver_req_handler = 0x400265f0) + [!provide] PROVIDE (lmp_ver_res_handler = 0x40026670) + [!provide] PROVIDE (lmp_qos_handler = 0x40026790) + [!provide] PROVIDE (lmp_qos_req_handler = 0x40026844) + [!provide] PROVIDE (lmp_sco_link_req_handler = 0x40026930) + [!provide] PROVIDE (lmp_rmv_sco_link_req_handler = 0x40026a10) + [!provide] PROVIDE (lmp_max_slot_handler = 0x40026a54) + [!provide] PROVIDE (lmp_max_slot_req_handler = 0x40026aac) + [!provide] PROVIDE (lmp_timing_accu_req_handler = 0x40026b54) + [!provide] PROVIDE (lmp_timing_accu_res_handler = 0x40026bcc) + [!provide] PROVIDE (lmp_setup_cmp_handler = 0x40026c84) + [!provide] PROVIDE (lmp_feats_res_handler = 0x4002b548) + [!provide] PROVIDE (lmp_feats_req_handler = 0x4002b620) + [!provide] PROVIDE (lmp_host_con_req_handler = 0x4002b3d8) + [!provide] PROVIDE (lmp_use_semi_perm_key_handler = 0x4002b4c4) + [!provide] PROVIDE (lmp_slot_off_handler = 0x40026cc8) + [!provide] PROVIDE (lmp_page_mode_req_handler = 0x40026d0c) + [!provide] PROVIDE (lmp_page_scan_mode_req_handler = 0x40026d4c) + [!provide] PROVIDE (lmp_supv_to_handler = 0x40026d94) + [!provide] PROVIDE (lmp_test_activate_handler = 0x40026e7c) + [!provide] PROVIDE (lmp_test_ctrl_handler = 0x40026ee4) + [!provide] PROVIDE (lmp_enc_key_size_mask_req_handler = 0x40027038) + [!provide] PROVIDE (lmp_enc_key_size_mask_res_handler = 0x400270a4) + [!provide] PROVIDE (lmp_set_afh_handler = 0x4002b2e4) + [!provide] PROVIDE (lmp_encaps_hdr_handler = 0x40027120) + [!provide] PROVIDE (lmp_encaps_payl_handler = 0x4002e590) + [!provide] PROVIDE (lmp_sp_nb_handler = 0x4002acf0) + [!provide] PROVIDE (lmp_sp_cfm_handler = 0x4002b170) + [!provide] PROVIDE (lmp_dhkey_chk_handler = 0x4002ab48) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_io_cap_res_handler = 0x4002c670) + [!provide] PROVIDE (lmp_io_cap_req_handler = 0x4002c7a4) + [!provide] PROVIDE (lc_cmd_cmp_bd_addr_send = 0x4002cec4) + [!provide] PROVIDE (ld_acl_tx_packet_type_select = 0x4002fb40) + [!provide] PROVIDE (ld_acl_sched = 0x40033268) + [!provide] PROVIDE (ld_acl_sniff_sched = 0x4003340c) + [!provide] PROVIDE (ld_acl_rx = 0x4003274c) + [!provide] PROVIDE (ld_acl_tx = 0x4002ffdc) + [!provide] PROVIDE (ld_acl_rx_sync = 0x4002fbec) + [!provide] PROVIDE (ld_acl_rx_sync2 = 0x4002fd8c) + [!provide] PROVIDE (ld_acl_rx_no_sync = 0x4002fe78) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_rsw_frm_cbk = 0x40033bb0) + [!provide] PROVIDE (ld_sco_modify = 0x40031778) + [!provide] PROVIDE (lm_cmd_cmp_send = 0x40051838) + [!provide] PROVIDE (ld_sco_frm_cbk = 0x400349dc) + [!provide] PROVIDE (ld_acl_sniff_frm_cbk = 0x4003482c) + [!provide] PROVIDE (ld_inq_end = 0x4003ab48) + [!provide] PROVIDE (ld_inq_sched = 0x4003aba4) + [!provide] PROVIDE (ld_inq_frm_cbk = 0x4003ae4c) + [!provide] PROVIDE (r_ld_acl_active_hop_types_get = 0x40036e10) + [!provide] PROVIDE (r_ld_acl_afh_confirm = 0x40036d40) + [!provide] PROVIDE (r_ld_acl_afh_prepare = 0x40036c84) + [!provide] PROVIDE (r_ld_acl_afh_set = 0x40036b60) + [!provide] PROVIDE (r_ld_acl_allowed_tx_packet_types_set = 0x40036810) + [!provide] PROVIDE (r_ld_acl_bcst_rx_dec = 0x40036394) + [!provide] PROVIDE (r_ld_acl_bit_off_get = 0x40036b18) + [!provide] PROVIDE (r_ld_acl_clk_adj_set = 0x40036a00) + [!provide] PROVIDE (r_ld_acl_clk_off_get = 0x40036b00) + [!provide] PROVIDE (r_ld_acl_clk_set = 0x40036950) + [!provide] PROVIDE (r_ld_acl_clock_offset_get = 0x400364c0) + [!provide] PROVIDE (r_ld_acl_current_tx_power_get = 0x400368f0) + [!provide] PROVIDE (r_ld_acl_data_flush = 0x400357bc) + [!provide] PROVIDE (r_ld_acl_data_tx = 0x4003544c) + [!provide] PROVIDE (r_ld_acl_edr_set = 0x4003678c) + [!provide] PROVIDE (r_ld_acl_enc_key_load = 0x40036404) + [!provide] PROVIDE (r_ld_acl_flow_off = 0x40035400) + [!provide] PROVIDE (r_ld_acl_flow_on = 0x4003541c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_get = 0x40035f9c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_set = 0x40035fe0) + [!provide] PROVIDE (r_ld_acl_init = 0x40034d08) + [!provide] PROVIDE (r_ld_acl_lmp_flush = 0x40035d80) + [!provide] PROVIDE (r_ld_acl_lmp_tx = 0x40035b34) + [!provide] PROVIDE (r_ld_acl_lsto_get = 0x400366b4) + [!provide] PROVIDE (r_ld_acl_lsto_set = 0x400366f8) + [!provide] PROVIDE (r_ld_acl_reset = 0x40034d24) + [!provide] PROVIDE (r_ld_acl_role_get = 0x40036b30) + [!provide] PROVIDE (r_ld_acl_rssi_delta_get = 0x40037028) + [!provide] PROVIDE (r_ld_acl_rsw_req = 0x40035e74) + [!provide] PROVIDE (r_ld_acl_rx_enc = 0x40036344) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_get = 0x40036e58) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_set = 0x40036ea0) + [!provide] PROVIDE (r_ld_acl_slot_offset_get = 0x4003653c) + [!provide] PROVIDE (r_ld_acl_slot_offset_set = 0x40036658) + [!provide] PROVIDE (r_ld_acl_sniff = 0x4003617c) + [!provide] PROVIDE (r_ld_acl_sniff_trans = 0x400360a8) + [!provide] PROVIDE (r_ld_acl_ssr_set = 0x40036274) + [!provide] PROVIDE (r_ld_acl_start = 0x40034ddc) + [!provide] PROVIDE (r_ld_acl_stop = 0x4003532c) + [!provide] PROVIDE (r_ld_acl_test_mode_set = 0x40036f24) + [!provide] PROVIDE (r_ld_acl_timing_accuracy_set = 0x4003673c) + [!provide] PROVIDE (r_ld_acl_t_poll_get = 0x40036024) + [!provide] PROVIDE (r_ld_acl_t_poll_set = 0x40036068) + [!provide] PROVIDE (r_ld_acl_tx_enc = 0x400362f8) + [!provide] PROVIDE (r_ld_acl_unsniff = 0x400361e0) + [!provide] PROVIDE (r_ld_active_check = 0x4003cac4) + [!provide] PROVIDE (r_ld_afh_ch_assess_data_get = 0x4003caec) + [!provide] PROVIDE (r_ld_bcst_acl_data_tx = 0x40038d3c) + [!provide] PROVIDE (r_ld_bcst_acl_init = 0x40038bd0) + [!provide] PROVIDE (r_ld_bcst_acl_reset = 0x40038bdc) + [!provide] PROVIDE (r_ld_bcst_acl_start = 0x4003882c) + [!provide] PROVIDE (r_ld_bcst_afh_update = 0x40038f3c) + [!provide] PROVIDE (r_ld_bcst_enc_key_load = 0x4003906c) + [!provide] PROVIDE (r_ld_bcst_lmp_tx = 0x40038bf8) + [!provide] PROVIDE (r_ld_bcst_tx_enc = 0x40038ff8) + [!provide] PROVIDE (r_ld_bd_addr_get = 0x4003ca20) + [!provide] PROVIDE (r_ld_channel_assess = 0x4003c184) + [!provide] PROVIDE (r_ld_class_of_dev_get = 0x4003ca34) + [!provide] PROVIDE (r_ld_class_of_dev_set = 0x4003ca50) + [!provide] PROVIDE (r_ld_csb_rx_afh_update = 0x40039af4) + [!provide] PROVIDE (r_ld_csb_rx_init = 0x40039690) + [!provide] PROVIDE (r_ld_csb_rx_reset = 0x4003969c) + [!provide] PROVIDE (r_ld_csb_rx_start = 0x4003972c) + [!provide] PROVIDE (r_ld_csb_rx_stop = 0x40039bb8) + [!provide] PROVIDE (r_ld_csb_tx_afh_update = 0x4003a5fc) + [!provide] PROVIDE (r_ld_csb_tx_clr_data = 0x4003a71c) + [!provide] PROVIDE (r_ld_csb_tx_dis = 0x4003a5e8) + [!provide] PROVIDE (r_ld_csb_tx_en = 0x4003a1c0) + [!provide] PROVIDE (r_ld_csb_tx_init = 0x4003a0e8) + [!provide] PROVIDE (r_ld_csb_tx_reset = 0x4003a0f8) + [!provide] PROVIDE (r_ld_csb_tx_set_data = 0x4003a6c0) + [!provide] PROVIDE (r_ld_fm_clk_isr = 0x4003a7a8) + [!provide] PROVIDE (r_ld_fm_frame_isr = 0x4003a82c) + [!provide] PROVIDE (r_ld_fm_init = 0x4003a760) + [!provide] PROVIDE (r_ld_fm_prog_check = 0x4003ab28) + [!provide] PROVIDE (r_ld_fm_prog_disable = 0x4003a984) + [!provide] PROVIDE (r_ld_fm_prog_enable = 0x4003a944) + [!provide] PROVIDE (r_ld_fm_prog_push = 0x4003a9d4) + [!provide] PROVIDE (r_ld_fm_reset = 0x4003a794) + [!provide] PROVIDE (r_ld_fm_rx_isr = 0x4003a7f4) + [!provide] PROVIDE (r_ld_fm_sket_isr = 0x4003a8a4) + [!provide] PROVIDE (r_ld_init = 0x4003c294) + [!provide] PROVIDE (r_ld_inq_init = 0x4003b15c) + [!provide] PROVIDE (r_ld_inq_reset = 0x4003b168) + [!provide] PROVIDE (r_ld_inq_start = 0x4003b1f0) + [!provide] PROVIDE (r_ld_inq_stop = 0x4003b4f0) + [!provide] PROVIDE (r_ld_iscan_eir_get = 0x4003c118) + [!provide] PROVIDE (r_ld_iscan_eir_set = 0x4003bfa0) + [!provide] PROVIDE (r_ld_iscan_init = 0x4003b9f0) + [!provide] PROVIDE (r_ld_iscan_reset = 0x4003ba14) + [!provide] PROVIDE (r_ld_iscan_restart = 0x4003ba44) + [!provide] PROVIDE (r_ld_iscan_start = 0x4003bb28) + [!provide] PROVIDE (r_ld_iscan_stop = 0x4003bf1c) + [!provide] PROVIDE (r_ld_iscan_tx_pwr_get = 0x4003c138) + [!provide] PROVIDE (r_ld_page_init = 0x4003d808) + [!provide] PROVIDE (r_ld_page_reset = 0x4003d814) + [!provide] PROVIDE (r_ld_page_start = 0x4003d848) + [!provide] PROVIDE (r_ld_page_stop = 0x4003da54) + [!provide] PROVIDE (r_ld_pca_coarse_clock_adjust = 0x4003e324) + [!provide] PROVIDE (r_ld_pca_init = 0x4003deb4) + [!provide] PROVIDE (r_ld_pca_initiate_clock_dragging = 0x4003e4ac) + [!provide] PROVIDE (r_ld_pca_local_config = 0x4003df6c) + [!provide] PROVIDE (r_ld_pca_mws_frame_sync = 0x4003e104) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_gt = 0x4003e278) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_lt = 0x4003e280) + [!provide] PROVIDE (r_ld_pca_reporting_enable = 0x4003e018) + [!provide] PROVIDE (r_ld_pca_reset = 0x4003df0c) + [!provide] PROVIDE (r_ld_pca_update_target_offset = 0x4003e050) + [!provide] PROVIDE (r_ld_pscan_evt_handler = 0x4003f238) + [!provide] PROVIDE (r_ld_pscan_init = 0x4003f474) + [!provide] PROVIDE (r_ld_pscan_reset = 0x4003f498) + [!provide] PROVIDE (r_ld_pscan_restart = 0x4003f4b8) + [!provide] PROVIDE (r_ld_pscan_start = 0x4003f514) + [!provide] PROVIDE (r_ld_pscan_stop = 0x4003f618) + [!provide] PROVIDE (r_ld_read_clock = 0x4003c9e4) + [!provide] PROVIDE (r_ld_reset = 0x4003c714) + [!provide] PROVIDE (r_ld_sched_acl_add = 0x4003f978) + [!provide] PROVIDE (r_ld_sched_acl_remove = 0x4003f99c) + [!provide] PROVIDE (r_ld_sched_compute = 0x4003f6f8) + [!provide] PROVIDE (r_ld_sched_init = 0x4003f7ac) + [!provide] PROVIDE (r_ld_sched_inq_add = 0x4003f8a8) + [!provide] PROVIDE (r_ld_sched_inq_remove = 0x4003f8d0) + [!provide] PROVIDE (r_ld_sched_iscan_add = 0x4003f7e8) + [!provide] PROVIDE (r_ld_sched_iscan_remove = 0x4003f808) + [!provide] PROVIDE (r_ld_sched_page_add = 0x4003f910) + [!provide] PROVIDE (r_ld_sched_page_remove = 0x4003f938) + [!provide] PROVIDE (r_ld_sched_pscan_add = 0x4003f828) + [!provide] PROVIDE (r_ld_sched_pscan_remove = 0x4003f848) + [!provide] PROVIDE (r_ld_sched_reset = 0x4003f7d4) + [!provide] PROVIDE (r_ld_sched_sco_add = 0x4003fa4c) + [!provide] PROVIDE (r_ld_sched_sco_remove = 0x4003fa9c) + [!provide] PROVIDE (r_ld_sched_sniff_add = 0x4003f9c4) + [!provide] PROVIDE (r_ld_sched_sniff_remove = 0x4003fa0c) + [!provide] PROVIDE (r_ld_sched_sscan_add = 0x4003f868) + [!provide] PROVIDE (r_ld_sched_sscan_remove = 0x4003f888) + [!provide] PROVIDE (r_ld_sco_audio_isr = 0x40037cc8) + [!provide] PROVIDE (r_ld_sco_data_tx = 0x40037ee8) + [!provide] PROVIDE (r_ld_sco_start = 0x40037110) + [!provide] PROVIDE (r_ld_sco_stop = 0x40037c40) + [!provide] PROVIDE (r_ld_sco_update = 0x40037a74) + [!provide] PROVIDE (r_ld_sscan_activated = 0x4004031c) + [!provide] PROVIDE (r_ld_sscan_init = 0x400402f0) + [!provide] PROVIDE (r_ld_sscan_reset = 0x400402fc) + [!provide] PROVIDE (r_ld_sscan_start = 0x40040384) + [!provide] PROVIDE (r_ld_strain_init = 0x400409f4) + [!provide] PROVIDE (r_ld_strain_reset = 0x40040a00) + [!provide] PROVIDE (r_ld_strain_start = 0x40040a8c) + [!provide] PROVIDE (r_ld_strain_stop = 0x40040df0) + [!provide] PROVIDE (r_ld_timing_accuracy_get = 0x4003caac) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_get = 0x4004131c) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_set = 0x40041308) + [!provide] PROVIDE (r_ld_util_bch_create = 0x40040fcc) + [!provide] PROVIDE (r_ld_util_fhs_pk = 0x400411c8) + [!provide] PROVIDE (r_ld_util_fhs_unpk = 0x40040e54) + [!provide] PROVIDE (r_ld_util_stp_pk = 0x400413f4) + [!provide] PROVIDE (r_ld_util_stp_unpk = 0x40041324) + [!provide] PROVIDE (r_ld_version_get = 0x4003ca6c) + [!provide] PROVIDE (r_ld_wlcoex_set = 0x4003caf8) + [!provide] PROVIDE (r_llc_ch_assess_get_current_ch_map = 0x40041574) + [!provide] PROVIDE (r_llc_ch_assess_get_local_ch_map = 0x4004150c) + [!provide] PROVIDE (r_llc_ch_assess_local = 0x40041494) + [!provide] PROVIDE (r_llc_ch_assess_merge_ch = 0x40041588) + [!provide] PROVIDE (r_llc_ch_assess_reass_ch = 0x400415c0) + [!provide] PROVIDE (r_llc_common_cmd_complete_send = 0x40044eac) + [!provide] PROVIDE (r_llc_common_cmd_status_send = 0x40044ee0) + [!provide] PROVIDE (r_llc_common_enc_change_evt_send = 0x40044f6c) + [!provide] PROVIDE (r_llc_common_enc_key_ref_comp_evt_send = 0x40044f38) + [!provide] PROVIDE (r_llc_common_flush_occurred_send = 0x40044f0c) + [!provide] PROVIDE (r_llc_common_nb_of_pkt_comp_evt_send = 0x40045000) + [!provide] PROVIDE (r_llc_con_update_complete_send = 0x40044d68) + [!provide] PROVIDE (r_llc_con_update_finished = 0x4004518c) + [!provide] PROVIDE (r_llc_con_update_ind = 0x40045038) + [!provide] PROVIDE (r_llc_discon_event_complete_send = 0x40044a30) + [!provide] PROVIDE (r_llc_end_evt_defer = 0x40046330) + [!provide] PROVIDE (r_llc_feats_rd_event_send = 0x40044e0c) + [!provide] PROVIDE (r_llc_init = 0x40044778) + [!provide] PROVIDE (r_llc_le_con_cmp_evt_send = 0x40044a78) + [!provide] PROVIDE (r_llc_llcp_ch_map_update_pdu_send = 0x40043f94) + [!provide] PROVIDE (r_llc_llcp_con_param_req_pdu_send = 0x400442fc) + [!provide] PROVIDE (r_llc_llcp_con_param_rsp_pdu_send = 0x40044358) + [!provide] PROVIDE (r_llc_llcp_con_update_pdu_send = 0x400442c4) + [!provide] PROVIDE (r_llc_llcp_enc_req_pdu_send = 0x40044064) + [!provide] PROVIDE (r_llc_llcp_enc_rsp_pdu_send = 0x40044160) + [!provide] PROVIDE (r_llc_llcp_feats_req_pdu_send = 0x400443b4) + [!provide] PROVIDE (r_llc_llcp_feats_rsp_pdu_send = 0x400443f0) + [!provide] PROVIDE (r_llc_llcp_get_autorize = 0x4004475c) + [!provide] PROVIDE (r_llc_llcp_length_req_pdu_send = 0x40044574) + [!provide] PROVIDE (r_llc_llcp_length_rsp_pdu_send = 0x400445ac) + [!provide] PROVIDE (r_llc_llcp_pause_enc_req_pdu_send = 0x40043fd8) + [!provide] PROVIDE (r_llc_llcp_pause_enc_rsp_pdu_send = 0x40044010) + [!provide] PROVIDE (r_llc_llcp_ping_req_pdu_send = 0x4004454c) + [!provide] PROVIDE (r_llc_llcp_ping_rsp_pdu_send = 0x40044560) + [!provide] PROVIDE (r_llc_llcp_recv_handler = 0x40044678) + [!provide] PROVIDE (r_llc_llcp_reject_ind_pdu_send = 0x4004425c) + [!provide] PROVIDE (r_llc_llcp_start_enc_req_pdu_send = 0x4004441c) + [!provide] PROVIDE (r_llc_llcp_start_enc_rsp_pdu_send = 0x400441f8) + [!provide] PROVIDE (r_llc_llcp_terminate_ind_pdu_send = 0x400444b0) + [!provide] PROVIDE (r_llc_llcp_tester_send = 0x400445e4) + [!provide] PROVIDE (r_llc_llcp_unknown_rsp_send_pdu = 0x40044534) + [!provide] PROVIDE (r_llc_llcp_version_ind_pdu_send = 0x40043f6c) + [!provide] PROVIDE (r_llc_lsto_con_update = 0x40045098) + [!provide] PROVIDE (r_llc_ltk_req_send = 0x40044dc0) + [!provide] PROVIDE (r_llc_map_update_finished = 0x40045260) + [!provide] PROVIDE (r_llc_map_update_ind = 0x400450f0) + [!provide] PROVIDE (r_llc_pdu_acl_tx_ack_defer = 0x400464dc) + [!provide] PROVIDE (r_llc_pdu_defer = 0x40046528) + [!provide] PROVIDE (r_llc_pdu_llcp_tx_ack_defer = 0x400463ac) + [!provide] PROVIDE (r_llc_reset = 0x400447b8) + [!provide] PROVIDE (r_llc_start = 0x400447f4) + [!provide] PROVIDE (r_llc_stop = 0x400449ac) + [!provide] PROVIDE (r_llc_util_bw_mgt = 0x4004629c) + [!provide] PROVIDE (r_llc_util_clear_operation_ptr = 0x40046234) + [!provide] PROVIDE (r_llc_util_dicon_procedure = 0x40046130) + [!provide] PROVIDE (r_llc_util_get_free_conhdl = 0x400460c8) + [!provide] PROVIDE (r_llc_util_get_nb_active_link = 0x40046100) + [!provide] PROVIDE (r_llc_util_set_auth_payl_to_margin = 0x400461f4) + [!provide] PROVIDE (r_llc_util_set_llcp_discard_enable = 0x400461c8) + [!provide] PROVIDE (r_llc_util_update_channel_map = 0x400461ac) + [!provide] PROVIDE (r_llc_version_rd_event_send = 0x40044e60) + [!provide] PROVIDE (r_lld_adv_start = 0x40048b38) + [!provide] PROVIDE (r_lld_adv_stop = 0x40048ea0) + [!provide] PROVIDE (r_lld_ch_map_ind = 0x4004a2f4) + [!provide] PROVIDE (r_lld_con_param_req = 0x40049f0c) + [!provide] PROVIDE (r_lld_con_param_rsp = 0x40049e00) + [!provide] PROVIDE (r_lld_con_start = 0x400491f8) + [!provide] PROVIDE (r_lld_con_stop = 0x40049fdc) + [!provide] PROVIDE (r_lld_con_update_after_param_req = 0x40049bcc) + [!provide] PROVIDE (r_lld_con_update_ind = 0x4004a30c) + [!provide] PROVIDE (r_lld_con_update_req = 0x40049b60) + [!provide] PROVIDE (r_lld_core_reset = 0x40048a9c) + [!provide] PROVIDE (r_lld_crypt_isr = 0x4004a324) + [!provide] PROVIDE (r_lld_evt_adv_create = 0x400481f4) + [!provide] PROVIDE (r_lld_evt_canceled = 0x400485c8) + [!provide] PROVIDE (r_lld_evt_channel_next = 0x40046aac) + [!provide] PROVIDE (r_lld_evt_deffered_elt_handler = 0x400482bc) + [!provide] PROVIDE (r_lld_evt_delete_elt_handler = 0x40046974) + [!provide] PROVIDE (r_lld_evt_delete_elt_push = 0x40046a3c) + [!provide] PROVIDE (r_lld_evt_drift_compute = 0x40047670) + [!provide] PROVIDE (r_lld_evt_elt_delete = 0x40047538) + [!provide] PROVIDE (r_lld_evt_elt_insert = 0x400474c8) + [!provide] PROVIDE (r_lld_evt_end = 0x400483e8) + [!provide] PROVIDE (r_lld_evt_end_isr = 0x4004862c) + [!provide] PROVIDE (r_lld_evt_init = 0x40046b3c) + [!provide] PROVIDE (r_lld_evt_init_evt = 0x40046cd0) + [!provide] PROVIDE (r_lld_evt_move_to_master = 0x40047ba0) + [!provide] PROVIDE (r_lld_evt_move_to_slave = 0x40047e18) + [!provide] PROVIDE (r_lld_evt_prevent_stop = 0x40047adc) + [!provide] PROVIDE (r_lld_evt_restart = 0x40046d50) + [!provide] PROVIDE (r_lld_evt_rx = 0x40048578) + [!provide] PROVIDE (r_lld_evt_rx_isr = 0x40048678) + [!provide] PROVIDE (r_lld_evt_scan_create = 0x40047ae8) + [!provide] PROVIDE (r_lld_evt_schedule = 0x40047908) + [!provide] PROVIDE (r_lld_evt_schedule_next = 0x400477dc) + [!provide] PROVIDE (r_lld_evt_schedule_next_instant = 0x400476a8) + [!provide] PROVIDE (r_lld_evt_slave_update = 0x40048138) + [!provide] PROVIDE (r_lld_evt_update_create = 0x40047cd8) + [!provide] PROVIDE (r_lld_get_mode = 0x40049ff8) + [!provide] PROVIDE (r_lld_init = 0x4004873c) + [!provide] PROVIDE (r_lld_move_to_master = 0x400499e0) + [!provide] PROVIDE (r_lld_move_to_slave = 0x4004a024) + [!provide] PROVIDE (r_lld_pdu_adv_pack = 0x4004b488) + [!provide] PROVIDE (r_lld_pdu_check = 0x4004ac34) + [!provide] PROVIDE (r_lld_pdu_data_send = 0x4004b018) + [!provide] PROVIDE (r_lld_pdu_data_tx_push = 0x4004aecc) + [!provide] PROVIDE (r_lld_pdu_rx_handler = 0x4004b4d4) + [!provide] PROVIDE (r_lld_pdu_send_packet = 0x4004b774) + [!provide] PROVIDE (r_lld_pdu_tx_flush = 0x4004b414) + [!provide] PROVIDE (r_lld_pdu_tx_loop = 0x4004ae40) + [!provide] PROVIDE (r_lld_pdu_tx_prog = 0x4004b120) + [!provide] PROVIDE (r_lld_pdu_tx_push = 0x4004b080) + [!provide] PROVIDE (r_lld_ral_renew_req = 0x4004a73c) + [!provide] PROVIDE (r_lld_scan_start = 0x40048ee0) + [!provide] PROVIDE (r_lld_scan_stop = 0x40049190) + [!provide] PROVIDE (r_lld_test_mode_rx = 0x4004a540) + [!provide] PROVIDE (r_lld_test_mode_tx = 0x4004a350) + [!provide] PROVIDE (r_lld_test_stop = 0x4004a710) + [!provide] PROVIDE (r_lld_util_anchor_point_move = 0x4004bacc) + [!provide] PROVIDE (r_lld_util_compute_ce_max = 0x4004bc0c) + [!provide] PROVIDE (r_lld_util_connection_param_set = 0x4004ba40) + [!provide] PROVIDE (r_lld_util_dle_set_cs_fields = 0x4004ba90) + [!provide] PROVIDE (r_lld_util_eff_tx_time_set = 0x4004bd88) + [!provide] PROVIDE (r_lld_util_elt_programmed = 0x4004bce0) + [!provide] PROVIDE (r_lld_util_flush_list = 0x4004bbd8) + [!provide] PROVIDE (r_lld_util_freq2chnl = 0x4004b9e4) + [!provide] PROVIDE (r_lld_util_get_bd_address = 0x4004b8ac) + [!provide] PROVIDE (r_lld_util_get_local_offset = 0x4004ba10) + [!provide] PROVIDE (r_lld_util_get_peer_offset = 0x4004ba24) + [!provide] PROVIDE (r_lld_util_get_tx_pkt_cnt = 0x4004bd80) + [!provide] PROVIDE (r_lld_util_instant_get = 0x4004b890) + [!provide] PROVIDE (r_lld_util_instant_ongoing = 0x4004bbfc) + [!provide] PROVIDE (r_lld_util_priority_set = 0x4004bd10) + [!provide] PROVIDE (r_lld_util_priority_update = 0x4004bd78) + [!provide] PROVIDE (r_lld_util_ral_force_rpa_renew = 0x4004b980) + [!provide] PROVIDE (r_lld_util_set_bd_address = 0x4004b8f8) + [!provide] PROVIDE (r_lld_wlcoex_set = 0x4004bd98) + [!provide] PROVIDE (r_llm_ble_ready = 0x4004cc34) + [!provide] PROVIDE (r_llm_common_cmd_complete_send = 0x4004d288) + [!provide] PROVIDE (r_llm_common_cmd_status_send = 0x4004d2b4) + [!provide] PROVIDE (r_llm_con_req_ind = 0x4004cc54) + [!provide] PROVIDE (r_llm_con_req_tx_cfm = 0x4004d158) + [!provide] PROVIDE (r_llm_create_con = 0x4004de78) + [!provide] PROVIDE (r_llm_encryption_done = 0x4004dff8) + [!provide] PROVIDE (r_llm_encryption_start = 0x4004e128) + [!provide] PROVIDE (r_llm_end_evt_defer = 0x4004eb6c) + [!provide] PROVIDE (r_llm_init = 0x4004c9f8) + [!provide] PROVIDE (r_llm_le_adv_report_ind = 0x4004cdf4) + [!provide] PROVIDE (r_llm_pdu_defer = 0x4004ec48) + [!provide] PROVIDE (r_llm_ral_clear = 0x4004e1fc) + [!provide] PROVIDE (r_llm_ral_dev_add = 0x4004e23c) + [!provide] PROVIDE (r_llm_ral_dev_rm = 0x4004e3bc) + [!provide] PROVIDE (r_llm_ral_get_rpa = 0x4004e400) + [!provide] PROVIDE (r_llm_ral_set_timeout = 0x4004e4a0) + [!provide] PROVIDE (r_llm_ral_update = 0x4004e4f8) + [!provide] PROVIDE (r_llm_set_adv_data = 0x4004d960) + [!provide] PROVIDE (r_llm_set_adv_en = 0x4004d7ec) + [!provide] PROVIDE (r_llm_set_adv_param = 0x4004d5f4) + [!provide] PROVIDE (r_llm_set_scan_en = 0x4004db64) + [!provide] PROVIDE (r_llm_set_scan_param = 0x4004dac8) + [!provide] PROVIDE (r_llm_set_scan_rsp_data = 0x4004da14) + [!provide] PROVIDE (r_llm_test_mode_start_rx = 0x4004d534) + [!provide] PROVIDE (r_llm_test_mode_start_tx = 0x4004d2fc) + [!provide] PROVIDE (r_llm_util_adv_data_update = 0x4004e8fc) + [!provide] PROVIDE (r_llm_util_apply_bd_addr = 0x4004e868) + [!provide] PROVIDE (r_llm_util_bd_addr_in_ral = 0x4004eb08) + [!provide] PROVIDE (r_llm_util_bd_addr_in_wl = 0x4004e788) + [!provide] PROVIDE (r_llm_util_bd_addr_wl_position = 0x4004e720) + [!provide] PROVIDE (r_llm_util_bl_add = 0x4004e9ac) + [!provide] PROVIDE (r_llm_util_bl_check = 0x4004e930) + [!provide] PROVIDE (r_llm_util_bl_rem = 0x4004ea70) + [!provide] PROVIDE (r_llm_util_check_address_validity = 0x4004e7e4) + [!provide] PROVIDE (r_llm_util_check_evt_mask = 0x4004e8b0) + [!provide] PROVIDE (r_llm_util_check_map_validity = 0x4004e800) + [!provide] PROVIDE (r_llm_util_get_channel_map = 0x4004e8d4) + [!provide] PROVIDE (r_llm_util_get_supp_features = 0x4004e8e8) + [!provide] PROVIDE (r_llm_util_set_public_addr = 0x4004e89c) + [!provide] PROVIDE (r_llm_wl_clr = 0x4004dc54) + [!provide] PROVIDE (r_llm_wl_dev_add = 0x4004dcc0) + [!provide] PROVIDE (r_llm_wl_dev_add_hdl = 0x4004dd38) + [!provide] PROVIDE (r_llm_wl_dev_rem = 0x4004dcfc) + [!provide] PROVIDE (r_llm_wl_dev_rem_hdl = 0x4004dde0) + [!provide] PROVIDE (r_lm_acl_disc = 0x4004f148) + [!provide] PROVIDE (r_LM_AddSniff = 0x40022d20) + [!provide] PROVIDE (r_lm_add_sync = 0x40051358) + [!provide] PROVIDE (r_lm_afh_activate_timer = 0x4004f444) + [!provide] PROVIDE (r_lm_afh_ch_ass_en_get = 0x4004f3f8) + [!provide] PROVIDE (r_lm_afh_host_ch_class_get = 0x4004f410) + [!provide] PROVIDE (r_lm_afh_master_ch_map_get = 0x4004f43c) + [!provide] PROVIDE (r_lm_afh_peer_ch_class_set = 0x4004f418) + [!provide] PROVIDE (r_lm_check_active_sync = 0x40051334) + [!provide] PROVIDE (r_LM_CheckEdrFeatureRequest = 0x4002f90c) + [!provide] PROVIDE (r_LM_CheckSwitchInstant = 0x4002f8c0) + [!provide] PROVIDE (r_lm_check_sync_hl_rsp = 0x4005169c) + [!provide] PROVIDE (r_lm_clk_adj_ack_pending_clear = 0x4004f514) + [!provide] PROVIDE (r_lm_clk_adj_instant_pending_set = 0x4004f4d8) + [!provide] PROVIDE (r_LM_ComputePacketType = 0x4002f554) + [!provide] PROVIDE (r_LM_ComputeSniffSubRate = 0x400233ac) + [!provide] PROVIDE (r_lm_debug_key_compare_192 = 0x4004f3a8) + [!provide] PROVIDE (r_lm_debug_key_compare_256 = 0x4004f3d0) + [!provide] PROVIDE (r_lm_dhkey_calc_init = 0x40013234) + [!provide] PROVIDE (r_lm_dhkey_compare = 0x400132d8) + [!provide] PROVIDE (r_lm_dut_mode_en_get = 0x4004f3ec) + [!provide] PROVIDE (r_LM_ExtractMaxEncKeySize = 0x4001aca4) + [!provide] PROVIDE (r_lm_f1 = 0x40012bb8) + [!provide] PROVIDE (r_lm_f2 = 0x40012cfc) + [!provide] PROVIDE (r_lm_f3 = 0x40013050) + [!provide] PROVIDE (r_lm_g = 0x40012f90) + [!provide] PROVIDE (r_LM_GetAFHSwitchInstant = 0x4002f86c) + [!provide] PROVIDE (r_lm_get_auth_en = 0x4004f1ac) + [!provide] PROVIDE (r_lm_get_common_pkt_types = 0x4002fa1c) + [!provide] PROVIDE (r_LM_GetConnectionAcceptTimeout = 0x4004f1f4) + [!provide] PROVIDE (r_LM_GetFeature = 0x4002f924) + [!provide] PROVIDE (r_LM_GetLinkTimeout = 0x400233ec) + [!provide] PROVIDE (r_LM_GetLocalNameSeg = 0x4004f200) + [!provide] PROVIDE (r_lm_get_loopback_mode = 0x4004f248) + [!provide] PROVIDE (r_LM_GetMasterEncKeySize = 0x4001b29c) + [!provide] PROVIDE (r_LM_GetMasterEncRand = 0x4001b288) + [!provide] PROVIDE (r_LM_GetMasterKey = 0x4001b260) + [!provide] PROVIDE (r_LM_GetMasterKeyRand = 0x4001b274) + [!provide] PROVIDE (r_lm_get_min_sync_intv = 0x400517a8) + [!provide] PROVIDE (r_lm_get_nb_acl = 0x4004ef9c) + [!provide] PROVIDE (r_lm_get_nb_sync_link = 0x4005179c) + [!provide] PROVIDE (r_lm_get_nonce = 0x400131c4) + [!provide] PROVIDE (r_lm_get_oob_local_commit = 0x4004f374) + [!provide] PROVIDE (r_lm_get_oob_local_data_192 = 0x4004f2d4) + [!provide] PROVIDE (r_lm_get_oob_local_data_256 = 0x4004f318) + [!provide] PROVIDE (r_LM_GetPINType = 0x4004f1e8) + [!provide] PROVIDE (r_lm_get_priv_key_192 = 0x4004f278) + [!provide] PROVIDE (r_lm_get_priv_key_256 = 0x4004f2b8) + [!provide] PROVIDE (r_lm_get_pub_key_192 = 0x4004f258) + [!provide] PROVIDE (r_lm_get_pub_key_256 = 0x4004f298) + [!provide] PROVIDE (r_LM_GetQoSParam = 0x4002f6e0) + [!provide] PROVIDE (r_lm_get_sec_con_host_supp = 0x4004f1d4) + [!provide] PROVIDE (r_LM_GetSniffSubratingParam = 0x4002325c) + [!provide] PROVIDE (r_lm_get_sp_en = 0x4004f1c0) + [!provide] PROVIDE (r_LM_GetSwitchInstant = 0x4002f7f8) + [!provide] PROVIDE (r_lm_get_synchdl = 0x4005175c) + [!provide] PROVIDE (r_lm_get_sync_param = 0x400503b4) + [!provide] PROVIDE (r_lm_init = 0x4004ed34) + [!provide] PROVIDE (r_lm_init_sync = 0x400512d8) + [!provide] PROVIDE (r_lm_is_acl_con = 0x4004f47c) + [!provide] PROVIDE (r_lm_is_acl_con_role = 0x4004f49c) + [!provide] PROVIDE (r_lm_is_clk_adj_ack_pending = 0x4004f4e8) + [!provide] PROVIDE (r_lm_is_clk_adj_instant_pending = 0x4004f4c8) + [!provide] PROVIDE (r_lm_local_ext_fr_configured = 0x4004f540) + [!provide] PROVIDE (r_lm_look_for_stored_link_key = 0x4002f948) + [!provide] PROVIDE (r_lm_look_for_sync = 0x40051774) + [!provide] PROVIDE (r_lm_lt_addr_alloc = 0x4004ef1c) + [!provide] PROVIDE (r_lm_lt_addr_free = 0x4004ef74) + [!provide] PROVIDE (r_lm_lt_addr_reserve = 0x4004ef48) + [!provide] PROVIDE (r_LM_MakeCof = 0x4002f84c) + [!provide] PROVIDE (r_LM_MakeRandVec = 0x400112d8) + [!provide] PROVIDE (r_lm_master_clk_adj_req_handler = 0x40054180) + [!provide] PROVIDE (r_LM_MaxSlot = 0x4002f694) + [!provide] PROVIDE (r_lm_modif_sync = 0x40051578) + [!provide] PROVIDE (r_lm_n_is_zero = 0x40012170) + [!provide] PROVIDE (r_lm_num_clk_adj_ack_pending_set = 0x4004f500) + [!provide] PROVIDE (r_lm_oob_f1 = 0x40012e54) + [!provide] PROVIDE (r_lm_pca_sscan_link_get = 0x4004f560) + [!provide] PROVIDE (r_lm_pca_sscan_link_set = 0x4004f550) + [!provide] PROVIDE (nvds_null_read = 0x400542a0) + [!provide] PROVIDE (nvds_null_write = 0x400542a8) + [!provide] PROVIDE (nvds_null_erase = 0x400542b0) + [!provide] PROVIDE (nvds_read = 0x400542c4) + [!provide] PROVIDE (nvds_write = 0x400542fc) + [!provide] PROVIDE (nvds_erase = 0x40054334) + [!provide] PROVIDE (nvds_init_memory = 0x40054358) + [!provide] PROVIDE (r_lmp_pack = 0x4001135c) + [!provide] PROVIDE (r_lmp_unpack = 0x4001149c) + [!provide] PROVIDE (r_lm_read_features = 0x4004f0d8) + [!provide] PROVIDE (r_LM_RemoveSniff = 0x40023124) + [!provide] PROVIDE (r_LM_RemoveSniffSubrating = 0x400233c4) + [!provide] PROVIDE (r_lm_remove_sync = 0x400517c8) + [!provide] PROVIDE (r_lm_reset_sync = 0x40051304) + [!provide] PROVIDE (r_lm_role_switch_finished = 0x4004f028) + [!provide] PROVIDE (r_lm_role_switch_start = 0x4004efe0) + [!provide] PROVIDE (r_lm_sco_nego_end = 0x40051828) + [!provide] PROVIDE (r_LM_SniffSubrateNegoRequired = 0x40023334) + [!provide] PROVIDE (r_LM_SniffSubratingHlReq = 0x40023154) + [!provide] PROVIDE (r_LM_SniffSubratingPeerReq = 0x400231dc) + [!provide] PROVIDE (r_lm_sp_debug_mode_get = 0x4004f398) + [!provide] PROVIDE (r_lm_sp_n192_convert_wnaf = 0x400123c0) + [!provide] PROVIDE (r_lm_sp_n_one = 0x400123a4) + [!provide] PROVIDE (r_lm_sp_p192_add = 0x40012828) + [!provide] PROVIDE (r_lm_sp_p192_dbl = 0x4001268c) + [!provide] PROVIDE (r_lm_sp_p192_invert = 0x40012b6c) + [!provide] PROVIDE (r_lm_sp_p192_point_jacobian_to_affine = 0x40012468) + [!provide] PROVIDE (r_lm_sp_p192_points_jacobian_to_affine = 0x400124e4) + [!provide] PROVIDE (r_lm_sp_p192_point_to_inf = 0x40012458) + [!provide] PROVIDE (r_lm_sp_pre_compute_points = 0x40012640) + [!provide] PROVIDE (r_lm_sp_sha256_calculate = 0x400121a0) + [!provide] PROVIDE (r_LM_SuppressAclPacket = 0x4002f658) + [!provide] PROVIDE (r_lm_sync_flow_ctrl_en_get = 0x4004f404) + [!provide] PROVIDE (r_LM_UpdateAclEdrPacketType = 0x4002f5d8) + [!provide] PROVIDE (r_LM_UpdateAclPacketType = 0x4002f584) + [!provide] PROVIDE (r_modules_funcs = 0x3ffafd6c) + [!provide] PROVIDE (r_modules_funcs_p = 0x3ffafd68) + [!provide] PROVIDE (r_nvds_del = 0x400544c4) + [!provide] PROVIDE (r_nvds_get = 0x40054488) + [!provide] PROVIDE (r_nvds_init = 0x40054410) + [!provide] PROVIDE (r_nvds_lock = 0x400544fc) + [!provide] PROVIDE (r_nvds_put = 0x40054534) + [!provide] PROVIDE (rom_abs_temp = 0x400054f0) + [!provide] PROVIDE (rom_bb_bss_bw_40_en = 0x4000401c) + [!provide] PROVIDE (rom_bb_bss_cbw40_dig = 0x40003bac) + [!provide] PROVIDE (rom_bb_rx_ht20_cen_bcov_en = 0x40003734) + [!provide] PROVIDE (rom_bb_tx_ht20_cen = 0x40003760) + [!provide] PROVIDE (rom_bb_wdg_test_en = 0x40003b70) + [!provide] PROVIDE (rom_cbw2040_cfg = 0x400040b0) + [!provide] PROVIDE (rom_check_noise_floor = 0x40003c78) + [!provide] PROVIDE (rom_chip_i2c_readReg = 0x40004110) + [!provide] PROVIDE (rom_chip_i2c_writeReg = 0x40004168) + [!provide] PROVIDE (rom_chip_v7_bt_init = 0x40004d8c) + [!provide] PROVIDE (rom_chip_v7_rx_init = 0x40004cec) + [!provide] PROVIDE (rom_chip_v7_rx_rifs_en = 0x40003d90) + [!provide] PROVIDE (rom_chip_v7_tx_init = 0x40004d18) + [!provide] PROVIDE (rom_clk_force_on_vit = 0x40003710) + [!provide] PROVIDE (rom_correct_rf_ana_gain = 0x400062a8) + [!provide] PROVIDE (rom_dc_iq_est = 0x400055c8) + [!provide] PROVIDE (rom_disable_agc = 0x40002fa4) + [!provide] PROVIDE (rom_enable_agc = 0x40002fcc) + [!provide] PROVIDE (rom_en_pwdet = 0x4000506c) + [!provide] PROVIDE (rom_gen_rx_gain_table = 0x40003e3c) + [!provide] PROVIDE (rom_get_data_sat = 0x4000312c) + [!provide] PROVIDE (rom_get_fm_sar_dout = 0x40005204) + [!provide] PROVIDE (rom_get_power_db = 0x40005fc8) + [!provide] PROVIDE (rom_get_pwctrl_correct = 0x400065d4) + [!provide] PROVIDE (rom_get_rfcal_rxiq_data = 0x40005bbc) + [!provide] PROVIDE (rom_get_rf_gain_qdb = 0x40006290) + [!provide] PROVIDE (rom_get_sar_dout = 0x40006564) + [!provide] PROVIDE (rom_i2c_readReg = 0x40004148) + 0x00000000400041c0 PROVIDE (rom_i2c_readReg_Mask = 0x400041c0) + 0x00000000400041a4 PROVIDE (rom_i2c_writeReg = 0x400041a4) + 0x00000000400041fc PROVIDE (rom_i2c_writeReg_Mask = 0x400041fc) + [!provide] PROVIDE (rom_index_to_txbbgain = 0x40004df8) + [!provide] PROVIDE (rom_iq_est_disable = 0x40005590) + [!provide] PROVIDE (rom_iq_est_enable = 0x40005514) + [!provide] PROVIDE (rom_linear_to_db = 0x40005f64) + [!provide] PROVIDE (rom_loopback_mode_en = 0x400030f8) + [!provide] PROVIDE (rom_meas_tone_pwr_db = 0x40006004) + [!provide] PROVIDE (rom_mhz2ieee = 0x4000404c) + [!provide] PROVIDE (rom_noise_floor_auto_set = 0x40003bdc) + [!provide] PROVIDE (rom_pbus_debugmode = 0x40004458) + [!provide] PROVIDE (rom_pbus_force_mode = 0x40004270) + [!provide] PROVIDE (rom_pbus_force_test = 0x400043c0) + [!provide] PROVIDE (rom_pbus_rd = 0x40004414) + [!provide] PROVIDE (rom_pbus_rd_addr = 0x40004334) + [!provide] PROVIDE (rom_pbus_rd_shift = 0x40004374) + [!provide] PROVIDE (rom_pbus_rx_dco_cal = 0x40005620) + [!provide] PROVIDE (rom_pbus_set_dco = 0x40004638) + [!provide] PROVIDE (rom_pbus_set_rxgain = 0x40004480) + [!provide] PROVIDE (rom_pbus_workmode = 0x4000446c) + [!provide] PROVIDE (rom_pbus_xpd_rx_off = 0x40004508) + [!provide] PROVIDE (rom_pbus_xpd_rx_on = 0x4000453c) + [!provide] PROVIDE (rom_pbus_xpd_tx_off = 0x40004590) + [!provide] PROVIDE (rom_pbus_xpd_tx_on = 0x400045e0) + [!provide] PROVIDE (rom_phy_disable_agc = 0x40002f6c) + [!provide] PROVIDE (rom_phy_disable_cca = 0x40003000) + [!provide] PROVIDE (rom_phy_enable_agc = 0x40002f88) + [!provide] PROVIDE (rom_phy_enable_cca = 0x4000302c) + [!provide] PROVIDE (rom_phy_freq_correct = 0x40004b44) + [!provide] PROVIDE (rom_phyFuns = 0x3ffae0c0) + [!provide] PROVIDE (rom_phy_get_noisefloor = 0x40003c2c) + [!provide] PROVIDE (rom_phy_get_vdd33 = 0x4000642c) + [!provide] PROVIDE (rom_pow_usr = 0x40003044) + [!provide] PROVIDE (rom_read_sar_dout = 0x400051c0) + [!provide] PROVIDE (rom_restart_cal = 0x400046e0) + [!provide] PROVIDE (rom_rfcal_pwrctrl = 0x40006058) + [!provide] PROVIDE (rom_rfcal_rxiq = 0x40005b4c) + [!provide] PROVIDE (rom_rfcal_txcap = 0x40005dec) + [!provide] PROVIDE (rom_rfpll_reset = 0x40004680) + [!provide] PROVIDE (rom_rfpll_set_freq = 0x400047f8) + [!provide] PROVIDE (rom_rtc_mem_backup = 0x40003db4) + [!provide] PROVIDE (rom_rtc_mem_recovery = 0x40003df4) + [!provide] PROVIDE (rom_rx_gain_force = 0x4000351c) + [!provide] PROVIDE (rom_rxiq_cover_mg_mp = 0x40005a68) + [!provide] PROVIDE (rom_rxiq_get_mis = 0x400058e4) + [!provide] PROVIDE (rom_rxiq_set_reg = 0x40005a00) + [!provide] PROVIDE (rom_set_cal_rxdc = 0x400030b8) + [!provide] PROVIDE (rom_set_chan_cal_interp = 0x40005ce0) + [!provide] PROVIDE (rom_set_channel_freq = 0x40004880) + [!provide] PROVIDE (rom_set_loopback_gain = 0x40003060) + [!provide] PROVIDE (rom_set_noise_floor = 0x40003d48) + [!provide] PROVIDE (rom_set_pbus_mem = 0x400031a4) + [!provide] PROVIDE (rom_set_rf_freq_offset = 0x40004ca8) + [!provide] PROVIDE (rom_set_rxclk_en = 0x40003594) + [!provide] PROVIDE (rom_set_txcap_reg = 0x40005d50) + [!provide] PROVIDE (rom_set_txclk_en = 0x40003564) + [!provide] PROVIDE (rom_spur_coef_cfg = 0x40003ac8) + [!provide] PROVIDE (rom_spur_reg_write_one_tone = 0x400037f0) + [!provide] PROVIDE (rom_start_tx_tone = 0x400036b4) + [!provide] PROVIDE (rom_start_tx_tone_step = 0x400035d0) + [!provide] PROVIDE (rom_stop_tx_tone = 0x40003f98) + [!provide] PROVIDE (_rom_store = 0x4000d66c) + [!provide] PROVIDE (_rom_store_table = 0x4000d4f8) + [!provide] PROVIDE (rom_target_power_add_backoff = 0x40006268) + [!provide] PROVIDE (rom_tx_atten_set_interp = 0x400061cc) + [!provide] PROVIDE (rom_txbbgain_to_index = 0x40004dc0) + [!provide] PROVIDE (rom_txcal_work_mode = 0x4000510c) + [!provide] PROVIDE (rom_txdc_cal_init = 0x40004e10) + [!provide] PROVIDE (rom_txdc_cal_v70 = 0x40004ea4) + [!provide] PROVIDE (rom_txiq_cover = 0x4000538c) + [!provide] PROVIDE (rom_txiq_get_mis_pwr = 0x400052dc) + [!provide] PROVIDE (rom_txiq_set_reg = 0x40005154) + [!provide] PROVIDE (rom_tx_pwctrl_bg_init = 0x4000662c) + [!provide] PROVIDE (rom_txtone_linear_pwr = 0x40005290) + [!provide] PROVIDE (rom_wait_rfpll_cal_end = 0x400047a8) + [!provide] PROVIDE (rom_write_gain_mem = 0x4000348c) + [!provide] PROVIDE (rom_write_rfpll_sdm = 0x40004740) + [!provide] PROVIDE (roundup2 = 0x4000ab7c) + [!provide] PROVIDE (r_plf_funcs_p = 0x3ffb8360) + [!provide] PROVIDE (r_rf_rw_bt_init = 0x40054868) + [!provide] PROVIDE (r_rf_rw_init = 0x40054b0c) + [!provide] PROVIDE (r_rf_rw_le_init = 0x400549d0) + [!provide] PROVIDE (r_rwble_activity_ongoing_check = 0x40054d8c) + [!provide] PROVIDE (r_rwble_init = 0x40054bf4) + [!provide] PROVIDE (r_rwble_isr = 0x40054e08) + [!provide] PROVIDE (r_rwble_reset = 0x40054ce8) + [!provide] PROVIDE (r_rwble_sleep_check = 0x40054d78) + [!provide] PROVIDE (r_rwble_version = 0x40054dac) + [!provide] PROVIDE (r_rwbt_init = 0x40055160) + [!provide] PROVIDE (r_rwbt_isr = 0x40055248) + [!provide] PROVIDE (r_rwbt_reset = 0x400551bc) + [!provide] PROVIDE (r_rwbt_sleep_check = 0x4005577c) + [!provide] PROVIDE (r_rwbt_sleep_enter = 0x400557a4) + [!provide] PROVIDE (r_rwbt_sleep_wakeup = 0x400557fc) + [!provide] PROVIDE (r_rwbt_sleep_wakeup_end = 0x400558cc) + [!provide] PROVIDE (r_rwbt_version = 0x4005520c) + [!provide] PROVIDE (r_rwip_assert_err = 0x40055f88) + [!provide] PROVIDE (r_rwip_check_wakeup_boundary = 0x400558fc) + [!provide] PROVIDE (r_rwip_ext_wakeup_enable = 0x40055f3c) + [!provide] PROVIDE (r_rwip_init = 0x4005595c) + [!provide] PROVIDE (r_rwip_pca_clock_dragging_only = 0x40055f48) + [!provide] PROVIDE (r_rwip_prevent_sleep_clear = 0x40055ec8) + [!provide] PROVIDE (r_rwip_prevent_sleep_set = 0x40055e64) + [!provide] PROVIDE (r_rwip_reset = 0x40055ab8) + [!provide] PROVIDE (r_rwip_schedule = 0x40055b38) + [!provide] PROVIDE (r_rwip_sleep = 0x40055b5c) + [!provide] PROVIDE (r_rwip_sleep_enable = 0x40055f30) + [!provide] PROVIDE (r_rwip_version = 0x40055b20) + [!provide] PROVIDE (r_rwip_wakeup = 0x40055dc4) + [!provide] PROVIDE (r_rwip_wakeup_delay_set = 0x40055e4c) + [!provide] PROVIDE (r_rwip_wakeup_end = 0x40055e18) + [!provide] PROVIDE (r_rwip_wlcoex_set = 0x40055f60) + [!provide] PROVIDE (r_SHA_256 = 0x40013a90) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (rwip_rf = 0x3ffbdb28) + [!provide] PROVIDE (rwip_rf_p_get = 0x400558f4) + [!provide] PROVIDE (r_XorKey = 0x400112c0) + [!provide] PROVIDE (sha_blk_bits = 0x3ff99290) + [!provide] PROVIDE (sha_blk_bits_bytes = 0x3ff99288) + [!provide] PROVIDE (sha_blk_hash_bytes = 0x3ff9928c) + [!provide] PROVIDE (sig_matrix = 0x3ffae293) + [!provide] PROVIDE (sip_after_tx_complete = 0x4000b358) + [!provide] PROVIDE (sip_alloc_to_host_evt = 0x4000ab9c) + [!provide] PROVIDE (sip_get_ptr = 0x4000b34c) + [!provide] PROVIDE (sip_get_state = 0x4000ae2c) + [!provide] PROVIDE (sip_init_attach = 0x4000ae58) + [!provide] PROVIDE (sip_install_rx_ctrl_cb = 0x4000ae10) + [!provide] PROVIDE (sip_install_rx_data_cb = 0x4000ae20) + [!provide] PROVIDE (sip_is_active = 0x4000b3c0) + [!provide] PROVIDE (sip_post_init = 0x4000aed8) + [!provide] PROVIDE (sip_reclaim_from_host_cmd = 0x4000adbc) + [!provide] PROVIDE (sip_reclaim_tx_data_pkt = 0x4000ad5c) + [!provide] PROVIDE (sip_send = 0x4000af54) + [!provide] PROVIDE (sip_to_host_chain_append = 0x4000aef8) + [!provide] PROVIDE (sip_to_host_evt_send_done = 0x4000ac04) + [!provide] PROVIDE (slc_add_credits = 0x4000baf4) + [!provide] PROVIDE (slc_enable = 0x4000b64c) + [!provide] PROVIDE (slc_from_host_chain_fetch = 0x4000b7e8) + [!provide] PROVIDE (slc_from_host_chain_recycle = 0x4000bb10) + [!provide] PROVIDE (slc_has_pkt_to_host = 0x4000b5fc) + [!provide] PROVIDE (slc_init_attach = 0x4000b918) + [!provide] PROVIDE (slc_init_credit = 0x4000badc) + [!provide] PROVIDE (slc_reattach = 0x4000b62c) + [!provide] PROVIDE (slc_send_to_host_chain = 0x4000b6a0) + [!provide] PROVIDE (slc_set_host_io_max_window = 0x4000b89c) + [!provide] PROVIDE (slc_to_host_chain_recycle = 0x4000b758) + [!provide] PROVIDE (specialModP256 = 0x4001600c) + [!provide] PROVIDE (__stack = 0x3ffe3f20) + [!provide] PROVIDE (__stack_app = 0x3ffe7e30) + [!provide] PROVIDE (_stack_sentry = 0x3ffe1320) + [!provide] PROVIDE (_stack_sentry_app = 0x3ffe5230) + [!provide] PROVIDE (_start = 0x40000704) + [!provide] PROVIDE (start_tb_console = 0x4005a980) + [!provide] PROVIDE (_stat_r = 0x4000bcb4) + [!provide] PROVIDE (_stext = 0x40000560) + [!provide] PROVIDE (SubtractBigHex256 = 0x40015bcc) + [!provide] PROVIDE (SubtractBigHexMod256 = 0x40015e8c) + [!provide] PROVIDE (SubtractBigHexUint32_256 = 0x40015f8c) + [!provide] PROVIDE (SubtractFromSelfBigHex256 = 0x40015c20) + [!provide] PROVIDE (SubtractFromSelfBigHexSign256 = 0x40015dc8) + [!provide] PROVIDE (sw_to_hw = 0x3ffb8d40) + [!provide] PROVIDE (syscall_table_ptr_app = 0x3ffae020) + [!provide] PROVIDE (syscall_table_ptr_pro = 0x3ffae024) + [!provide] PROVIDE (tdefl_compress = 0x400600bc) + [!provide] PROVIDE (tdefl_compress_buffer = 0x400607f4) + [!provide] PROVIDE (tdefl_compress_mem_to_mem = 0x40060900) + [!provide] PROVIDE (tdefl_compress_mem_to_output = 0x400608e0) + [!provide] PROVIDE (tdefl_get_adler32 = 0x400608d8) + [!provide] PROVIDE (tdefl_get_prev_return_status = 0x400608d0) + [!provide] PROVIDE (tdefl_init = 0x40060810) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory = 0x4006091c) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory_ex = 0x40060910) + [!provide] PROVIDE (tinfl_decompress = 0x4005ef30) + [!provide] PROVIDE (tinfl_decompress_mem_to_callback = 0x40060090) + [!provide] PROVIDE (tinfl_decompress_mem_to_mem = 0x40060050) + [!provide] PROVIDE (UartDev = 0x3ffe019c) + [!provide] PROVIDE (user_code_start = 0x3ffe0400) + [!provide] PROVIDE (veryBigHexP256 = 0x3ff9736c) + [!provide] PROVIDE (xthal_bcopy = 0x4000c098) + [!provide] PROVIDE (xthal_copy123 = 0x4000c124) + [!provide] PROVIDE (xthal_get_ccompare = 0x4000c078) + [!provide] PROVIDE (xthal_get_ccount = 0x4000c050) + [!provide] PROVIDE (xthal_get_interrupt = 0x4000c1e4) + [!provide] PROVIDE (xthal_get_intread = 0x4000c1e4) + [!provide] PROVIDE (Xthal_intlevel = 0x3ff9c2b4) + [!provide] PROVIDE (xthal_memcpy = 0x4000c0bc) + [!provide] PROVIDE (xthal_set_ccompare = 0x4000c058) + [!provide] PROVIDE (xthal_set_intclear = 0x4000c1ec) + [!provide] PROVIDE (_xtos_set_intlevel = 0x4000bfdc) + 0x000000003ffe01e0 PROVIDE (g_ticks_per_us_pro = 0x3ffe01e0) + [!provide] PROVIDE (g_ticks_per_us_app = 0x3ffe40f0) + 0x0000000040063238 PROVIDE (esp_rom_spiflash_config_param = 0x40063238) + 0x00000000400621b0 PROVIDE (esp_rom_spiflash_read_user_cmd = 0x400621b0) + 0x0000000040062e60 PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40062e60) + 0x0000000040062df4 PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40062df4) + 0x0000000040062e1c PROVIDE (esp_rom_spiflash_prepare_encrypted_data = 0x40062e1c) + 0x0000000040061ddc PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40061ddc) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40062a6c) + 0x0000000040062bc8 PROVIDE (esp_rom_spiflash_config_clk = 0x40062bc8) + 0x000000003ffae270 PROVIDE (g_rom_spiflash_chip = 0x3ffae270) + [!provide] PROVIDE (hci_le_rd_rem_used_feats_cmd_handler = 0x400417b4) + [!provide] PROVIDE (llcp_length_req_handler = 0x40043808) + [!provide] PROVIDE (llcp_unknown_rsp_handler = 0x40043ba8) + [!provide] PROVIDE (FilePacketSendDeflatedReqMsgProc = 0x40008b24) + [!provide] PROVIDE (FilePacketSendReqMsgProc = 0x40008860) + [!provide] PROVIDE (FlashDwnLdDeflatedStartMsgProc = 0x40008ad8) + [!provide] PROVIDE (FlashDwnLdParamCfgMsgProc = 0x4000891c) + [!provide] PROVIDE (FlashDwnLdStartMsgProc = 0x40008820) + [!provide] PROVIDE (FlashDwnLdStopDeflatedReqMsgProc = 0x40008c18) + [!provide] PROVIDE (FlashDwnLdStopReqMsgProc = 0x400088ec) + [!provide] PROVIDE (MemDwnLdStartMsgProc = 0x40008948) + [!provide] PROVIDE (MemDwnLdStopReqMsgProc = 0x400089dc) + [!provide] PROVIDE (MemPacketSendReqMsgProc = 0x40008978) + [!provide] PROVIDE (uart_baudrate_detect = 0x40009034) + [!provide] PROVIDE (uart_buff_switch = 0x400093c0) + [!provide] PROVIDE (UartConnCheck = 0x40008738) + [!provide] PROVIDE (UartConnectProc = 0x40008a04) + [!provide] PROVIDE (UartDwnLdProc = 0x40008ce8) + [!provide] PROVIDE (UartRegReadProc = 0x40008a58) + [!provide] PROVIDE (UartRegWriteProc = 0x40008a14) + [!provide] PROVIDE (UartSetBaudProc = 0x40008aac) + [!provide] PROVIDE (UartSpiAttachProc = 0x40008a6c) + [!provide] PROVIDE (UartSpiReadProc = 0x40008a80) + [!provide] PROVIDE (VerifyFlashMd5Proc = 0x40008c44) + [!provide] PROVIDE (GetUartDevice = 0x40009598) + [!provide] PROVIDE (RcvMsg = 0x4000954c) + [!provide] PROVIDE (SendMsg = 0x40009384) + [!provide] PROVIDE (UartGetCmdLn = 0x40009564) + [!provide] PROVIDE (UartRxString = 0x400092fc) + [!provide] PROVIDE (Uart_Init = 0x40009120) + [!provide] PROVIDE (recv_packet = 0x40009424) + [!provide] PROVIDE (send_packet = 0x40009340) + 0x0000000040008fd0 PROVIDE (uartAttach = 0x40008fd0) + 0x00000000400090cc PROVIDE (uart_div_modify = 0x400090cc) + [!provide] PROVIDE (uart_rx_intr_handler = 0x40008f4c) + [!provide] PROVIDE (uart_rx_one_char = 0x400092d0) + [!provide] PROVIDE (uart_rx_one_char_block = 0x400092a4) + [!provide] PROVIDE (uart_rx_readbuff = 0x40009394) + 0x0000000040009258 PROVIDE (uart_tx_flush = 0x40009258) + [!provide] PROVIDE (uart_tx_one_char = 0x40009200) + [!provide] PROVIDE (uart_tx_one_char2 = 0x4000922c) + [!provide] PROVIDE (uart_tx_switch = 0x40009028) + [!provide] PROVIDE (gpio_output_set = 0x40009b24) + 0x0000000040009b5c PROVIDE (gpio_output_set_high = 0x40009b5c) + 0x0000000040009b88 PROVIDE (gpio_input_get = 0x40009b88) + 0x0000000040009b9c PROVIDE (gpio_input_get_high = 0x40009b9c) + 0x0000000040009edc PROVIDE (gpio_matrix_in = 0x40009edc) + 0x0000000040009f0c PROVIDE (gpio_matrix_out = 0x40009f0c) + 0x0000000040009fdc PROVIDE (gpio_pad_select_gpio = 0x40009fdc) + [!provide] PROVIDE (gpio_pad_set_drv = 0x4000a11c) + [!provide] PROVIDE (gpio_pad_pulldown = 0x4000a348) + 0x000000004000a22c PROVIDE (gpio_pad_pullup = 0x4000a22c) + [!provide] PROVIDE (gpio_pad_hold = 0x4000a734) + [!provide] PROVIDE (gpio_pad_unhold = 0x4000a484) + [!provide] PROVIDE (ets_aes_crypt = 0x4005c9b8) + [!provide] PROVIDE (ets_aes_disable = 0x4005c8f8) + [!provide] PROVIDE (ets_aes_enable = 0x4005c8cc) + [!provide] PROVIDE (ets_aes_set_endian = 0x4005c928) + [!provide] PROVIDE (ets_aes_setkey_dec = 0x4005c994) + [!provide] PROVIDE (ets_aes_setkey_enc = 0x4005c97c) + [!provide] PROVIDE (ets_bigint_disable = 0x4005c4e0) + [!provide] PROVIDE (ets_bigint_enable = 0x4005c498) + [!provide] PROVIDE (ets_bigint_mod_mult_getz = 0x4005c818) + [!provide] PROVIDE (ets_bigint_mod_mult_prepare = 0x4005c7b4) + [!provide] PROVIDE (ets_bigint_mod_power_getz = 0x4005c614) + [!provide] PROVIDE (ets_bigint_mod_power_prepare = 0x4005c54c) + [!provide] PROVIDE (ets_bigint_montgomery_mult_getz = 0x4005c7a4) + [!provide] PROVIDE (ets_bigint_montgomery_mult_prepare = 0x4005c6fc) + [!provide] PROVIDE (ets_bigint_mult_getz = 0x4005c6e8) + [!provide] PROVIDE (ets_bigint_mult_prepare = 0x4005c630) + [!provide] PROVIDE (ets_bigint_wait_finish = 0x4005c520) + [!provide] PROVIDE (ets_post = 0x4000673c) + [!provide] PROVIDE (ets_run = 0x400066bc) + [!provide] PROVIDE (ets_set_idle_cb = 0x40006674) + [!provide] PROVIDE (ets_task = 0x40006688) + [!provide] PROVIDE (ets_efuse_get_8M_clock = 0x40008710) + 0x0000000040008658 PROVIDE (ets_efuse_get_spiconfig = 0x40008658) + [!provide] PROVIDE (ets_efuse_program_op = 0x40008628) + [!provide] PROVIDE (ets_efuse_read_op = 0x40008600) + [!provide] PROVIDE (ets_intr_lock = 0x400067b0) + [!provide] PROVIDE (ets_intr_unlock = 0x400067c4) + [!provide] PROVIDE (ets_isr_attach = 0x400067ec) + [!provide] PROVIDE (ets_waiti0 = 0x400067d8) + [!provide] PROVIDE (intr_matrix_set = 0x4000681c) + [!provide] PROVIDE (check_pos = 0x400068b8) + [!provide] PROVIDE (ets_set_appcpu_boot_addr = 0x4000689c) + [!provide] PROVIDE (ets_set_startup_callback = 0x4000688c) + [!provide] PROVIDE (ets_set_user_start = 0x4000687c) + [!provide] PROVIDE (ets_unpack_flash_code = 0x40007018) + [!provide] PROVIDE (ets_unpack_flash_code_legacy = 0x4000694c) + [!provide] PROVIDE (rom_main = 0x400076c4) + [!provide] PROVIDE (ets_write_char_uart = 0x40007cf8) + [!provide] PROVIDE (ets_install_putc1 = 0x40007d18) + [!provide] PROVIDE (ets_install_putc2 = 0x40007d38) + 0x0000000040007d28 PROVIDE (ets_install_uart_printf = 0x40007d28) + 0x0000000040007d54 PROVIDE (ets_printf = 0x40007d54) + [!provide] PROVIDE (rtc_boot_control = 0x4000821c) + 0x00000000400081d4 PROVIDE (rtc_get_reset_reason = 0x400081d4) + [!provide] PROVIDE (rtc_get_wakeup_cause = 0x400081f4) + [!provide] PROVIDE (rtc_select_apb_bridge = 0x40008288) + [!provide] PROVIDE (set_rtc_memory_crc = 0x40008208) + [!provide] PROVIDE (software_reset = 0x4000824c) + [!provide] PROVIDE (software_reset_cpu = 0x40008264) + [!provide] PROVIDE (ets_secure_boot_check = 0x4005cb40) + [!provide] PROVIDE (ets_secure_boot_check_finish = 0x4005cc04) + [!provide] PROVIDE (ets_secure_boot_check_start = 0x4005cbcc) + [!provide] PROVIDE (ets_secure_boot_finish = 0x4005ca84) + [!provide] PROVIDE (ets_secure_boot_hash = 0x4005cad4) + [!provide] PROVIDE (ets_secure_boot_obtain = 0x4005cb14) + [!provide] PROVIDE (ets_secure_boot_rd_abstract = 0x4005cba8) + [!provide] PROVIDE (ets_secure_boot_rd_iv = 0x4005cb84) + [!provide] PROVIDE (ets_secure_boot_start = 0x4005ca34) + [!provide] PROVIDE (ets_sha_disable = 0x4005c0a8) + 0x000000004005c07c PROVIDE (ets_sha_enable = 0x4005c07c) + [!provide] PROVIDE (ets_sha_finish = 0x4005c104) + [!provide] PROVIDE (ets_sha_init = 0x4005c0d4) + [!provide] PROVIDE (ets_sha_update = 0x4005c2a0) + 0x0000000040008534 PROVIDE (ets_delay_us = 0x40008534) + [!provide] PROVIDE (ets_get_cpu_frequency = 0x4000855c) + [!provide] PROVIDE (ets_get_detected_xtal_freq = 0x40008588) + [!provide] PROVIDE (ets_get_xtal_scale = 0x4000856c) + [!provide] PROVIDE (ets_update_cpu_frequency_rom = 0x40008550) + [!provide] PROVIDE (hci_tl_env = 0x3ffb8154) + [!provide] PROVIDE (ld_acl_env = 0x3ffb8258) + [!provide] PROVIDE (ea_env = 0x3ffb80ec) + [!provide] PROVIDE (lc_sco_data_path_config = 0x3ffb81f8) + [!provide] PROVIDE (lc_sco_env = 0x3ffb81fc) + [!provide] PROVIDE (ld_active_ch_map = 0x3ffb8334) + [!provide] PROVIDE (ld_bcst_acl_env = 0x3ffb8274) + [!provide] PROVIDE (ld_csb_rx_env = 0x3ffb8278) + [!provide] PROVIDE (ld_csb_tx_env = 0x3ffb827c) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_fm_env = 0x3ffb8284) + [!provide] PROVIDE (ld_inq_env = 0x3ffb82e4) + [!provide] PROVIDE (ld_iscan_env = 0x3ffb82e8) + [!provide] PROVIDE (ld_page_env = 0x3ffb82f0) + [!provide] PROVIDE (ld_pca_env = 0x3ffb82f4) + [!provide] PROVIDE (ld_pscan_env = 0x3ffb8308) + [!provide] PROVIDE (ld_sched_env = 0x3ffb830c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sco_env = 0x3ffb824c) + [!provide] PROVIDE (ld_sscan_env = 0x3ffb832c) + [!provide] PROVIDE (ld_strain_env = 0x3ffb8330) + [!provide] PROVIDE (LM_Sniff = 0x3ffb8230) + [!provide] PROVIDE (LM_SniffSubRate = 0x3ffb8214) + [!provide] PROVIDE (prbs_64bytes = 0x3ff98992) + [!provide] PROVIDE (nvds_env = 0x3ffb8364) + [!provide] PROVIDE (nvds_magic_number = 0x3ff9912a) + [!provide] PROVIDE (TASK_DESC_LLD = 0x3ff98b58) + 0x0000000040056340 abs = 0x40056340 + 0x0000000040058ef0 __ascii_wctomb = 0x40058ef0 + 0x00000000400566c4 atoi = 0x400566c4 + 0x00000000400566d4 _atoi_r = 0x400566d4 + 0x00000000400566ec atol = 0x400566ec + 0x00000000400566fc _atol_r = 0x400566fc + 0x000000004000c1f4 bzero = 0x4000c1f4 + 0x0000000040001df8 _cleanup = 0x40001df8 + 0x0000000040001d48 _cleanup_r = 0x40001d48 + 0x0000000040000e8c creat = 0x40000e8c + 0x0000000040056348 div = 0x40056348 + 0x000000004000c728 __dummy_lock = 0x4000c728 + 0x000000004000c730 __dummy_lock_try = 0x4000c730 + 0x0000000040001fd4 __env_lock = 0x40001fd4 + 0x0000000040001fe0 __env_unlock = 0x40001fe0 + 0x00000000400020ac fclose = 0x400020ac + 0x0000000040001fec _fclose_r = 0x40001fec + 0x0000000040059394 fflush = 0x40059394 + 0x0000000040059320 _fflush_r = 0x40059320 + 0x0000000040001f44 _findenv_r = 0x40001f44 + 0x0000000040001f1c __fp_lock_all = 0x40001f1c + 0x0000000040001f30 __fp_unlock_all = 0x40001f30 + 0x0000000040058da0 __fputwc = 0x40058da0 + 0x0000000040058ea8 fputwc = 0x40058ea8 + 0x0000000040058e4c _fputwc_r = 0x40058e4c + 0x000000004000c738 _fwalk = 0x4000c738 + 0x000000004000c770 _fwalk_reent = 0x4000c770 + 0x0000000040001fbc _getenv_r = 0x40001fbc + 0x0000000040000f04 isalnum = 0x40000f04 + 0x0000000040000f18 isalpha = 0x40000f18 + 0x000000004000c20c isascii = 0x4000c20c + 0x0000000040000ea0 _isatty_r = 0x40000ea0 + 0x0000000040000f2c isblank = 0x40000f2c + 0x0000000040000f50 iscntrl = 0x40000f50 + 0x0000000040000f64 isdigit = 0x40000f64 + 0x0000000040000f94 isgraph = 0x40000f94 + 0x0000000040000f78 islower = 0x40000f78 + 0x0000000040000fa8 isprint = 0x40000fa8 + 0x0000000040000fc0 ispunct = 0x40000fc0 + 0x0000000040000fd4 isspace = 0x40000fd4 + 0x0000000040000fe8 isupper = 0x40000fe8 + 0x0000000040056678 __itoa = 0x40056678 + 0x00000000400566b4 itoa = 0x400566b4 + 0x0000000040056370 labs = 0x40056370 + 0x0000000040056378 ldiv = 0x40056378 + 0x00000000400562cc longjmp = 0x400562cc + 0x000000004000c220 memccpy = 0x4000c220 + 0x000000004000c244 memchr = 0x4000c244 + 0x000000004000c260 memcmp = 0x4000c260 + 0x000000004000c2c8 memcpy = 0x4000c2c8 + 0x000000004000c3c0 memmove = 0x4000c3c0 + 0x000000004000c400 memrchr = 0x4000c400 + 0x000000004000c44c memset = 0x4000c44c + 0x0000000040056424 qsort = 0x40056424 + 0x0000000040001058 rand = 0x40001058 + 0x00000000400010d4 rand_r = 0x400010d4 + 0x000000004000c498 __sccl = 0x4000c498 + 0x00000000400011b8 __sclose = 0x400011b8 + 0x0000000040001148 __seofread = 0x40001148 + 0x0000000040056268 setjmp = 0x40056268 + 0x00000000400591e0 __sflush_r = 0x400591e0 + 0x0000000040001dc8 __sfmoreglue = 0x40001dc8 + 0x0000000040001e90 __sfp = 0x40001e90 + 0x0000000040001e08 __sfp_lock_acquire = 0x40001e08 + 0x0000000040001e14 __sfp_lock_release = 0x40001e14 + 0x000000004005893c __sfvwrite_r = 0x4005893c + 0x0000000040001e38 __sinit = 0x40001e38 + 0x0000000040001e20 __sinit_lock_acquire = 0x40001e20 + 0x0000000040001e2c __sinit_lock_release = 0x40001e2c + 0x0000000040059108 __smakebuf_r = 0x40059108 + 0x0000000040001004 srand = 0x40001004 + 0x0000000040001118 __sread = 0x40001118 + 0x00000000400593d4 __srefill_r = 0x400593d4 + 0x0000000040001184 __sseek = 0x40001184 + 0x00000000400011cc strcasecmp = 0x400011cc + 0x0000000040001210 strcasestr = 0x40001210 + 0x000000004000c518 strcat = 0x4000c518 + 0x000000004000c53c strchr = 0x4000c53c + 0x0000000040001274 strcmp = 0x40001274 + 0x0000000040001398 strcoll = 0x40001398 + 0x00000000400013ac strcpy = 0x400013ac + 0x000000004000c558 strcspn = 0x4000c558 + 0x000000004000143c strdup = 0x4000143c + 0x0000000040001450 _strdup_r = 0x40001450 + 0x0000000040001470 strlcat = 0x40001470 + 0x000000004000c584 strlcpy = 0x4000c584 + 0x00000000400014c0 strlen = 0x400014c0 + 0x0000000040001524 strlwr = 0x40001524 + 0x0000000040001550 strncasecmp = 0x40001550 + 0x000000004000c5c4 strncat = 0x4000c5c4 + 0x000000004000c5f4 strncmp = 0x4000c5f4 + 0x00000000400015d4 strncpy = 0x400015d4 + 0x00000000400016b0 strndup = 0x400016b0 + 0x00000000400016c4 _strndup_r = 0x400016c4 + 0x000000004000c628 strnlen = 0x4000c628 + 0x0000000040001708 strrchr = 0x40001708 + 0x0000000040001734 strsep = 0x40001734 + 0x000000004000c648 strspn = 0x4000c648 + 0x000000004000c674 strstr = 0x4000c674 + 0x000000004000c6a8 __strtok_r = 0x4000c6a8 + 0x000000004000c70c strtok_r = 0x4000c70c + 0x000000004005681c strtol = 0x4005681c + 0x0000000040056714 _strtol_r = 0x40056714 + 0x000000004005692c strtoul = 0x4005692c + 0x0000000040056834 _strtoul_r = 0x40056834 + 0x000000004000174c strupr = 0x4000174c + 0x0000000040058f3c __submore = 0x40058f3c + 0x0000000040058cb4 __swbuf = 0x40058cb4 + 0x0000000040058bec __swbuf_r = 0x40058bec + 0x0000000040001150 __swrite = 0x40001150 + 0x0000000040058cc8 __swsetup_r = 0x40058cc8 + 0x000000004000c720 toascii = 0x4000c720 + 0x0000000040001868 tolower = 0x40001868 + 0x0000000040001884 toupper = 0x40001884 + 0x00000000400018a0 __tzcalc_limits = 0x400018a0 + 0x0000000040001a04 __tz_lock = 0x40001a04 + 0x0000000040001a10 __tz_unlock = 0x40001a10 + 0x00000000400590f4 ungetc = 0x400590f4 + 0x0000000040058fa0 _ungetc_r = 0x40058fa0 + 0x00000000400561f0 __utoa = 0x400561f0 + 0x0000000040056258 utoa = 0x40056258 + 0x0000000040058920 wcrtomb = 0x40058920 + 0x00000000400588d8 _wcrtomb_r = 0x400588d8 + 0x0000000040058f14 _wctomb_r = 0x40058f14 + 0x000000004006387c __absvdi2 = 0x4006387c + 0x0000000040063868 __absvsi2 = 0x40063868 + 0x0000000040002590 __adddf3 = 0x40002590 + 0x00000000400020e8 __addsf3 = 0x400020e8 + 0x0000000040002cbc __addvdi3 = 0x40002cbc + 0x0000000040002c98 __addvsi3 = 0x40002c98 + 0x000000004000c818 __ashldi3 = 0x4000c818 + 0x000000004000c830 __ashrdi3 = 0x4000c830 + 0x0000000040064b08 __bswapdi2 = 0x40064b08 + 0x0000000040064ae0 __bswapsi2 = 0x40064ae0 + 0x0000000040064b7c __clrsbdi2 = 0x40064b7c + 0x0000000040064b64 __clrsbsi2 = 0x40064b64 + 0x000000004000ca50 __clzdi2 = 0x4000ca50 + 0x000000004000c7e8 __clzsi2 = 0x4000c7e8 + 0x0000000040063820 __cmpdi2 = 0x40063820 + 0x000000004000ca64 __ctzdi2 = 0x4000ca64 + 0x000000004000c7f0 __ctzsi2 = 0x4000c7f0 + 0x00000000400645a4 __divdc3 = 0x400645a4 + 0x0000000040002954 __divdf3 = 0x40002954 + 0x000000004000ca84 __divdi3 = 0x4000ca84 + 0x000000004000c7b8 __divsi3 = 0x4000c7b8 + 0x00000000400636a8 __eqdf2 = 0x400636a8 + 0x0000000040063374 __eqsf2 = 0x40063374 + 0x0000000040002c34 __extendsfdf2 = 0x40002c34 + 0x000000004000ca2c __ffsdi2 = 0x4000ca2c + 0x000000004000c804 __ffssi2 = 0x4000c804 + 0x0000000040002ac4 __fixdfdi = 0x40002ac4 + 0x0000000040002a78 __fixdfsi = 0x40002a78 + 0x000000004000244c __fixsfdi = 0x4000244c + 0x000000004000240c __fixsfsi = 0x4000240c + 0x0000000040002b30 __fixunsdfsi = 0x40002b30 + 0x0000000040002504 __fixunssfdi = 0x40002504 + 0x00000000400024ac __fixunssfsi = 0x400024ac + 0x000000004000c988 __floatdidf = 0x4000c988 + 0x000000004000c8c0 __floatdisf = 0x4000c8c0 + 0x000000004000c944 __floatsidf = 0x4000c944 + 0x000000004000c870 __floatsisf = 0x4000c870 + 0x000000004000c978 __floatundidf = 0x4000c978 + 0x000000004000c8b0 __floatundisf = 0x4000c8b0 + 0x000000004000c938 __floatunsidf = 0x4000c938 + 0x000000004000c864 __floatunsisf = 0x4000c864 + 0x0000000040064a70 __gcc_bcmp = 0x40064a70 + 0x0000000040063768 __gedf2 = 0x40063768 + 0x000000004006340c __gesf2 = 0x4006340c + 0x00000000400636dc __gtdf2 = 0x400636dc + 0x00000000400633a0 __gtsf2 = 0x400633a0 + 0x0000000040063704 __ledf2 = 0x40063704 + 0x00000000400633c0 __lesf2 = 0x400633c0 + 0x000000004000c84c __lshrdi3 = 0x4000c84c + 0x0000000040063790 __ltdf2 = 0x40063790 + 0x000000004006342c __ltsf2 = 0x4006342c + 0x000000004000cd4c __moddi3 = 0x4000cd4c + 0x000000004000c7c0 __modsi3 = 0x4000c7c0 + 0x0000000040063c90 __muldc3 = 0x40063c90 + 0x000000004006358c __muldf3 = 0x4006358c + 0x000000004000c9fc __muldi3 = 0x4000c9fc + 0x00000000400632c8 __mulsf3 = 0x400632c8 + 0x000000004000c7b0 __mulsi3 = 0x4000c7b0 + 0x0000000040002d78 __mulvdi3 = 0x40002d78 + 0x0000000040002d60 __mulvsi3 = 0x40002d60 + 0x00000000400636a8 __nedf2 = 0x400636a8 + 0x00000000400634a0 __negdf2 = 0x400634a0 + 0x000000004000ca14 __negdi2 = 0x4000ca14 + 0x00000000400020c0 __negsf2 = 0x400020c0 + 0x0000000040002e98 __negvdi2 = 0x40002e98 + 0x0000000040002e78 __negvsi2 = 0x40002e78 + 0x0000000040063374 __nesf2 = 0x40063374 + 0x000000003ff96544 __nsau_data = 0x3ff96544 + 0x0000000040002f3c __paritysi2 = 0x40002f3c + 0x000000003ff96544 __popcount_tab = 0x3ff96544 + 0x0000000040002ef8 __popcountdi2 = 0x40002ef8 + 0x0000000040002ed0 __popcountsi2 = 0x40002ed0 + 0x00000000400638e4 __powidf2 = 0x400638e4 + 0x00000000400026e4 __subdf3 = 0x400026e4 + 0x00000000400021d0 __subsf3 = 0x400021d0 + 0x0000000040002d20 __subvdi3 = 0x40002d20 + 0x0000000040002cf8 __subvsi3 = 0x40002cf8 + 0x0000000040002b90 __truncdfsf2 = 0x40002b90 + 0x0000000040063840 __ucmpdi2 = 0x40063840 + 0x0000000040064bec __udiv_w_sdiv = 0x40064bec + 0x000000004000cff8 __udivdi3 = 0x4000cff8 + 0x0000000040064bf4 __udivmoddi4 = 0x40064bf4 + 0x000000004000c7c8 __udivsi3 = 0x4000c7c8 + 0x000000004000d280 __umoddi3 = 0x4000d280 + 0x000000004000c7d0 __umodsi3 = 0x4000c7d0 + 0x000000004000c7d8 __umulsidi3 = 0x4000c7d8 + 0x00000000400637f4 __unorddf2 = 0x400637f4 + 0x0000000040063478 __unordsf2 = 0x40063478 + [!provide] PROVIDE (UART0 = 0x3ff40000) + 0x000000003ff42000 PROVIDE (SPI1 = 0x3ff42000) + [!provide] PROVIDE (SPI0 = 0x3ff43000) + [!provide] PROVIDE (GPIO = 0x3ff44000) + [!provide] PROVIDE (SIGMADELTA = 0x3ff44f00) + [!provide] PROVIDE (RTCCNTL = 0x3ff48000) + [!provide] PROVIDE (RTCIO = 0x3ff48400) + [!provide] PROVIDE (SENS = 0x3ff48800) + [!provide] PROVIDE (HINF = 0x3ff4b000) + [!provide] PROVIDE (UHCI1 = 0x3ff4c000) + [!provide] PROVIDE (I2S0 = 0x3ff4f000) + [!provide] PROVIDE (UART1 = 0x3ff50000) + [!provide] PROVIDE (I2C0 = 0x3ff53000) + [!provide] PROVIDE (UHCI0 = 0x3ff54000) + [!provide] PROVIDE (HOST = 0x3ff55000) + [!provide] PROVIDE (RMT = 0x3ff56000) + [!provide] PROVIDE (RMTMEM = 0x3ff56800) + [!provide] PROVIDE (PCNT = 0x3ff57000) + [!provide] PROVIDE (SLC = 0x3ff58000) + [!provide] PROVIDE (LEDC = 0x3ff59000) + [!provide] PROVIDE (MCPWM0 = 0x3ff5e000) + 0x000000003ff5f000 PROVIDE (TIMERG0 = 0x3ff5f000) + [!provide] PROVIDE (TIMERG1 = 0x3ff60000) + [!provide] PROVIDE (SPI2 = 0x3ff64000) + [!provide] PROVIDE (SPI3 = 0x3ff65000) + [!provide] PROVIDE (SYSCON = 0x3ff66000) + [!provide] PROVIDE (I2C1 = 0x3ff67000) + [!provide] PROVIDE (SDMMC = 0x3ff68000) + [!provide] PROVIDE (EMAC_DMA = 0x3ff69000) + [!provide] PROVIDE (EMAC_EXT = 0x3ff69800) + [!provide] PROVIDE (EMAC_MAC = 0x3ff6a000) + [!provide] PROVIDE (CAN = 0x3ff6b000) + [!provide] PROVIDE (MCPWM1 = 0x3ff6c000) + [!provide] PROVIDE (I2S1 = 0x3ff6d000) + [!provide] PROVIDE (UART2 = 0x3ff6e000) + +.iram_loader.text + 0x0000000040078000 0x311b + 0x0000000040078000 . = ALIGN (0x10) + 0x0000000040078000 _loader_text_start = ABSOLUTE (.) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.iram1 .iram1.*) + .iram1.0.literal + 0x0000000040078000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.2.literal + 0x0000000040078010 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x60 (size before relaxing) + .iram1.3.literal + 0x0000000040078054 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.5.literal + 0x0000000040078070 0x4 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .literal.esp_log_early_timestamp + 0x0000000040078074 0x4 esp-idf/log/liblog.a(log_noos.c.obj) + .literal.bootloader_clock_configure + 0x0000000040078078 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_common_ota_select_crc + 0x0000000040078094 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_ota_select_valid + 0x0000000040078098 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_common_get_active_otadata + 0x0000000040078098 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0xc (size before relaxing) + .literal.bootloader_common_vddsdio_configure + 0x0000000040078098 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_common_check_chip_validity + 0x00000000400780a0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x20 (size before relaxing) + .literal.bootloader_common_get_reset_reason + 0x00000000400780b0 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_mmap + 0x00000000400780b4 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x50 (size before relaxing) + .literal.bootloader_munmap + 0x00000000400780e4 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_flash_read + 0x00000000400780ec 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x60 (size before relaxing) + .literal.bootloader_flash_write + 0x0000000040078100 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_flash_erase_sector + 0x000000004007810c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_fill_random + 0x000000004007810c 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x18 (size before relaxing) + .literal.bootloader_random_enable + 0x0000000040078120 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .literal.bootloader_random_disable + 0x0000000040078198 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x4c (size before relaxing) + .literal.bootloader_common_get_chip_revision + 0x00000000400781b4 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_clock_get_rated_freq_mhz + 0x00000000400781c0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + 0x4 (size before relaxing) + .literal.unpack_load_app + 0x00000000400781c0 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x60 (size before relaxing) + .literal.log_invalid_app_partition + 0x00000000400781ec 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x28 (size before relaxing) + .literal.set_actual_ota_seq$isra$3 + 0x00000000400781fc 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x28 (size before relaxing) + .literal.try_load_partition + 0x000000004007820c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_utility_load_partition_table + 0x000000004007820c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x30 (size before relaxing) + .literal.bootloader_utility_get_selected_boot_partition + 0x0000000040078214 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x58 (size before relaxing) + .literal.bootloader_reset + 0x0000000040078228 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_utility_load_boot_image + 0x0000000040078230 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x5c (size before relaxing) + .literal.bootloader_debug_buffer + 0x000000004007823c 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_sha256_start + 0x0000000040078248 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x0000000040078250 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_sha256_finish + 0x0000000040078274 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x3c (size before relaxing) + .literal.bootloader_util_regions_overlap + 0x0000000040078288 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + .literal.verify_load_addresses + 0x0000000040078298 0x78 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x9c (size before relaxing) + .literal.should_load + 0x0000000040078310 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x28 (size before relaxing) + .literal.image_load + 0x0000000040078314 0x50 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14c (size before relaxing) + .literal.bootloader_load_image + 0x0000000040078364 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_table_verify + 0x0000000040078364 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x58 (size before relaxing) + .literal.esp_rom_spiflash_read_status + 0x0000000040078390 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x14 (size before relaxing) + .literal.esp_rom_spiflash_wait_idle + 0x000000004007839c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0xc (size before relaxing) + .literal.esp_rom_spiflash_enable_write$constprop$6 + 0x00000000400783a4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x14 (size before relaxing) + .literal.esp_rom_spiflash_program_page_internal$constprop$4 + 0x00000000400783a8 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x24 (size before relaxing) + .literal.esp_rom_spiflash_read_statushigh + 0x00000000400783b4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0xc (size before relaxing) + .literal.esp_rom_spiflash_write_status + 0x00000000400783b4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x14 (size before relaxing) + .literal.esp_rom_spiflash_unlock + 0x00000000400783b4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x28 (size before relaxing) + .literal.esp_rom_spiflash_erase_sector + 0x00000000400783bc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x34 (size before relaxing) + .literal.esp_rom_spiflash_write + 0x00000000400783c4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x24 (size before relaxing) + .literal.esp_rom_spiflash_write_encrypted + 0x00000000400783c4 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x10 (size before relaxing) + .literal.esp_rom_spiflash_read + 0x00000000400783d0 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x70 (size before relaxing) + .literal.rtc_wdt_protect_off + 0x0000000040078404 0x8 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal.rtc_wdt_protect_on + 0x000000004007840c 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x4 (size before relaxing) + .literal.rtc_wdt_enable + 0x000000004007840c 0xc esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x10 (size before relaxing) + .literal.rtc_wdt_set_time + 0x0000000040078418 0x1c esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x20 (size before relaxing) + .literal.rtc_wdt_set_stage + 0x0000000040078434 0x10 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x14 (size before relaxing) + .literal.rtc_wdt_disable + 0x0000000040078444 0x4 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x28 (size before relaxing) + .literal.rtc_wdt_set_length_of_reset_signal + 0x0000000040078448 0x8 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_bbpll_disable + 0x0000000040078450 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040078458 0x20 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x40 (size before relaxing) + .literal.rtc_clk_32k_enable_common$constprop$4 + 0x0000000040078478 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_32k_enable + 0x0000000040078488 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x0000000040078490 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8m_enabled + 0x0000000040078498 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_8md256_enabled + 0x0000000040078498 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_set + 0x0000000040078498 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_freq_get + 0x0000000040078498 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x0000000040078498 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_fast_freq_set + 0x000000004007849c 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_freq_get + 0x000000004007849c 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_bbpll_configure + 0x000000004007849c 0x20 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x68 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x00000000400784bc 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x00000000400784c4 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_get_config + 0x00000000400784c4 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_xtal_freq_update + 0x00000000400784cc 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x00000000400784d0 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_xtal + 0x00000000400784d0 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x00000000400784d8 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x68 (size before relaxing) + .literal.rtc_clk_apb_freq_get + 0x00000000400784e0 0xc esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .iram1.0 0x00000000400784ec 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x00000000400784ec bootloader_flash_cs_timing_config + *fill* 0x000000004007855a 0x2 + .iram1.2 0x000000004007855c 0x1d3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x000000004007855c bootloader_flash_gpio_config + *fill* 0x000000004007872f 0x1 + .iram1.3 0x0000000040078730 0x92 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040078730 bootloader_flash_dummy_config + *fill* 0x00000000400787c2 0x2 + .iram1.5 0x00000000400787c4 0xe esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x00000000400787c4 esp_cpu_in_ocd_debug_mode + *fill* 0x00000000400787d2 0x0 + *fill* 0x00000000400787d2 0x0 + *fill* 0x00000000400787d2 0x0 + *liblog.a:(.literal .text .literal.* .text.*) + *fill* 0x00000000400787d2 0x2 + .text.esp_log_early_timestamp + 0x00000000400787d4 0x1e esp-idf/log/liblog.a(log_noos.c.obj) + 0x00000000400787d4 esp_log_timestamp + 0x00000000400787d4 esp_log_early_timestamp + *fill* 0x00000000400787f2 0x0 + *libgcc.a:(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_clock.*(.literal .text .literal.* .text.*) + *fill* 0x00000000400787f2 0x2 + .text.bootloader_clock_configure + 0x00000000400787f4 0x86 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + 0x92 (size before relaxing) + 0x00000000400787f4 bootloader_clock_configure + *fill* 0x000000004007887a 0x0 + *libbootloader_support.a:bootloader_common.*(.literal .text .literal.* .text.*) + *fill* 0x000000004007887a 0x2 + .text.bootloader_common_ota_select_crc + 0x000000004007887c 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x000000004007887c bootloader_common_ota_select_crc + .text.bootloader_common_ota_select_valid + 0x0000000040078890 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x26 (size before relaxing) + 0x0000000040078890 bootloader_common_ota_select_valid + *fill* 0x00000000400788b2 0x2 + .text.bootloader_common_get_active_otadata + 0x00000000400788b4 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x30 (size before relaxing) + 0x00000000400788b4 bootloader_common_get_active_otadata + .text.bootloader_common_vddsdio_configure + 0x00000000400788dc 0x33 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x3a (size before relaxing) + 0x00000000400788dc bootloader_common_vddsdio_configure + *fill* 0x000000004007890f 0x1 + .text.bootloader_common_check_chip_validity + 0x0000000040078910 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x68 (size before relaxing) + 0x0000000040078910 bootloader_common_check_chip_validity + .text.bootloader_common_get_reset_reason + 0x000000004007896c 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x000000004007896c bootloader_common_get_reset_reason + *fill* 0x000000004007897c 0x0 + .text.bootloader_common_ota_select_invalid + 0x000000004007897c 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x000000004007897c bootloader_common_ota_select_invalid + *fill* 0x0000000040078995 0x0 + *fill* 0x0000000040078995 0x3 + .text.bootloader_common_select_otadata + 0x0000000040078998 0x4d esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x0000000040078998 bootloader_common_select_otadata + *fill* 0x00000000400789e5 0x0 + *fill* 0x00000000400789e5 0x0 + *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*) + *fill* 0x00000000400789e5 0x3 + .text.bootloader_mmap + 0x00000000400789e8 0xa9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xad (size before relaxing) + 0x00000000400789e8 bootloader_mmap + *fill* 0x0000000040078a91 0x3 + .text.bootloader_munmap + 0x0000000040078a94 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x0000000040078a94 bootloader_munmap + *fill* 0x0000000040078ac6 0x2 + .text.bootloader_flash_read + 0x0000000040078ac8 0x126 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x0000000040078ac8 bootloader_flash_read + *fill* 0x0000000040078bee 0x2 + .text.bootloader_flash_write + 0x0000000040078bf0 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xa9 (size before relaxing) + 0x0000000040078bf0 bootloader_flash_write + *fill* 0x0000000040078c92 0x2 + .text.bootloader_flash_erase_sector + 0x0000000040078c94 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x1e (size before relaxing) + 0x0000000040078c94 bootloader_flash_erase_sector + *fill* 0x0000000040078cae 0x2 + .text.bootloader_mmap_get_free_pages + 0x0000000040078cb0 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x0000000040078cb0 bootloader_mmap_get_free_pages + *fill* 0x0000000040078cb7 0x0 + *fill* 0x0000000040078cb7 0x0 + *fill* 0x0000000040078cb7 0x0 + *fill* 0x0000000040078cb7 0x0 + *fill* 0x0000000040078cb7 0x0 + *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*) + *fill* 0x0000000040078cb7 0x1 + .text.bootloader_fill_random + 0x0000000040078cb8 0x5b esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x0000000040078cb8 bootloader_fill_random + *fill* 0x0000000040078d13 0x1 + .text.bootloader_random_enable + 0x0000000040078d14 0x1d5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x0000000040078d14 bootloader_random_enable + *fill* 0x0000000040078ee9 0x3 + .text.bootloader_random_disable + 0x0000000040078eec 0x13a esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x0000000040078eec bootloader_random_disable + *fill* 0x0000000040079026 0x0 + *fill* 0x0000000040079026 0x0 + *fill* 0x0000000040079026 0x0 + *libbootloader_support.a:bootloader_efuse_esp32.*(.literal .text .literal.* .text.*) + *fill* 0x0000000040079026 0x2 + .text.bootloader_common_get_chip_revision + 0x0000000040079028 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + 0x0000000040079028 bootloader_common_get_chip_revision + *fill* 0x000000004007906a 0x2 + .text.bootloader_clock_get_rated_freq_mhz + 0x000000004007906c 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + 0x000000004007906c bootloader_clock_get_rated_freq_mhz + *fill* 0x000000004007908e 0x0 + *fill* 0x000000004007908e 0x0 + *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*) + *fill* 0x000000004007908e 0x2 + .text.unpack_load_app + 0x0000000040079090 0x167 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x16f (size before relaxing) + *fill* 0x00000000400791f7 0x1 + .text.log_invalid_app_partition + 0x00000000400791f8 0x53 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x5b (size before relaxing) + *fill* 0x000000004007924b 0x1 + .text.set_actual_ota_seq$isra$3 + 0x000000004007924c 0x7c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x84 (size before relaxing) + .text.try_load_partition + 0x00000000400792c8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x00000000400792e8 0xcf esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xd7 (size before relaxing) + 0x00000000400792e8 bootloader_utility_load_partition_table + *fill* 0x00000000400793b7 0x1 + .text.bootloader_utility_get_selected_boot_partition + 0x00000000400793b8 0x109 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x124 (size before relaxing) + 0x00000000400793b8 bootloader_utility_get_selected_boot_partition + *fill* 0x00000000400794c1 0x3 + .text.bootloader_reset + 0x00000000400794c4 0x2b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x00000000400794c4 bootloader_reset + *fill* 0x00000000400794ef 0x1 + .text.bootloader_utility_load_boot_image + 0x00000000400794f0 0xe4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x110 (size before relaxing) + 0x00000000400794f0 bootloader_utility_load_boot_image + .text.bootloader_debug_buffer + 0x00000000400795d4 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x1d (size before relaxing) + 0x00000000400795d4 bootloader_debug_buffer + *fill* 0x00000000400795ee 0x0 + *fill* 0x00000000400795ee 0x2 + .text.index_to_partition + 0x00000000400795f0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x0000000040079630 0x0 + *fill* 0x0000000040079630 0x0 + *fill* 0x0000000040079630 0x0 + *libbootloader_support.a:bootloader_sha.*(.literal .text .literal.* .text.*) + .text.bootloader_sha256_start + 0x0000000040079630 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x0000000040079630 bootloader_sha256_start + *fill* 0x0000000040079642 0x2 + .text.bootloader_sha256_data + 0x0000000040079644 0xa3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0xa7 (size before relaxing) + 0x0000000040079644 bootloader_sha256_data + *fill* 0x00000000400796e7 0x1 + .text.bootloader_sha256_finish + 0x00000000400796e8 0xbe esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0xc2 (size before relaxing) + 0x00000000400796e8 bootloader_sha256_finish + *fill* 0x00000000400797a6 0x0 + *fill* 0x00000000400797a6 0x0 + *fill* 0x00000000400797a6 0x0 + *libbootloader_support.a:esp_image_format.*(.literal .text .literal.* .text.*) + *fill* 0x00000000400797a6 0x2 + .text.bootloader_util_regions_overlap + 0x00000000400797a8 0x38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x3c (size before relaxing) + .text.verify_load_addresses + 0x00000000400797e0 0x163 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x177 (size before relaxing) + *fill* 0x0000000040079943 0x1 + .text.should_load + 0x0000000040079944 0x76 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x00000000400799ba 0x2 + .text.image_load + 0x00000000400799bc 0x629 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x679 (size before relaxing) + *fill* 0x0000000040079fe5 0x3 + .text.bootloader_load_image + 0x0000000040079fe8 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + 0x0000000040079fe8 bootloader_load_image + *fill* 0x0000000040079ff8 0x0 + *fill* 0x0000000040079ff8 0x0 + *fill* 0x0000000040079ff8 0x0 + *fill* 0x0000000040079ff8 0x0 + *libbootloader_support.a:flash_encrypt.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:flash_partitions.*(.literal .text .literal.* .text.*) + .text.esp_partition_table_verify + 0x0000000040079ff8 0x124 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x12f (size before relaxing) + 0x0000000040079ff8 esp_partition_table_verify + *libbootloader_support.a:secure_boot.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:secure_boot_signatures.*(.literal .text .literal.* .text.*) + *libmicro-ecc.a:*.*(.literal .text .literal.* .text.*) + *libspi_flash.a:*.*(.literal .text .literal.* .text.*) + *fill* 0x000000004007a11c 0x0 + .text.esp_rom_spiflash_read_status + 0x000000004007a11c 0x5b esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x000000004007a11c esp_rom_spiflash_read_status + *fill* 0x000000004007a177 0x1 + .text.esp_rom_spiflash_wait_idle + 0x000000004007a178 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x000000004007a178 esp_rom_spiflash_wait_idle + .text.esp_rom_spiflash_enable_write$constprop$6 + 0x000000004007a1a8 0x3c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x43 (size before relaxing) + *fill* 0x000000004007a1e4 0x0 + .text.esp_rom_spiflash_program_page_internal$constprop$4 + 0x000000004007a1e4 0xbc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0xc0 (size before relaxing) + .text.esp_rom_spiflash_read_statushigh + 0x000000004007a2a0 0x21 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x000000004007a2a0 esp_rom_spiflash_read_statushigh + *fill* 0x000000004007a2c1 0x3 + .text.esp_rom_spiflash_write_status + 0x000000004007a2c4 0x2f esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x33 (size before relaxing) + 0x000000004007a2c4 esp_rom_spiflash_write_status + *fill* 0x000000004007a2f3 0x1 + .text.esp_rom_spiflash_unlock + 0x000000004007a2f4 0x62 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x72 (size before relaxing) + 0x000000004007a2f4 esp_rom_spiflash_unlock + *fill* 0x000000004007a356 0x2 + .text.esp_rom_spiflash_erase_sector + 0x000000004007a358 0x85 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x90 (size before relaxing) + 0x000000004007a358 esp_rom_spiflash_erase_sector + *fill* 0x000000004007a3dd 0x3 + .text.esp_rom_spiflash_write + 0x000000004007a3e0 0xab esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x000000004007a3e0 esp_rom_spiflash_write + *fill* 0x000000004007a48b 0x1 + .text.esp_rom_spiflash_write_encrypted + 0x000000004007a48c 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x54 (size before relaxing) + 0x000000004007a48c esp_rom_spiflash_write_encrypted + .text.esp_rom_spiflash_read + 0x000000004007a4dc 0x2e0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x000000004007a4dc esp_rom_spiflash_read + *fill* 0x000000004007a7bc 0x0 + *fill* 0x000000004007a7bc 0x0 + *fill* 0x000000004007a7bc 0x0 + *fill* 0x000000004007a7bc 0x0 + *fill* 0x000000004007a7bc 0x0 + *fill* 0x000000004007a7bc 0x0 + *fill* 0x000000004007a7bc 0x0 + *libsoc.a:rtc_wdt.*(.literal .text .literal.* .text.*) + .text.rtc_wdt_protect_off + 0x000000004007a7bc 0x10 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x000000004007a7bc rtc_wdt_protect_off + .text.rtc_wdt_protect_on + 0x000000004007a7cc 0xf esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x000000004007a7cc rtc_wdt_protect_on + *fill* 0x000000004007a7db 0x1 + .text.rtc_wdt_enable + 0x000000004007a7dc 0x2b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x000000004007a7dc rtc_wdt_enable + *fill* 0x000000004007a807 0x1 + .text.rtc_wdt_set_time + 0x000000004007a808 0x4f esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x000000004007a808 rtc_wdt_set_time + *fill* 0x000000004007a857 0x1 + .text.rtc_wdt_set_stage + 0x000000004007a858 0x7b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x000000004007a858 rtc_wdt_set_stage + *fill* 0x000000004007a8d3 0x1 + .text.rtc_wdt_disable + 0x000000004007a8d4 0x83 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x8f (size before relaxing) + 0x000000004007a8d4 rtc_wdt_disable + *fill* 0x000000004007a957 0x1 + .text.rtc_wdt_set_length_of_reset_signal + 0x000000004007a958 0x49 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x000000004007a958 rtc_wdt_set_length_of_reset_signal + *fill* 0x000000004007a9a1 0x0 + *fill* 0x000000004007a9a1 0x0 + *fill* 0x000000004007a9a1 0x0 + *fill* 0x000000004007a9a1 0x0 + *fill* 0x000000004007a9a1 0x0 + *libsoc.a:rtc_clk.*(.literal .text .literal.* .text.*) + *fill* 0x000000004007a9a1 0x3 + .text.rtc_clk_bbpll_disable + 0x000000004007a9a4 0x3a esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x000000004007a9de 0x2 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x000000004007a9e0 0xa3 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xa7 (size before relaxing) + *fill* 0x000000004007aa83 0x1 + .text.rtc_clk_32k_enable_common$constprop$4 + 0x000000004007aa84 0x72 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x000000004007aaf6 0x2 + .text.rtc_clk_32k_enable + 0x000000004007aaf8 0x3a esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007aaf8 rtc_clk_32k_enable + *fill* 0x000000004007ab32 0x2 + .text.rtc_clk_8m_enable + 0x000000004007ab34 0x7f esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007ab34 rtc_clk_8m_enable + *fill* 0x000000004007abb3 0x1 + .text.rtc_clk_8m_enabled + 0x000000004007abb4 0x15 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007abb4 rtc_clk_8m_enabled + *fill* 0x000000004007abc9 0x3 + .text.rtc_clk_8md256_enabled + 0x000000004007abcc 0x15 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007abcc rtc_clk_8md256_enabled + *fill* 0x000000004007abe1 0x3 + .text.rtc_clk_slow_freq_set + 0x000000004007abe4 0x44 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007abe4 rtc_clk_slow_freq_set + .text.rtc_clk_slow_freq_get + 0x000000004007ac28 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007ac28 rtc_clk_slow_freq_get + .text.rtc_clk_slow_freq_get_hz + 0x000000004007ac38 0x1f esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007ac38 rtc_clk_slow_freq_get_hz + *fill* 0x000000004007ac57 0x1 + .text.rtc_clk_fast_freq_set + 0x000000004007ac58 0x2c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007ac58 rtc_clk_fast_freq_set + .text.rtc_clk_fast_freq_get + 0x000000004007ac84 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007ac84 rtc_clk_fast_freq_get + .text.rtc_clk_bbpll_configure + 0x000000004007ac94 0x184 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007ac94 rtc_clk_bbpll_configure + .text.rtc_clk_xtal_freq_get + 0x000000004007ae18 0x26 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007ae18 rtc_get_xtal + 0x000000004007ae18 rtc_clk_xtal_freq_get + *fill* 0x000000004007ae3e 0x2 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x000000004007ae40 0x57 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007ae40 rtc_clk_cpu_freq_mhz_to_config + *fill* 0x000000004007ae97 0x1 + .text.rtc_clk_cpu_freq_get_config + 0x000000004007ae98 0x80 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x88 (size before relaxing) + 0x000000004007ae98 rtc_clk_cpu_freq_get_config + .text.rtc_clk_xtal_freq_update + 0x000000004007af18 0x29 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007af18 rtc_clk_xtal_freq_update + *fill* 0x000000004007af41 0x3 + .text.rtc_clk_apb_freq_update + 0x000000004007af44 0x19 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007af44 rtc_clk_apb_freq_update + *fill* 0x000000004007af5d 0x3 + .text.rtc_clk_cpu_freq_to_xtal + 0x000000004007af60 0x72 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x76 (size before relaxing) + 0x000000004007af60 rtc_clk_cpu_freq_to_xtal + *fill* 0x000000004007afd2 0x2 + .text.rtc_clk_cpu_freq_set_config + 0x000000004007afd4 0x115 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x12d (size before relaxing) + 0x000000004007afd4 rtc_clk_cpu_freq_set_config + *fill* 0x000000004007b0e9 0x3 + .text.rtc_clk_apb_freq_get + 0x000000004007b0ec 0x2a esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004007b0ec rtc_clk_apb_freq_get + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *fill* 0x000000004007b116 0x0 + *libefuse.a:*.*(.literal .text .literal.* .text.*) + *(.fini.literal) + *(.fini) + *fill* 0x000000004007b116 0x2 + .fini 0x000000004007b118 0x3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + 0x000000004007b118 _fini + *(.gnu.version) + 0x000000004007b11b _loader_text_end = ABSOLUTE (.) + +.iram.text 0x0000000040080400 0xe49 + 0x0000000040080400 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + .init 0x0000000040080400 0x3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + 0x0000000040080400 _init + 0x0000000040080403 _stext = . + 0x0000000040080403 _text_start = ABSOLUTE (.) + *(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *fill* 0x0000000040080403 0x1 + .literal.call_start_cpu0 + 0x0000000040080404 0x10 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_clear_bss_section + 0x0000000040080414 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0xc (size before relaxing) + .literal.bootloader_read_bootloader_header + 0x000000004008041c 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x1c (size before relaxing) + .literal.bootloader_check_bootloader_validity + 0x000000004008042c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0xc (size before relaxing) + .literal.bootloader_config_wdt + 0x000000004008042c 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x30 (size before relaxing) + .literal.bootloader_enable_random + 0x000000004008043c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x4 (size before relaxing) + .literal.__assert_func + 0x000000004008043c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x10 (size before relaxing) + .literal.wdt_reset_info_dump + 0x0000000040080440 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x68 (size before relaxing) + .literal.unlikely.abort + 0x000000004008049c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_init + 0x00000000400804a4 0x84 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x114 (size before relaxing) + .literal.bootloader_init_mem + 0x0000000040080528 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_flash_update_id + 0x0000000040080530 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.execute_flash_command + 0x0000000040080530 0x3c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.bootloader_read_flash_id + 0x000000004008056c 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_xtal_freq_estimate + 0x0000000040080574 0x24 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + 0x4c (size before relaxing) + .literal.rtc_clk_init + 0x0000000040080598 0x4c esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + 0xac (size before relaxing) + .literal.rtc_vddsdio_get_config + 0x00000000400805e4 0x10 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x00000000400805f4 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_cal_internal + 0x00000000400805f4 0x48 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x68 (size before relaxing) + .literal.rtc_clk_cal_ratio + 0x000000004008063c 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x000000004008063c 0x8 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x1c (size before relaxing) + .text.call_start_cpu0 + 0x0000000040080644 0x54 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x64 (size before relaxing) + 0x0000000040080644 call_start_cpu0 + .text.bootloader_clear_bss_section + 0x0000000040080698 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x0000000040080698 bootloader_clear_bss_section + *fill* 0x00000000400806ae 0x2 + .text.bootloader_read_bootloader_header + 0x00000000400806b0 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x30 (size before relaxing) + 0x00000000400806b0 bootloader_read_bootloader_header + .text.bootloader_check_bootloader_validity + 0x00000000400806dc 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x20 (size before relaxing) + 0x00000000400806dc bootloader_check_bootloader_validity + .text.bootloader_config_wdt + 0x00000000400806f8 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x68 (size before relaxing) + 0x00000000400806f8 bootloader_config_wdt + .text.bootloader_enable_random + 0x0000000040080744 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0xb (size before relaxing) + 0x0000000040080744 bootloader_enable_random + *fill* 0x000000004008074c 0x0 + .text.__assert_func + 0x000000004008074c 0x1f esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x23 (size before relaxing) + 0x000000004008074c __assert_func + *fill* 0x000000004008076b 0x1 + .text.wdt_reset_info_dump + 0x000000004008076c 0xda esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0xde (size before relaxing) + *fill* 0x0000000040080846 0x2 + .text.unlikely.abort + 0x0000000040080848 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x2f (size before relaxing) + 0x0000000040080848 abort + *fill* 0x0000000040080874 0x0 + .text.bootloader_init + 0x0000000040080874 0x24a esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x285 (size before relaxing) + 0x0000000040080874 bootloader_init + *fill* 0x0000000040080abe 0x2 + .text.bootloader_init_mem + 0x0000000040080ac0 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x36 (size before relaxing) + 0x0000000040080ac0 bootloader_init_mem + *fill* 0x0000000040080af2 0x2 + .text.bootloader_flash_update_id + 0x0000000040080af4 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x10 (size before relaxing) + 0x0000000040080af4 bootloader_flash_update_id + *fill* 0x0000000040080b01 0x3 + .text.execute_flash_command + 0x0000000040080b04 0x167 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + *fill* 0x0000000040080c6b 0x1 + .text.bootloader_read_flash_id + 0x0000000040080c6c 0x2a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x2e (size before relaxing) + 0x0000000040080c6c bootloader_read_flash_id + *fill* 0x0000000040080c96 0x2 + .text.rtc_clk_xtal_freq_estimate + 0x0000000040080c98 0xa3 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + 0xab (size before relaxing) + *fill* 0x0000000040080d3b 0x1 + .text.rtc_clk_init + 0x0000000040080d3c 0x1d2 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + 0x206 (size before relaxing) + 0x0000000040080d3c rtc_clk_init + *fill* 0x0000000040080f0e 0x2 + .text.rtc_vddsdio_get_config + 0x0000000040080f10 0xa0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x0000000040080f10 rtc_vddsdio_get_config + .text.rtc_vddsdio_set_config + 0x0000000040080fb0 0x46 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x0000000040080fb0 rtc_vddsdio_set_config + *fill* 0x0000000040080ff6 0x2 + .text.rtc_clk_cal_internal + 0x0000000040080ff8 0x197 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x19f (size before relaxing) + *fill* 0x000000004008118f 0x1 + .text.rtc_clk_cal_ratio + 0x0000000040081190 0x20 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x24 (size before relaxing) + 0x0000000040081190 rtc_clk_cal_ratio + .text.rtc_clk_wait_for_slow_cycle + 0x00000000400811b0 0x68 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x00000000400811b0 rtc_clk_wait_for_slow_cycle + *fill* 0x0000000040081218 0x0 + *fill* 0x0000000040081218 0x0 + *fill* 0x0000000040081218 0x0 + .text.bootloader_print_banner + 0x0000000040081218 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x0000000040081218 bootloader_print_banner + *fill* 0x000000004008121d 0x0 + *fill* 0x000000004008121d 0x0 + *fill* 0x000000004008121d 0x0 + *fill* 0x000000004008121d 0x0 + *fill* 0x000000004008121d 0x0 + *fill* 0x000000004008121d 0x0 + *fill* 0x000000004008121d 0x0 + *fill* 0x000000004008121d 0x3 + .text.mpu_hal_set_region_access + 0x0000000040081220 0x29 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + 0x0000000040081220 mpu_hal_set_region_access + *fill* 0x0000000040081249 0x0 + *fill* 0x0000000040081249 0x0 + *fill* 0x0000000040081249 0x0 + *fill* 0x0000000040081249 0x0 + *fill* 0x0000000040081249 0x0 + *(.iram .iram.*) + *(.fini.literal) + *(.fini) + *(.gnu.version) + 0x0000000040081249 _text_end = ABSOLUTE (.) + 0x0000000040081249 _etext = . + +.dram0.bss 0x000000003fff0000 0x30 + 0x000000003fff0000 . = ALIGN (0x8) + 0x000000003fff0000 _dram_start = ABSOLUTE (.) + 0x000000003fff0000 _bss_start = ABSOLUTE (.) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.bss) + *(.bss.*) + .bss.mapped 0x000000003fff0000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss.ota_has_initial_contents + 0x000000003fff0001 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x000000003fff0002 0x2 + .bss.ram_obfs_value + 0x000000003fff0004 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss.words_hashed + 0x000000003fff000c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss.s_cur_pll_freq + 0x000000003fff0010 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *(.gnu.linkonce.b.*) + *(COMMON) + COMMON 0x000000003fff0014 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x000000003fff0014 bootloader_image_hdr + 0x000000003fff0030 . = ALIGN (0x8) + *fill* 0x000000003fff002c 0x4 + 0x000000003fff0030 _bss_end = ABSOLUTE (.) + +.dram0.data 0x000000003fff0030 0x4 + 0x000000003fff0030 _data_start = ABSOLUTE (.) + *(.data) + *(.data.*) + .data.current_read_mapping + 0x000000003fff0030 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.sdata2) + *(.sdata2.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + 0x000000003fff0034 _data_end = ABSOLUTE (.) + +.dram0.rodata 0x000000003fff0034 0x15e8 + 0x000000003fff0034 _rodata_start = ABSOLUTE (.) + *(.rodata) + .rodata 0x000000003fff0034 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .rodata 0x000000003fff003c 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + *(.rodata.*) + .rodata.call_start_cpu0.str1.1 + 0x000000003fff0050 0x38 esp-idf/main/libmain.a(bootloader_start.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.1 + 0x000000003fff0088 0x7c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.1 + 0x000000003fff0104 0x8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_mmap.str1.1 + 0x000000003fff0192 0xb4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_flash_read.str1.1 + 0x000000003fff0246 0xe2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_flash_write.str1.1 + 0x000000003fff0328 0xe7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x000000003fff040f 0x1 + .rodata.CSWTCH$26 + 0x000000003fff0410 0x6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.unpack_load_app.str1.1 + 0x000000003fff0416 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x6d (size before relaxing) + .rodata.log_invalid_app_partition.str1.1 + 0x000000003fff047e 0xa7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq$isra$3.str1.1 + 0x000000003fff0525 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.1 + 0x000000003fff0569 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.1 + 0x000000003fff0569 0xf7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.1 + 0x000000003fff0660 0xdd esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_debug_buffer.str1.1 + 0x000000003fff073d 0x5f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$7243 + 0x000000003fff079c 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_util_regions_overlap.str1.1 + 0x000000003fff07b4 0x6a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_load_addresses.str1.1 + 0x000000003fff081e 0x109 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.1 + 0x000000003fff0927 0x318 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x352 (size before relaxing) + .rodata.__func__$4400 + 0x000000003fff0c3f 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.__func__$4722 + 0x000000003fff0c5f 0x16 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.esp_partition_table_verify.str1.1 + 0x000000003fff0c75 0x15c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.CSWTCH$0 + 0x000000003fff0dd1 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .rodata.bootloader_read_bootloader_header.str1.1 + 0x000000003fff0dd8 0x3f esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x44 (size before relaxing) + .rodata.__assert_func.str1.1 + 0x000000003fff0e17 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_sha256_data.str1.1 + 0x000000003fff0e4e 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_finish.str1.1 + 0x000000003fff0ec2 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.padding$4028 + 0x000000003fff0f07 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$4024 + 0x000000003fff0f47 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$4004 + 0x000000003fff0f60 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.wdt_reset_info_dump.str1.1 + 0x000000003fff0f77 0x8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .rodata.abort.str1.1 + 0x000000003fff1003 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .rodata.bootloader_init.str1.1 + 0x000000003fff1025 0x18c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .rodata.CSWTCH$25 + 0x000000003fff11b1 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .rodata.__func__$7160 + 0x000000003fff11b6 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .rodata.bootloader_fill_random.str1.1 + 0x000000003fff11c6 0x5f esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.__func__$5835 + 0x000000003fff1225 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.rtc_clk_cpu_freq_to_pll_mhz.str1.1 + 0x000000003fff123c 0x31 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.1 + 0x000000003fff126d 0x3b esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.CSWTCH$26 + 0x000000003fff12a8 0x11 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.CSWTCH$24 + 0x000000003fff12b9 0x11 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.CSWTCH$23 + 0x000000003fff12ca 0x11 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.CSWTCH$22 + 0x000000003fff12db 0x11 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.CSWTCH$21 + 0x000000003fff12ec 0x11 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.CSWTCH$20 + 0x000000003fff12fd 0x11 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.CSWTCH$19 + 0x000000003fff130e 0x11 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x000000003fff131f 0x1 + .rodata.CSWTCH$18 + 0x000000003fff1320 0xc esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.rtc_clk_xtal_freq_estimate.str1.1 + 0x000000003fff132c 0xe3 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + *fill* 0x000000003fff140f 0x1 + .rodata.rtc_clk_xtal_freq_estimate + 0x000000003fff1410 0x64 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .rodata.rtc_clk_init.str1.1 + 0x000000003fff1474 0xd9 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .rodata.rtc_clk_cal_internal.str1.1 + 0x000000003fff154d 0xa7 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .rodata.__func__$3601 + 0x000000003fff15f4 0x15 esp-idf/soc/libsoc.a(rtc_time.c.obj) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x000000003fff1609 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + *(.eh_frame) + 0x000000003fff160c . = ((. + 0x3) & 0xfffffffffffffffc) + *fill* 0x000000003fff1609 0x3 + 0x000000003fff160c __init_array_start = ABSOLUTE (.) + *crtbegin.*(.ctors) + .ctors 0x000000003fff160c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .ctors) + *(SORT_BY_NAME(.ctors.*)) + *(.ctors) + .ctors 0x000000003fff1610 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + 0x000000003fff1614 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + .dtors 0x000000003fff1614 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .dtors) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + .dtors 0x000000003fff1618 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + 0x000000003fff1618 __DTOR_END__ + 0x000000003fff161c __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x000000003fff161c __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x000000003fff161c _rodata_end = ABSOLUTE (.) + 0x000000003fff161c _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x000000003fff161c _lit4_end = ABSOLUTE (.) + 0x000000003fff161c . = ALIGN (0x4) + 0x000000003fff161c _dram_end = ABSOLUTE (.) + 0x0000000040008550 PROVIDE (ets_update_cpu_frequency = 0x40008550) + 0x000000004005db1c PROVIDE (MD5Final = 0x4005db1c) + 0x000000004005da7c PROVIDE (MD5Init = 0x4005da7c) + 0x000000004005da9c PROVIDE (MD5Update = 0x4005da9c) + 0x000000004000c050 xthal_get_ccount = 0x4000c050 + 0x000000004000c078 xthal_get_ccompare = 0x4000c078 + 0x000000004000c058 xthal_set_ccompare = 0x4000c058 +OUTPUT(bootloader.elf elf32-xtensa-le) + +.xtensa.info 0x0000000000000000 0x38 + .xtensa.info 0x0000000000000000 0x38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .xtensa.info 0x0000000000000038 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + +.comment 0x0000000000000000 0x25 + .comment 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + 0x26 (size before relaxing) + .comment 0x0000000000000025 0x26 esp-idf/main/libmain.a(bootloader_start.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/log/liblog.a(log_noos.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .comment 0x0000000000000025 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + +.debug_frame 0x0000000000000000 0x10b0 + .debug_frame 0x0000000000000000 0x40 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_frame 0x0000000000000040 0x148 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x0000000000000188 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x0000000000000240 0x130 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x0000000000000370 0xe8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x0000000000000458 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x0000000000000480 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_frame 0x00000000000004c0 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_frame 0x0000000000000578 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x00000000000005d0 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_frame 0x0000000000000640 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .debug_frame 0x0000000000000680 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x00000000000006a8 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_frame 0x0000000000000700 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x0000000000000788 0x118 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_frame 0x00000000000008a0 0x190 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_frame 0x0000000000000a30 0x70 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_frame 0x0000000000000aa0 0xb8 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_frame 0x0000000000000b58 0x28 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_frame 0x0000000000000b80 0x2b0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_frame 0x0000000000000e30 0x40 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .debug_frame 0x0000000000000e70 0x58 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_frame 0x0000000000000ec8 0xb8 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_frame 0x0000000000000f80 0x130 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + +.debug_info 0x0000000000000000 0x5bc34 + .debug_info 0x0000000000000000 0xeac esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_info 0x0000000000000eac 0x53d5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x0000000000006281 0x20fb esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x000000000000837c 0x85c7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x0000000000010943 0x300e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x0000000000013951 0xdeb esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x000000000001473c 0x9f7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_info 0x0000000000015133 0x4f68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_info 0x000000000001a09b 0x142c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x000000000001b4c7 0x9975 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_info 0x0000000000024e3c 0x5863 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .debug_info 0x000000000002a69f 0x1272 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x000000000002b911 0x6fc0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_info 0x00000000000328d1 0x176f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x0000000000034040 0x3674 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_info 0x00000000000376b4 0x3d57 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_info 0x000000000003b40b 0x12b8 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_info 0x000000000003c6c3 0x414f esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_info 0x0000000000040812 0xab0 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_info 0x00000000000412c2 0x7a17 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_info 0x0000000000048cd9 0x6ddd esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .debug_info 0x000000000004fab6 0x424f esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_info 0x0000000000053d05 0x443e esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_info 0x0000000000058143 0x3af1 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + +.debug_abbrev 0x0000000000000000 0x59f0 + .debug_abbrev 0x0000000000000000 0x2f7 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_abbrev 0x00000000000002f7 0x4c1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x00000000000007b8 0x49a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x0000000000000c52 0x627 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x0000000000001279 0x546 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x00000000000017bf 0x274 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x0000000000001a33 0x1d2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_abbrev 0x0000000000001c05 0x3a5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_abbrev 0x0000000000001faa 0x2a7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x0000000000002251 0x569 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_abbrev 0x00000000000027ba 0x384 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .debug_abbrev 0x0000000000002b3e 0x294 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x0000000000002dd2 0x35b esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_abbrev 0x000000000000312d 0x2d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x0000000000003405 0x449 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_abbrev 0x000000000000384e 0x502 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_abbrev 0x0000000000003d50 0x27f esp-idf/log/liblog.a(log_noos.c.obj) + .debug_abbrev 0x0000000000003fcf 0x3e9 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_abbrev 0x00000000000043b8 0x27f esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_abbrev 0x0000000000004637 0x587 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_abbrev 0x0000000000004bbe 0x3e1 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .debug_abbrev 0x0000000000004f9f 0x2e4 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_abbrev 0x0000000000005283 0x366 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_abbrev 0x00000000000055e9 0x407 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + +.debug_loc 0x0000000000000000 0x6ec6 + .debug_loc 0x0000000000000000 0xed esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_loc 0x00000000000000ed 0x774 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x0000000000000861 0x953 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x00000000000011b4 0x1086 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x000000000000223a 0x1515 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x000000000000374f 0x1d9 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x0000000000003928 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_loc 0x000000000000399a 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_loc 0x00000000000039c6 0x238 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x0000000000003bfe 0x71e esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_loc 0x000000000000431c 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .debug_loc 0x000000000000439a 0x3f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_loc 0x00000000000043d9 0x105 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_loc 0x00000000000044de 0x1a3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x0000000000004681 0x243 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_loc 0x00000000000048c4 0xa9f esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_loc 0x0000000000005363 0x15 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_loc 0x0000000000005378 0x10e esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_loc 0x0000000000005486 0xed esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_loc 0x0000000000005573 0x95a esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_loc 0x0000000000005ecd 0x274 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .debug_loc 0x0000000000006141 0x653 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_loc 0x0000000000006794 0x334 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_loc 0x0000000000006ac8 0x3fe esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + +.debug_aranges 0x0000000000000000 0x750 + .debug_aranges + 0x0000000000000000 0x28 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_aranges + 0x0000000000000028 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x00000000000000a8 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x00000000000000f8 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x0000000000000170 0x60 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x00000000000001d0 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00000000000001f0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_aranges + 0x0000000000000218 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_aranges + 0x0000000000000268 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x0000000000000298 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_aranges + 0x00000000000002d0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .debug_aranges + 0x00000000000002f8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x0000000000000318 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_aranges + 0x0000000000000348 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_aranges + 0x0000000000000388 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_aranges + 0x00000000000003f8 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_aranges + 0x0000000000000490 0x38 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_aranges + 0x00000000000004c8 0x50 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_aranges + 0x0000000000000518 0x20 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_aranges + 0x0000000000000538 0xf8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_aranges + 0x0000000000000630 0x28 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .debug_aranges + 0x0000000000000658 0x30 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_aranges + 0x0000000000000688 0x50 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_aranges + 0x00000000000006d8 0x78 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + +.debug_ranges 0x0000000000000000 0x1108 + .debug_ranges 0x0000000000000000 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_ranges 0x0000000000000030 0x118 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x0000000000000148 0x138 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x0000000000000280 0x238 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x00000000000004b8 0x428 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x00000000000008e0 0x58 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x0000000000000938 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_ranges 0x0000000000000950 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_ranges 0x00000000000009c0 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x0000000000000a28 0xe8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_ranges 0x0000000000000b10 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .debug_ranges 0x0000000000000b40 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x0000000000000b50 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_ranges 0x0000000000000bd0 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x0000000000000c00 0x80 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_ranges 0x0000000000000c80 0xe0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_ranges 0x0000000000000d60 0x28 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_ranges 0x0000000000000d88 0x60 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_ranges 0x0000000000000de8 0x28 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_ranges 0x0000000000000e10 0x180 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_ranges 0x0000000000000f90 0x18 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .debug_ranges 0x0000000000000fa8 0x50 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_ranges 0x0000000000000ff8 0x40 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_ranges 0x0000000000001038 0xd0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + +.debug_line 0x0000000000000000 0x123c1 + .debug_line 0x0000000000000000 0x5a2 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_line 0x00000000000005a2 0x1221 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x00000000000017c3 0x10e2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x00000000000028a5 0x1d41 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x00000000000045e6 0x1f6e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x0000000000006554 0x744 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x0000000000006c98 0x41b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_line 0x00000000000070b3 0x968 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_line 0x0000000000007a1b 0x7b7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x00000000000081d2 0x15ab esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_line 0x000000000000977d 0x634 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + .debug_line 0x0000000000009db1 0x40d esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x000000000000a1be 0x8d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_line 0x000000000000aa96 0x895 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x000000000000b32b 0xb88 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_line 0x000000000000beb3 0x17f0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_line 0x000000000000d6a3 0x442 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_line 0x000000000000dae5 0x679 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_line 0x000000000000e15e 0x3e9 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_line 0x000000000000e547 0x17dd esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_line 0x000000000000fd24 0xa31 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + .debug_line 0x0000000000010755 0x96f esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_line 0x00000000000110c4 0x936 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_line 0x00000000000119fa 0x9c7 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + +.debug_str 0x0000000000000000 0x9d36 + .debug_str 0x0000000000000000 0x9f5 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0xabf (size before relaxing) + .debug_str 0x00000000000009f5 0x220c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x2cf4 (size before relaxing) + .debug_str 0x0000000000002c01 0xe9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x16e5 (size before relaxing) + .debug_str 0x0000000000003aa0 0x10dd esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x45bc (size before relaxing) + .debug_str 0x0000000000004b7d 0x69c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x1ed9 (size before relaxing) + .debug_str 0x0000000000005219 0xa3 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x7f5 (size before relaxing) + .debug_str 0x00000000000052bc 0xab esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + 0x66c (size before relaxing) + .debug_str 0x0000000000005367 0x405 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x33d4 (size before relaxing) + .debug_str 0x000000000000576c 0xf5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x125f (size before relaxing) + .debug_str 0x0000000000005861 0x1866 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x56db (size before relaxing) + .debug_str 0x00000000000070c7 0x1f4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + 0x3711 (size before relaxing) + .debug_str 0x00000000000072bb 0xee esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x11c5 (size before relaxing) + .debug_str 0x00000000000073a9 0x1555 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x4529 (size before relaxing) + .debug_str 0x00000000000088fe 0xf7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0xbcf (size before relaxing) + .debug_str 0x00000000000089f5 0x319 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x2003 (size before relaxing) + .debug_str 0x0000000000008d0e 0x366 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + 0x2583 (size before relaxing) + .debug_str 0x0000000000009074 0xb2 esp-idf/log/liblog.a(log_noos.c.obj) + 0x1199 (size before relaxing) + .debug_str 0x0000000000009126 0x1b3 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x2aca (size before relaxing) + .debug_str 0x00000000000092d9 0x99 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + 0x677 (size before relaxing) + .debug_str 0x0000000000009372 0x5a0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4809 (size before relaxing) + .debug_str 0x0000000000009912 0xf7 esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + 0x4528 (size before relaxing) + .debug_str 0x0000000000009a09 0xbd esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x27fd (size before relaxing) + .debug_str 0x0000000000009ac6 0x13e esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x2362 (size before relaxing) + .debug_str 0x0000000000009c04 0x132 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x215c (size before relaxing) + +Cross Reference Table + +Symbol File +Cache_Flush_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +Cache_Read_Disable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +Cache_Read_Enable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +GPIO_HOLD_MASK esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +MD5Final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +MD5Init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +MD5Update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +SPI1 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +TIMERG0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +_ITM_deregisterTMCloneTable /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +_ITM_registerTMCloneTable /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__DTOR_END__ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__TMC_END__ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__assert_func esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/log/liblog.a(log_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +__bswapsi2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +__deregister_frame_info /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__divdi3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +__dso_handle /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__getreent esp-idf/main/libmain.a(bootloader_start.c.obj) +__register_frame_info /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__udivdi3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +_bss_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +_bss_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +_data_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +_data_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +_dram_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_dram_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_fini /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o +_global_impure_ptr /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) +_init /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o +_loader_text_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_loader_text_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_start /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +abort esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) +bootloader_check_bootloader_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_clear_bss_section esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_clock_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_clock_get_rated_freq_mhz esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_chip_revision esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_config_wdt esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_qio_mode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_enable_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_fill_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_gpio_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_print_banner esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +bootloader_read_bootloader_header esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +cache_flash_mmu_set_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +call_start_cpu0 esp-idf/main/libmain.a(bootloader_start.c.obj) +cpu_hal_clear_breakpoint esp-idf/soc/libsoc.a(cpu_hal.c.obj) +cpu_hal_clear_watchpoint esp-idf/soc/libsoc.a(cpu_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) +cpu_hal_set_breakpoint esp-idf/soc/libsoc.a(cpu_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) +cpu_hal_set_vecbase esp-idf/soc/libsoc.a(cpu_hal.c.obj) +cpu_hal_set_watchpoint esp-idf/soc/libsoc.a(cpu_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) +crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_clear_watchpoint esp-idf/soc/libsoc.a(cpu_util.c.obj) +esp_clk_apb_freq esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) +esp_cpu_in_ocd_debug_mode esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_cpu_reset esp-idf/soc/libsoc.a(cpu_util.c.obj) +esp_cpu_stall esp-idf/soc/libsoc.a(cpu_util.c.obj) +esp_cpu_unstall esp-idf/soc/libsoc.a(cpu_util.c.obj) +esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_log_early_timestamp esp-idf/log/liblog.a(log_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_log_impl_lock esp-idf/log/liblog.a(log_noos.c.obj) +esp_log_impl_unlock esp-idf/log/liblog.a(log_noos.c.obj) +esp_log_lock_impl_timeout esp-idf/log/liblog.a(log_noos.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_noos.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +esp_rom_spiflash_config_readmode esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_erase_area esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_lock esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_prepare_encrypted_data esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_read_status esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read_statushigh esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read_user_cmd esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_select_qio_pins esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_unlock esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_write esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write_encrypted_disable esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_write_encrypted_enable esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_write_status esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_set_breakpoint_if_jtag esp-idf/soc/libsoc.a(cpu_util.c.obj) +esp_set_watchpoint esp-idf/soc/libsoc.a(cpu_util.c.obj) +ets_delay_us esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +ets_efuse_get_spiconfig esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +ets_install_uart_printf esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +ets_printf esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +ets_sha_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +ets_update_cpu_frequency esp-idf/soc/libsoc.a(rtc_clk.c.obj) +g_rom_flashchip esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +g_rom_spiflash_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +g_rom_spiflash_dummy_len_plus esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +g_ticks_per_us_pro esp-idf/log/liblog.a(log_noos.c.obj) +gpio_input_get esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +gpio_input_get_high esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +gpio_matrix_in esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +gpio_matrix_out esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +gpio_output_set_high esp-idf/soc/libsoc.a(rtc_clk.c.obj) +gpio_pad_pullup esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +gpio_pad_select_gpio esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +main /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +memcmp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +memcpy /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +memset /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +mmu_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +mpu_hal_set_region_access esp-idf/soc/libsoc.a(mpu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) +rom_i2c_readReg_Mask esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rom_i2c_writeReg esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rom_i2c_writeReg_Mask esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_32k_bootstrap esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_32k_enable esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_32k_enable_external esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_32k_enabled esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_8m_enable esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_8m_enabled esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_8md256_enabled esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_apb_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +rtc_clk_apb_freq_update esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_apll_enable esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_bbpll_configure esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_cal esp-idf/soc/libsoc.a(rtc_time.c.obj) +rtc_clk_cal_ratio esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_to_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_fast_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) +rtc_clk_fast_freq_set esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_init esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) +rtc_clk_slow_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_clk_slow_freq_set esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_xtal_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_clk_xtal_freq_update esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk_init.c.obj) +rtc_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_get_xtal esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_init esp-idf/soc/libsoc.a(rtc_init.c.obj) +rtc_time_get esp-idf/soc/libsoc.a(rtc_time.c.obj) +rtc_time_slowclk_to_us esp-idf/soc/libsoc.a(rtc_time.c.obj) +rtc_time_us_to_slowclk esp-idf/soc/libsoc.a(rtc_time.c.obj) +rtc_vddsdio_get_config esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_vddsdio_set_config esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_wdt_disable esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +rtc_wdt_enable esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +rtc_wdt_feed esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_wdt_flashboot_mode_enable esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_wdt_get_protect_status esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_wdt_get_timeout esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_wdt_is_on esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_wdt_protect_off esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +rtc_wdt_protect_on esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +rtc_wdt_set_length_of_reset_signal esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +rtc_wdt_set_stage esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +rtc_wdt_set_time esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +soc_hal_stall_core esp-idf/soc/libsoc.a(soc_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) +soc_hal_unstall_core esp-idf/soc/libsoc.a(soc_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) +strcspn /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strlen /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strncpy /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strstr /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +uartAttach esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +uart_div_modify esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +uart_tx_flush esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj new file mode 100644 index 0000000..117ccb5 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj differ diff --git a/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj b/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj new file mode 100644 index 0000000..3005e11 Binary files /dev/null and b/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/cpu_util.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/cpu_util.c.obj new file mode 100644 index 0000000..71b4088 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/cpu_util.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/cpu_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/cpu_hal.c.obj new file mode 100644 index 0000000..f0c573f Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/cpu_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mpu_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mpu_hal.c.obj new file mode 100644 index 0000000..f67e766 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mpu_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/soc_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/soc_hal.c.obj new file mode 100644 index 0000000..1c3bdb3 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/soc_hal.c.obj differ diff --git a/build/build.ninja b/build/build.ninja index 9659efc..0e7c9ae 100644 --- a/build/build.ninja +++ b/build/build.ninja @@ -56,12 +56,12 @@ build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp bak ############################################# # Order-only phony target for bakalarka.elf -build cmake_object_order_depends_target_bakalarka.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_asio cmake_object_order_depends_target___idf_ca cmake_object_order_depends_target___idf_cbor cmake_object_order_depends_target___idf_cmd_nvs cmake_object_order_depends_target___idf_cmd_system cmake_object_order_depends_target___idf_coap cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_adc_cal cmake_object_order_depends_target___idf_esp_gdbstub cmake_object_order_depends_target___idf_esp_https_ota cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_esp_serial_slave_link cmake_object_order_depends_target___idf_esp_websocket_client cmake_object_order_depends_target___idf_expat cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_files cmake_object_order_depends_target___idf_freemodbus cmake_object_order_depends_target___idf_https_server cmake_object_order_depends_target___idf_jsmn cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_libsodium cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_mdns cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_openssl cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa esp-idf/esp32/__ldgen_output_esp32.project.ld project_elf_src.c +build cmake_object_order_depends_target_bakalarka.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_asio cmake_object_order_depends_target___idf_ca cmake_object_order_depends_target___idf_cbor cmake_object_order_depends_target___idf_cmd_nvs cmake_object_order_depends_target___idf_cmd_system cmake_object_order_depends_target___idf_coap cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_display cmake_object_order_depends_target___idf_esp_adc_cal cmake_object_order_depends_target___idf_esp_gdbstub cmake_object_order_depends_target___idf_esp_https_ota cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_esp_serial_slave_link cmake_object_order_depends_target___idf_esp_websocket_client cmake_object_order_depends_target___idf_expat cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_files cmake_object_order_depends_target___idf_freemodbus cmake_object_order_depends_target___idf_https_server cmake_object_order_depends_target___idf_jsmn cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_libsodium cmake_object_order_depends_target___idf_lv_examples cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_lvgl_esp32_drivers cmake_object_order_depends_target___idf_lvgl_tft cmake_object_order_depends_target___idf_lvgl_touch cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_mdns cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_openssl cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa esp-idf/esp32/__ldgen_output_esp32.project.ld project_elf_src.c build CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj: C_COMPILER__bakalarka.2eelf project_elf_src.c || cmake_object_order_depends_target_bakalarka.elf - DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX + DEFINES = -DHAVE_CONFIG_H -DLV_CONF_INCLUDE_SIMPLE=1 -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX DEP_FILE = CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj.d FLAGS = -mlongcalls -Wno-frame-address - INCLUDES = -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/idf_test/include/esp32 -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../main -I../components/files -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/wifi -I../components/https_server + INCLUDES = -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/idf_test/include/esp32 -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../main -I../components/files -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I../components/lv_port_esp32/components/lvgl_esp32_drivers -I../components/lv_port_esp32/components/lv_examples -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I../components/display -I../components/wifi -I../components/https_server OBJECT_DIR = CMakeFiles/bakalarka.elf.dir OBJECT_FILE_DIR = CMakeFiles/bakalarka.elf.dir @@ -72,9 +72,9 @@ build CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj: C_COMPILER__bakalarka. ############################################# # Link the executable bakalarka.elf -build bakalarka.elf: CXX_EXECUTABLE_LINKER__bakalarka.2eelf CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/files/libfiles.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/mdns/libmdns.a esp-idf/json/libjson.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/wifi/libwifi.a esp-idf/ca/libca.a esp-idf/console/libconsole.a esp-idf/files/libfiles.a esp-idf/spiffs/libspiffs.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a esp-idf/app_trace/libapp_trace.a esp-idf/app_trace/libapp_trace.a /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-funcs-time.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-data.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.syscalls.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-funcs.ld esp-idf/esp32/esp32_out.ld esp-idf/esp32/ld/esp32.project.ld /home/mithras/esp/esp-idf/components/esp32/ld/esp32.peripherals.ld || _project_elf_src esp-idf/asio/libasio.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/main/libmain.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a +build bakalarka.elf: CXX_EXECUTABLE_LINKER__bakalarka.2eelf CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/files/libfiles.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/display/libdisplay.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/mdns/libmdns.a esp-idf/json/libjson.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lvgl/liblvgl.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/wifi/libwifi.a esp-idf/ca/libca.a esp-idf/console/libconsole.a esp-idf/files/libfiles.a esp-idf/spiffs/libspiffs.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a esp-idf/app_trace/libapp_trace.a esp-idf/app_trace/libapp_trace.a /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-funcs-time.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-data.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.syscalls.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-funcs.ld esp-idf/esp32/esp32_out.ld esp-idf/esp32/ld/esp32.project.ld /home/mithras/esp/esp-idf/components/esp32/ld/esp32.peripherals.ld || _project_elf_src esp-idf/asio/libasio.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/display/libdisplay.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/main/libmain.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a FLAGS = -mlongcalls -Wno-frame-address - LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/files/libfiles.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a -Wl,--cref -Wl,--Map=/home/mithras/esp/bakalarka/build/bakalarka.map -fno-rtti -fno-lto esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/mdns/libmdns.a esp-idf/json/libjson.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/wifi/libwifi.a esp-idf/ca/libca.a esp-idf/console/libconsole.a esp-idf/files/libfiles.a esp-idf/spiffs/libspiffs.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a -u __cxa_guard_dummy -lstdc++ esp-idf/pthread/libpthread.a -u __cxx_fatal_exception -lm esp-idf/newlib/libnewlib.a -u newlib_include_locks_impl -u newlib_include_heap_impl -u newlib_include_syscalls_impl -u newlib_include_pthread_impl -Wl,--undefined=uxTopUsedPriority -L /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld -T esp32.rom.newlib-funcs-time.ld -T esp32.rom.ld -T esp32.rom.libgcc.ld -T esp32.rom.newlib-data.ld -T esp32.rom.syscalls.ld -T esp32.rom.newlib-funcs.ld -Wl,--gc-sections -L /home/mithras/esp/bakalarka/build/esp-idf/esp32 -T esp32_out.ld -u app_main -L /home/mithras/esp/bakalarka/build/esp-idf/esp32/ld -T esp32.project.ld -L /home/mithras/esp/esp-idf/components/esp32/ld -T esp32.peripherals.ld -lgcc -u call_user_start_cpu0 -u ld_include_panic_highint_hdl /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a -u esp_app_desc -u vfs_include_syscalls_impl -L /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32 esp-idf/app_trace/libapp_trace.a -lgcov esp-idf/app_trace/libapp_trace.a -lgcov -lc -u pthread_include_pthread_impl -u pthread_include_pthread_cond_impl -u pthread_include_pthread_local_storage_impl + LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/files/libfiles.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/display/libdisplay.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a -Wl,--cref -Wl,--Map=/home/mithras/esp/bakalarka/build/bakalarka.map -fno-rtti -fno-lto esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/mdns/libmdns.a esp-idf/json/libjson.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lvgl/liblvgl.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/wifi/libwifi.a esp-idf/ca/libca.a esp-idf/console/libconsole.a esp-idf/files/libfiles.a esp-idf/spiffs/libspiffs.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a -u __cxa_guard_dummy -lstdc++ esp-idf/pthread/libpthread.a -u __cxx_fatal_exception -lm esp-idf/newlib/libnewlib.a -u newlib_include_locks_impl -u newlib_include_heap_impl -u newlib_include_syscalls_impl -u newlib_include_pthread_impl -Wl,--undefined=uxTopUsedPriority -L /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld -T esp32.rom.newlib-funcs-time.ld -T esp32.rom.ld -T esp32.rom.libgcc.ld -T esp32.rom.newlib-data.ld -T esp32.rom.syscalls.ld -T esp32.rom.newlib-funcs.ld -Wl,--gc-sections -L /home/mithras/esp/bakalarka/build/esp-idf/esp32 -T esp32_out.ld -u app_main -L /home/mithras/esp/bakalarka/build/esp-idf/esp32/ld -T esp32.project.ld -L /home/mithras/esp/esp-idf/components/esp32/ld -T esp32.peripherals.ld -lgcc -u call_user_start_cpu0 -u ld_include_panic_highint_hdl /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a -u esp_app_desc -u vfs_include_syscalls_impl -L /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32 esp-idf/app_trace/libapp_trace.a -lgcov esp-idf/app_trace/libapp_trace.a -lgcov -lc -u pthread_include_pthread_impl -u pthread_include_pthread_cond_impl -u pthread_include_pthread_local_storage_impl OBJECT_DIR = CMakeFiles/bakalarka.elf.dir POST_BUILD = : PRE_LINK = : @@ -183,12 +183,12 @@ build rebuild_cache: phony CMakeFiles/rebuild_cache.util ############################################# # Phony custom command for CMakeFiles/gen_project_binary -build CMakeFiles/gen_project_binary: phony .bin_timestamp || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.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/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +build CMakeFiles/gen_project_binary: phony .bin_timestamp || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/display/libdisplay.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.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/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a ############################################# # Custom command for .bin_timestamp -build .bin_timestamp: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.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/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +build .bin_timestamp: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/display/libdisplay.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.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/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a COMMAND = cd /home/mithras/esp/bakalarka/build && /home/mithras/.espressif/python_env/idf4.2_py3.6_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 elf2image --flash_mode dio --flash_freq 40m --flash_size 4MB --elf-sha256-offset 0xb0 -o /home/mithras/esp/bakalarka/build/bakalarka.bin bakalarka.elf && /usr/bin/cmake -E echo "Generated /home/mithras/esp/bakalarka/build/bakalarka.bin" && /usr/bin/cmake -E md5sum /home/mithras/esp/bakalarka/build/bakalarka.bin > /home/mithras/esp/bakalarka/build/.bin_timestamp DESC = Generating binary image from built executable restat = 1 @@ -211,7 +211,7 @@ build CMakeFiles/menuconfig: CUSTOM_COMMAND ############################################# # Phony custom command for CMakeFiles/app -build CMakeFiles/app: phony || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.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/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.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: phony || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/display/libdisplay.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.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/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary ############################################# # Custom command for CMakeFiles/erase_flash @@ -292,7 +292,7 @@ build bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloa ############################################# # Custom command for CMakeFiles/flash -build CMakeFiles/flash: CUSTOM_COMMAND || _project_elf_src app bakalarka.elf bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.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/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/partition_table/partition_table esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.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: CUSTOM_COMMAND || _project_elf_src app bakalarka.elf bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/display/libdisplay.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.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/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/partition_table/partition_table esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary COMMAND = cd /home/mithras/esp/esp-idf/components/esptool_py && /usr/bin/cmake -D IDF_PATH="/home/mithras/esp/esp-idf" -D ESPTOOLPY="/home/mithras/.espressif/python_env/idf4.2_py3.6_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32" -D ESPTOOL_ARGS="--before=default_reset --after=hard_reset write_flash @flash_args" -D WORKING_DIRECTORY="/home/mithras/esp/bakalarka/build" -P /home/mithras/esp/esp-idf/components/esptool_py/run_esptool.cmake pool = console @@ -324,19 +324,19 @@ build CMakeFiles/_project_elf_src: phony project_elf_src.c ############################################# # Custom command for CMakeFiles/size -build CMakeFiles/size: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.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/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +build CMakeFiles/size: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/display/libdisplay.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.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/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a COMMAND = cd /home/mithras/esp/bakalarka/build && /home/mithras/.espressif/python_env/idf4.2_py3.6_env/bin/python /home/mithras/esp/esp-idf/tools/idf_size.py --target esp32 /home/mithras/esp/bakalarka/build/bakalarka.map ############################################# # Custom command for CMakeFiles/size-components -build CMakeFiles/size-components: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.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/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +build CMakeFiles/size-components: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/display/libdisplay.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.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/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a COMMAND = cd /home/mithras/esp/bakalarka/build && /home/mithras/.espressif/python_env/idf4.2_py3.6_env/bin/python /home/mithras/esp/esp-idf/tools/idf_size.py --target esp32 --archives /home/mithras/esp/bakalarka/build/bakalarka.map ############################################# # Custom command for CMakeFiles/size-files -build CMakeFiles/size-files: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.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/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +build CMakeFiles/size-files: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/display/libdisplay.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.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/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a COMMAND = cd /home/mithras/esp/bakalarka/build && /home/mithras/.espressif/python_env/idf4.2_py3.6_env/bin/python /home/mithras/esp/esp-idf/tools/idf_size.py --target esp32 --files /home/mithras/esp/bakalarka/build/bakalarka.map # ============================================================================= # Write statements declared in CMakeLists.txt: @@ -6350,7 +6350,7 @@ build esp-idf/esp32/list_install_components: phony ############################################# # Utility command for __ldgen_output_esp32.project.ld -build esp-idf/esp32/__ldgen_output_esp32.project.ld: phony esp-idf/esp32/CMakeFiles/__ldgen_output_esp32.project.ld esp-idf/esp32/ld/esp32.project.ld esp-idf/asio/libasio.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/main/libmain.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a +build esp-idf/esp32/__ldgen_output_esp32.project.ld: phony esp-idf/esp32/CMakeFiles/__ldgen_output_esp32.project.ld esp-idf/esp32/ld/esp32.project.ld esp-idf/asio/libasio.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/display/libdisplay.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/main/libmain.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a ############################################# # Utility command for rebuild_cache @@ -6378,12 +6378,12 @@ build esp-idf/esp32/esp32_out.ld: CUSTOM_COMMAND config/sdkconfig.h ############################################# # Phony custom command for esp-idf/esp32/CMakeFiles/__ldgen_output_esp32.project.ld -build esp-idf/esp32/CMakeFiles/__ldgen_output_esp32.project.ld: phony esp-idf/esp32/ld/esp32.project.ld || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.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/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +build esp-idf/esp32/CMakeFiles/__ldgen_output_esp32.project.ld: phony esp-idf/esp32/ld/esp32.project.ld || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/display/libdisplay.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.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/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.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/esp32/ld/esp32.project.ld -build esp-idf/esp32/ld/esp32.project.ld: CUSTOM_COMMAND /home/mithras/esp/esp-idf/components/esp32/ld/esp32.project.ld.in /home/mithras/esp/esp-idf/components/xtensa/linker.lf /home/mithras/esp/esp-idf/components/spi_flash/linker.lf /home/mithras/esp/esp-idf/components/esp_system/linker.lf /home/mithras/esp/esp-idf/components/soc/linker.lf /home/mithras/esp/esp-idf/components/esp_event/linker.lf /home/mithras/esp/esp-idf/components/esp_wifi/linker.lf /home/mithras/esp/esp-idf/components/lwip/linker.lf /home/mithras/esp/esp-idf/components/log/linker.lf /home/mithras/esp/esp-idf/components/heap/linker.lf /home/mithras/esp/esp-idf/components/esp_ringbuf/linker.lf /home/mithras/esp/esp-idf/components/espcoredump/linker.lf /home/mithras/esp/esp-idf/components/esp32/linker.lf /home/mithras/esp/esp-idf/components/esp32/ld/esp32_fragments.lf /home/mithras/esp/esp-idf/components/esp_common/linker.lf /home/mithras/esp/esp-idf/components/freertos/linker.lf /home/mithras/esp/esp-idf/components/newlib/newlib.lf /home/mithras/esp/esp-idf/components/app_trace/linker.lf /home/mithras/esp/esp-idf/components/esp_gdbstub/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/files/libfiles.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a ../sdkconfig || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.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/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +build esp-idf/esp32/ld/esp32.project.ld: CUSTOM_COMMAND /home/mithras/esp/esp-idf/components/esp32/ld/esp32.project.ld.in /home/mithras/esp/esp-idf/components/xtensa/linker.lf /home/mithras/esp/esp-idf/components/spi_flash/linker.lf /home/mithras/esp/esp-idf/components/esp_system/linker.lf /home/mithras/esp/esp-idf/components/soc/linker.lf /home/mithras/esp/esp-idf/components/esp_event/linker.lf /home/mithras/esp/esp-idf/components/esp_wifi/linker.lf /home/mithras/esp/esp-idf/components/lwip/linker.lf /home/mithras/esp/esp-idf/components/log/linker.lf /home/mithras/esp/esp-idf/components/heap/linker.lf /home/mithras/esp/esp-idf/components/esp_ringbuf/linker.lf /home/mithras/esp/esp-idf/components/espcoredump/linker.lf /home/mithras/esp/esp-idf/components/esp32/linker.lf /home/mithras/esp/esp-idf/components/esp32/ld/esp32_fragments.lf /home/mithras/esp/esp-idf/components/esp_common/linker.lf /home/mithras/esp/esp-idf/components/freertos/linker.lf /home/mithras/esp/esp-idf/components/newlib/newlib.lf /home/mithras/esp/esp-idf/components/app_trace/linker.lf /home/mithras/esp/esp-idf/components/esp_gdbstub/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/files/libfiles.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/display/libdisplay.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a ../sdkconfig || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/display/libdisplay.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.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/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/esp32 && /home/mithras/.espressif/python_env/idf4.2_py3.6_env/bin/python /home/mithras/esp/esp-idf/tools/ldgen/ldgen.py --config /home/mithras/esp/bakalarka/sdkconfig --fragments /home/mithras/esp/esp-idf/components/xtensa/linker.lf /home/mithras/esp/esp-idf/components/spi_flash/linker.lf /home/mithras/esp/esp-idf/components/esp_system/linker.lf /home/mithras/esp/esp-idf/components/soc/linker.lf /home/mithras/esp/esp-idf/components/esp_event/linker.lf /home/mithras/esp/esp-idf/components/esp_wifi/linker.lf /home/mithras/esp/esp-idf/components/lwip/linker.lf /home/mithras/esp/esp-idf/components/log/linker.lf /home/mithras/esp/esp-idf/components/heap/linker.lf /home/mithras/esp/esp-idf/components/esp_ringbuf/linker.lf /home/mithras/esp/esp-idf/components/espcoredump/linker.lf /home/mithras/esp/esp-idf/components/esp32/linker.lf /home/mithras/esp/esp-idf/components/esp32/ld/esp32_fragments.lf /home/mithras/esp/esp-idf/components/esp_common/linker.lf /home/mithras/esp/esp-idf/components/freertos/linker.lf /home/mithras/esp/esp-idf/components/newlib/newlib.lf /home/mithras/esp/esp-idf/components/app_trace/linker.lf /home/mithras/esp/esp-idf/components/esp_gdbstub/linker.lf --input /home/mithras/esp/esp-idf/components/esp32/ld/esp32.project.ld.in --output /home/mithras/esp/bakalarka/build/esp-idf/esp32/ld/esp32.project.ld --kconfig /home/mithras/esp/esp-idf/Kconfig --env-file /home/mithras/esp/bakalarka/build/config.env --libraries-file /home/mithras/esp/bakalarka/build/ldgen_libraries --objdump /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump DESC = Generating ld/esp32.project.ld restat = 1 @@ -9890,7 +9890,7 @@ build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebu ############################################# # Custom command for esp-idf/esptool_py/CMakeFiles/app-flash -build esp-idf/esptool_py/CMakeFiles/app-flash: CUSTOM_COMMAND || _project_elf_src app bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.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/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.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: CUSTOM_COMMAND || _project_elf_src app bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/display/libdisplay.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_system/libesp_system.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.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/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary COMMAND = cd /home/mithras/esp/esp-idf/components/esptool_py && /usr/bin/cmake -D IDF_PATH="/home/mithras/esp/esp-idf" -D ESPTOOLPY="/home/mithras/.espressif/python_env/idf4.2_py3.6_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32" -D ESPTOOL_ARGS="--before=default_reset --after=hard_reset write_flash @app-flash_args" -D WORKING_DIRECTORY="/home/mithras/esp/bakalarka/build" -P /home/mithras/esp/esp-idf/components/esptool_py/run_esptool.cmake pool = console @@ -12474,12 +12474,12 @@ build esp-idf/main/install/strip: phony esp-idf/main/CMakeFiles/install/strip.ut ############################################# # Order-only phony target for __idf_main -build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_asio cmake_object_order_depends_target___idf_ca cmake_object_order_depends_target___idf_cbor cmake_object_order_depends_target___idf_cmd_nvs cmake_object_order_depends_target___idf_cmd_system cmake_object_order_depends_target___idf_coap cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_adc_cal cmake_object_order_depends_target___idf_esp_gdbstub cmake_object_order_depends_target___idf_esp_https_ota cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_esp_serial_slave_link cmake_object_order_depends_target___idf_esp_websocket_client cmake_object_order_depends_target___idf_expat cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_files cmake_object_order_depends_target___idf_freemodbus cmake_object_order_depends_target___idf_https_server cmake_object_order_depends_target___idf_jsmn cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_libsodium cmake_object_order_depends_target___idf_mdns cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_openssl cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa +build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_asio cmake_object_order_depends_target___idf_ca cmake_object_order_depends_target___idf_cbor cmake_object_order_depends_target___idf_cmd_nvs cmake_object_order_depends_target___idf_cmd_system cmake_object_order_depends_target___idf_coap cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_display cmake_object_order_depends_target___idf_esp_adc_cal cmake_object_order_depends_target___idf_esp_gdbstub cmake_object_order_depends_target___idf_esp_https_ota cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_esp_serial_slave_link cmake_object_order_depends_target___idf_esp_websocket_client cmake_object_order_depends_target___idf_expat cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_files cmake_object_order_depends_target___idf_freemodbus cmake_object_order_depends_target___idf_https_server cmake_object_order_depends_target___idf_jsmn cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_libsodium cmake_object_order_depends_target___idf_lv_examples cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_lvgl_esp32_drivers cmake_object_order_depends_target___idf_lvgl_tft cmake_object_order_depends_target___idf_lvgl_touch cmake_object_order_depends_target___idf_mdns cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_openssl cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa build esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj: C_COMPILER____idf_main ../main/main.c || cmake_object_order_depends_target___idf_main - DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX + DEFINES = -DHAVE_CONFIG_H -DLV_CONF_INCLUDE_SIMPLE=1 -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX DEP_FILE = esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj.d FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM - INCLUDES = -Iconfig -I../main -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/idf_test/include/esp32 -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../components/files -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/wifi -I../components/https_server + INCLUDES = -Iconfig -I../main -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/idf_test/include/esp32 -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../components/files -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I../components/lv_port_esp32/components/lvgl_esp32_drivers -I../components/lv_port_esp32/components/lv_examples -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I../components/display -I../components/wifi -I../components/https_server OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir OBJECT_FILE_DIR = esp-idf/main/CMakeFiles/__idf_main.dir @@ -12490,7 +12490,7 @@ build esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj: C_COMPILER____idf_main ############################################# # Link the static library esp-idf/main/libmain.a -build esp-idf/main/libmain.a: CXX_STATIC_LIBRARY_LINKER____idf_main esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj || esp-idf/asio/libasio.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a +build esp-idf/main/libmain.a: CXX_STATIC_LIBRARY_LINKER____idf_main esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj || esp-idf/asio/libasio.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/display/libdisplay.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir POST_BUILD = : @@ -12899,6 +12899,1572 @@ build esp-idf/cmd_system/install: phony esp-idf/cmd_system/CMakeFiles/install.ut # ============================================================================= +############################################# +# Utility command for install/strip + +build esp-idf/lvgl/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lvgl/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lvgl/install/strip: phony esp-idf/lvgl/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lvgl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lvgl/edit_cache: phony esp-idf/lvgl/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lvgl + + +############################################# +# Order-only phony target for __idf_lvgl + +build cmake_object_order_depends_target___idf_lvgl: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_debug.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_disp.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_group.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_indev.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_obj.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_refr.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_style.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_arc.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_basic.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_img.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_label.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_line.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_rect.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_triangle.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_img_cache.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_img_decoder.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_fmt_txt.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_12.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_12_subpx.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_16.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_22.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_28.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_28_compressed.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_unscii_8.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_hal/lv_hal_disp.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_hal/lv_hal_indev.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_hal/lv_hal_tick.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_anim.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_area.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_async.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_bidi.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_circ.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_color.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_fs.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_gc.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_ll.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_log.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_math.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_mem.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_printf.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_task.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_templ.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_txt.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_utils.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_arc.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_bar.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_btn.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_btnm.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_calendar.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_canvas.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_cb.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_chart.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_cont.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_cpicker.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_ddlist.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_gauge.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_img.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_imgbtn.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_kb.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_label.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_led.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_line.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_list.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_lmeter.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_mbox.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_objx_templ.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_page.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_preload.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_roller.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_slider.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_spinbox.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_sw.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_ta.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_table.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_tabview.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_tileview.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_win.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_alien.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_default.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_material.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_mono.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_nemo.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_night.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_templ.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj: C_COMPILER____idf_lvgl ../components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_zen.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lvgl + + +############################################# +# Link the static library esp-idf/lvgl/liblvgl.a + +build esp-idf/lvgl/liblvgl.a: CXX_STATIC_LIBRARY_LINKER____idf_lvgl esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = esp-idf/lvgl/liblvgl.a + TARGET_PDB = lvgl.a.dbg + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lvgl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl && /usr/bin/cmake -H/home/mithras/esp/bakalarka -B/home/mithras/esp/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lvgl/rebuild_cache: phony esp-idf/lvgl/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lvgl/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lvgl/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lvgl/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lvgl/install/local: phony esp-idf/lvgl/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/lvgl/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lvgl/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lvgl/install: phony esp-idf/lvgl/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/lvgl_esp32_drivers/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lvgl_esp32_drivers/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lvgl_esp32_drivers/install/strip: phony esp-idf/lvgl_esp32_drivers/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lvgl_esp32_drivers/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lvgl_esp32_drivers/edit_cache: phony esp-idf/lvgl_esp32_drivers/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lvgl_esp32_drivers + + +############################################# +# Order-only phony target for __idf_lvgl_esp32_drivers + +build cmake_object_order_depends_target___idf_lvgl_esp32_drivers: phony || cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_xtensa +build esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj: C_COMPILER____idf_lvgl_esp32_drivers ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_driver.c || cmake_object_order_depends_target___idf_lvgl_esp32_drivers + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir + OBJECT_FILE_DIR = esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lvgl_esp32_drivers + + +############################################# +# Link the static library esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a + +build esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a: CXX_STATIC_LIBRARY_LINKER____idf_lvgl_esp32_drivers esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj || esp-idf/lvgl/liblvgl.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a + TARGET_PDB = lvgl_esp32_drivers.a.dbg + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lvgl_esp32_drivers/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers && /usr/bin/cmake -H/home/mithras/esp/bakalarka -B/home/mithras/esp/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lvgl_esp32_drivers/rebuild_cache: phony esp-idf/lvgl_esp32_drivers/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lvgl_esp32_drivers/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lvgl_esp32_drivers/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lvgl_esp32_drivers/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lvgl_esp32_drivers/install/local: phony esp-idf/lvgl_esp32_drivers/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/lvgl_esp32_drivers/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lvgl_esp32_drivers/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lvgl_esp32_drivers/install: phony esp-idf/lvgl_esp32_drivers/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/lv_examples/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lv_examples/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lv_examples && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lv_examples/install/strip: phony esp-idf/lv_examples/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lv_examples/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lv_examples && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lv_examples/edit_cache: phony esp-idf/lv_examples/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lv_examples + + +############################################# +# Order-only phony target for __idf_lv_examples + +build cmake_object_order_depends_target___idf_lv_examples: phony || cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_xtensa +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/demo/demo.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/demo/img_bubble_pattern.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/terminal/terminal.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/7_fonts/arial_20.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj: C_COMPILER____idf_lv_examples ../components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lv_examples + + +############################################# +# Link the static library esp-idf/lv_examples/liblv_examples.a + +build esp-idf/lv_examples/liblv_examples.a: CXX_STATIC_LIBRARY_LINKER____idf_lv_examples esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj || esp-idf/lvgl/liblvgl.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = esp-idf/lv_examples/liblv_examples.a + TARGET_PDB = lv_examples.a.dbg + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lv_examples/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lv_examples && /usr/bin/cmake -H/home/mithras/esp/bakalarka -B/home/mithras/esp/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lv_examples/rebuild_cache: phony esp-idf/lv_examples/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lv_examples/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lv_examples/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lv_examples/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lv_examples && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lv_examples/install/local: phony esp-idf/lv_examples/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/lv_examples/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lv_examples/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lv_examples && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lv_examples/install: phony esp-idf/lv_examples/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/lvgl_tft/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lvgl_tft/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lvgl_tft/install/strip: phony esp-idf/lvgl_tft/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lvgl_tft/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lvgl_tft/edit_cache: phony esp-idf/lvgl_tft/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lvgl_tft + + +############################################# +# Order-only phony target for __idf_lvgl_tft + +build cmake_object_order_depends_target___idf_lvgl_tft: phony || cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_xtensa +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj: C_COMPILER____idf_lvgl_tft ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/disp_driver.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj: C_COMPILER____idf_lvgl_tft ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/disp_spi.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj: C_COMPILER____idf_lvgl_tft ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/hx8357.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj: C_COMPILER____idf_lvgl_tft ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/ili9341.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj: C_COMPILER____idf_lvgl_tft ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/ili9488.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj: C_COMPILER____idf_lvgl_tft ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/st7789.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lvgl_tft + + +############################################# +# Link the static library esp-idf/lvgl_tft/liblvgl_tft.a + +build esp-idf/lvgl_tft/liblvgl_tft.a: CXX_STATIC_LIBRARY_LINKER____idf_lvgl_tft esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj || esp-idf/lvgl/liblvgl.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = esp-idf/lvgl_tft/liblvgl_tft.a + TARGET_PDB = lvgl_tft.a.dbg + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lvgl_tft/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft && /usr/bin/cmake -H/home/mithras/esp/bakalarka -B/home/mithras/esp/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lvgl_tft/rebuild_cache: phony esp-idf/lvgl_tft/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lvgl_tft/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lvgl_tft/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lvgl_tft/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lvgl_tft/install/local: phony esp-idf/lvgl_tft/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/lvgl_tft/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lvgl_tft/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lvgl_tft/install: phony esp-idf/lvgl_tft/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/lvgl_touch/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lvgl_touch/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lvgl_touch/install/strip: phony esp-idf/lvgl_touch/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lvgl_touch/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lvgl_touch/edit_cache: phony esp-idf/lvgl_touch/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lvgl_touch + + +############################################# +# Order-only phony target for __idf_lvgl_touch + +build cmake_object_order_depends_target___idf_lvgl_touch: phony || cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_xtensa +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj: C_COMPILER____idf_lvgl_touch ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/ft6x36.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj: C_COMPILER____idf_lvgl_touch ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/stmpe610.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj: C_COMPILER____idf_lvgl_touch ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/touch_driver.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj: C_COMPILER____idf_lvgl_touch ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/tp_i2c.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj: C_COMPILER____idf_lvgl_touch ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/tp_spi.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj: C_COMPILER____idf_lvgl_touch ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/xpt2046.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lvgl_touch + + +############################################# +# Link the static library esp-idf/lvgl_touch/liblvgl_touch.a + +build esp-idf/lvgl_touch/liblvgl_touch.a: CXX_STATIC_LIBRARY_LINKER____idf_lvgl_touch esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj || esp-idf/lvgl/liblvgl.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = esp-idf/lvgl_touch/liblvgl_touch.a + TARGET_PDB = lvgl_touch.a.dbg + +############################################# +# Utility command for install + +build esp-idf/lvgl_touch/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lvgl_touch/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lvgl_touch/install: phony esp-idf/lvgl_touch/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lvgl_touch/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch && /usr/bin/cmake -H/home/mithras/esp/bakalarka -B/home/mithras/esp/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lvgl_touch/rebuild_cache: phony esp-idf/lvgl_touch/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lvgl_touch/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lvgl_touch/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lvgl_touch/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lvgl_touch/install/local: phony esp-idf/lvgl_touch/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/display/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/display/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/display && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/display/install/strip: phony esp-idf/display/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/display/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/display && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/display/edit_cache: phony esp-idf/display/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_display + + +############################################# +# Order-only phony target for __idf_display + +build cmake_object_order_depends_target___idf_display: phony || cmake_object_order_depends_target___idf_lv_examples cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_lvgl_esp32_drivers cmake_object_order_depends_target___idf_lvgl_tft cmake_object_order_depends_target___idf_lvgl_touch cmake_object_order_depends_target___idf_xtensa +build esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj: C_COMPILER____idf_display ../components/display/display.c || cmake_object_order_depends_target___idf_display + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-792-g6330b3345\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/display -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl_esp32_drivers -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I../components/lv_port_esp32/components/lv_examples -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch + OBJECT_DIR = esp-idf/display/CMakeFiles/__idf_display.dir + OBJECT_FILE_DIR = esp-idf/display/CMakeFiles/__idf_display.dir + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_display + + +############################################# +# Link the static library esp-idf/display/libdisplay.a + +build esp-idf/display/libdisplay.a: CXX_STATIC_LIBRARY_LINKER____idf_display esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj || esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/display/CMakeFiles/__idf_display.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = esp-idf/display/libdisplay.a + TARGET_PDB = display.a.dbg + +############################################# +# Utility command for list_install_components + +build esp-idf/display/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/display/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/display/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/display && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/display/install/local: phony esp-idf/display/CMakeFiles/install/local.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/display/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/display && /usr/bin/cmake -H/home/mithras/esp/bakalarka -B/home/mithras/esp/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/display/rebuild_cache: phony esp-idf/display/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for install + +build esp-idf/display/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/display/all + COMMAND = cd /home/mithras/esp/bakalarka/build/esp-idf/display && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/display/install: phony esp-idf/display/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + ############################################# # Utility command for install/strip @@ -13121,6 +14687,7 @@ build __idf_cmd_system: phony esp-idf/cmd_system/libcmd_system.a build __idf_coap: phony esp-idf/coap/libcoap.a build __idf_console: phony esp-idf/console/libconsole.a build __idf_cxx: phony esp-idf/cxx/libcxx.a +build __idf_display: phony esp-idf/display/libdisplay.a build __idf_driver: phony esp-idf/driver/libdriver.a build __idf_efuse: phony esp-idf/efuse/libefuse.a build __idf_esp-tls: phony esp-idf/esp-tls/libesp-tls.a @@ -13154,6 +14721,11 @@ build __idf_jsmn: phony esp-idf/jsmn/libjsmn.a build __idf_json: phony esp-idf/json/libjson.a build __idf_libsodium: phony esp-idf/libsodium/liblibsodium.a build __idf_log: phony esp-idf/log/liblog.a +build __idf_lv_examples: phony esp-idf/lv_examples/liblv_examples.a +build __idf_lvgl: phony esp-idf/lvgl/liblvgl.a +build __idf_lvgl_esp32_drivers: phony esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a +build __idf_lvgl_tft: phony esp-idf/lvgl_tft/liblvgl_tft.a +build __idf_lvgl_touch: phony esp-idf/lvgl_touch/liblvgl_touch.a build __idf_lwip: phony esp-idf/lwip/liblwip.a build __idf_main: phony esp-idf/main/libmain.a build __idf_mbedtls: phony esp-idf/mbedtls/libmbedtls.a @@ -13205,6 +14777,7 @@ build libcmd_system.a: phony esp-idf/cmd_system/libcmd_system.a build libcoap.a: phony esp-idf/coap/libcoap.a build libconsole.a: phony esp-idf/console/libconsole.a build libcxx.a: phony esp-idf/cxx/libcxx.a +build libdisplay.a: phony esp-idf/display/libdisplay.a build libdriver.a: phony esp-idf/driver/libdriver.a build libefuse.a: phony esp-idf/efuse/libefuse.a build libesp-tls.a: phony esp-idf/esp-tls/libesp-tls.a @@ -13238,6 +14811,11 @@ build libjsmn.a: phony esp-idf/jsmn/libjsmn.a build libjson.a: phony esp-idf/json/libjson.a build liblibsodium.a: phony esp-idf/libsodium/liblibsodium.a build liblog.a: phony esp-idf/log/liblog.a +build liblv_examples.a: phony esp-idf/lv_examples/liblv_examples.a +build liblvgl.a: phony esp-idf/lvgl/liblvgl.a +build liblvgl_esp32_drivers.a: phony esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a +build liblvgl_tft.a: phony esp-idf/lvgl_tft/liblvgl_tft.a +build liblvgl_touch.a: phony esp-idf/lvgl_touch/liblvgl_touch.a build liblwip.a: phony esp-idf/lwip/liblwip.a build libmain.a: phony esp-idf/main/libmain.a build libmbedcrypto.a: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a @@ -13284,7 +14862,7 @@ build soc_esp32: phony esp-idf/soc/soc/esp32/libsoc_esp32.a ############################################# # Folder: /home/mithras/esp/bakalarka/build/esp-idf -build esp-idf/all: phony esp-idf/xtensa/all esp-idf/mbedtls/all esp-idf/efuse/all esp-idf/bootloader_support/all esp-idf/partition_table/all esp-idf/app_update/all esp-idf/spi_flash/all esp-idf/esp_system/all esp-idf/esp_rom/all esp-idf/soc/all esp-idf/esp_eth/all esp-idf/tcpip_adapter/all esp-idf/esp_netif/all esp-idf/esp_event/all esp-idf/wpa_supplicant/all esp-idf/nvs_flash/all esp-idf/esp_wifi/all esp-idf/lwip/all esp-idf/log/all esp-idf/heap/all esp-idf/esp_ringbuf/all esp-idf/driver/all esp-idf/pthread/all esp-idf/espcoredump/all esp-idf/perfmon/all esp-idf/esp32/all esp-idf/esp_common/all esp-idf/esp_timer/all esp-idf/freertos/all esp-idf/vfs/all esp-idf/newlib/all esp-idf/cxx/all esp-idf/app_trace/all esp-idf/asio/all esp-idf/bootloader/all esp-idf/bt/all esp-idf/cbor/all esp-idf/coap/all esp-idf/console/all esp-idf/nghttp/all esp-idf/esp-tls/all esp-idf/esp_adc_cal/all esp-idf/esp_gdbstub/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/protobuf-c/all esp-idf/protocomm/all esp-idf/mdns/all esp-idf/esp_local_ctrl/all esp-idf/sdmmc/all esp-idf/esp_serial_slave_link/all esp-idf/esp_websocket_client/all esp-idf/esptool_py/all esp-idf/expat/all esp-idf/wear_levelling/all esp-idf/fatfs/all esp-idf/freemodbus/all esp-idf/idf_test/all esp-idf/jsmn/all esp-idf/json/all esp-idf/libsodium/all esp-idf/mqtt/all esp-idf/openssl/all esp-idf/spiffs/all esp-idf/tinyusb/all esp-idf/ulp/all esp-idf/unity/all esp-idf/wifi_provisioning/all esp-idf/main/all esp-idf/files/all esp-idf/ca/all esp-idf/cmd_nvs/all esp-idf/cmd_system/all esp-idf/wifi/all esp-idf/https_server/all +build esp-idf/all: phony esp-idf/xtensa/all esp-idf/mbedtls/all esp-idf/efuse/all esp-idf/bootloader_support/all esp-idf/partition_table/all esp-idf/app_update/all esp-idf/spi_flash/all esp-idf/esp_system/all esp-idf/esp_rom/all esp-idf/soc/all esp-idf/esp_eth/all esp-idf/tcpip_adapter/all esp-idf/esp_netif/all esp-idf/esp_event/all esp-idf/wpa_supplicant/all esp-idf/nvs_flash/all esp-idf/esp_wifi/all esp-idf/lwip/all esp-idf/log/all esp-idf/heap/all esp-idf/esp_ringbuf/all esp-idf/driver/all esp-idf/pthread/all esp-idf/espcoredump/all esp-idf/perfmon/all esp-idf/esp32/all esp-idf/esp_common/all esp-idf/esp_timer/all esp-idf/freertos/all esp-idf/vfs/all esp-idf/newlib/all esp-idf/cxx/all esp-idf/app_trace/all esp-idf/asio/all esp-idf/bootloader/all esp-idf/bt/all esp-idf/cbor/all esp-idf/coap/all esp-idf/console/all esp-idf/nghttp/all esp-idf/esp-tls/all esp-idf/esp_adc_cal/all esp-idf/esp_gdbstub/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/protobuf-c/all esp-idf/protocomm/all esp-idf/mdns/all esp-idf/esp_local_ctrl/all esp-idf/sdmmc/all esp-idf/esp_serial_slave_link/all esp-idf/esp_websocket_client/all esp-idf/esptool_py/all esp-idf/expat/all esp-idf/wear_levelling/all esp-idf/fatfs/all esp-idf/freemodbus/all esp-idf/idf_test/all esp-idf/jsmn/all esp-idf/json/all esp-idf/libsodium/all esp-idf/mqtt/all esp-idf/openssl/all esp-idf/spiffs/all esp-idf/tinyusb/all esp-idf/ulp/all esp-idf/unity/all esp-idf/wifi_provisioning/all esp-idf/main/all esp-idf/files/all esp-idf/ca/all esp-idf/cmd_nvs/all esp-idf/cmd_system/all esp-idf/lvgl/all esp-idf/lvgl_esp32_drivers/all esp-idf/lv_examples/all esp-idf/lvgl_tft/all esp-idf/lvgl_touch/all esp-idf/display/all esp-idf/wifi/all esp-idf/https_server/all # ============================================================================= ############################################# @@ -13365,6 +14943,12 @@ build esp-idf/console/all: phony __idf_console build esp-idf/cxx/all: phony __idf_cxx # ============================================================================= +############################################# +# Folder: /home/mithras/esp/bakalarka/build/esp-idf/display + +build esp-idf/display/all: phony __idf_display +# ============================================================================= + ############################################# # Folder: /home/mithras/esp/bakalarka/build/esp-idf/driver @@ -13593,6 +15177,36 @@ build esp-idf/libsodium/all: phony __idf_libsodium build esp-idf/log/all: phony __idf_log # ============================================================================= +############################################# +# Folder: /home/mithras/esp/bakalarka/build/esp-idf/lv_examples + +build esp-idf/lv_examples/all: phony __idf_lv_examples +# ============================================================================= + +############################################# +# Folder: /home/mithras/esp/bakalarka/build/esp-idf/lvgl + +build esp-idf/lvgl/all: phony __idf_lvgl +# ============================================================================= + +############################################# +# Folder: /home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers + +build esp-idf/lvgl_esp32_drivers/all: phony __idf_lvgl_esp32_drivers +# ============================================================================= + +############################################# +# Folder: /home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft + +build esp-idf/lvgl_tft/all: phony __idf_lvgl_tft +# ============================================================================= + +############################################# +# Folder: /home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch + +build esp-idf/lvgl_touch/all: phony __idf_lvgl_touch +# ============================================================================= + ############################################# # Folder: /home/mithras/esp/bakalarka/build/esp-idf/lwip @@ -13808,7 +15422,7 @@ build esp-idf/xtensa/all: phony __idf_xtensa ############################################# # The main all target. -build all: phony bakalarka.elf app bootloader esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/partition_table/partition_table esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/files/libfiles.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a +build all: phony bakalarka.elf app bootloader esp-idf/xtensa/libxtensa.a esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/partition_table/partition_table esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/files/libfiles.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/display/libdisplay.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a ############################################# # Make the all target the default. @@ -13818,13 +15432,13 @@ default all ############################################# # Re-run CMake if any of its inputs changed. -build build.ninja: RERUN_CMAKE | ../CMakeLists.txt ../components/ca/CMakeLists.txt ../components/cmd_nvs/CMakeLists.txt ../components/cmd_system/CMakeLists.txt ../components/files/CMakeLists.txt ../components/https_server/CMakeLists.txt ../components/wifi/CMakeLists.txt ../main/CMakeLists.txt ../partitions_example.csv ../sdkconfig /home/mithras/esp/esp-idf/.git/HEAD /home/mithras/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/controller/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/mithras/esp/esp-idf/.git/modules/components/cbor/tinycbor/HEAD /home/mithras/esp/esp-idf/.git/modules/components/coap/libcoap/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esptool_py/esptool/HEAD /home/mithras/esp/esp-idf/.git/modules/components/expat/expat/HEAD /home/mithras/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/mithras/esp/esp-idf/.git/modules/components/libsodium/libsodium/HEAD /home/mithras/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/mithras/esp/esp-idf/.git/modules/components/nghttp/nghttp2/HEAD /home/mithras/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/mithras/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/mithras/esp/esp-idf/.git/modules/components/tinyusb/tinyusb/HEAD /home/mithras/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/mithras/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/mithras/esp/esp-idf/.git/refs/heads/master /home/mithras/esp/esp-idf/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/project_include.cmake /home/mithras/esp/esp-idf/components/app_update/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/asio/.git /home/mithras/esp/esp-idf/components/bootloader/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/project_include.cmake /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/mithras/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/controller/lib/.git /home/mithras/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/mithras/esp/esp-idf/components/cbor/CMakeLists.txt /home/mithras/esp/esp-idf/components/cbor/tinycbor/.git /home/mithras/esp/esp-idf/components/coap/CMakeLists.txt /home/mithras/esp/esp-idf/components/coap/libcoap/.git /home/mithras/esp/esp-idf/components/console/CMakeLists.txt /home/mithras/esp/esp-idf/components/cxx/CMakeLists.txt /home/mithras/esp/esp-idf/components/driver/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/esp32/sources.cmake /home/mithras/esp/esp-idf/components/esp-tls/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/project_include.cmake /home/mithras/esp/esp-idf/components/esp_adc_cal/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_common/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_eth/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_event/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_ota/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_netif/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_serial_slave_link/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/port/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/port/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_timer/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_websocket_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/lib/.git /home/mithras/esp/esp-idf/components/espcoredump/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/esptool/.git /home/mithras/esp/esp-idf/components/esptool_py/project_include.cmake /home/mithras/esp/esp-idf/components/expat/CMakeLists.txt /home/mithras/esp/esp-idf/components/expat/expat/.git /home/mithras/esp/esp-idf/components/fatfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/freemodbus/CMakeLists.txt /home/mithras/esp/esp-idf/components/freertos/CMakeLists.txt /home/mithras/esp/esp-idf/components/heap/CMakeLists.txt /home/mithras/esp/esp-idf/components/idf_test/CMakeLists.txt /home/mithras/esp/esp-idf/components/jsmn/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/cJSON/.git /home/mithras/esp/esp-idf/components/libsodium/CMakeLists.txt /home/mithras/esp/esp-idf/components/libsodium/libsodium/.git /home/mithras/esp/esp-idf/components/log/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/lwip/.git /home/mithras/esp/esp-idf/components/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/.git /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/mithras/esp/esp-idf/components/mdns/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/mithras/esp/esp-idf/components/newlib/CMakeLists.txt /home/mithras/esp/esp-idf/components/newlib/project_include.cmake /home/mithras/esp/esp-idf/components/nghttp/CMakeLists.txt /home/mithras/esp/esp-idf/components/nghttp/nghttp2/.git /home/mithras/esp/esp-idf/components/nvs_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/openssl/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/project_include.cmake /home/mithras/esp/esp-idf/components/perfmon/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/mithras/esp/esp-idf/components/protocomm/CMakeLists.txt /home/mithras/esp/esp-idf/components/pthread/CMakeLists.txt /home/mithras/esp/esp-idf/components/sdmmc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/src/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/project_include.cmake /home/mithras/esp/esp-idf/components/spiffs/spiffs/.git /home/mithras/esp/esp-idf/components/tcp_transport/CMakeLists.txt /home/mithras/esp/esp-idf/components/tcpip_adapter/CMakeLists.txt /home/mithras/esp/esp-idf/components/tinyusb/CMakeLists.txt /home/mithras/esp/esp-idf/components/tinyusb/tinyusb/.git /home/mithras/esp/esp-idf/components/ulp/CMakeLists.txt /home/mithras/esp/esp-idf/components/ulp/project_include.cmake /home/mithras/esp/esp-idf/components/unity/CMakeLists.txt /home/mithras/esp/esp-idf/components/unity/unity/.git /home/mithras/esp/esp-idf/components/vfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/wear_levelling/CMakeLists.txt /home/mithras/esp/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/mithras/esp/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/mithras/esp/esp-idf/components/xtensa/CMakeLists.txt /home/mithras/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/mithras/esp/esp-idf/tools/cmake/build.cmake /home/mithras/esp/esp-idf/tools/cmake/component.cmake /home/mithras/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/mithras/esp/esp-idf/tools/cmake/git_submodules.cmake /home/mithras/esp/esp-idf/tools/cmake/idf.cmake /home/mithras/esp/esp-idf/tools/cmake/kconfig.cmake /home/mithras/esp/esp-idf/tools/cmake/ldgen.cmake /home/mithras/esp/esp-idf/tools/cmake/project.cmake /home/mithras/esp/esp-idf/tools/cmake/project_description.json.in /home/mithras/esp/esp-idf/tools/cmake/targets.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/mithras/esp/esp-idf/tools/cmake/utilities.cmake /home/mithras/esp/esp-idf/tools/cmake/version.cmake /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py /home/mithras/esp/esp-idf/tools/kconfig_new/config.env.in /home/mithras/esp/esp-idf/tools/kconfig_new/kconfiglib.py /usr/share/cmake-3.10/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU.cmake /usr/share/cmake-3.10/Modules/ExternalProject.cmake /usr/share/cmake-3.10/Modules/FindCygwin.cmake /usr/share/cmake-3.10/Modules/FindGit.cmake /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.10/Modules/FindPackageMessage.cmake /usr/share/cmake-3.10/Modules/FindPerl.cmake /usr/share/cmake-3.10/Modules/FindPythonInterp.cmake /usr/share/cmake-3.10/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeASMCompiler.cmake CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-cfgcmd.txt.in 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 | ../CMakeLists.txt ../components/ca/CMakeLists.txt ../components/cmd_nvs/CMakeLists.txt ../components/cmd_system/CMakeLists.txt ../components/display/CMakeLists.txt ../components/files/CMakeLists.txt ../components/https_server/CMakeLists.txt ../components/lv_port_esp32/components/lv_examples/CMakeLists.txt ../components/lv_port_esp32/components/lvgl/CMakeLists.txt ../components/lv_port_esp32/components/lvgl_esp32_drivers/CMakeLists.txt ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/CMakeLists.txt ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/CMakeLists.txt ../components/wifi/CMakeLists.txt ../main/CMakeLists.txt ../partitions_example.csv ../sdkconfig /home/mithras/esp/esp-idf/.git/HEAD /home/mithras/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/controller/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/mithras/esp/esp-idf/.git/modules/components/cbor/tinycbor/HEAD /home/mithras/esp/esp-idf/.git/modules/components/coap/libcoap/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esptool_py/esptool/HEAD /home/mithras/esp/esp-idf/.git/modules/components/expat/expat/HEAD /home/mithras/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/mithras/esp/esp-idf/.git/modules/components/libsodium/libsodium/HEAD /home/mithras/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/mithras/esp/esp-idf/.git/modules/components/nghttp/nghttp2/HEAD /home/mithras/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/mithras/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/mithras/esp/esp-idf/.git/modules/components/tinyusb/tinyusb/HEAD /home/mithras/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/mithras/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/mithras/esp/esp-idf/.git/refs/heads/master /home/mithras/esp/esp-idf/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/project_include.cmake /home/mithras/esp/esp-idf/components/app_update/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/asio/.git /home/mithras/esp/esp-idf/components/bootloader/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/project_include.cmake /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/mithras/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/controller/lib/.git /home/mithras/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/mithras/esp/esp-idf/components/cbor/CMakeLists.txt /home/mithras/esp/esp-idf/components/cbor/tinycbor/.git /home/mithras/esp/esp-idf/components/coap/CMakeLists.txt /home/mithras/esp/esp-idf/components/coap/libcoap/.git /home/mithras/esp/esp-idf/components/console/CMakeLists.txt /home/mithras/esp/esp-idf/components/cxx/CMakeLists.txt /home/mithras/esp/esp-idf/components/driver/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/esp32/sources.cmake /home/mithras/esp/esp-idf/components/esp-tls/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/project_include.cmake /home/mithras/esp/esp-idf/components/esp_adc_cal/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_common/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_eth/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_event/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_ota/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_netif/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_serial_slave_link/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/port/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/port/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_timer/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_websocket_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/lib/.git /home/mithras/esp/esp-idf/components/espcoredump/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/esptool/.git /home/mithras/esp/esp-idf/components/esptool_py/project_include.cmake /home/mithras/esp/esp-idf/components/expat/CMakeLists.txt /home/mithras/esp/esp-idf/components/expat/expat/.git /home/mithras/esp/esp-idf/components/fatfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/freemodbus/CMakeLists.txt /home/mithras/esp/esp-idf/components/freertos/CMakeLists.txt /home/mithras/esp/esp-idf/components/heap/CMakeLists.txt /home/mithras/esp/esp-idf/components/idf_test/CMakeLists.txt /home/mithras/esp/esp-idf/components/jsmn/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/cJSON/.git /home/mithras/esp/esp-idf/components/libsodium/CMakeLists.txt /home/mithras/esp/esp-idf/components/libsodium/libsodium/.git /home/mithras/esp/esp-idf/components/log/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/lwip/.git /home/mithras/esp/esp-idf/components/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/.git /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/mithras/esp/esp-idf/components/mdns/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/mithras/esp/esp-idf/components/newlib/CMakeLists.txt /home/mithras/esp/esp-idf/components/newlib/project_include.cmake /home/mithras/esp/esp-idf/components/nghttp/CMakeLists.txt /home/mithras/esp/esp-idf/components/nghttp/nghttp2/.git /home/mithras/esp/esp-idf/components/nvs_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/openssl/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/project_include.cmake /home/mithras/esp/esp-idf/components/perfmon/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/mithras/esp/esp-idf/components/protocomm/CMakeLists.txt /home/mithras/esp/esp-idf/components/pthread/CMakeLists.txt /home/mithras/esp/esp-idf/components/sdmmc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/src/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/project_include.cmake /home/mithras/esp/esp-idf/components/spiffs/spiffs/.git /home/mithras/esp/esp-idf/components/tcp_transport/CMakeLists.txt /home/mithras/esp/esp-idf/components/tcpip_adapter/CMakeLists.txt /home/mithras/esp/esp-idf/components/tinyusb/CMakeLists.txt /home/mithras/esp/esp-idf/components/tinyusb/tinyusb/.git /home/mithras/esp/esp-idf/components/ulp/CMakeLists.txt /home/mithras/esp/esp-idf/components/ulp/project_include.cmake /home/mithras/esp/esp-idf/components/unity/CMakeLists.txt /home/mithras/esp/esp-idf/components/unity/unity/.git /home/mithras/esp/esp-idf/components/vfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/wear_levelling/CMakeLists.txt /home/mithras/esp/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/mithras/esp/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/mithras/esp/esp-idf/components/xtensa/CMakeLists.txt /home/mithras/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/mithras/esp/esp-idf/tools/cmake/build.cmake /home/mithras/esp/esp-idf/tools/cmake/component.cmake /home/mithras/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/mithras/esp/esp-idf/tools/cmake/git_submodules.cmake /home/mithras/esp/esp-idf/tools/cmake/idf.cmake /home/mithras/esp/esp-idf/tools/cmake/kconfig.cmake /home/mithras/esp/esp-idf/tools/cmake/ldgen.cmake /home/mithras/esp/esp-idf/tools/cmake/project.cmake /home/mithras/esp/esp-idf/tools/cmake/project_description.json.in /home/mithras/esp/esp-idf/tools/cmake/targets.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/mithras/esp/esp-idf/tools/cmake/utilities.cmake /home/mithras/esp/esp-idf/tools/cmake/version.cmake /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py /home/mithras/esp/esp-idf/tools/kconfig_new/config.env.in /home/mithras/esp/esp-idf/tools/kconfig_new/kconfiglib.py /usr/share/cmake-3.10/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU.cmake /usr/share/cmake-3.10/Modules/ExternalProject.cmake /usr/share/cmake-3.10/Modules/FindCygwin.cmake /usr/share/cmake-3.10/Modules/FindGit.cmake /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.10/Modules/FindPackageMessage.cmake /usr/share/cmake-3.10/Modules/FindPerl.cmake /usr/share/cmake-3.10/Modules/FindPythonInterp.cmake /usr/share/cmake-3.10/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeASMCompiler.cmake CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-cfgcmd.txt.in 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 ../CMakeLists.txt ../components/ca/CMakeLists.txt ../components/cmd_nvs/CMakeLists.txt ../components/cmd_system/CMakeLists.txt ../components/files/CMakeLists.txt ../components/https_server/CMakeLists.txt ../components/wifi/CMakeLists.txt ../main/CMakeLists.txt ../partitions_example.csv ../sdkconfig /home/mithras/esp/esp-idf/.git/HEAD /home/mithras/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/controller/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/mithras/esp/esp-idf/.git/modules/components/cbor/tinycbor/HEAD /home/mithras/esp/esp-idf/.git/modules/components/coap/libcoap/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esptool_py/esptool/HEAD /home/mithras/esp/esp-idf/.git/modules/components/expat/expat/HEAD /home/mithras/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/mithras/esp/esp-idf/.git/modules/components/libsodium/libsodium/HEAD /home/mithras/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/mithras/esp/esp-idf/.git/modules/components/nghttp/nghttp2/HEAD /home/mithras/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/mithras/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/mithras/esp/esp-idf/.git/modules/components/tinyusb/tinyusb/HEAD /home/mithras/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/mithras/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/mithras/esp/esp-idf/.git/refs/heads/master /home/mithras/esp/esp-idf/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/project_include.cmake /home/mithras/esp/esp-idf/components/app_update/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/asio/.git /home/mithras/esp/esp-idf/components/bootloader/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/project_include.cmake /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/mithras/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/controller/lib/.git /home/mithras/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/mithras/esp/esp-idf/components/cbor/CMakeLists.txt /home/mithras/esp/esp-idf/components/cbor/tinycbor/.git /home/mithras/esp/esp-idf/components/coap/CMakeLists.txt /home/mithras/esp/esp-idf/components/coap/libcoap/.git /home/mithras/esp/esp-idf/components/console/CMakeLists.txt /home/mithras/esp/esp-idf/components/cxx/CMakeLists.txt /home/mithras/esp/esp-idf/components/driver/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/esp32/sources.cmake /home/mithras/esp/esp-idf/components/esp-tls/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/project_include.cmake /home/mithras/esp/esp-idf/components/esp_adc_cal/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_common/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_eth/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_event/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_ota/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_netif/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_serial_slave_link/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/port/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/port/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_timer/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_websocket_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/lib/.git /home/mithras/esp/esp-idf/components/espcoredump/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/esptool/.git /home/mithras/esp/esp-idf/components/esptool_py/project_include.cmake /home/mithras/esp/esp-idf/components/expat/CMakeLists.txt /home/mithras/esp/esp-idf/components/expat/expat/.git /home/mithras/esp/esp-idf/components/fatfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/freemodbus/CMakeLists.txt /home/mithras/esp/esp-idf/components/freertos/CMakeLists.txt /home/mithras/esp/esp-idf/components/heap/CMakeLists.txt /home/mithras/esp/esp-idf/components/idf_test/CMakeLists.txt /home/mithras/esp/esp-idf/components/jsmn/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/cJSON/.git /home/mithras/esp/esp-idf/components/libsodium/CMakeLists.txt /home/mithras/esp/esp-idf/components/libsodium/libsodium/.git /home/mithras/esp/esp-idf/components/log/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/lwip/.git /home/mithras/esp/esp-idf/components/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/.git /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/mithras/esp/esp-idf/components/mdns/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/mithras/esp/esp-idf/components/newlib/CMakeLists.txt /home/mithras/esp/esp-idf/components/newlib/project_include.cmake /home/mithras/esp/esp-idf/components/nghttp/CMakeLists.txt /home/mithras/esp/esp-idf/components/nghttp/nghttp2/.git /home/mithras/esp/esp-idf/components/nvs_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/openssl/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/project_include.cmake /home/mithras/esp/esp-idf/components/perfmon/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/mithras/esp/esp-idf/components/protocomm/CMakeLists.txt /home/mithras/esp/esp-idf/components/pthread/CMakeLists.txt /home/mithras/esp/esp-idf/components/sdmmc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/src/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/project_include.cmake /home/mithras/esp/esp-idf/components/spiffs/spiffs/.git /home/mithras/esp/esp-idf/components/tcp_transport/CMakeLists.txt /home/mithras/esp/esp-idf/components/tcpip_adapter/CMakeLists.txt /home/mithras/esp/esp-idf/components/tinyusb/CMakeLists.txt /home/mithras/esp/esp-idf/components/tinyusb/tinyusb/.git /home/mithras/esp/esp-idf/components/ulp/CMakeLists.txt /home/mithras/esp/esp-idf/components/ulp/project_include.cmake /home/mithras/esp/esp-idf/components/unity/CMakeLists.txt /home/mithras/esp/esp-idf/components/unity/unity/.git /home/mithras/esp/esp-idf/components/vfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/wear_levelling/CMakeLists.txt /home/mithras/esp/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/mithras/esp/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/mithras/esp/esp-idf/components/xtensa/CMakeLists.txt /home/mithras/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/mithras/esp/esp-idf/tools/cmake/build.cmake /home/mithras/esp/esp-idf/tools/cmake/component.cmake /home/mithras/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/mithras/esp/esp-idf/tools/cmake/git_submodules.cmake /home/mithras/esp/esp-idf/tools/cmake/idf.cmake /home/mithras/esp/esp-idf/tools/cmake/kconfig.cmake /home/mithras/esp/esp-idf/tools/cmake/ldgen.cmake /home/mithras/esp/esp-idf/tools/cmake/project.cmake /home/mithras/esp/esp-idf/tools/cmake/project_description.json.in /home/mithras/esp/esp-idf/tools/cmake/targets.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/mithras/esp/esp-idf/tools/cmake/utilities.cmake /home/mithras/esp/esp-idf/tools/cmake/version.cmake /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py /home/mithras/esp/esp-idf/tools/kconfig_new/config.env.in /home/mithras/esp/esp-idf/tools/kconfig_new/kconfiglib.py /usr/share/cmake-3.10/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU.cmake /usr/share/cmake-3.10/Modules/ExternalProject.cmake /usr/share/cmake-3.10/Modules/FindCygwin.cmake /usr/share/cmake-3.10/Modules/FindGit.cmake /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.10/Modules/FindPackageMessage.cmake /usr/share/cmake-3.10/Modules/FindPerl.cmake /usr/share/cmake-3.10/Modules/FindPythonInterp.cmake /usr/share/cmake-3.10/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeASMCompiler.cmake CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-cfgcmd.txt.in 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 ../CMakeLists.txt ../components/ca/CMakeLists.txt ../components/cmd_nvs/CMakeLists.txt ../components/cmd_system/CMakeLists.txt ../components/display/CMakeLists.txt ../components/files/CMakeLists.txt ../components/https_server/CMakeLists.txt ../components/lv_port_esp32/components/lv_examples/CMakeLists.txt ../components/lv_port_esp32/components/lvgl/CMakeLists.txt ../components/lv_port_esp32/components/lvgl_esp32_drivers/CMakeLists.txt ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/CMakeLists.txt ../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/CMakeLists.txt ../components/wifi/CMakeLists.txt ../main/CMakeLists.txt ../partitions_example.csv ../sdkconfig /home/mithras/esp/esp-idf/.git/HEAD /home/mithras/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/controller/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/mithras/esp/esp-idf/.git/modules/components/cbor/tinycbor/HEAD /home/mithras/esp/esp-idf/.git/modules/components/coap/libcoap/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esptool_py/esptool/HEAD /home/mithras/esp/esp-idf/.git/modules/components/expat/expat/HEAD /home/mithras/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/mithras/esp/esp-idf/.git/modules/components/libsodium/libsodium/HEAD /home/mithras/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/mithras/esp/esp-idf/.git/modules/components/nghttp/nghttp2/HEAD /home/mithras/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/mithras/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/mithras/esp/esp-idf/.git/modules/components/tinyusb/tinyusb/HEAD /home/mithras/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/mithras/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/mithras/esp/esp-idf/.git/refs/heads/master /home/mithras/esp/esp-idf/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/project_include.cmake /home/mithras/esp/esp-idf/components/app_update/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/asio/.git /home/mithras/esp/esp-idf/components/bootloader/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/project_include.cmake /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/mithras/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/controller/lib/.git /home/mithras/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/mithras/esp/esp-idf/components/cbor/CMakeLists.txt /home/mithras/esp/esp-idf/components/cbor/tinycbor/.git /home/mithras/esp/esp-idf/components/coap/CMakeLists.txt /home/mithras/esp/esp-idf/components/coap/libcoap/.git /home/mithras/esp/esp-idf/components/console/CMakeLists.txt /home/mithras/esp/esp-idf/components/cxx/CMakeLists.txt /home/mithras/esp/esp-idf/components/driver/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/esp32/sources.cmake /home/mithras/esp/esp-idf/components/esp-tls/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/project_include.cmake /home/mithras/esp/esp-idf/components/esp_adc_cal/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_common/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_eth/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_event/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_ota/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_netif/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_serial_slave_link/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/port/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_system/port/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_timer/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_websocket_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/lib/.git /home/mithras/esp/esp-idf/components/espcoredump/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/esptool/.git /home/mithras/esp/esp-idf/components/esptool_py/project_include.cmake /home/mithras/esp/esp-idf/components/expat/CMakeLists.txt /home/mithras/esp/esp-idf/components/expat/expat/.git /home/mithras/esp/esp-idf/components/fatfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/freemodbus/CMakeLists.txt /home/mithras/esp/esp-idf/components/freertos/CMakeLists.txt /home/mithras/esp/esp-idf/components/heap/CMakeLists.txt /home/mithras/esp/esp-idf/components/idf_test/CMakeLists.txt /home/mithras/esp/esp-idf/components/jsmn/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/cJSON/.git /home/mithras/esp/esp-idf/components/libsodium/CMakeLists.txt /home/mithras/esp/esp-idf/components/libsodium/libsodium/.git /home/mithras/esp/esp-idf/components/log/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/lwip/.git /home/mithras/esp/esp-idf/components/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/.git /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/mithras/esp/esp-idf/components/mdns/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/mithras/esp/esp-idf/components/newlib/CMakeLists.txt /home/mithras/esp/esp-idf/components/newlib/project_include.cmake /home/mithras/esp/esp-idf/components/nghttp/CMakeLists.txt /home/mithras/esp/esp-idf/components/nghttp/nghttp2/.git /home/mithras/esp/esp-idf/components/nvs_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/openssl/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/project_include.cmake /home/mithras/esp/esp-idf/components/perfmon/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/mithras/esp/esp-idf/components/protocomm/CMakeLists.txt /home/mithras/esp/esp-idf/components/pthread/CMakeLists.txt /home/mithras/esp/esp-idf/components/sdmmc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/src/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/project_include.cmake /home/mithras/esp/esp-idf/components/spiffs/spiffs/.git /home/mithras/esp/esp-idf/components/tcp_transport/CMakeLists.txt /home/mithras/esp/esp-idf/components/tcpip_adapter/CMakeLists.txt /home/mithras/esp/esp-idf/components/tinyusb/CMakeLists.txt /home/mithras/esp/esp-idf/components/tinyusb/tinyusb/.git /home/mithras/esp/esp-idf/components/ulp/CMakeLists.txt /home/mithras/esp/esp-idf/components/ulp/project_include.cmake /home/mithras/esp/esp-idf/components/unity/CMakeLists.txt /home/mithras/esp/esp-idf/components/unity/unity/.git /home/mithras/esp/esp-idf/components/vfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/wear_levelling/CMakeLists.txt /home/mithras/esp/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/mithras/esp/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/mithras/esp/esp-idf/components/xtensa/CMakeLists.txt /home/mithras/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/mithras/esp/esp-idf/tools/cmake/build.cmake /home/mithras/esp/esp-idf/tools/cmake/component.cmake /home/mithras/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/mithras/esp/esp-idf/tools/cmake/git_submodules.cmake /home/mithras/esp/esp-idf/tools/cmake/idf.cmake /home/mithras/esp/esp-idf/tools/cmake/kconfig.cmake /home/mithras/esp/esp-idf/tools/cmake/ldgen.cmake /home/mithras/esp/esp-idf/tools/cmake/project.cmake /home/mithras/esp/esp-idf/tools/cmake/project_description.json.in /home/mithras/esp/esp-idf/tools/cmake/targets.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/mithras/esp/esp-idf/tools/cmake/utilities.cmake /home/mithras/esp/esp-idf/tools/cmake/version.cmake /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py /home/mithras/esp/esp-idf/tools/kconfig_new/config.env.in /home/mithras/esp/esp-idf/tools/kconfig_new/kconfiglib.py /usr/share/cmake-3.10/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU.cmake /usr/share/cmake-3.10/Modules/ExternalProject.cmake /usr/share/cmake-3.10/Modules/FindCygwin.cmake /usr/share/cmake-3.10/Modules/FindGit.cmake /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.10/Modules/FindPackageMessage.cmake /usr/share/cmake-3.10/Modules/FindPerl.cmake /usr/share/cmake-3.10/Modules/FindPythonInterp.cmake /usr/share/cmake-3.10/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeASMCompiler.cmake CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-cfgcmd.txt.in config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition_table-flash_args.in flash_args flash_args.in ldgen_libraries.in: phony ############################################# # Clean all the built files. diff --git a/build/cacert.pem.S b/build/cacert.pem.S new file mode 100644 index 0000000..c6bb6bb --- /dev/null +++ b/build/cacert.pem.S @@ -0,0 +1,92 @@ +/* * Data converted from /home/mithras/esp/bakalarka/components/https_server/certs/cacert.pem + * (null byte appended) + */ +.data +.section .rodata.embedded + +.global cacert_pem +cacert_pem: + +.global _binary_cacert_pem_start +_binary_cacert_pem_start: /* for objcopy compatibility */ +.byte 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49 +.byte 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x4d, 0x49, 0x49, 0x44 +.byte 0x4b, 0x7a, 0x43, 0x43, 0x41, 0x68, 0x4f, 0x67, 0x41, 0x77, 0x49, 0x42, 0x41, 0x67, 0x49, 0x55 +.byte 0x42, 0x78, 0x4d, 0x33, 0x57, 0x4a, 0x66, 0x32, 0x62, 0x50, 0x31, 0x32, 0x6b, 0x41, 0x66, 0x71 +.byte 0x68, 0x6d, 0x68, 0x68, 0x6a, 0x5a, 0x57, 0x76, 0x30, 0x75, 0x6b, 0x77, 0x44, 0x51, 0x59, 0x4a +.byte 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x4c, 0x0a, 0x42, 0x51, 0x41 +.byte 0x77, 0x4a, 0x54, 0x45, 0x6a, 0x4d, 0x43, 0x45, 0x47, 0x41, 0x31, 0x55, 0x45, 0x41, 0x77, 0x77 +.byte 0x61, 0x52, 0x56, 0x4e, 0x51, 0x4d, 0x7a, 0x49, 0x67, 0x53, 0x46, 0x52, 0x55, 0x55, 0x46, 0x4d +.byte 0x67, 0x63, 0x32, 0x56, 0x79, 0x64, 0x6d, 0x56, 0x79, 0x49, 0x47, 0x56, 0x34, 0x59, 0x57, 0x31 +.byte 0x77, 0x62, 0x47, 0x55, 0x77, 0x48, 0x68, 0x63, 0x4e, 0x4d, 0x54, 0x67, 0x78, 0x0a, 0x4d, 0x44 +.byte 0x45, 0x33, 0x4d, 0x54, 0x45, 0x7a, 0x4d, 0x6a, 0x55, 0x33, 0x57, 0x68, 0x63, 0x4e, 0x4d, 0x6a +.byte 0x67, 0x78, 0x4d, 0x44, 0x45, 0x30, 0x4d, 0x54, 0x45, 0x7a, 0x4d, 0x6a, 0x55, 0x33, 0x57, 0x6a +.byte 0x41, 0x6c, 0x4d, 0x53, 0x4d, 0x77, 0x49, 0x51, 0x59, 0x44, 0x56, 0x51, 0x51, 0x44, 0x44, 0x42 +.byte 0x70, 0x46, 0x55, 0x31, 0x41, 0x7a, 0x4d, 0x69, 0x42, 0x49, 0x56, 0x46, 0x52, 0x51, 0x0a, 0x55 +.byte 0x79, 0x42, 0x7a, 0x5a, 0x58, 0x4a, 0x32, 0x5a, 0x58, 0x49, 0x67, 0x5a, 0x58, 0x68, 0x68, 0x62 +.byte 0x58, 0x42, 0x73, 0x5a, 0x54, 0x43, 0x43, 0x41, 0x53, 0x49, 0x77, 0x44, 0x51, 0x59, 0x4a, 0x4b +.byte 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x42, 0x42, 0x51, 0x41, 0x44, 0x67 +.byte 0x67, 0x45, 0x50, 0x41, 0x44, 0x43, 0x43, 0x41, 0x51, 0x6f, 0x43, 0x67, 0x67, 0x45, 0x42, 0x0a +.byte 0x41, 0x4c, 0x42, 0x69, 0x6e, 0x74, 0x36, 0x6e, 0x50, 0x37, 0x37, 0x52, 0x43, 0x51, 0x63, 0x6d +.byte 0x4b, 0x67, 0x77, 0x50, 0x74, 0x54, 0x73, 0x47, 0x4b, 0x30, 0x75, 0x43, 0x6c, 0x78, 0x67, 0x2b +.byte 0x4c, 0x77, 0x4b, 0x4a, 0x33, 0x57, 0x58, 0x75, 0x79, 0x65, 0x33, 0x6f, 0x71, 0x6e, 0x6e, 0x6a +.byte 0x71, 0x4a, 0x43, 0x77, 0x4d, 0x45, 0x6e, 0x65, 0x58, 0x7a, 0x47, 0x64, 0x47, 0x30, 0x39, 0x54 +.byte 0x0a, 0x73, 0x41, 0x30, 0x53, 0x79, 0x4e, 0x50, 0x77, 0x72, 0x45, 0x67, 0x65, 0x62, 0x4c, 0x43 +.byte 0x48, 0x38, 0x30, 0x61, 0x6e, 0x33, 0x67, 0x57, 0x55, 0x34, 0x70, 0x48, 0x44, 0x64, 0x71, 0x47 +.byte 0x48, 0x66, 0x4a, 0x51, 0x61, 0x32, 0x6a, 0x42, 0x4c, 0x32, 0x39, 0x30, 0x65, 0x2f, 0x35, 0x4c +.byte 0x35, 0x4d, 0x42, 0x2b, 0x36, 0x50, 0x54, 0x73, 0x32, 0x4e, 0x4b, 0x63, 0x6f, 0x6a, 0x4b, 0x2f +.byte 0x6b, 0x0a, 0x71, 0x63, 0x5a, 0x6b, 0x6e, 0x35, 0x38, 0x4d, 0x57, 0x58, 0x68, 0x44, 0x57, 0x31 +.byte 0x4e, 0x70, 0x41, 0x6e, 0x4a, 0x74, 0x6a, 0x56, 0x6e, 0x69, 0x4b, 0x32, 0x4b, 0x73, 0x76, 0x72 +.byte 0x2f, 0x59, 0x49, 0x59, 0x53, 0x62, 0x79, 0x44, 0x2b, 0x4a, 0x69, 0x45, 0x73, 0x30, 0x4d, 0x47 +.byte 0x78, 0x45, 0x78, 0x2b, 0x6b, 0x4f, 0x6c, 0x39, 0x64, 0x37, 0x68, 0x52, 0x48, 0x4a, 0x61, 0x49 +.byte 0x7a, 0x64, 0x0a, 0x47, 0x46, 0x2f, 0x76, 0x4f, 0x32, 0x70, 0x6c, 0x32, 0x39, 0x35, 0x76, 0x31 +.byte 0x71, 0x58, 0x65, 0x6b, 0x41, 0x6c, 0x6b, 0x67, 0x4e, 0x4d, 0x74, 0x59, 0x49, 0x56, 0x41, 0x6a +.byte 0x55, 0x79, 0x39, 0x43, 0x4d, 0x70, 0x71, 0x61, 0x51, 0x42, 0x43, 0x51, 0x52, 0x4c, 0x2b, 0x42 +.byte 0x6d, 0x50, 0x53, 0x4a, 0x52, 0x6b, 0x58, 0x42, 0x73, 0x59, 0x6b, 0x38, 0x47, 0x50, 0x6e, 0x69 +.byte 0x65, 0x53, 0x34, 0x0a, 0x73, 0x55, 0x73, 0x70, 0x35, 0x33, 0x44, 0x73, 0x4e, 0x76, 0x43, 0x43 +.byte 0x74, 0x57, 0x44, 0x54, 0x36, 0x66, 0x64, 0x39, 0x44, 0x31, 0x76, 0x2b, 0x42, 0x42, 0x36, 0x6e +.byte 0x44, 0x6b, 0x2f, 0x46, 0x43, 0x50, 0x4b, 0x68, 0x74, 0x6a, 0x59, 0x4f, 0x77, 0x4f, 0x41, 0x5a +.byte 0x6c, 0x58, 0x34, 0x77, 0x57, 0x4e, 0x53, 0x5a, 0x70, 0x52, 0x4e, 0x72, 0x35, 0x64, 0x66, 0x72 +.byte 0x78, 0x4b, 0x73, 0x62, 0x0a, 0x6a, 0x41, 0x6e, 0x34, 0x50, 0x43, 0x75, 0x52, 0x32, 0x61, 0x6b +.byte 0x64, 0x46, 0x34, 0x47, 0x38, 0x57, 0x4c, 0x55, 0x65, 0x44, 0x57, 0x45, 0x43, 0x41, 0x77, 0x45 +.byte 0x41, 0x41, 0x61, 0x4e, 0x54, 0x4d, 0x46, 0x45, 0x77, 0x48, 0x51, 0x59, 0x44, 0x56, 0x52, 0x30 +.byte 0x4f, 0x42, 0x42, 0x59, 0x45, 0x46, 0x4d, 0x6e, 0x6d, 0x64, 0x4a, 0x4b, 0x4f, 0x45, 0x65, 0x70 +.byte 0x58, 0x72, 0x48, 0x49, 0x2f, 0x0a, 0x69, 0x76, 0x4d, 0x36, 0x6d, 0x56, 0x71, 0x4a, 0x67, 0x41 +.byte 0x58, 0x38, 0x4d, 0x42, 0x38, 0x47, 0x41, 0x31, 0x55, 0x64, 0x49, 0x77, 0x51, 0x59, 0x4d, 0x42 +.byte 0x61, 0x41, 0x46, 0x4d, 0x6e, 0x6d, 0x64, 0x4a, 0x4b, 0x4f, 0x45, 0x65, 0x70, 0x58, 0x72, 0x48 +.byte 0x49, 0x2f, 0x69, 0x76, 0x4d, 0x36, 0x6d, 0x56, 0x71, 0x4a, 0x67, 0x41, 0x58, 0x38, 0x4d, 0x41 +.byte 0x38, 0x47, 0x41, 0x31, 0x55, 0x64, 0x0a, 0x45, 0x77, 0x45, 0x42, 0x2f, 0x77, 0x51, 0x46, 0x4d +.byte 0x41, 0x4d, 0x42, 0x41, 0x66, 0x38, 0x77, 0x44, 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68 +.byte 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x4c, 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x42, 0x41 +.byte 0x44, 0x69, 0x58, 0x49, 0x47, 0x45, 0x6b, 0x53, 0x73, 0x4e, 0x30, 0x53, 0x4c, 0x53, 0x66, 0x43 +.byte 0x46, 0x31, 0x56, 0x4e, 0x57, 0x4f, 0x33, 0x0a, 0x65, 0x6d, 0x42, 0x75, 0x72, 0x66, 0x4f, 0x63 +.byte 0x44, 0x71, 0x34, 0x45, 0x47, 0x45, 0x61, 0x78, 0x52, 0x4b, 0x41, 0x55, 0x30, 0x38, 0x31, 0x34 +.byte 0x56, 0x45, 0x6d, 0x55, 0x38, 0x37, 0x62, 0x74, 0x49, 0x44, 0x78, 0x38, 0x30, 0x2b, 0x7a, 0x35 +.byte 0x44, 0x62, 0x66, 0x2b, 0x47, 0x47, 0x48, 0x43, 0x50, 0x72, 0x59, 0x37, 0x6f, 0x64, 0x49, 0x6b +.byte 0x78, 0x47, 0x4e, 0x6e, 0x30, 0x44, 0x4a, 0x59, 0x0a, 0x57, 0x31, 0x57, 0x63, 0x46, 0x2b, 0x44 +.byte 0x4f, 0x63, 0x62, 0x69, 0x57, 0x6f, 0x55, 0x4e, 0x36, 0x44, 0x54, 0x6b, 0x41, 0x4d, 0x4c, 0x30 +.byte 0x53, 0x4d, 0x6e, 0x70, 0x38, 0x61, 0x47, 0x6a, 0x39, 0x66, 0x66, 0x78, 0x33, 0x78, 0x2b, 0x71 +.byte 0x6f, 0x67, 0x67, 0x54, 0x2b, 0x76, 0x47, 0x64, 0x57, 0x56, 0x56, 0x41, 0x34, 0x70, 0x67, 0x77 +.byte 0x71, 0x5a, 0x54, 0x37, 0x59, 0x62, 0x6e, 0x74, 0x78, 0x0a, 0x62, 0x6b, 0x7a, 0x63, 0x4e, 0x46 +.byte 0x57, 0x30, 0x73, 0x71, 0x6d, 0x43, 0x76, 0x34, 0x49, 0x4e, 0x31, 0x74, 0x34, 0x77, 0x36, 0x4c +.byte 0x30, 0x41, 0x38, 0x37, 0x5a, 0x77, 0x73, 0x4e, 0x77, 0x56, 0x70, 0x72, 0x65, 0x2f, 0x6a, 0x36 +.byte 0x75, 0x79, 0x42, 0x77, 0x37, 0x73, 0x38, 0x59, 0x6f, 0x4a, 0x48, 0x44, 0x4c, 0x52, 0x46, 0x54 +.byte 0x36, 0x67, 0x37, 0x71, 0x67, 0x6e, 0x30, 0x74, 0x63, 0x4e, 0x0a, 0x5a, 0x75, 0x66, 0x68, 0x4e +.byte 0x49, 0x53, 0x76, 0x67, 0x57, 0x43, 0x56, 0x4a, 0x51, 0x79, 0x2f, 0x53, 0x5a, 0x6a, 0x4e, 0x42 +.byte 0x48, 0x53, 0x70, 0x6e, 0x49, 0x64, 0x43, 0x55, 0x53, 0x4a, 0x41, 0x65, 0x54, 0x59, 0x32, 0x6d +.byte 0x6b, 0x4d, 0x34, 0x73, 0x47, 0x78, 0x59, 0x30, 0x57, 0x69, 0x64, 0x6b, 0x38, 0x4c, 0x6e, 0x6a +.byte 0x79, 0x64, 0x78, 0x5a, 0x55, 0x53, 0x78, 0x43, 0x33, 0x4e, 0x6c, 0x0a, 0x68, 0x62, 0x36, 0x70 +.byte 0x6e, 0x4d, 0x68, 0x33, 0x6a, 0x52, 0x71, 0x34, 0x68, 0x30, 0x2b, 0x35, 0x43, 0x5a, 0x69, 0x65 +.byte 0x6c, 0x41, 0x34, 0x2f, 0x61, 0x2b, 0x54, 0x64, 0x72, 0x4e, 0x50, 0x76, 0x2f, 0x71, 0x6f, 0x6b +.byte 0x36, 0x37, 0x6f, 0x74, 0x2f, 0x58, 0x4a, 0x64, 0x59, 0x33, 0x71, 0x48, 0x43, 0x43, 0x64, 0x38 +.byte 0x4f, 0x32, 0x62, 0x31, 0x34, 0x4f, 0x56, 0x71, 0x39, 0x6a, 0x6f, 0x3d, 0x0a, 0x2d, 0x2d, 0x2d +.byte 0x2d, 0x2d, 0x45, 0x4e, 0x44, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54 +.byte 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x00 + +.global _binary_cacert_pem_end +_binary_cacert_pem_end: /* for objcopy compatibility */ + + +.global cacert_pem_length +cacert_pem_length: /* not including null byte */ +.word 1159 diff --git a/build/compile_commands.json b/build/compile_commands.json index fb57f0b..0a2d3c6 100644 --- a/build/compile_commands.json +++ b/build/compile_commands.json @@ -1,7 +1,7 @@ [ { "directory": "/home/mithras/esp/bakalarka/build", - "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/idf_test/include/esp32 -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../main -I../components/files -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/wifi -I../components/https_server -mlongcalls -Wno-frame-address -o CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj -c /home/mithras/esp/bakalarka/build/project_elf_src.c", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DLV_CONF_INCLUDE_SIMPLE=1 -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/idf_test/include/esp32 -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../main -I../components/files -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I../components/lv_port_esp32/components/lvgl_esp32_drivers -I../components/lv_port_esp32/components/lv_examples -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I../components/display -I../components/wifi -I../components/https_server -mlongcalls -Wno-frame-address -o CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj -c /home/mithras/esp/bakalarka/build/project_elf_src.c", "file": "/home/mithras/esp/bakalarka/build/project_elf_src.c" }, @@ -5059,7 +5059,7 @@ { "directory": "/home/mithras/esp/bakalarka/build", - "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX -Iconfig -I../main -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/idf_test/include/esp32 -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../components/files -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/wifi -I../components/https_server -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c /home/mithras/esp/bakalarka/main/main.c", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DLV_CONF_INCLUDE_SIMPLE=1 -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX -Iconfig -I../main -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/idf_test/include/esp32 -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../components/files -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I../components/lv_port_esp32/components/lvgl_esp32_drivers -I../components/lv_port_esp32/components/lv_examples -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I../components/display -I../components/wifi -I../components/https_server -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c /home/mithras/esp/bakalarka/main/main.c", "file": "/home/mithras/esp/bakalarka/main/main.c" }, @@ -5093,6 +5093,1002 @@ "file": "/home/mithras/esp/bakalarka/components/cmd_system/cmd_system.c" }, +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_debug.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_debug.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_disp.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_disp.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_group.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_group.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_indev.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_indev.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_obj.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_obj.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_refr.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_refr.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_style.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_core/lv_style.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_arc.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_arc.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_basic.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_basic.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_img.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_img.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_label.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_label.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_line.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_line.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_rect.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_rect.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_triangle.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_draw_triangle.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_img_cache.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_img_cache.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_img_decoder.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_draw/lv_img_decoder.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_fmt_txt.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_fmt_txt.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_12.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_12.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_12_subpx.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_12_subpx.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_16.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_16.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_22.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_22.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_28.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_28.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_28_compressed.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_roboto_28_compressed.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_unscii_8.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_font/lv_font_unscii_8.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_hal/lv_hal_disp.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_hal/lv_hal_disp.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_hal/lv_hal_indev.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_hal/lv_hal_indev.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_hal/lv_hal_tick.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_hal/lv_hal_tick.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_anim.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_anim.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_area.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_area.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_async.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_async.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_bidi.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_bidi.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_circ.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_circ.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_color.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_color.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_fs.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_fs.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_gc.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_gc.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_ll.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_ll.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_log.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_log.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_math.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_math.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_mem.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_mem.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_printf.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_printf.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_task.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_task.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_templ.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_templ.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_txt.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_txt.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_utils.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_misc/lv_utils.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_arc.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_arc.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_bar.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_bar.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_btn.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_btn.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_btnm.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_btnm.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_calendar.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_calendar.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_canvas.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_canvas.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_cb.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_cb.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_chart.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_chart.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_cont.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_cont.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_cpicker.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_cpicker.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_ddlist.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_ddlist.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_gauge.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_gauge.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_img.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_img.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_imgbtn.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_imgbtn.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_kb.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_kb.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_label.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_label.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_led.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_led.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_line.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_line.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_list.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_list.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_lmeter.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_lmeter.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_mbox.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_mbox.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_objx_templ.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_objx_templ.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_page.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_page.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_preload.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_preload.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_roller.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_roller.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_slider.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_slider.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_spinbox.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_spinbox.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_sw.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_sw.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_ta.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_ta.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_table.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_table.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_tabview.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_tabview.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_tileview.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_tileview.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_win.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_objx/lv_win.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_alien.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_alien.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_default.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_default.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_material.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_material.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_mono.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_mono.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_nemo.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_nemo.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_night.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_night.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_templ.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_templ.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_zen.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl/lvgl/src/lv_themes/lv_theme_zen.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_driver.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_driver.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/demo/demo.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/demo/demo.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/demo/img_bubble_pattern.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/demo/img_bubble_pattern.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/terminal/terminal.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/terminal/terminal.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/7_fonts/arial_20.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/7_fonts/arial_20.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/disp_driver.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/disp_driver.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/disp_spi.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/disp_spi.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/hx8357.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/hx8357.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/ili9341.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/ili9341.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/ili9488.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/ili9488.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/st7789.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/st7789.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/ft6x36.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/ft6x36.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/stmpe610.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/stmpe610.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/touch_driver.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/touch_driver.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/tp_i2c.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/tp_i2c.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/tp_spi.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/tp_spi.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj -c /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/xpt2046.c", + "file": "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/xpt2046.c" +}, + +{ + "directory": "/home/mithras/esp/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/display -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lv_port_esp32/components/lvgl_esp32_drivers -I../components/lv_port_esp32/components/lvgl -I../components/lv_port_esp32/components/lvgl/lvgl -I../components/lv_port_esp32/components/lv_examples -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft -I../components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj -c /home/mithras/esp/bakalarka/components/display/display.c", + "file": "/home/mithras/esp/bakalarka/components/display/display.c" +}, + { "directory": "/home/mithras/esp/bakalarka/build", "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/wifi -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp_system/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-792-g6330b3345\\\" -DESP_PLATFORM -o esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj -c /home/mithras/esp/bakalarka/components/wifi/wifi.c", diff --git a/build/config.env b/build/config.env index 8907808..2165d4b 100644 --- a/build/config.env +++ b/build/config.env @@ -1,5 +1,5 @@ { - "COMPONENT_KCONFIGS": "/home/mithras/esp/esp-idf/components/app_trace/Kconfig /home/mithras/esp/esp-idf/components/bt/Kconfig /home/mithras/esp/esp-idf/components/coap/Kconfig /home/mithras/esp/esp-idf/components/driver/Kconfig /home/mithras/esp/esp-idf/components/efuse/Kconfig /home/mithras/esp/esp-idf/components/esp-tls/Kconfig /home/mithras/esp/esp-idf/components/esp32/Kconfig /home/mithras/esp/esp-idf/components/esp_adc_cal/Kconfig /home/mithras/esp/esp-idf/components/esp_common/Kconfig /home/mithras/esp/esp-idf/components/esp_eth/Kconfig /home/mithras/esp/esp-idf/components/esp_event/Kconfig /home/mithras/esp/esp-idf/components/esp_gdbstub/Kconfig /home/mithras/esp/esp-idf/components/esp_http_client/Kconfig /home/mithras/esp/esp-idf/components/esp_http_server/Kconfig /home/mithras/esp/esp-idf/components/esp_https_ota/Kconfig /home/mithras/esp/esp-idf/components/esp_https_server/Kconfig /home/mithras/esp/esp-idf/components/esp_netif/Kconfig /home/mithras/esp/esp-idf/components/esp_system/Kconfig /home/mithras/esp/esp-idf/components/esp_timer/Kconfig /home/mithras/esp/esp-idf/components/esp_wifi/Kconfig /home/mithras/esp/esp-idf/components/espcoredump/Kconfig /home/mithras/esp/esp-idf/components/fatfs/Kconfig /home/mithras/esp/esp-idf/components/freemodbus/Kconfig /home/mithras/esp/esp-idf/components/freertos/Kconfig /home/mithras/esp/esp-idf/components/heap/Kconfig /home/mithras/esp/esp-idf/components/jsmn/Kconfig /home/mithras/esp/esp-idf/components/libsodium/Kconfig /home/mithras/esp/esp-idf/components/log/Kconfig /home/mithras/esp/esp-idf/components/lwip/Kconfig /home/mithras/esp/esp-idf/components/mbedtls/Kconfig /home/mithras/esp/esp-idf/components/mdns/Kconfig /home/mithras/esp/esp-idf/components/mqtt/Kconfig /home/mithras/esp/esp-idf/components/newlib/Kconfig /home/mithras/esp/esp-idf/components/nvs_flash/Kconfig /home/mithras/esp/esp-idf/components/openssl/Kconfig /home/mithras/esp/esp-idf/components/pthread/Kconfig /home/mithras/esp/esp-idf/components/spi_flash/Kconfig /home/mithras/esp/esp-idf/components/spiffs/Kconfig /home/mithras/esp/esp-idf/components/tinyusb/Kconfig /home/mithras/esp/esp-idf/components/unity/Kconfig /home/mithras/esp/esp-idf/components/vfs/Kconfig /home/mithras/esp/esp-idf/components/wear_levelling/Kconfig /home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig /home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig", + "COMPONENT_KCONFIGS": "/home/mithras/esp/esp-idf/components/app_trace/Kconfig /home/mithras/esp/esp-idf/components/bt/Kconfig /home/mithras/esp/esp-idf/components/coap/Kconfig /home/mithras/esp/esp-idf/components/driver/Kconfig /home/mithras/esp/esp-idf/components/efuse/Kconfig /home/mithras/esp/esp-idf/components/esp-tls/Kconfig /home/mithras/esp/esp-idf/components/esp32/Kconfig /home/mithras/esp/esp-idf/components/esp_adc_cal/Kconfig /home/mithras/esp/esp-idf/components/esp_common/Kconfig /home/mithras/esp/esp-idf/components/esp_eth/Kconfig /home/mithras/esp/esp-idf/components/esp_event/Kconfig /home/mithras/esp/esp-idf/components/esp_gdbstub/Kconfig /home/mithras/esp/esp-idf/components/esp_http_client/Kconfig /home/mithras/esp/esp-idf/components/esp_http_server/Kconfig /home/mithras/esp/esp-idf/components/esp_https_ota/Kconfig /home/mithras/esp/esp-idf/components/esp_https_server/Kconfig /home/mithras/esp/esp-idf/components/esp_netif/Kconfig /home/mithras/esp/esp-idf/components/esp_system/Kconfig /home/mithras/esp/esp-idf/components/esp_timer/Kconfig /home/mithras/esp/esp-idf/components/esp_wifi/Kconfig /home/mithras/esp/esp-idf/components/espcoredump/Kconfig /home/mithras/esp/esp-idf/components/fatfs/Kconfig /home/mithras/esp/esp-idf/components/freemodbus/Kconfig /home/mithras/esp/esp-idf/components/freertos/Kconfig /home/mithras/esp/esp-idf/components/heap/Kconfig /home/mithras/esp/esp-idf/components/jsmn/Kconfig /home/mithras/esp/esp-idf/components/libsodium/Kconfig /home/mithras/esp/esp-idf/components/log/Kconfig /home/mithras/esp/esp-idf/components/lwip/Kconfig /home/mithras/esp/esp-idf/components/mbedtls/Kconfig /home/mithras/esp/esp-idf/components/mdns/Kconfig /home/mithras/esp/esp-idf/components/mqtt/Kconfig /home/mithras/esp/esp-idf/components/newlib/Kconfig /home/mithras/esp/esp-idf/components/nvs_flash/Kconfig /home/mithras/esp/esp-idf/components/openssl/Kconfig /home/mithras/esp/esp-idf/components/pthread/Kconfig /home/mithras/esp/esp-idf/components/spi_flash/Kconfig /home/mithras/esp/esp-idf/components/spiffs/Kconfig /home/mithras/esp/esp-idf/components/tinyusb/Kconfig /home/mithras/esp/esp-idf/components/unity/Kconfig /home/mithras/esp/esp-idf/components/vfs/Kconfig /home/mithras/esp/esp-idf/components/wear_levelling/Kconfig /home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig /home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/Kconfig /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/Kconfig", "COMPONENT_KCONFIGS_PROJBUILD": "/home/mithras/esp/esp-idf/components/app_update/Kconfig.projbuild /home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild /home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild /home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild /home/mithras/esp/bakalarka/main/Kconfig.projbuild", "COMPONENT_SDKCONFIG_RENAMES": "/home/mithras/esp/esp-idf/components/app_trace/sdkconfig.rename /home/mithras/esp/esp-idf/components/bootloader/sdkconfig.rename /home/mithras/esp/esp-idf/components/bt/sdkconfig.rename /home/mithras/esp/esp-idf/components/driver/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp32/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_common/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_event/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_system/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_timer/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_wifi/sdkconfig.rename /home/mithras/esp/esp-idf/components/esptool_py/sdkconfig.rename /home/mithras/esp/esp-idf/components/freemodbus/sdkconfig.rename /home/mithras/esp/esp-idf/components/freertos/sdkconfig.rename /home/mithras/esp/esp-idf/components/lwip/sdkconfig.rename /home/mithras/esp/esp-idf/components/pthread/sdkconfig.rename /home/mithras/esp/esp-idf/components/spi_flash/sdkconfig.rename /home/mithras/esp/esp-idf/components/vfs/sdkconfig.rename", "IDF_CMAKE": "y", diff --git a/build/config/kconfig_menus.json b/build/config/kconfig_menus.json index d59594a..1c958d1 100644 --- a/build/config/kconfig_menus.json +++ b/build/config/kconfig_menus.json @@ -14687,6 +14687,807 @@ "id": "component-config-supplicant", "title": "Supplicant", "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_DISPLAY_NONE", + "name": "LVGL_PREDEFINED_DISPLAY_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_DISPLAY_WROVER4", + "name": "LVGL_PREDEFINED_DISPLAY_WROVER4", + "range": null, + "title": "ESP-Wrover-KIT v4.1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_DISPLAY_M5STACK", + "name": "LVGL_PREDEFINED_DISPLAY_M5STACK", + "range": null, + "title": "M5Stack", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_DISPLAY_ERTFT0356", + "name": "LVGL_PREDEFINED_DISPLAY_ERTFT0356", + "range": null, + "title": "ER-TFT035-6", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING", + "name": "LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING", + "range": null, + "title": "Adafruit 3.5 Featherwing", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select predefined display configuration", + "id": "component-config-littlevgl-lvgl-tft-display-controller-select-predefined-display-configuration", + "name": "LVGL_PREDEFINED_DISPLAY", + "title": "Select predefined display configuration", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_PINS_NONE", + "name": "LVGL_PREDEFINED_PINS_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_PINS_38V4", + "name": "LVGL_PREDEFINED_PINS_38V4", + "range": null, + "title": "ESP32 DevKit v4 (38 GPIOS)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_PINS_30", + "name": "LVGL_PREDEFINED_PINS_30", + "range": null, + "title": "ESP32 Devkit v1 - 30 pins", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_PINS_38V1", + "name": "LVGL_PREDEFINED_PINS_38V1", + "range": null, + "title": "Dev Board with 38 pins", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select predefined board pin out configuration.", + "id": "component-config-littlevgl-lvgl-tft-display-controller-select-predefined-board-pinouts", + "name": null, + "title": "Select predefined board pinouts", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TFT_DISPLAY_CONTROLLER", + "name": "LVGL_TFT_DISPLAY_CONTROLLER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9341", + "name": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9341", + "range": null, + "title": "ILI9341", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9488", + "name": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9488", + "range": null, + "title": "ILI9488", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_CONTROLLER_ST7789", + "name": "LVGL_TFT_DISPLAY_CONTROLLER_ST7789", + "range": null, + "title": "ST7789", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_CONTROLLER_HX8357", + "name": "LVGL_TFT_DISPLAY_CONTROLLER_HX8357", + "range": null, + "title": "HX8357", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the controller for your display.", + "id": "component-config-littlevgl-lvgl-tft-display-controller-select-a-display-controller-model-", + "name": null, + "title": "Select a display controller model.", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_SPI_HSPI", + "name": "LVGL_TFT_DISPLAY_SPI_HSPI", + "range": null, + "title": "HSPI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_SPI_VSPI", + "name": "LVGL_TFT_DISPLAY_SPI_VSPI", + "range": null, + "title": "VSPI", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the SPI Bus the TFT Display is attached to.", + "id": "component-config-littlevgl-lvgl-tft-display-controller-tft-spi-bus-", + "name": null, + "title": "TFT SPI Bus.", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_DISPLAY_WIDTH", + "name": "LVGL_DISPLAY_WIDTH", + "range": null, + "title": "TFT display width in pixels.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_DISPLAY_HEIGHT", + "name": "LVGL_DISPLAY_HEIGHT", + "range": null, + "title": "TFT display height in pixels.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If text is backwards on your display, try enabling this.", + "id": "LVGL_INVERT_DISPLAY", + "name": "LVGL_INVERT_DISPLAY", + "range": null, + "title": "Invert display.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable controlling the display backlight using an GPIO", + "id": "LVGL_ENABLE_BACKLIGHT_CONTROL", + "name": "LVGL_ENABLE_BACKLIGHT_CONTROL", + "range": null, + "title": "Enable control of the display backlight by using an GPIO.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Some backlights are turned on with a high signal, others held low.\nIf enabled, a value of 1 will be sent to the display to enable the backlight,\notherwise a 0 will be expected to enable it.", + "id": "LVGL_BACKLIGHT_ACTIVE_LVL", + "name": "LVGL_BACKLIGHT_ACTIVE_LVL", + "range": null, + "title": "Is backlight turn on with a HIGH (1) logic level?", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Configure the display MOSI pin here.", + "id": "LVGL_DISP_SPI_MOSI", + "name": "LVGL_DISP_SPI_MOSI", + "range": [ + 0, + 39 + ], + "title": "GPIO for MOSI (Master Out Slave In)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the display CLK pin here.", + "id": "LVGL_DISP_SPI_CLK", + "name": "LVGL_DISP_SPI_CLK", + "range": [ + 0, + 39 + ], + "title": "GPIO for CLK (SCK / Serial Clock)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the display CS pin here.", + "id": "LVGL_DISP_SPI_CS", + "name": "LVGL_DISP_SPI_CS", + "range": [ + 0, + 39 + ], + "title": "GPIO for CS (Slave Select)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the display DC pin here.", + "id": "LVGL_DISP_PIN_DC", + "name": "LVGL_DISP_PIN_DC", + "range": [ + 0, + 39 + ], + "title": "GPIO for DC (Data / Command)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the display Reset pin here.", + "id": "LVGL_DISP_PIN_RST", + "name": "LVGL_DISP_PIN_RST", + "range": [ + 0, + 39 + ], + "title": "GPIO for Reset", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the display BCLK (LED) pin here.", + "id": "LVGL_DISP_PIN_BCKL", + "name": "LVGL_DISP_PIN_BCKL", + "range": [ + 0, + 39 + ], + "title": "GPIO for Backlight Control", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-tft-display-controller-display-pin-assignments", + "title": "Display Pin Assignments", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-tft-display-controller", + "title": "LittlevGL (LVGL) TFT Display controller", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_CONTROLLER", + "name": "LVGL_TOUCH_CONTROLLER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_NONE", + "name": "LVGL_TOUCH_CONTROLLER_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_XPT2046", + "name": "LVGL_TOUCH_CONTROLLER_XPT2046", + "range": null, + "title": "XPT2046", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_FT6X06", + "name": "LVGL_TOUCH_CONTROLLER_FT6X06", + "range": null, + "title": "FT6X06", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_STMPE610", + "name": "LVGL_TOUCH_CONTROLLER_STMPE610", + "range": null, + "title": "STMPE610", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the controller for your touch panel.", + "id": "component-config-littlevgl-lvgl-touch-controller-select-a-touch-panel-controller-model-", + "name": null, + "title": "Select a touch panel controller model.", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel MISO pin here.", + "id": "LVGL_TOUCH_SPI_MISO", + "name": "LVGL_TOUCH_SPI_MISO", + "range": [ + 0, + 39 + ], + "title": "GPIO for MISO (Master In Slave Out)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel MOSI pin here.", + "id": "LVGL_TOUCH_SPI_MOSI", + "name": "LVGL_TOUCH_SPI_MOSI", + "range": [ + 0, + 39 + ], + "title": "GPIO for MOSI (Master Out Slave In)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel CLK pin here.", + "id": "LVGL_TOUCH_SPI_CLK", + "name": "LVGL_TOUCH_SPI_CLK", + "range": [ + 0, + 39 + ], + "title": "GPIO for CLK (SCK / Serial Clock)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel CS pin here.", + "id": "LVGL_TOUCH_SPI_CS", + "name": "LVGL_TOUCH_SPI_CS", + "range": [ + 0, + 39 + ], + "title": "GPIO for CS (Slave Select)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel CS pin here.", + "id": "LVGL_TOUCH_PIN_IRQ", + "name": "LVGL_TOUCH_PIN_IRQ", + "range": [ + 0, + 39 + ], + "title": "GPIO for IRQ (Interrupt Request)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-xpt2046-pin-assignments", + "title": "Touchpanel (XPT2046) Pin Assignments", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Configure the I2C touchpanel SDA pin here.", + "id": "LVGL_TOUCH_I2C_SDA", + "name": "LVGL_TOUCH_I2C_SDA", + "range": [ + 0, + 39 + ], + "title": "GPIO for SDA (I2C)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the I2C touchpanel SCL pin here.", + "id": "LVGL_TOUCH_I2C_SCL", + "name": "LVGL_TOUCH_I2C_SCL", + "range": [ + 0, + 39 + ], + "title": "GPIO for clock signal SCL (I2C)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-ft6x06-pin-assignments", + "title": "Touchpanel (FT6X06) Pin Assignments", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel MISO pin here.", + "id": "LVGL_TOUCH_SPI_MISO", + "name": "LVGL_TOUCH_SPI_MISO", + "range": [ + 0, + 39 + ], + "title": "GPIO for MISO (Master In Slave Out)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel MOSI pin here.", + "id": "LVGL_TOUCH_SPI_MOSI", + "name": "LVGL_TOUCH_SPI_MOSI", + "range": [ + 0, + 39 + ], + "title": "GPIO for MOSI (Master Out Slave In)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel CLK pin here.", + "id": "LVGL_TOUCH_SPI_CLK", + "name": "LVGL_TOUCH_SPI_CLK", + "range": [ + 0, + 39 + ], + "title": "GPIO for CLK (SCK / Serial Clock)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel CS pin here.", + "id": "LVGL_TOUCH_SPI_CS", + "name": "LVGL_TOUCH_SPI_CS", + "range": [ + 0, + 39 + ], + "title": "GPIO for CS (Slave Select)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-stmpe610-pin-assignments", + "title": "Touchpanel (STMPE610) Pin Assignments", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_SPI_HSPI", + "name": "LVGL_TOUCH_CONTROLLER_SPI_HSPI", + "range": null, + "title": "HSPI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_SPI_VSPI", + "name": "LVGL_TOUCH_CONTROLLER_SPI_VSPI", + "range": null, + "title": "VSPI", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the SPI Bus the TFT Display is attached to.", + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-spi-bus-touch-controller-spi-bus-", + "name": null, + "title": "Touch Controller SPI Bus.", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-spi-bus", + "title": "Touchpanel SPI Bus", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_X_MIN", + "name": "LVGL_TOUCH_X_MIN", + "range": null, + "title": "Minimum X coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_Y_MIN", + "name": "LVGL_TOUCH_Y_MIN", + "range": null, + "title": "Minimum Y coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_X_MAX", + "name": "LVGL_TOUCH_X_MAX", + "range": null, + "title": "Maximum X coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_Y_MAX", + "name": "LVGL_TOUCH_Y_MAX", + "range": null, + "title": "Maximum Y coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_INVERT_X", + "name": "LVGL_TOUCH_INVERT_X", + "range": null, + "title": "Invert X coordinate value.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_INVERT_Y", + "name": "LVGL_TOUCH_INVERT_Y", + "range": null, + "title": "Invert Y coordinate value.", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-configuration-xpt2046-", + "title": "Touchpanel Configuration (XPT2046)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_FT6X36_SWAPXY", + "name": "LVGL_FT6X36_SWAPXY", + "range": null, + "title": "Swap X with Y coordinate.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_FT6X36_INVERT_X", + "name": "LVGL_FT6X36_INVERT_X", + "range": null, + "title": "Invert X coordinate value.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_FT6X36_INVERT_Y", + "name": "LVGL_FT6X36_INVERT_Y", + "range": null, + "title": "Invert Y coordinate value.", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-configuration-ft6x06-", + "title": "Touchpanel Configuration (FT6X06)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_X_MIN", + "name": "LVGL_TOUCH_X_MIN", + "range": null, + "title": "Minimum X coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_Y_MIN", + "name": "LVGL_TOUCH_Y_MIN", + "range": null, + "title": "Minimum Y coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_X_MAX", + "name": "LVGL_TOUCH_X_MAX", + "range": null, + "title": "Maximum X coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_Y_MAX", + "name": "LVGL_TOUCH_Y_MAX", + "range": null, + "title": "Maximum Y coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_XY_SWAP", + "name": "LVGL_TOUCH_XY_SWAP", + "range": null, + "title": "Swap XY.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_INVERT_X", + "name": "LVGL_TOUCH_INVERT_X", + "range": null, + "title": "Invert X coordinate value.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_INVERT_Y", + "name": "LVGL_TOUCH_INVERT_Y", + "range": null, + "title": "Invert Y coordinate value.", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-configuration-stmpe610-", + "title": "Touchpanel Configuration (STMPE610)", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller", + "title": "LittlevGL (LVGL) Touch controller", + "type": "menu" } ], "depends_on": null, diff --git a/build/config/sdkconfig.cmake b/build/config/sdkconfig.cmake index 110c502..81ba082 100644 --- a/build/config/sdkconfig.cmake +++ b/build/config/sdkconfig.cmake @@ -589,8 +589,49 @@ set(CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES "16") set(CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT "30") set(CONFIG_WPA_MBEDTLS_CRYPTO "y") set(CONFIG_WPA_DEBUG_PRINT "") +set(CONFIG_LVGL_PREDEFINED_DISPLAY_NONE "") +set(CONFIG_LVGL_PREDEFINED_DISPLAY_WROVER4 "y") +set(CONFIG_LVGL_PREDEFINED_DISPLAY_M5STACK "") +set(CONFIG_LVGL_PREDEFINED_DISPLAY_ERTFT0356 "") +set(CONFIG_LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING "") +set(CONFIG_LVGL_TFT_DISPLAY_SPI_HSPI "y") +set(CONFIG_LVGL_TFT_DISPLAY_SPI_VSPI "") +set(CONFIG_LVGL_DISPLAY_WIDTH "320") +set(CONFIG_LVGL_DISPLAY_HEIGHT "240") +set(CONFIG_LVGL_ENABLE_BACKLIGHT_CONTROL "y") +set(CONFIG_LVGL_DISP_SPI_MOSI "23") +set(CONFIG_LVGL_DISP_SPI_CLK "19") +set(CONFIG_LVGL_DISP_SPI_CS "22") +set(CONFIG_LVGL_DISP_PIN_DC "21") +set(CONFIG_LVGL_DISP_PIN_RST "18") +set(CONFIG_LVGL_DISP_PIN_BCKL "5") +set(CONFIG_LVGL_TOUCH_SPI_MISO "19") +set(CONFIG_LVGL_TOUCH_SPI_MOSI "23") +set(CONFIG_LVGL_TOUCH_SPI_CLK "18") +set(CONFIG_LVGL_TOUCH_SPI_CS "5") +set(CONFIG_LVGL_TOUCH_PIN_IRQ "25") +set(CONFIG_LVGL_TOUCH_I2C_SDA "21") +set(CONFIG_LVGL_TOUCH_I2C_SCL "22") +set(CONFIG_LVGL_TOUCH_SPI_MISO "19") +set(CONFIG_LVGL_TOUCH_SPI_MOSI "23") +set(CONFIG_LVGL_TOUCH_SPI_CLK "18") +set(CONFIG_LVGL_TOUCH_SPI_CS "5") +set(CONFIG_LVGL_TOUCH_X_MIN "200") +set(CONFIG_LVGL_TOUCH_Y_MIN "120") +set(CONFIG_LVGL_TOUCH_X_MAX "1900") +set(CONFIG_LVGL_TOUCH_Y_MAX "1900") +set(CONFIG_LVGL_TOUCH_INVERT_X "y") +set(CONFIG_LVGL_TOUCH_INVERT_Y "y") +set(CONFIG_LVGL_FT6X36_SWAPXY "y") +set(CONFIG_LVGL_FT6X36_INVERT_Y "y") +set(CONFIG_LVGL_TOUCH_X_MIN "200") +set(CONFIG_LVGL_TOUCH_Y_MIN "120") +set(CONFIG_LVGL_TOUCH_X_MAX "1900") +set(CONFIG_LVGL_TOUCH_Y_MAX "1900") +set(CONFIG_LVGL_TOUCH_INVERT_X "y") +set(CONFIG_LVGL_TOUCH_INVERT_Y "y") set(CONFIG_LEGACY_INCLUDE_COMMON_HEADERS "") -set(CONFIGS_LIST CONFIG_IDF_CMAKE;CONFIG_IDF_TARGET;CONFIG_IDF_TARGET_ESP32;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_SDK_TOOLPREFIX;CONFIG_TOOLPREFIX;CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_ESPTOOLPY_BAUD_OTHER_VAL;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_26M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_FLASHSIZE_DETECT;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD_9600B;CONFIG_MONITOR_BAUD_9600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_57600B;CONFIG_MONITOR_BAUD_57600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B;CONFIG_MONITOR_BAUD_115200B;CONFIG_ESPTOOLPY_MONITOR_BAUD_230400B;CONFIG_MONITOR_BAUD_230400B;CONFIG_ESPTOOLPY_MONITOR_BAUD_921600B;CONFIG_MONITOR_BAUD_921600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_2MB;CONFIG_MONITOR_BAUD_2MB;CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER;CONFIG_MONITOR_BAUD_OTHER;CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL;CONFIG_MONITOR_BAUD_OTHER_VAL;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_STORE_HISTORY;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_GCC8_WARNINGS;CONFIG_DISABLE_GCC8_WARNINGS;CONFIG_APPTRACE_DEST_TRAX;CONFIG_ESP32_APPTRACE_DEST_TRAX;CONFIG_APPTRACE_DEST_NONE;CONFIG_ESP32_APPTRACE_DEST_NONE;CONFIG_APPTRACE_LOCK_ENABLE;CONFIG_ESP32_APPTRACE_LOCK_ENABLE;CONFIG_BT_ENABLED;CONFIG_BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF;CONFIG_BTDM_CTRL_BLE_MAX_CONN_EFF;CONFIG_BTDM_CONTROLLER_BLE_MAX_CONN_EFF;CONFIG_BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF;CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN_EFF;CONFIG_BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF;CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN_EFF;CONFIG_BTDM_CTRL_PINNED_TO_CORE;CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE;CONFIG_BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF;CONFIG_BT_RESERVE_DRAM;CONFIG_COAP_MBEDTLS_PSK;CONFIG_COAP_MBEDTLS_PKI;CONFIG_COAP_MBEDTLS_DEBUG;CONFIG_COAP_LOG_DEFAULT_LEVEL;CONFIG_ADC_FORCE_XPD_FSM;CONFIG_ADC_DISABLE_DAC;CONFIG_ADC2_DISABLE_DAC;CONFIG_SPI_MASTER_IN_IRAM;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_UART_ISR_IN_IRAM;CONFIG_RTCIO_SUPPORT_RTC_GPIO_DESC;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE;CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4;CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_TLS_USING_MBEDTLS;CONFIG_ESP_TLS_SERVER;CONFIG_ESP_TLS_PSK_VERIFICATION;CONFIG_ESP32_REV_MIN_0;CONFIG_ESP32_REV_MIN_1;CONFIG_ESP32_REV_MIN_2;CONFIG_ESP32_REV_MIN_3;CONFIG_ESP32_REV_MIN;CONFIG_ESP32_DPORT_WORKAROUND;CONFIG_ESP32_DEFAULT_CPU_FREQ_80;CONFIG_ESP32_DEFAULT_CPU_FREQ_160;CONFIG_ESP32_DEFAULT_CPU_FREQ_240;CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_SPIRAM_SUPPORT;CONFIG_SPIRAM_SUPPORT;CONFIG_ESP32_TRAX;CONFIG_ESP32_TRACEMEM_RESERVE_DRAM;CONFIG_TRACEMEM_RESERVE_DRAM;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_TWO_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES;CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_ULP_COPROC_ENABLED;CONFIG_ULP_COPROC_ENABLED;CONFIG_ESP32_ULP_COPROC_RESERVE_MEM;CONFIG_ULP_COPROC_RESERVE_MEM;CONFIG_ESP32_DEBUG_OCDAWARE;CONFIG_ESP32_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0;CONFIG_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32_REDUCE_PHY_TX_POWER;CONFIG_REDUCE_PHY_TX_POWER;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_ESP32_TIME_SYSCALL_USE_RTC;CONFIG_ESP32_TIME_SYSCALL_USE_FRC1;CONFIG_ESP32_TIME_SYSCALL_USE_NONE;CONFIG_ESP32_RTC_CLK_SRC_INT_RC;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC;CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL;CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC;CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256;CONFIG_ESP32_RTC_CLK_CAL_CYCLES;CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP32_XTAL_FREQ_40;CONFIG_ESP32_XTAL_FREQ_26;CONFIG_ESP32_XTAL_FREQ_AUTO;CONFIG_ESP32_XTAL_FREQ;CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE;CONFIG_DISABLE_BASIC_ROM_CONSOLE;CONFIG_ESP32_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL;CONFIG_PM_ENABLE;CONFIG_ADC_CAL_EFUSE_TP_ENABLE;CONFIG_ADC_CAL_EFUSE_VREF_ENABLE;CONFIG_ADC_CAL_LUT_ENABLE;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_IPC_USES_CALLERS_PRIORITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_UART_TX_GPIO;CONFIG_CONSOLE_UART_TX_GPIO;CONFIG_ESP_CONSOLE_UART_RX_GPIO;CONFIG_CONSOLE_UART_RX_GPIO;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_INT_WDT_CHECK_CPU1;CONFIG_INT_WDT_CHECK_CPU1;CONFIG_ESP_TASK_WDT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ETH_ENABLED;CONFIG_ETH_USE_ESP32_EMAC;CONFIG_ETH_PHY_INTERFACE_RMII;CONFIG_ETH_PHY_INTERFACE_MII;CONFIG_ETH_RMII_CLK_INPUT;CONFIG_ETH_RMII_CLK_OUTPUT;CONFIG_ETH_RMII_CLK_IN_GPIO;CONFIG_ETH_DMA_BUFFER_SIZE;CONFIG_ETH_DMA_RX_BUFFER_NUM;CONFIG_ETH_DMA_TX_BUFFER_NUM;CONFIG_ETH_USE_SPI_ETHERNET;CONFIG_ETH_SPI_ETHERNET_DM9051;CONFIG_ETH_USE_OPENETH;CONFIG_ESP_EVENT_LOOP_PROFILING;CONFIG_EVENT_LOOP_PROFILING;CONFIG_ESP_EVENT_POST_FROM_ISR;CONFIG_POST_EVENTS_FROM_ISR;CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR;CONFIG_POST_EVENTS_FROM_IRAM_ISR;CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS;CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH;CONFIG_HTTPD_MAX_REQ_HDR_LEN;CONFIG_HTTPD_MAX_URI_LEN;CONFIG_HTTPD_ERR_RESP_NO_DELAY;CONFIG_HTTPD_PURGE_BUF_LEN;CONFIG_HTTPD_LOG_PURGE_DATA;CONFIG_HTTPD_WS_SUPPORT;CONFIG_OTA_ALLOW_HTTP;CONFIG_ESP_HTTPS_SERVER_ENABLE;CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL;CONFIG_ESP_NETIF_TCPIP_LWIP;CONFIG_ESP_NETIF_LOOPBACK;CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP32S2_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP32S2_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP32S2_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP32S2_PANIC_GDBSTUB;CONFIG_ESP_TIMER_PROFILING;CONFIG_ESP_TIMER_TASK_STACK_SIZE;CONFIG_TIMER_TASK_STACK_SIZE;CONFIG_ESP_TIMER_IMPL_FRC2;CONFIG_ESP_TIMER_IMPL_TG0_LAC;CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_STATIC_TX_BUFFER;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP32_WIFI_TX_BUFFER_TYPE;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP32_WIFI_CSI_ENABLED;CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP32_WIFI_TX_BA_WIN;CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP32_WIFI_RX_BA_WIN;CONFIG_ESP32_WIFI_NVS_ENABLED;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1;CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN;CONFIG_ESP32_WIFI_MGMT_SBUF_NUM;CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE;CONFIG_ESP32_WIFI_IRAM_OPT;CONFIG_ESP32_WIFI_RX_IRAM_OPT;CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE;CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP32_PHY_MAX_TX_POWER;CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH;CONFIG_ESP32_ENABLE_COREDUMP_TO_UART;CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE;CONFIG_FATFS_CODEPAGE_DYNAMIC;CONFIG_FATFS_CODEPAGE_437;CONFIG_FATFS_CODEPAGE_720;CONFIG_FATFS_CODEPAGE_737;CONFIG_FATFS_CODEPAGE_771;CONFIG_FATFS_CODEPAGE_775;CONFIG_FATFS_CODEPAGE_850;CONFIG_FATFS_CODEPAGE_852;CONFIG_FATFS_CODEPAGE_855;CONFIG_FATFS_CODEPAGE_857;CONFIG_FATFS_CODEPAGE_860;CONFIG_FATFS_CODEPAGE_861;CONFIG_FATFS_CODEPAGE_862;CONFIG_FATFS_CODEPAGE_863;CONFIG_FATFS_CODEPAGE_864;CONFIG_FATFS_CODEPAGE_865;CONFIG_FATFS_CODEPAGE_866;CONFIG_FATFS_CODEPAGE_869;CONFIG_FATFS_CODEPAGE_932;CONFIG_FATFS_CODEPAGE_936;CONFIG_FATFS_CODEPAGE_949;CONFIG_FATFS_CODEPAGE_950;CONFIG_FATFS_CODEPAGE;CONFIG_FATFS_LFN_NONE;CONFIG_FATFS_LFN_HEAP;CONFIG_FATFS_LFN_STACK;CONFIG_FATFS_FS_LOCK;CONFIG_FATFS_TIMEOUT_MS;CONFIG_FATFS_PER_FILE_CACHE;CONFIG_FMB_COMM_MODE_RTU_EN;CONFIG_FMB_COMM_MODE_ASCII_EN;CONFIG_FMB_MASTER_TIMEOUT_MS_RESPOND;CONFIG_MB_MASTER_TIMEOUT_MS_RESPOND;CONFIG_FMB_MASTER_DELAY_MS_CONVERT;CONFIG_MB_MASTER_DELAY_MS_CONVERT;CONFIG_FMB_QUEUE_LENGTH;CONFIG_MB_QUEUE_LENGTH;CONFIG_FMB_SERIAL_TASK_STACK_SIZE;CONFIG_MB_SERIAL_TASK_STACK_SIZE;CONFIG_FMB_SERIAL_BUF_SIZE;CONFIG_MB_SERIAL_BUF_SIZE;CONFIG_FMB_SERIAL_ASCII_BITS_PER_SYMB;CONFIG_FMB_SERIAL_ASCII_TIMEOUT_RESPOND_MS;CONFIG_FMB_SERIAL_TASK_PRIO;CONFIG_MB_SERIAL_TASK_PRIO;CONFIG_FMB_CONTROLLER_SLAVE_ID_SUPPORT;CONFIG_MB_CONTROLLER_SLAVE_ID_SUPPORT;CONFIG_FMB_CONTROLLER_NOTIFY_TIMEOUT;CONFIG_MB_CONTROLLER_NOTIFY_TIMEOUT;CONFIG_FMB_CONTROLLER_NOTIFY_QUEUE_SIZE;CONFIG_MB_CONTROLLER_NOTIFY_QUEUE_SIZE;CONFIG_FMB_CONTROLLER_STACK_SIZE;CONFIG_MB_CONTROLLER_STACK_SIZE;CONFIG_FMB_EVENT_QUEUE_TIMEOUT;CONFIG_MB_EVENT_QUEUE_TIMEOUT;CONFIG_FMB_TIMER_PORT_ENABLED;CONFIG_MB_TIMER_PORT_ENABLED;CONFIG_FMB_TIMER_GROUP;CONFIG_MB_TIMER_GROUP;CONFIG_FMB_TIMER_INDEX;CONFIG_MB_TIMER_INDEX;CONFIG_FMB_TIMER_ISR_IN_IRAM;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_CORETIMER_0;CONFIG_FREERTOS_CORETIMER_1;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_ASSERT_FAIL_ABORT;CONFIG_FREERTOS_ASSERT_FAIL_PRINT_CONTINUE;CONFIG_FREERTOS_ASSERT_DISABLE;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_LEGACY_HOOKS;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS;CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_FPU_IN_ISR;CONFIG_HEAP_POISONING_DISABLED;CONFIG_HEAP_POISONING_LIGHT;CONFIG_HEAP_POISONING_COMPREHENSIVE;CONFIG_HEAP_TRACING_OFF;CONFIG_HEAP_TRACING_STANDALONE;CONFIG_HEAP_TRACING_TOHOST;CONFIG_JSMN_PARENT_LINKS;CONFIG_JSMN_STRICT;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LWIP_LOCAL_HOSTNAME;CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES;CONFIG_LWIP_L2_TO_L3_COPY;CONFIG_L2_TO_L3_COPY;CONFIG_LWIP_IRAM_OPTIMIZATION;CONFIG_LWIP_TIMERS_ONDEMAND;CONFIG_LWIP_MAX_SOCKETS;CONFIG_LWIP_USE_ONLY_LWIP_SELECT;CONFIG_USE_ONLY_LWIP_SELECT;CONFIG_LWIP_SO_REUSE;CONFIG_LWIP_SO_REUSE_RXTOALL;CONFIG_LWIP_SO_RCVBUF;CONFIG_LWIP_NETBUF_RECVINFO;CONFIG_LWIP_IP_FRAG;CONFIG_LWIP_IP_REASSEMBLY;CONFIG_LWIP_STATS;CONFIG_LWIP_ETHARP_TRUST_IP_MAC;CONFIG_LWIP_ESP_GRATUITOUS_ARP;CONFIG_ESP_GRATUITOUS_ARP;CONFIG_LWIP_GARP_TMR_INTERVAL;CONFIG_GARP_TMR_INTERVAL;CONFIG_LWIP_TCPIP_RECVMBOX_SIZE;CONFIG_TCPIP_RECVMBOX_SIZE;CONFIG_LWIP_DHCP_DOES_ARP_CHECK;CONFIG_LWIP_DHCP_RESTORE_LAST_IP;CONFIG_LWIP_DHCPS_LEASE_UNIT;CONFIG_LWIP_DHCPS_MAX_STATION_NUM;CONFIG_LWIP_AUTOIP;CONFIG_LWIP_IPV6_AUTOCONFIG;CONFIG_LWIP_NETIF_LOOPBACK;CONFIG_LWIP_LOOPBACK_MAX_PBUFS;CONFIG_LWIP_MAX_ACTIVE_TCP;CONFIG_LWIP_MAX_LISTENING_TCP;CONFIG_LWIP_TCP_MAXRTX;CONFIG_TCP_MAXRTX;CONFIG_LWIP_TCP_SYNMAXRTX;CONFIG_TCP_SYNMAXRTX;CONFIG_LWIP_TCP_MSS;CONFIG_TCP_MSS;CONFIG_LWIP_TCP_TMR_INTERVAL;CONFIG_LWIP_TCP_MSL;CONFIG_TCP_MSL;CONFIG_LWIP_TCP_SND_BUF_DEFAULT;CONFIG_TCP_SND_BUF_DEFAULT;CONFIG_LWIP_TCP_WND_DEFAULT;CONFIG_TCP_WND_DEFAULT;CONFIG_LWIP_TCP_RECVMBOX_SIZE;CONFIG_TCP_RECVMBOX_SIZE;CONFIG_LWIP_TCP_QUEUE_OOSEQ;CONFIG_TCP_QUEUE_OOSEQ;CONFIG_LWIP_TCP_SACK_OUT;CONFIG_LWIP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES;CONFIG_ESP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES;CONFIG_LWIP_TCP_OVERSIZE_MSS;CONFIG_TCP_OVERSIZE_MSS;CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS;CONFIG_TCP_OVERSIZE_QUARTER_MSS;CONFIG_LWIP_TCP_OVERSIZE_DISABLE;CONFIG_TCP_OVERSIZE_DISABLE;CONFIG_LWIP_MAX_UDP_PCBS;CONFIG_LWIP_UDP_RECVMBOX_SIZE;CONFIG_UDP_RECVMBOX_SIZE;CONFIG_LWIP_TCPIP_TASK_STACK_SIZE;CONFIG_TCPIP_TASK_STACK_SIZE;CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0;CONFIG_TCPIP_TASK_AFFINITY_CPU0;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1;CONFIG_TCPIP_TASK_AFFINITY_CPU1;CONFIG_LWIP_TCPIP_TASK_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY;CONFIG_LWIP_PPP_SUPPORT;CONFIG_PPP_SUPPORT;CONFIG_LWIP_MULTICAST_PING;CONFIG_LWIP_BROADCAST_PING;CONFIG_LWIP_MAX_RAW_PCBS;CONFIG_LWIP_DHCP_MAX_NTP_SERVERS;CONFIG_LWIP_SNTP_UPDATE_DELAY;CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC;CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC;CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC;CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN;CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN;CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN;CONFIG_MBEDTLS_DEBUG;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE;CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_HAVE_TIME;CONFIG_MBEDTLS_HAVE_TIME_DATE;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_PSK_MODES;CONFIG_MBEDTLS_KEY_EXCHANGE_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_SSL_PROTO_SSL3;CONFIG_MBEDTLS_SSL_PROTO_TLS1;CONFIG_MBEDTLS_SSL_PROTO_TLS1_1;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_RC4_DISABLED;CONFIG_MBEDTLS_RC4_ENABLED_NO_DEFAULT;CONFIG_MBEDTLS_RC4_ENABLED;CONFIG_MBEDTLS_BLOWFISH_C;CONFIG_MBEDTLS_XTEA_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED;CONFIG_MBEDTLS_ECP_NIST_OPTIM;CONFIG_MBEDTLS_SECURITY_RISKS;CONFIG_MDNS_MAX_SERVICES;CONFIG_MDNS_TASK_PRIORITY;CONFIG_MDNS_TASK_AFFINITY_NO_AFFINITY;CONFIG_MDNS_TASK_AFFINITY_CPU0;CONFIG_MDNS_TASK_AFFINITY_CPU1;CONFIG_MDNS_TASK_AFFINITY;CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS;CONFIG_MDNS_TIMER_PERIOD_MS;CONFIG_MQTT_PROTOCOL_311;CONFIG_MQTT_TRANSPORT_SSL;CONFIG_MQTT_TRANSPORT_WEBSOCKET;CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE;CONFIG_MQTT_USE_CUSTOM_CONFIG;CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED;CONFIG_MQTT_CUSTOM_OUTBOX;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_OPENSSL_DEBUG;CONFIG_OPENSSL_ASSERT_DO_NOTHING;CONFIG_OPENSSL_ASSERT_EXIT;CONFIG_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_PTHREAD_STACK_MIN;CONFIG_ESP32_PTHREAD_STACK_MIN;CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY;CONFIG_PTHREAD_DEFAULT_CORE_0;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0;CONFIG_PTHREAD_DEFAULT_CORE_1;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1;CONFIG_PTHREAD_TASK_CORE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT;CONFIG_PTHREAD_TASK_NAME_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_USE_LEGACY_IMPL;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPIFFS_MAX_PARTITIONS;CONFIG_SPIFFS_CACHE;CONFIG_SPIFFS_CACHE_WR;CONFIG_SPIFFS_CACHE_STATS;CONFIG_SPIFFS_PAGE_CHECK;CONFIG_SPIFFS_GC_MAX_RUNS;CONFIG_SPIFFS_GC_STATS;CONFIG_SPIFFS_PAGE_SIZE;CONFIG_SPIFFS_OBJ_NAME_LEN;CONFIG_SPIFFS_FOLLOW_SYMLINKS;CONFIG_SPIFFS_USE_MAGIC;CONFIG_SPIFFS_USE_MAGIC_LENGTH;CONFIG_SPIFFS_META_LENGTH;CONFIG_SPIFFS_USE_MTIME;CONFIG_SPIFFS_DBG;CONFIG_SPIFFS_API_DBG;CONFIG_SPIFFS_GC_DBG;CONFIG_SPIFFS_CACHE_DBG;CONFIG_SPIFFS_CHECK_DBG;CONFIG_SPIFFS_TEST_VISUALISATION;CONFIG_USB_DESC_CUSTOM_VID;CONFIG_USB_DESC_CUSTOM_PID;CONFIG_UNITY_ENABLE_FLOAT;CONFIG_UNITY_ENABLE_DOUBLE;CONFIG_UNITY_ENABLE_COLOR;CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER;CONFIG_UNITY_ENABLE_FIXTURE;CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL;CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_VFS_SUPPORT_TERMIOS;CONFIG_SUPPORT_TERMIOS;CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_SEMIHOSTFS_HOST_PATH_MAX_LEN;CONFIG_WL_SECTOR_SIZE_512;CONFIG_WL_SECTOR_SIZE_4096;CONFIG_WL_SECTOR_SIZE;CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES;CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT;CONFIG_WPA_MBEDTLS_CRYPTO;CONFIG_WPA_DEBUG_PRINT;CONFIG_LEGACY_INCLUDE_COMMON_HEADERS) +set(CONFIGS_LIST CONFIG_IDF_CMAKE;CONFIG_IDF_TARGET;CONFIG_IDF_TARGET_ESP32;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_SDK_TOOLPREFIX;CONFIG_TOOLPREFIX;CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_ESPTOOLPY_BAUD_OTHER_VAL;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_26M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_FLASHSIZE_DETECT;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD_9600B;CONFIG_MONITOR_BAUD_9600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_57600B;CONFIG_MONITOR_BAUD_57600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B;CONFIG_MONITOR_BAUD_115200B;CONFIG_ESPTOOLPY_MONITOR_BAUD_230400B;CONFIG_MONITOR_BAUD_230400B;CONFIG_ESPTOOLPY_MONITOR_BAUD_921600B;CONFIG_MONITOR_BAUD_921600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_2MB;CONFIG_MONITOR_BAUD_2MB;CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER;CONFIG_MONITOR_BAUD_OTHER;CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL;CONFIG_MONITOR_BAUD_OTHER_VAL;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_STORE_HISTORY;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_GCC8_WARNINGS;CONFIG_DISABLE_GCC8_WARNINGS;CONFIG_APPTRACE_DEST_TRAX;CONFIG_ESP32_APPTRACE_DEST_TRAX;CONFIG_APPTRACE_DEST_NONE;CONFIG_ESP32_APPTRACE_DEST_NONE;CONFIG_APPTRACE_LOCK_ENABLE;CONFIG_ESP32_APPTRACE_LOCK_ENABLE;CONFIG_BT_ENABLED;CONFIG_BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF;CONFIG_BTDM_CTRL_BLE_MAX_CONN_EFF;CONFIG_BTDM_CONTROLLER_BLE_MAX_CONN_EFF;CONFIG_BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF;CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN_EFF;CONFIG_BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF;CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN_EFF;CONFIG_BTDM_CTRL_PINNED_TO_CORE;CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE;CONFIG_BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF;CONFIG_BT_RESERVE_DRAM;CONFIG_COAP_MBEDTLS_PSK;CONFIG_COAP_MBEDTLS_PKI;CONFIG_COAP_MBEDTLS_DEBUG;CONFIG_COAP_LOG_DEFAULT_LEVEL;CONFIG_ADC_FORCE_XPD_FSM;CONFIG_ADC_DISABLE_DAC;CONFIG_ADC2_DISABLE_DAC;CONFIG_SPI_MASTER_IN_IRAM;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_UART_ISR_IN_IRAM;CONFIG_RTCIO_SUPPORT_RTC_GPIO_DESC;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE;CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4;CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_TLS_USING_MBEDTLS;CONFIG_ESP_TLS_SERVER;CONFIG_ESP_TLS_PSK_VERIFICATION;CONFIG_ESP32_REV_MIN_0;CONFIG_ESP32_REV_MIN_1;CONFIG_ESP32_REV_MIN_2;CONFIG_ESP32_REV_MIN_3;CONFIG_ESP32_REV_MIN;CONFIG_ESP32_DPORT_WORKAROUND;CONFIG_ESP32_DEFAULT_CPU_FREQ_80;CONFIG_ESP32_DEFAULT_CPU_FREQ_160;CONFIG_ESP32_DEFAULT_CPU_FREQ_240;CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_SPIRAM_SUPPORT;CONFIG_SPIRAM_SUPPORT;CONFIG_ESP32_TRAX;CONFIG_ESP32_TRACEMEM_RESERVE_DRAM;CONFIG_TRACEMEM_RESERVE_DRAM;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_TWO_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES;CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_ULP_COPROC_ENABLED;CONFIG_ULP_COPROC_ENABLED;CONFIG_ESP32_ULP_COPROC_RESERVE_MEM;CONFIG_ULP_COPROC_RESERVE_MEM;CONFIG_ESP32_DEBUG_OCDAWARE;CONFIG_ESP32_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0;CONFIG_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32_REDUCE_PHY_TX_POWER;CONFIG_REDUCE_PHY_TX_POWER;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_ESP32_TIME_SYSCALL_USE_RTC;CONFIG_ESP32_TIME_SYSCALL_USE_FRC1;CONFIG_ESP32_TIME_SYSCALL_USE_NONE;CONFIG_ESP32_RTC_CLK_SRC_INT_RC;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC;CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL;CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC;CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256;CONFIG_ESP32_RTC_CLK_CAL_CYCLES;CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP32_XTAL_FREQ_40;CONFIG_ESP32_XTAL_FREQ_26;CONFIG_ESP32_XTAL_FREQ_AUTO;CONFIG_ESP32_XTAL_FREQ;CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE;CONFIG_DISABLE_BASIC_ROM_CONSOLE;CONFIG_ESP32_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL;CONFIG_PM_ENABLE;CONFIG_ADC_CAL_EFUSE_TP_ENABLE;CONFIG_ADC_CAL_EFUSE_VREF_ENABLE;CONFIG_ADC_CAL_LUT_ENABLE;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_IPC_USES_CALLERS_PRIORITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_UART_TX_GPIO;CONFIG_CONSOLE_UART_TX_GPIO;CONFIG_ESP_CONSOLE_UART_RX_GPIO;CONFIG_CONSOLE_UART_RX_GPIO;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_INT_WDT_CHECK_CPU1;CONFIG_INT_WDT_CHECK_CPU1;CONFIG_ESP_TASK_WDT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ETH_ENABLED;CONFIG_ETH_USE_ESP32_EMAC;CONFIG_ETH_PHY_INTERFACE_RMII;CONFIG_ETH_PHY_INTERFACE_MII;CONFIG_ETH_RMII_CLK_INPUT;CONFIG_ETH_RMII_CLK_OUTPUT;CONFIG_ETH_RMII_CLK_IN_GPIO;CONFIG_ETH_DMA_BUFFER_SIZE;CONFIG_ETH_DMA_RX_BUFFER_NUM;CONFIG_ETH_DMA_TX_BUFFER_NUM;CONFIG_ETH_USE_SPI_ETHERNET;CONFIG_ETH_SPI_ETHERNET_DM9051;CONFIG_ETH_USE_OPENETH;CONFIG_ESP_EVENT_LOOP_PROFILING;CONFIG_EVENT_LOOP_PROFILING;CONFIG_ESP_EVENT_POST_FROM_ISR;CONFIG_POST_EVENTS_FROM_ISR;CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR;CONFIG_POST_EVENTS_FROM_IRAM_ISR;CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS;CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH;CONFIG_HTTPD_MAX_REQ_HDR_LEN;CONFIG_HTTPD_MAX_URI_LEN;CONFIG_HTTPD_ERR_RESP_NO_DELAY;CONFIG_HTTPD_PURGE_BUF_LEN;CONFIG_HTTPD_LOG_PURGE_DATA;CONFIG_HTTPD_WS_SUPPORT;CONFIG_OTA_ALLOW_HTTP;CONFIG_ESP_HTTPS_SERVER_ENABLE;CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL;CONFIG_ESP_NETIF_TCPIP_LWIP;CONFIG_ESP_NETIF_LOOPBACK;CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP32S2_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP32S2_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP32S2_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP32S2_PANIC_GDBSTUB;CONFIG_ESP_TIMER_PROFILING;CONFIG_ESP_TIMER_TASK_STACK_SIZE;CONFIG_TIMER_TASK_STACK_SIZE;CONFIG_ESP_TIMER_IMPL_FRC2;CONFIG_ESP_TIMER_IMPL_TG0_LAC;CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_STATIC_TX_BUFFER;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP32_WIFI_TX_BUFFER_TYPE;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP32_WIFI_CSI_ENABLED;CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP32_WIFI_TX_BA_WIN;CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP32_WIFI_RX_BA_WIN;CONFIG_ESP32_WIFI_NVS_ENABLED;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1;CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN;CONFIG_ESP32_WIFI_MGMT_SBUF_NUM;CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE;CONFIG_ESP32_WIFI_IRAM_OPT;CONFIG_ESP32_WIFI_RX_IRAM_OPT;CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE;CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP32_PHY_MAX_TX_POWER;CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH;CONFIG_ESP32_ENABLE_COREDUMP_TO_UART;CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE;CONFIG_FATFS_CODEPAGE_DYNAMIC;CONFIG_FATFS_CODEPAGE_437;CONFIG_FATFS_CODEPAGE_720;CONFIG_FATFS_CODEPAGE_737;CONFIG_FATFS_CODEPAGE_771;CONFIG_FATFS_CODEPAGE_775;CONFIG_FATFS_CODEPAGE_850;CONFIG_FATFS_CODEPAGE_852;CONFIG_FATFS_CODEPAGE_855;CONFIG_FATFS_CODEPAGE_857;CONFIG_FATFS_CODEPAGE_860;CONFIG_FATFS_CODEPAGE_861;CONFIG_FATFS_CODEPAGE_862;CONFIG_FATFS_CODEPAGE_863;CONFIG_FATFS_CODEPAGE_864;CONFIG_FATFS_CODEPAGE_865;CONFIG_FATFS_CODEPAGE_866;CONFIG_FATFS_CODEPAGE_869;CONFIG_FATFS_CODEPAGE_932;CONFIG_FATFS_CODEPAGE_936;CONFIG_FATFS_CODEPAGE_949;CONFIG_FATFS_CODEPAGE_950;CONFIG_FATFS_CODEPAGE;CONFIG_FATFS_LFN_NONE;CONFIG_FATFS_LFN_HEAP;CONFIG_FATFS_LFN_STACK;CONFIG_FATFS_FS_LOCK;CONFIG_FATFS_TIMEOUT_MS;CONFIG_FATFS_PER_FILE_CACHE;CONFIG_FMB_COMM_MODE_RTU_EN;CONFIG_FMB_COMM_MODE_ASCII_EN;CONFIG_FMB_MASTER_TIMEOUT_MS_RESPOND;CONFIG_MB_MASTER_TIMEOUT_MS_RESPOND;CONFIG_FMB_MASTER_DELAY_MS_CONVERT;CONFIG_MB_MASTER_DELAY_MS_CONVERT;CONFIG_FMB_QUEUE_LENGTH;CONFIG_MB_QUEUE_LENGTH;CONFIG_FMB_SERIAL_TASK_STACK_SIZE;CONFIG_MB_SERIAL_TASK_STACK_SIZE;CONFIG_FMB_SERIAL_BUF_SIZE;CONFIG_MB_SERIAL_BUF_SIZE;CONFIG_FMB_SERIAL_ASCII_BITS_PER_SYMB;CONFIG_FMB_SERIAL_ASCII_TIMEOUT_RESPOND_MS;CONFIG_FMB_SERIAL_TASK_PRIO;CONFIG_MB_SERIAL_TASK_PRIO;CONFIG_FMB_CONTROLLER_SLAVE_ID_SUPPORT;CONFIG_MB_CONTROLLER_SLAVE_ID_SUPPORT;CONFIG_FMB_CONTROLLER_NOTIFY_TIMEOUT;CONFIG_MB_CONTROLLER_NOTIFY_TIMEOUT;CONFIG_FMB_CONTROLLER_NOTIFY_QUEUE_SIZE;CONFIG_MB_CONTROLLER_NOTIFY_QUEUE_SIZE;CONFIG_FMB_CONTROLLER_STACK_SIZE;CONFIG_MB_CONTROLLER_STACK_SIZE;CONFIG_FMB_EVENT_QUEUE_TIMEOUT;CONFIG_MB_EVENT_QUEUE_TIMEOUT;CONFIG_FMB_TIMER_PORT_ENABLED;CONFIG_MB_TIMER_PORT_ENABLED;CONFIG_FMB_TIMER_GROUP;CONFIG_MB_TIMER_GROUP;CONFIG_FMB_TIMER_INDEX;CONFIG_MB_TIMER_INDEX;CONFIG_FMB_TIMER_ISR_IN_IRAM;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_CORETIMER_0;CONFIG_FREERTOS_CORETIMER_1;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_ASSERT_FAIL_ABORT;CONFIG_FREERTOS_ASSERT_FAIL_PRINT_CONTINUE;CONFIG_FREERTOS_ASSERT_DISABLE;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_LEGACY_HOOKS;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS;CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_FPU_IN_ISR;CONFIG_HEAP_POISONING_DISABLED;CONFIG_HEAP_POISONING_LIGHT;CONFIG_HEAP_POISONING_COMPREHENSIVE;CONFIG_HEAP_TRACING_OFF;CONFIG_HEAP_TRACING_STANDALONE;CONFIG_HEAP_TRACING_TOHOST;CONFIG_JSMN_PARENT_LINKS;CONFIG_JSMN_STRICT;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LWIP_LOCAL_HOSTNAME;CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES;CONFIG_LWIP_L2_TO_L3_COPY;CONFIG_L2_TO_L3_COPY;CONFIG_LWIP_IRAM_OPTIMIZATION;CONFIG_LWIP_TIMERS_ONDEMAND;CONFIG_LWIP_MAX_SOCKETS;CONFIG_LWIP_USE_ONLY_LWIP_SELECT;CONFIG_USE_ONLY_LWIP_SELECT;CONFIG_LWIP_SO_REUSE;CONFIG_LWIP_SO_REUSE_RXTOALL;CONFIG_LWIP_SO_RCVBUF;CONFIG_LWIP_NETBUF_RECVINFO;CONFIG_LWIP_IP_FRAG;CONFIG_LWIP_IP_REASSEMBLY;CONFIG_LWIP_STATS;CONFIG_LWIP_ETHARP_TRUST_IP_MAC;CONFIG_LWIP_ESP_GRATUITOUS_ARP;CONFIG_ESP_GRATUITOUS_ARP;CONFIG_LWIP_GARP_TMR_INTERVAL;CONFIG_GARP_TMR_INTERVAL;CONFIG_LWIP_TCPIP_RECVMBOX_SIZE;CONFIG_TCPIP_RECVMBOX_SIZE;CONFIG_LWIP_DHCP_DOES_ARP_CHECK;CONFIG_LWIP_DHCP_RESTORE_LAST_IP;CONFIG_LWIP_DHCPS_LEASE_UNIT;CONFIG_LWIP_DHCPS_MAX_STATION_NUM;CONFIG_LWIP_AUTOIP;CONFIG_LWIP_IPV6_AUTOCONFIG;CONFIG_LWIP_NETIF_LOOPBACK;CONFIG_LWIP_LOOPBACK_MAX_PBUFS;CONFIG_LWIP_MAX_ACTIVE_TCP;CONFIG_LWIP_MAX_LISTENING_TCP;CONFIG_LWIP_TCP_MAXRTX;CONFIG_TCP_MAXRTX;CONFIG_LWIP_TCP_SYNMAXRTX;CONFIG_TCP_SYNMAXRTX;CONFIG_LWIP_TCP_MSS;CONFIG_TCP_MSS;CONFIG_LWIP_TCP_TMR_INTERVAL;CONFIG_LWIP_TCP_MSL;CONFIG_TCP_MSL;CONFIG_LWIP_TCP_SND_BUF_DEFAULT;CONFIG_TCP_SND_BUF_DEFAULT;CONFIG_LWIP_TCP_WND_DEFAULT;CONFIG_TCP_WND_DEFAULT;CONFIG_LWIP_TCP_RECVMBOX_SIZE;CONFIG_TCP_RECVMBOX_SIZE;CONFIG_LWIP_TCP_QUEUE_OOSEQ;CONFIG_TCP_QUEUE_OOSEQ;CONFIG_LWIP_TCP_SACK_OUT;CONFIG_LWIP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES;CONFIG_ESP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES;CONFIG_LWIP_TCP_OVERSIZE_MSS;CONFIG_TCP_OVERSIZE_MSS;CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS;CONFIG_TCP_OVERSIZE_QUARTER_MSS;CONFIG_LWIP_TCP_OVERSIZE_DISABLE;CONFIG_TCP_OVERSIZE_DISABLE;CONFIG_LWIP_MAX_UDP_PCBS;CONFIG_LWIP_UDP_RECVMBOX_SIZE;CONFIG_UDP_RECVMBOX_SIZE;CONFIG_LWIP_TCPIP_TASK_STACK_SIZE;CONFIG_TCPIP_TASK_STACK_SIZE;CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0;CONFIG_TCPIP_TASK_AFFINITY_CPU0;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1;CONFIG_TCPIP_TASK_AFFINITY_CPU1;CONFIG_LWIP_TCPIP_TASK_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY;CONFIG_LWIP_PPP_SUPPORT;CONFIG_PPP_SUPPORT;CONFIG_LWIP_MULTICAST_PING;CONFIG_LWIP_BROADCAST_PING;CONFIG_LWIP_MAX_RAW_PCBS;CONFIG_LWIP_DHCP_MAX_NTP_SERVERS;CONFIG_LWIP_SNTP_UPDATE_DELAY;CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC;CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC;CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC;CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN;CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN;CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN;CONFIG_MBEDTLS_DEBUG;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE;CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_HAVE_TIME;CONFIG_MBEDTLS_HAVE_TIME_DATE;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_PSK_MODES;CONFIG_MBEDTLS_KEY_EXCHANGE_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_SSL_PROTO_SSL3;CONFIG_MBEDTLS_SSL_PROTO_TLS1;CONFIG_MBEDTLS_SSL_PROTO_TLS1_1;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_RC4_DISABLED;CONFIG_MBEDTLS_RC4_ENABLED_NO_DEFAULT;CONFIG_MBEDTLS_RC4_ENABLED;CONFIG_MBEDTLS_BLOWFISH_C;CONFIG_MBEDTLS_XTEA_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED;CONFIG_MBEDTLS_ECP_NIST_OPTIM;CONFIG_MBEDTLS_SECURITY_RISKS;CONFIG_MDNS_MAX_SERVICES;CONFIG_MDNS_TASK_PRIORITY;CONFIG_MDNS_TASK_AFFINITY_NO_AFFINITY;CONFIG_MDNS_TASK_AFFINITY_CPU0;CONFIG_MDNS_TASK_AFFINITY_CPU1;CONFIG_MDNS_TASK_AFFINITY;CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS;CONFIG_MDNS_TIMER_PERIOD_MS;CONFIG_MQTT_PROTOCOL_311;CONFIG_MQTT_TRANSPORT_SSL;CONFIG_MQTT_TRANSPORT_WEBSOCKET;CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE;CONFIG_MQTT_USE_CUSTOM_CONFIG;CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED;CONFIG_MQTT_CUSTOM_OUTBOX;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_OPENSSL_DEBUG;CONFIG_OPENSSL_ASSERT_DO_NOTHING;CONFIG_OPENSSL_ASSERT_EXIT;CONFIG_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_PTHREAD_STACK_MIN;CONFIG_ESP32_PTHREAD_STACK_MIN;CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY;CONFIG_PTHREAD_DEFAULT_CORE_0;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0;CONFIG_PTHREAD_DEFAULT_CORE_1;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1;CONFIG_PTHREAD_TASK_CORE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT;CONFIG_PTHREAD_TASK_NAME_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_USE_LEGACY_IMPL;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPIFFS_MAX_PARTITIONS;CONFIG_SPIFFS_CACHE;CONFIG_SPIFFS_CACHE_WR;CONFIG_SPIFFS_CACHE_STATS;CONFIG_SPIFFS_PAGE_CHECK;CONFIG_SPIFFS_GC_MAX_RUNS;CONFIG_SPIFFS_GC_STATS;CONFIG_SPIFFS_PAGE_SIZE;CONFIG_SPIFFS_OBJ_NAME_LEN;CONFIG_SPIFFS_FOLLOW_SYMLINKS;CONFIG_SPIFFS_USE_MAGIC;CONFIG_SPIFFS_USE_MAGIC_LENGTH;CONFIG_SPIFFS_META_LENGTH;CONFIG_SPIFFS_USE_MTIME;CONFIG_SPIFFS_DBG;CONFIG_SPIFFS_API_DBG;CONFIG_SPIFFS_GC_DBG;CONFIG_SPIFFS_CACHE_DBG;CONFIG_SPIFFS_CHECK_DBG;CONFIG_SPIFFS_TEST_VISUALISATION;CONFIG_USB_DESC_CUSTOM_VID;CONFIG_USB_DESC_CUSTOM_PID;CONFIG_UNITY_ENABLE_FLOAT;CONFIG_UNITY_ENABLE_DOUBLE;CONFIG_UNITY_ENABLE_COLOR;CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER;CONFIG_UNITY_ENABLE_FIXTURE;CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL;CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_VFS_SUPPORT_TERMIOS;CONFIG_SUPPORT_TERMIOS;CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_SEMIHOSTFS_HOST_PATH_MAX_LEN;CONFIG_WL_SECTOR_SIZE_512;CONFIG_WL_SECTOR_SIZE_4096;CONFIG_WL_SECTOR_SIZE;CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES;CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT;CONFIG_WPA_MBEDTLS_CRYPTO;CONFIG_WPA_DEBUG_PRINT;CONFIG_LVGL_PREDEFINED_DISPLAY_NONE;CONFIG_LVGL_PREDEFINED_DISPLAY_WROVER4;CONFIG_LVGL_PREDEFINED_DISPLAY_M5STACK;CONFIG_LVGL_PREDEFINED_DISPLAY_ERTFT0356;CONFIG_LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING;CONFIG_LVGL_TFT_DISPLAY_SPI_HSPI;CONFIG_LVGL_TFT_DISPLAY_SPI_VSPI;CONFIG_LVGL_DISPLAY_WIDTH;CONFIG_LVGL_DISPLAY_HEIGHT;CONFIG_LVGL_ENABLE_BACKLIGHT_CONTROL;CONFIG_LVGL_DISP_SPI_MOSI;CONFIG_LVGL_DISP_SPI_CLK;CONFIG_LVGL_DISP_SPI_CS;CONFIG_LVGL_DISP_PIN_DC;CONFIG_LVGL_DISP_PIN_RST;CONFIG_LVGL_DISP_PIN_BCKL;CONFIG_LVGL_TOUCH_SPI_MISO;CONFIG_LVGL_TOUCH_SPI_MOSI;CONFIG_LVGL_TOUCH_SPI_CLK;CONFIG_LVGL_TOUCH_SPI_CS;CONFIG_LVGL_TOUCH_PIN_IRQ;CONFIG_LVGL_TOUCH_I2C_SDA;CONFIG_LVGL_TOUCH_I2C_SCL;CONFIG_LVGL_TOUCH_SPI_MISO;CONFIG_LVGL_TOUCH_SPI_MOSI;CONFIG_LVGL_TOUCH_SPI_CLK;CONFIG_LVGL_TOUCH_SPI_CS;CONFIG_LVGL_TOUCH_X_MIN;CONFIG_LVGL_TOUCH_Y_MIN;CONFIG_LVGL_TOUCH_X_MAX;CONFIG_LVGL_TOUCH_Y_MAX;CONFIG_LVGL_TOUCH_INVERT_X;CONFIG_LVGL_TOUCH_INVERT_Y;CONFIG_LVGL_FT6X36_SWAPXY;CONFIG_LVGL_FT6X36_INVERT_Y;CONFIG_LVGL_TOUCH_X_MIN;CONFIG_LVGL_TOUCH_Y_MIN;CONFIG_LVGL_TOUCH_X_MAX;CONFIG_LVGL_TOUCH_Y_MAX;CONFIG_LVGL_TOUCH_INVERT_X;CONFIG_LVGL_TOUCH_INVERT_Y;CONFIG_LEGACY_INCLUDE_COMMON_HEADERS) # List of deprecated options for backward compatibility set(CONFIG_TOOLPREFIX "xtensa-esp32-elf-") set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") diff --git a/build/config/sdkconfig.h b/build/config/sdkconfig.h index 2ac7c4c..e08dd89 100644 --- a/build/config/sdkconfig.h +++ b/build/config/sdkconfig.h @@ -342,6 +342,32 @@ #define CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES 16 #define CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT 30 #define CONFIG_WPA_MBEDTLS_CRYPTO 1 +#define CONFIG_LVGL_PREDEFINED_DISPLAY_WROVER4 1 +#define CONFIG_LVGL_TFT_DISPLAY_SPI_HSPI 1 +#define CONFIG_LVGL_DISPLAY_WIDTH 320 +#define CONFIG_LVGL_DISPLAY_HEIGHT 240 +#define CONFIG_LVGL_ENABLE_BACKLIGHT_CONTROL 1 +#define CONFIG_LVGL_DISP_SPI_MOSI 23 +#define CONFIG_LVGL_DISP_SPI_CLK 19 +#define CONFIG_LVGL_DISP_SPI_CS 22 +#define CONFIG_LVGL_DISP_PIN_DC 21 +#define CONFIG_LVGL_DISP_PIN_RST 18 +#define CONFIG_LVGL_DISP_PIN_BCKL 5 +#define CONFIG_LVGL_TOUCH_SPI_MISO 19 +#define CONFIG_LVGL_TOUCH_SPI_MOSI 23 +#define CONFIG_LVGL_TOUCH_SPI_CLK 18 +#define CONFIG_LVGL_TOUCH_SPI_CS 5 +#define CONFIG_LVGL_TOUCH_PIN_IRQ 25 +#define CONFIG_LVGL_TOUCH_I2C_SDA 21 +#define CONFIG_LVGL_TOUCH_I2C_SCL 22 +#define CONFIG_LVGL_TOUCH_X_MIN 200 +#define CONFIG_LVGL_TOUCH_Y_MIN 120 +#define CONFIG_LVGL_TOUCH_X_MAX 1900 +#define CONFIG_LVGL_TOUCH_Y_MAX 1900 +#define CONFIG_LVGL_TOUCH_INVERT_X 1 +#define CONFIG_LVGL_TOUCH_INVERT_Y 1 +#define CONFIG_LVGL_FT6X36_SWAPXY 1 +#define CONFIG_LVGL_FT6X36_INVERT_Y 1 /* List of deprecated options */ #define CONFIG_ADC2_DISABLE_DAC CONFIG_ADC_DISABLE_DAC diff --git a/build/config/sdkconfig.json b/build/config/sdkconfig.json index 94131b0..9025f73 100644 --- a/build/config/sdkconfig.json +++ b/build/config/sdkconfig.json @@ -351,6 +351,37 @@ "LOG_DEFAULT_LEVEL_WARN": false, "LOG_TIMESTAMP_SOURCE_RTOS": true, "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "LVGL_DISPLAY_HEIGHT": 240, + "LVGL_DISPLAY_WIDTH": 320, + "LVGL_DISP_PIN_BCKL": 5, + "LVGL_DISP_PIN_DC": 21, + "LVGL_DISP_PIN_RST": 18, + "LVGL_DISP_SPI_CLK": 19, + "LVGL_DISP_SPI_CS": 22, + "LVGL_DISP_SPI_MOSI": 23, + "LVGL_ENABLE_BACKLIGHT_CONTROL": true, + "LVGL_FT6X36_INVERT_Y": true, + "LVGL_FT6X36_SWAPXY": true, + "LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING": false, + "LVGL_PREDEFINED_DISPLAY_ERTFT0356": false, + "LVGL_PREDEFINED_DISPLAY_M5STACK": false, + "LVGL_PREDEFINED_DISPLAY_NONE": false, + "LVGL_PREDEFINED_DISPLAY_WROVER4": true, + "LVGL_TFT_DISPLAY_SPI_HSPI": true, + "LVGL_TFT_DISPLAY_SPI_VSPI": false, + "LVGL_TOUCH_I2C_SCL": 22, + "LVGL_TOUCH_I2C_SDA": 21, + "LVGL_TOUCH_INVERT_X": true, + "LVGL_TOUCH_INVERT_Y": true, + "LVGL_TOUCH_PIN_IRQ": 25, + "LVGL_TOUCH_SPI_CLK": 18, + "LVGL_TOUCH_SPI_CS": 5, + "LVGL_TOUCH_SPI_MISO": 19, + "LVGL_TOUCH_SPI_MOSI": 23, + "LVGL_TOUCH_X_MAX": 1900, + "LVGL_TOUCH_X_MIN": 200, + "LVGL_TOUCH_Y_MAX": 1900, + "LVGL_TOUCH_Y_MIN": 120, "LWIP_AUTOIP": false, "LWIP_BROADCAST_PING": false, "LWIP_DHCPS_LEASE_UNIT": 60, diff --git a/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj new file mode 100644 index 0000000..85b7859 Binary files /dev/null and b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj differ diff --git a/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj new file mode 100644 index 0000000..8ae6ead Binary files /dev/null and b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj differ diff --git a/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj new file mode 100644 index 0000000..81d4d55 Binary files /dev/null and b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj differ diff --git a/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj new file mode 100644 index 0000000..db5d805 Binary files /dev/null and b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj differ diff --git a/build/esp-idf/app_trace/libapp_trace.a b/build/esp-idf/app_trace/libapp_trace.a new file mode 100644 index 0000000..cd86e26 Binary files /dev/null and b/build/esp-idf/app_trace/libapp_trace.a differ diff --git a/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj new file mode 100644 index 0000000..9700068 Binary files /dev/null and b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj differ diff --git a/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj new file mode 100644 index 0000000..af8cf4a Binary files /dev/null and b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj differ diff --git a/build/esp-idf/app_update/libapp_update.a b/build/esp-idf/app_update/libapp_update.a new file mode 100644 index 0000000..7c71249 Binary files /dev/null and b/build/esp-idf/app_update/libapp_update.a differ diff --git a/build/esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj b/build/esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj new file mode 100644 index 0000000..5b457fe Binary files /dev/null and b/build/esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj differ diff --git a/build/esp-idf/asio/libasio.a b/build/esp-idf/asio/libasio.a new file mode 100644 index 0000000..4f079a5 Binary files /dev/null and b/build/esp-idf/asio/libasio.a differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj new file mode 100644 index 0000000..02ac37a Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj new file mode 100644 index 0000000..fef5ae8 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj new file mode 100644 index 0000000..85fef09 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj new file mode 100644 index 0000000..6939b96 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj new file mode 100644 index 0000000..9e99b2f Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj new file mode 100644 index 0000000..68f209e Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj new file mode 100644 index 0000000..3de5091 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj new file mode 100644 index 0000000..3b917c2 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj new file mode 100644 index 0000000..573e240 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj new file mode 100644 index 0000000..29948fc Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj new file mode 100644 index 0000000..b311394 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj new file mode 100644 index 0000000..d737882 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj new file mode 100644 index 0000000..9a1ff1a Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj differ diff --git a/build/esp-idf/bootloader_support/libbootloader_support.a b/build/esp-idf/bootloader_support/libbootloader_support.a new file mode 100644 index 0000000..c527a1b Binary files /dev/null and b/build/esp-idf/bootloader_support/libbootloader_support.a differ diff --git a/build/esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj b/build/esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj new file mode 100644 index 0000000..0c3a22a Binary files /dev/null and b/build/esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj differ diff --git a/build/esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj b/build/esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj new file mode 100644 index 0000000..757cbe1 Binary files /dev/null and b/build/esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj differ diff --git a/build/esp-idf/ca/libca.a b/build/esp-idf/ca/libca.a new file mode 100644 index 0000000..771db8a Binary files /dev/null and b/build/esp-idf/ca/libca.a differ diff --git a/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj new file mode 100644 index 0000000..e1deb13 Binary files /dev/null and b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj differ diff --git a/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj new file mode 100644 index 0000000..4c035d7 Binary files /dev/null and b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj differ diff --git a/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj new file mode 100644 index 0000000..5ed1fc0 Binary files /dev/null and b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj differ diff --git a/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj new file mode 100644 index 0000000..e572e9a Binary files /dev/null and b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj differ diff --git a/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj new file mode 100644 index 0000000..317cfe6 Binary files /dev/null and b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj differ diff --git a/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj new file mode 100644 index 0000000..06ac3fc Binary files /dev/null and b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj differ diff --git a/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj new file mode 100644 index 0000000..121a166 Binary files /dev/null and b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj differ diff --git a/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj new file mode 100644 index 0000000..8057ca7 Binary files /dev/null and b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj differ diff --git a/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj new file mode 100644 index 0000000..0e875fa Binary files /dev/null and b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj differ diff --git a/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj new file mode 100644 index 0000000..ee682cd Binary files /dev/null and b/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj differ diff --git a/build/esp-idf/cbor/libcbor.a b/build/esp-idf/cbor/libcbor.a new file mode 100644 index 0000000..940faf3 Binary files /dev/null and b/build/esp-idf/cbor/libcbor.a differ diff --git a/build/esp-idf/cmake_install.cmake b/build/esp-idf/cmake_install.cmake index 60516e0..fba9141 100644 --- a/build/esp-idf/cmake_install.cmake +++ b/build/esp-idf/cmake_install.cmake @@ -110,6 +110,12 @@ if(NOT CMAKE_INSTALL_LOCAL_ONLY) include("/home/mithras/esp/bakalarka/build/esp-idf/ca/cmake_install.cmake") include("/home/mithras/esp/bakalarka/build/esp-idf/cmd_nvs/cmake_install.cmake") include("/home/mithras/esp/bakalarka/build/esp-idf/cmd_system/cmake_install.cmake") + include("/home/mithras/esp/bakalarka/build/esp-idf/lvgl/cmake_install.cmake") + include("/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/cmake_install.cmake") + include("/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/cmake_install.cmake") + include("/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/cmake_install.cmake") + include("/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/cmake_install.cmake") + include("/home/mithras/esp/bakalarka/build/esp-idf/display/cmake_install.cmake") include("/home/mithras/esp/bakalarka/build/esp-idf/wifi/cmake_install.cmake") include("/home/mithras/esp/bakalarka/build/esp-idf/https_server/cmake_install.cmake") diff --git a/build/esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj b/build/esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj new file mode 100644 index 0000000..dd35958 Binary files /dev/null and b/build/esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj differ diff --git a/build/esp-idf/cmd_nvs/libcmd_nvs.a b/build/esp-idf/cmd_nvs/libcmd_nvs.a new file mode 100644 index 0000000..10f1377 Binary files /dev/null and b/build/esp-idf/cmd_nvs/libcmd_nvs.a differ diff --git a/build/esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj b/build/esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj new file mode 100644 index 0000000..d923fc1 Binary files /dev/null and b/build/esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj differ diff --git a/build/esp-idf/cmd_system/libcmd_system.a b/build/esp-idf/cmd_system/libcmd_system.a new file mode 100644 index 0000000..9aeede2 Binary files /dev/null and b/build/esp-idf/cmd_system/libcmd_system.a differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj new file mode 100644 index 0000000..be7574a Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj new file mode 100644 index 0000000..98b8cc0 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj new file mode 100644 index 0000000..a8f206a Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj new file mode 100644 index 0000000..e1c3ef3 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj new file mode 100644 index 0000000..703260d Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj new file mode 100644 index 0000000..31df415 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj new file mode 100644 index 0000000..6e9e7cf Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj new file mode 100644 index 0000000..b3ad272 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj new file mode 100644 index 0000000..70cdba8 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj new file mode 100644 index 0000000..b5f5697 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj new file mode 100644 index 0000000..a155ca0 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj new file mode 100644 index 0000000..67a1be1 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj new file mode 100644 index 0000000..c4b6bb7 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj new file mode 100644 index 0000000..264ecff Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj new file mode 100644 index 0000000..5933113 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj new file mode 100644 index 0000000..92f05a7 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj new file mode 100644 index 0000000..a7bc679 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj new file mode 100644 index 0000000..81b34fd Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj new file mode 100644 index 0000000..f9385d0 Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj differ diff --git a/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj new file mode 100644 index 0000000..19e6c2e Binary files /dev/null and b/build/esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj differ diff --git a/build/esp-idf/coap/libcoap.a b/build/esp-idf/coap/libcoap.a new file mode 100644 index 0000000..b837b97 Binary files /dev/null and b/build/esp-idf/coap/libcoap.a differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj new file mode 100644 index 0000000..84f7559 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj new file mode 100644 index 0000000..de448d6 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj new file mode 100644 index 0000000..934b9ba Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj new file mode 100644 index 0000000..e17acd0 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj new file mode 100644 index 0000000..f50ccd6 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj differ diff --git a/build/esp-idf/console/libconsole.a b/build/esp-idf/console/libconsole.a new file mode 100644 index 0000000..1eb267b Binary files /dev/null and b/build/esp-idf/console/libconsole.a differ diff --git a/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj new file mode 100644 index 0000000..a8cb2c9 Binary files /dev/null and b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj differ diff --git a/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj new file mode 100644 index 0000000..8251abf Binary files /dev/null and b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj differ diff --git a/build/esp-idf/cxx/libcxx.a b/build/esp-idf/cxx/libcxx.a new file mode 100644 index 0000000..0260d38 Binary files /dev/null and b/build/esp-idf/cxx/libcxx.a differ diff --git a/build/esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj b/build/esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj new file mode 100644 index 0000000..472f34b Binary files /dev/null and b/build/esp-idf/display/CMakeFiles/__idf_display.dir/display.c.obj differ diff --git a/build/esp-idf/display/cmake_install.cmake b/build/esp-idf/display/cmake_install.cmake new file mode 100644 index 0000000..e3248cf --- /dev/null +++ b/build/esp-idf/display/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/bakalarka/components/display + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/display/libdisplay.a b/build/esp-idf/display/libdisplay.a new file mode 100644 index 0000000..8668a4b Binary files /dev/null and b/build/esp-idf/display/libdisplay.a differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj new file mode 100644 index 0000000..177a9b6 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj new file mode 100644 index 0000000..b4c971b Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj new file mode 100644 index 0000000..eb3f2f2 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj new file mode 100644 index 0000000..07e4496 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj new file mode 100644 index 0000000..7e146d6 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj new file mode 100644 index 0000000..98d17ae Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj new file mode 100644 index 0000000..1b1bb28 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj new file mode 100644 index 0000000..f9fa6df Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj new file mode 100644 index 0000000..bea2a65 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj new file mode 100644 index 0000000..f326fd0 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj new file mode 100644 index 0000000..d8c0779 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj new file mode 100644 index 0000000..61f61a8 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj new file mode 100644 index 0000000..5495d19 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj new file mode 100644 index 0000000..f5f06b4 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj new file mode 100644 index 0000000..e7e8252 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj new file mode 100644 index 0000000..93d442d Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj new file mode 100644 index 0000000..61242a4 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj new file mode 100644 index 0000000..16d4f45 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj new file mode 100644 index 0000000..6802edb Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj new file mode 100644 index 0000000..db7a34c Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj new file mode 100644 index 0000000..60ccde3 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj new file mode 100644 index 0000000..39cd8e5 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj new file mode 100644 index 0000000..4a3d8f9 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj new file mode 100644 index 0000000..ba57d0f Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj new file mode 100644 index 0000000..93b0cc2 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj new file mode 100644 index 0000000..a746044 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj new file mode 100644 index 0000000..81bbf6c Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj differ diff --git a/build/esp-idf/driver/libdriver.a b/build/esp-idf/driver/libdriver.a new file mode 100644 index 0000000..6b6d2e2 Binary files /dev/null and b/build/esp-idf/driver/libdriver.a differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj new file mode 100644 index 0000000..4f75e72 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj new file mode 100644 index 0000000..af64e0d Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj new file mode 100644 index 0000000..72a4cbd Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj new file mode 100644 index 0000000..8b87b5e Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj new file mode 100644 index 0000000..3890cb5 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj new file mode 100644 index 0000000..3981ea5 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..f3213c1 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj differ diff --git a/build/esp-idf/efuse/libefuse.a b/build/esp-idf/efuse/libefuse.a new file mode 100644 index 0000000..c9de3f2 Binary files /dev/null and b/build/esp-idf/efuse/libefuse.a differ diff --git a/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj new file mode 100644 index 0000000..6cfac30 Binary files /dev/null and b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj differ diff --git a/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj new file mode 100644 index 0000000..914ceb7 Binary files /dev/null and b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj differ diff --git a/build/esp-idf/esp-tls/libesp-tls.a b/build/esp-idf/esp-tls/libesp-tls.a new file mode 100644 index 0000000..bbae1cf Binary files /dev/null and b/build/esp-idf/esp-tls/libesp-tls.a differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj new file mode 100644 index 0000000..0f2601d Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj new file mode 100644 index 0000000..f688bfa Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj new file mode 100644 index 0000000..561ec08 Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj new file mode 100644 index 0000000..dfad97f Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj new file mode 100644 index 0000000..a2ca707 Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj new file mode 100644 index 0000000..d2f7647 Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj new file mode 100644 index 0000000..4eb9470 Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj new file mode 100644 index 0000000..cd7267b Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj new file mode 100644 index 0000000..1725559 Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj new file mode 100644 index 0000000..e215562 Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj new file mode 100644 index 0000000..99fae94 Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj new file mode 100644 index 0000000..c8656b8 Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj new file mode 100644 index 0000000..885acda Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj new file mode 100644 index 0000000..806336e Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj new file mode 100644 index 0000000..2d93e14 Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj new file mode 100644 index 0000000..9a494ec Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj differ diff --git a/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj new file mode 100644 index 0000000..693bf88 Binary files /dev/null and b/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj differ diff --git a/build/esp-idf/esp32/esp32_out.ld b/build/esp-idf/esp32/esp32_out.ld new file mode 100644 index 0000000..b694b45 --- /dev/null +++ b/build/esp-idf/esp32/esp32_out.ld @@ -0,0 +1,79 @@ +/* ESP32 Linker Script Memory Layout + + This file describes the memory layout (memory blocks) as virtual + memory addresses. + + esp32.project.ld contains output sections to link compiler output + into these memory blocks. + + *** + + This linker script is passed through the C preprocessor to include + configuration options. + + Please use preprocessor features sparingly! Restrict + to simple macros with numeric values, and/or #if/#endif blocks. +*/ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) Configuration Header + */ + +/* List of deprecated options */ +/* If BT is not built at all */ +MEMORY +{ + /* All these values assume the flash cache is on, and have the blocks this uses subtracted from the length + of the various regions. The 'data access port' dram/drom regions map to the same iram/irom regions but + are connected to the data port of the CPU and eg allow bytewise access. */ + /* IRAM for PRO cpu. Not sure if happy with this, this is MMU area... */ + iram0_0_seg (RX) : org = 0x40080000, len = 0x20000 + /* Even though the segment name is iram, it is actually mapped to flash + */ + iram0_2_seg (RX) : org = 0x400D0020, len = 0x330000-0x20 + /* + (0x20 offset above is a convenience for the app binary image generation. + Flash cache has 64KB pages. The .bin file which is flashed to the chip + has a 0x18 byte file header, and each segment has a 0x08 byte segment + header. Setting this offset makes it simple to meet the flash cache MMU's + constraint that (paddr % 64KB == vaddr % 64KB).) + */ + /* Shared data RAM, excluding memory reserved for ROM bss/data/stack. + + Enabling Bluetooth & Trace Memory features in menuconfig will decrease + the amount of RAM available. + + Note: Length of this section *should* be 0x50000, and this extra DRAM is available + in heap at runtime. However due to static ROM memory usage at this 176KB mark, the + additional static memory temporarily cannot be used. + */ + dram0_0_seg (RW) : org = 0x3FFB0000 + 0x0, + len = 0x2c200 - 0x0 + /* Flash mapped constant data */ + drom0_0_seg (R) : org = 0x3F400020, len = 0x400000-0x20 + /* (See iram0_2_seg for meaning of 0x20 offset in the above.) */ + /* RTC fast memory (executable). Persists over deep sleep. + */ + rtc_iram_seg(RWX) : org = 0x400C0000, len = 0x2000 + /* RTC fast memory (same block as above), viewed from data bus */ + rtc_data_seg(RW) : org = 0x3ff80000, len = 0x2000 - 0 + /* RTC slow memory (data accessible). Persists over deep sleep. + + Start of RTC slow memory is reserved for ULP co-processor code + data, if enabled. + */ + rtc_slow_seg(RW) : org = 0x50000000 + 0, + len = 0x1000 - 0 + /* external memory ,including data and text */ + extern_ram_seg(RWX) : org = 0x3F800000, + len = 0x400000 +} +_static_data_end = _bss_end; +/* Heap ends at top of dram0_0_seg */ +_heap_end = 0x40000000 - 0x0; +_data_seg_org = ORIGIN(rtc_data_seg); +/* The lines below define location alias for .rtc.data section based on Kconfig option. + When the option is not defined then use slow memory segment + else the data will be placed in fast memory segment */ +REGION_ALIAS("rtc_data_location", rtc_slow_seg ); + REGION_ALIAS("default_code_seg", iram0_2_seg); + REGION_ALIAS("default_rodata_seg", drom0_0_seg); diff --git a/build/esp-idf/esp32/ld/esp32.project.ld b/build/esp-idf/esp32/ld/esp32.project.ld new file mode 100644 index 0000000..6c2c68c --- /dev/null +++ b/build/esp-idf/esp32/ld/esp32.project.ld @@ -0,0 +1,474 @@ +/* Automatically generated file; DO NOT EDIT */ +/* Espressif IoT Development Framework Linker Script */ +/* Generated from: /home/mithras/esp/esp-idf/components/esp32/ld/esp32.project.ld.in */ + +/* Default entry point: */ +ENTRY(call_start_cpu0); + +SECTIONS +{ + /* RTC fast memory holds RTC wake stub code, + including from any source file named rtc_wake_stub*.c + */ + .rtc.text : + { + . = ALIGN(4); + + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.literal EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.text EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.text.*) + *libsoc.a:uart_hal_iram.*( .rtc.literal .rtc.text .rtc.text.*) + + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + _rtc_text_end = ABSOLUTE(.); + } > rtc_iram_seg + + /* + This section is required to skip rtc.text area because rtc_iram_seg and + rtc_data_seg are reflect the same address space on different buses. + */ + .rtc.dummy : + { + _rtc_dummy_start = ABSOLUTE(.); + _rtc_fast_start = ABSOLUTE(.); + . = SIZEOF(.rtc.text); + _rtc_dummy_end = ABSOLUTE(.); + } > rtc_data_seg + + /* This section located in RTC FAST Memory area. + It holds data marked with RTC_FAST_ATTR attribute. + See the file "esp_attr.h" for more information. + */ + .rtc.force_fast : + { + . = ALIGN(4); + _rtc_force_fast_start = ABSOLUTE(.); + *(.rtc.force_fast .rtc.force_fast.*) + . = ALIGN(4) ; + _rtc_force_fast_end = ABSOLUTE(.); + } > rtc_data_seg + + /* RTC data section holds RTC wake stub + data/rodata, including from any source file + named rtc_wake_stub*.c and the data marked with + RTC_DATA_ATTR, RTC_RODATA_ATTR attributes. + The memory location of the data is dependent on + CONFIG_ESP32_RTCDATA_IN_FAST_MEM option. + */ + .rtc.data : + { + _rtc_data_start = ABSOLUTE(.); + + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.data EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.data.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.rodata EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.rodata.*) + *libsoc.a:uart_hal_iram.*( .rtc.data .rtc.data.* .rtc.rodata .rtc.rodata.*) + + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .bss .bss.*) + _rtc_data_end = ABSOLUTE(.); + } > rtc_data_location + + /* RTC bss, from any source file named rtc_wake_stub*.c */ + .rtc.bss (NOLOAD) : + { + _rtc_bss_start = ABSOLUTE(.); + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.bss) + *libsoc.a:uart_hal_iram.*( .rtc.bss) + + _rtc_bss_end = ABSOLUTE(.); + } > rtc_data_location + + /* This section holds data that should not be initialized at power up + and will be retained during deep sleep. + User data marked with RTC_NOINIT_ATTR will be placed + into this section. See the file "esp_attr.h" for more information. + The memory location of the data is dependent on + CONFIG_ESP32_RTCDATA_IN_FAST_MEM option. + */ + .rtc_noinit (NOLOAD): + { + . = ALIGN(4); + _rtc_noinit_start = ABSOLUTE(.); + *(.rtc_noinit .rtc_noinit.*) + . = ALIGN(4) ; + _rtc_noinit_end = ABSOLUTE(.); + } > rtc_data_location + + /* This section located in RTC SLOW Memory area. + It holds data marked with RTC_SLOW_ATTR attribute. + See the file "esp_attr.h" for more information. + */ + .rtc.force_slow : + { + . = ALIGN(4); + _rtc_force_slow_start = ABSOLUTE(.); + *(.rtc.force_slow .rtc.force_slow.*) + . = ALIGN(4) ; + _rtc_force_slow_end = ABSOLUTE(.); + } > rtc_slow_seg + + /* Get size of rtc slow data based on rtc_data_location alias */ + _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_slow_end - _rtc_data_start) + : (_rtc_force_slow_end - _rtc_force_slow_start); + + _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_fast_end - _rtc_fast_start) + : (_rtc_noinit_end - _rtc_fast_start); + + ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), + "RTC_SLOW segment data does not fit.") + + ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), + "RTC_FAST segment data does not fit.") + + /* Send .iram0 code to iram */ + .iram0.vectors : + { + _iram_start = ABSOLUTE(.); + /* Vectors go to IRAM */ + _init_start = ABSOLUTE(.); + /* Vectors according to builds/RF-2015.2-win32/esp108_v1_2_s5_512int_2/config.html */ + . = 0x0; + KEEP(*(.WindowVectors.text)); + . = 0x180; + KEEP(*(.Level2InterruptVector.text)); + . = 0x1c0; + KEEP(*(.Level3InterruptVector.text)); + . = 0x200; + KEEP(*(.Level4InterruptVector.text)); + . = 0x240; + KEEP(*(.Level5InterruptVector.text)); + . = 0x280; + KEEP(*(.DebugExceptionVector.text)); + . = 0x2c0; + KEEP(*(.NMIExceptionVector.text)); + . = 0x300; + KEEP(*(.KernelExceptionVector.text)); + . = 0x340; + KEEP(*(.UserExceptionVector.text)); + . = 0x3C0; + KEEP(*(.DoubleExceptionVector.text)); + . = 0x400; + *(.*Vector.literal) + + *(.UserEnter.literal); + *(.UserEnter.text); + . = ALIGN (16); + *(.entry.text) + *(.init.literal) + *(.init) + _init_end = ABSOLUTE(.); + } > iram0_0_seg + + .iram0.text : + { + /* Code marked as runnning out of IRAM */ + _iram_text_start = ABSOLUTE(.); + + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .iram1 EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .iram1.*) + *libxtensa.a:eri.*( .literal .literal.* .text .text.*) + *libxtensa.a:stdatomic.*( .literal .literal.* .text .text.*) + *libhal.a:( .literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_gd.*( .literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_issi.*( .literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_generic.*( .literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_rom_patch.*( .literal .literal.* .text .text.*) + *libspi_flash.a:memspi_host_driver.*( .literal .literal.* .text .text.*) + *libesp_system.a:panic.*( .literal .literal.* .text .text.*) + *libesp_system.a:panic_handler.*( .literal .literal.* .text .text.*) + *libesp_system.a:system_api.*(.literal.esp_system_abort .text.esp_system_abort) + *libesp_system.a:reset_reason.*( .literal .literal.* .text .text.*) + *libsoc.a:rtc_clk_init.*( .literal .literal.* .text .text.*) + *libsoc.a:ledc_hal_iram.*( .literal .literal.* .text .text.*) + *libsoc.a:spi_flash_hal_iram.*( .literal .literal.* .text .text.*) + *libsoc.a:rtc_wdt.*( .literal .literal.* .text .text.*) + *libsoc.a:spi_slave_hal_iram.*( .literal .literal.* .text .text.*) + *libsoc.a:spi_flash_hal_gpspi.*( .literal .literal.* .text .text.*) + *libsoc.a:spi_hal_iram.*( .literal .literal.* .text .text.*) + *libsoc.a:lldesc.*( .literal .literal.* .text .text.*) + *libsoc.a:rtc_clk.*( .literal .literal.* .text .text.*) + *libsoc.a:rtc_init.*( .literal .literal.* .text .text.*) + *libsoc.a:rtc_sleep.*( .literal .literal.* .text .text.*) + *libsoc.a:soc_hal.*( .literal .literal.* .text .text.*) + *libsoc.a:uart_hal_iram.*( .iram1 .iram1.*) + *libsoc.a:cpu_hal.*( .literal .literal.* .text .text.*) + *libsoc.a:rtc_pm.*( .literal .literal.* .text .text.*) + *libsoc.a:cpu_util.*( .literal .literal.* .text .text.*) + *libsoc.a:rtc_time.*( .literal .literal.* .text .text.*) + *libsoc.a:i2c_hal_iram.*( .literal .literal.* .text .text.*) + *libsoc.a:rtc_periph.*( .literal .literal.* .text .text.*) + *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) + *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) + *librtc.a:( .literal .literal.* .text .text.*) + *libpp.a:( .wifi0iram .wifi0iram.*) + *libpp.a:( .wifirxiram .wifirxiram.*) + *libnet80211.a:( .wifi0iram .wifi0iram.*) + *libnet80211.a:( .wifirxiram .wifirxiram.*) + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + *libheap.a:multi_heap.*( .literal .literal.* .text .text.*) + *libheap.a:multi_heap_poisoning.*( .literal .literal.* .text .text.*) + *libesp_ringbuf.a:( .literal .literal.* .text .text.*) + *libgcc.a:lib2funcs.*( .literal .literal.* .text .text.*) + *libgcc.a:_divsf3.*( .literal .literal.* .text .text.*) + *libgcov.a:( .literal .literal.* .text .text.*) + *lib_esp_common.a:esp_err.*( .literal .literal.* .text .text.*) + *libfreertos.a:( .literal .literal.* .text .text.*) + *libnewlib.a:heap.*( .literal .literal.* .text .text.*) + *libnewlib.a:abort.*( .literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*( .literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*( .literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_SYSVIEW.*( .literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.*( .literal .literal.* .text .text.*) + *libapp_trace.a:app_trace.*( .literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_RTT_esp32.*( .literal .literal.* .text .text.*) + + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + + .dram0.data : + { + _data_start = ABSOLUTE(.); + _bt_data_start = ABSOLUTE(.); + *libbt.a:(.data .data.*) + . = ALIGN (4); + _bt_data_end = ABSOLUTE(.); + _btdm_data_start = ABSOLUTE(.); + *libbtdm_app.a:(.data .data.*) + . = ALIGN (4); + _btdm_data_end = ABSOLUTE(.); + _nimble_data_start = ABSOLUTE(.); + *libnimble.a:(.data .data.*) + . = ALIGN (4); + _nimble_data_end = ABSOLUTE(.); + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.sdata2) + *(.sdata2.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + + + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .data EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .data.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .dram1 EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .dram1.*) + *libxtensa.a:stdatomic.*( .rodata .rodata.*) + *libspi_flash.a:spi_flash_chip_gd.*( .rodata .rodata.*) + *libspi_flash.a:spi_flash_chip_issi.*( .rodata .rodata.*) + *libspi_flash.a:spi_flash_chip_generic.*( .rodata .rodata.*) + *libspi_flash.a:memspi_host_driver.*( .rodata .rodata.*) + *libesp_system.a:panic.*( .rodata .rodata.*) + *libesp_system.a:panic_handler.*( .rodata .rodata.*) + *libesp_system.a:system_api.*(.rodata.esp_system_abort) + *libesp_system.a:reset_reason.*( .rodata .rodata.*) + *libsoc.a:spi_flash_hal_iram.*( .rodata .rodata.*) + *libsoc.a:spi_flash_hal_gpspi.*( .rodata .rodata.*) + *libsoc.a:rtc_clk.*( .rodata .rodata.*) + *libsoc.a:soc_hal.*( .rodata .rodata.*) + *libsoc.a:uart_hal_iram.*( .data .data.* .dram1 .dram1.*) + *libsoc.a:cpu_hal.*( .rodata .rodata.*) + *libsoc.a:i2c_hal_iram.*( .rodata .rodata.*) + *libesp_event.a:esp_event.*(.rodata.esp_event_isr_post_to) + *libesp_event.a:default_event_loop.*(.rodata.esp_event_isr_post) + *libphy.a:( .rodata .rodata.*) + *liblog.a:log_freertos.*(.rodata.esp_log_timestamp) + *liblog.a:log_freertos.*(.rodata.esp_log_early_timestamp) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_lock) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_lock_timeout) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_unlock) + *liblog.a:log.*(.rodata.esp_log_write) + *libheap.a:multi_heap.*( .rodata .rodata.*) + *libheap.a:multi_heap_poisoning.*( .rodata .rodata.*) + *libgcc.a:_divsf3.*( .rodata .rodata.*) + *libgcov.a:( .rodata .rodata.*) + *lib_esp_common.a:esp_err.*( .rodata .rodata.*) + *libnewlib.a:heap.*( .rodata .rodata.*) + *libnewlib.a:abort.*( .rodata .rodata.*) + *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*( .rodata .rodata.*) + *libapp_trace.a:app_trace_util.*( .rodata .rodata.*) + *libapp_trace.a:SEGGER_SYSVIEW.*( .rodata .rodata.*) + *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.*( .rodata .rodata.*) + *libapp_trace.a:app_trace.*( .rodata .rodata.*) + *libapp_trace.a:SEGGER_RTT_esp32.*( .rodata .rodata.*) + + _data_end = ABSOLUTE(.); + . = ALIGN(4); + } > dram0_0_seg + + /*This section holds data that should not be initialized at power up. + The section located in Internal SRAM memory region. The macro _NOINIT + can be used as attribute to place data into this section. + See the esp_attr.h file for more information. + */ + .noinit (NOLOAD): + { + . = ALIGN(4); + _noinit_start = ABSOLUTE(.); + *(.noinit .noinit.*) + . = ALIGN(4) ; + _noinit_end = ABSOLUTE(.); + } > dram0_0_seg + + /* Shared RAM */ + .dram0.bss (NOLOAD) : + { + . = ALIGN (8); + _bss_start = ABSOLUTE(.); + *(.ext_ram.bss*) + _bt_bss_start = ABSOLUTE(.); + *libbt.a:(.bss .bss.* COMMON) + . = ALIGN (4); + _bt_bss_end = ABSOLUTE(.); + _btdm_bss_start = ABSOLUTE(.); + *libbtdm_app.a:(.bss .bss.* COMMON) + . = ALIGN (4); + _btdm_bss_end = ABSOLUTE(.); + _nimble_bss_start = ABSOLUTE(.); + *libnimble.a:(.bss .bss.* COMMON) + . = ALIGN (4); + _nimble_bss_end = ABSOLUTE(.); + + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .bss EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .bss.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) COMMON) + *libsoc.a:uart_hal_iram.*( .bss .bss.* COMMON) + + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.share.mem) + *(.gnu.linkonce.b.*) + + . = ALIGN (8); + _bss_end = ABSOLUTE(.); + } > dram0_0_seg + + ASSERT(((_bss_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") + + /* When modifying the alignment, update tls_section_alignment in pxPortInitialiseStack */ + .flash.rodata : ALIGN(0x10) + { + _rodata_start = ABSOLUTE(.); + + *(.rodata_desc .rodata_desc.*) /* Should be the first. App version info. DO NOT PUT ANYTHING BEFORE IT! */ + *(.rodata_custom_desc .rodata_custom_desc.*) /* Should be the second. Custom app version info. DO NOT PUT ANYTHING BEFORE IT! */ + + *(EXCLUDE_FILE(*libxtensa.a:stdatomic.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libesp_system.a:reset_reason.* *libesp_system.a:panic_handler.* *libesp_system.a:panic.* *libsoc.a:i2c_hal_iram.* *libsoc.a:cpu_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:rtc_clk.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_flash_hal_iram.* *libphy.a *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *libgcc.a:_divsf3.* *libgcov.a *lib_esp_common.a:esp_err.* *libnewlib.a:abort.* *libnewlib.a:heap.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*) .rodata EXCLUDE_FILE(*libxtensa.a:stdatomic.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libesp_system.a:system_api.* *libesp_system.a:reset_reason.* *libesp_system.a:panic_handler.* *libesp_system.a:panic.* *libsoc.a:i2c_hal_iram.* *libsoc.a:cpu_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:rtc_clk.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_flash_hal_iram.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libphy.a *liblog.a:log.* *liblog.a:log_freertos.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *libgcc.a:_divsf3.* *libgcov.a *lib_esp_common.a:esp_err.* *libnewlib.a:abort.* *libnewlib.a:heap.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*) .rodata.*) + *libesp_system.a:system_api.*(.rodata.esp_get_idf_version.str1.4) + *libsoc.a:uart_hal_iram.*( .rodata .rodata.*) + *libesp_event.a:esp_event.*(.rodata.handler_instances_add.str1.4 .rodata.base_node_add_handler.str1.4 .rodata.loop_node_add_handler.str1.4 .rodata.esp_event_loop_create.str1.4 .rodata.esp_event_loop_run.str1.4 .rodata.esp_event_loop_run_task.str1.4 .rodata.esp_event_handler_register_with_internal.str1.4 .rodata.esp_event_handler_unregister_with_internal.str1.4 .rodata.__func__$8875 .rodata.__func__$8862 .rodata.__func__$8829 .rodata.__func__$8797 .rodata.__func__$8772 .rodata.__func__$8731 .rodata.__func__$8722) + *libesp_event.a:default_event_loop.*(.rodata.esp_event_loop_create_default.str1.4 .rodata.esp_event_send_to_default_loop) + *liblog.a:log_freertos.*(.rodata.esp_log_system_timestamp.str1.4) + *liblog.a:log.*(.rodata.esp_log_level_set.str1.4 .rodata.__func__$3534 .rodata.__func__$3505) + + *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.gnu.linkonce.r.*) + *(.rodata1) + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + . = (. + 3) & ~ 3; + __eh_frame = ABSOLUTE(.); + KEEP(*(.eh_frame)) + . = (. + 7) & ~ 3; + /* C++ constructor and destructor tables + + Make a point of not including anything from crtbegin.o or crtend.o, as IDF doesn't use toolchain crt + */ + __init_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors .ctors.*)) + __init_array_end = ABSOLUTE(.); + KEEP (*crtbegin.*(.dtors)) + KEEP (*(EXCLUDE_FILE (*crtend.*) .dtors)) + KEEP (*(SORT(.dtors.*))) + KEEP (*(.dtors)) + /* C++ exception handlers table: */ + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + /* Addresses of memory regions reserved via + SOC_RESERVE_MEMORY_REGION() */ + soc_reserved_memory_region_start = ABSOLUTE(.); + KEEP (*(.reserved_memory_address)) + soc_reserved_memory_region_end = ABSOLUTE(.); + _rodata_end = ABSOLUTE(.); + /* Literals are also RO data. */ + _lit4_start = ABSOLUTE(.); + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + _lit4_end = ABSOLUTE(.); + . = ALIGN(4); + _thread_local_start = ABSOLUTE(.); + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + _thread_local_end = ABSOLUTE(.); + . = ALIGN(4); + } >default_rodata_seg + + .flash.text : + { + _stext = .; + _text_start = ABSOLUTE(.); + + *(EXCLUDE_FILE(*libxtensa.a:stdatomic.* *libxtensa.a:eri.* *libhal.a *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libesp_system.a:reset_reason.* *libesp_system.a:panic_handler.* *libesp_system.a:panic.* *libsoc.a:rtc_periph.* *libsoc.a:i2c_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:cpu_util.* *libsoc.a:rtc_pm.* *libsoc.a:cpu_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:rtc_sleep.* *libsoc.a:rtc_init.* *libsoc.a:rtc_clk.* *libsoc.a:lldesc.* *libsoc.a:spi_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_clk_init.* *librtc.a *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *libesp_ringbuf.a *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcov.a *lib_esp_common.a:esp_err.* *libfreertos.a *libnewlib.a:abort.* *libnewlib.a:heap.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*) .literal EXCLUDE_FILE(*libxtensa.a:stdatomic.* *libxtensa.a:eri.* *libhal.a *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libesp_system.a:system_api.* *libesp_system.a:reset_reason.* *libesp_system.a:panic_handler.* *libesp_system.a:panic.* *libsoc.a:rtc_periph.* *libsoc.a:i2c_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:cpu_util.* *libsoc.a:rtc_pm.* *libsoc.a:cpu_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:rtc_sleep.* *libsoc.a:rtc_init.* *libsoc.a:rtc_clk.* *libsoc.a:lldesc.* *libsoc.a:spi_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_clk_init.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *librtc.a *liblog.a:log.* *liblog.a:log_freertos.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *libesp_ringbuf.a *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcov.a *lib_esp_common.a:esp_err.* *libfreertos.a *libnewlib.a:abort.* *libnewlib.a:heap.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*) .literal.* EXCLUDE_FILE(*libxtensa.a:stdatomic.* *libxtensa.a:eri.* *libhal.a *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libesp_system.a:reset_reason.* *libesp_system.a:panic_handler.* *libesp_system.a:panic.* *libsoc.a:rtc_periph.* *libsoc.a:i2c_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:cpu_util.* *libsoc.a:rtc_pm.* *libsoc.a:cpu_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:rtc_sleep.* *libsoc.a:rtc_init.* *libsoc.a:rtc_clk.* *libsoc.a:lldesc.* *libsoc.a:spi_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_clk_init.* *librtc.a *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *libesp_ringbuf.a *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcov.a *lib_esp_common.a:esp_err.* *libfreertos.a *libnewlib.a:abort.* *libnewlib.a:heap.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*) .text EXCLUDE_FILE(*libxtensa.a:stdatomic.* *libxtensa.a:eri.* *libhal.a *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libesp_system.a:system_api.* *libesp_system.a:reset_reason.* *libesp_system.a:panic_handler.* *libesp_system.a:panic.* *libsoc.a:rtc_periph.* *libsoc.a:i2c_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:cpu_util.* *libsoc.a:rtc_pm.* *libsoc.a:cpu_hal.* *libsoc.a:uart_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:rtc_sleep.* *libsoc.a:rtc_init.* *libsoc.a:rtc_clk.* *libsoc.a:lldesc.* *libsoc.a:spi_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_clk_init.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *librtc.a *liblog.a:log.* *liblog.a:log_freertos.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *libesp_ringbuf.a *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcov.a *lib_esp_common.a:esp_err.* *libfreertos.a *libnewlib.a:abort.* *libnewlib.a:heap.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*) .text.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.* *libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libsoc.a:uart_hal_iram.* *libpp.a *libnet80211.a) .wifi0iram.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.* *libpp.a *libnet80211.a) .wifirxiram EXCLUDE_FILE(*libsoc.a:uart_hal_iram.* *libpp.a *libnet80211.a) .wifirxiram.*) + *libesp_system.a:system_api.*(.literal.esp_register_shutdown_handler .literal.esp_unregister_shutdown_handler .literal.esp_get_free_heap_size .literal.esp_get_minimum_free_heap_size .literal.esp_get_idf_version .text.esp_register_shutdown_handler .text.esp_unregister_shutdown_handler .text.esp_get_free_heap_size .text.esp_get_minimum_free_heap_size .text.esp_get_idf_version) + *libsoc.a:uart_hal_iram.*( .literal .literal.* .text .text.* .wifi0iram .wifi0iram.* .wifirxiram .wifirxiram.*) + *libesp_event.a:esp_event.*(.literal.handler_instances_remove_all .literal.base_node_remove_all_handler .literal.loop_node_remove_all_handler .literal.handler_instances_add .literal.base_node_add_handler .literal.loop_node_add_handler .literal.handler_instances_remove .literal.base_node_remove_handler .literal.loop_node_remove_handler .literal.esp_event_loop_create .literal.esp_event_loop_run .literal.esp_event_loop_run_task .literal.esp_event_loop_delete .literal.esp_event_handler_register_with_internal .literal.esp_event_handler_register_with .literal.esp_event_handler_instance_register_with .literal.esp_event_handler_unregister_with_internal .literal.esp_event_handler_unregister_with .literal.esp_event_handler_instance_unregister_with .literal.esp_event_post_to .text.handler_execute .text.handler_instances_remove_all .text.base_node_remove_all_handler .text.loop_node_remove_all_handler .text.handler_instances_add .text.base_node_add_handler .text.loop_node_add_handler .text.handler_instances_remove .text.base_node_remove_handler .text.loop_node_remove_handler .text.esp_event_loop_create .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_loop_delete .text.esp_event_handler_register_with_internal .text.esp_event_handler_register_with .text.esp_event_handler_instance_register_with .text.esp_event_handler_unregister_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_instance_unregister_with .text.esp_event_post_to .text.esp_event_dump) + *libesp_event.a:default_event_loop.*(.literal.esp_event_handler_register .literal.esp_event_handler_instance_register .literal.esp_event_handler_unregister .literal.esp_event_handler_instance_unregister .literal.esp_event_post .literal.esp_event_loop_create_default .literal.esp_event_loop_delete_default .literal.esp_event_send_to_default_loop .text.esp_event_handler_register .text.esp_event_handler_instance_register .text.esp_event_handler_unregister .text.esp_event_handler_instance_unregister .text.esp_event_post .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_send_to_default_loop) + *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text.esp_log_system_timestamp) + *liblog.a:log.*(.literal.heap_bubble_down .literal.esp_log_set_vprintf .literal.esp_log_level_set .literal.esp_log_writev .text.heap_bubble_down .text.esp_log_set_vprintf .text.esp_log_level_set .text.esp_log_writev) + + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.fini.literal) + *(.fini) + *(.gnu.version) + _text_end = ABSOLUTE(.); + _etext = .; + + /* Similar to _iram_start, this symbol goes here so it is + resolved by addr2line in preference to the first symbol in + the flash.text segment. + */ + _flash_cache_start = ABSOLUTE(0); + } >default_code_seg + + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + . = ALIGN (4); + _iram_end = ABSOLUTE(.); + } > iram0_0_seg + + /* Marks the end of data, bss and possibly rodata */ + .dram0.heap_start (NOLOAD) : + { + . = ALIGN (8); + _heap_start = ABSOLUTE(.); + } > dram0_0_seg +} + +ASSERT(((_iram_text_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)), + "IRAM0 segment data does not fit.") + +ASSERT(((_heap_start - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") diff --git a/build/esp-idf/esp32/libesp32.a b/build/esp-idf/esp32/libesp32.a new file mode 100644 index 0000000..b64a22a Binary files /dev/null and b/build/esp-idf/esp32/libesp32.a differ diff --git a/build/esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj b/build/esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj new file mode 100644 index 0000000..5318765 Binary files /dev/null and b/build/esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj differ diff --git a/build/esp-idf/esp_adc_cal/libesp_adc_cal.a b/build/esp-idf/esp_adc_cal/libesp_adc_cal.a new file mode 100644 index 0000000..14fa07b Binary files /dev/null and b/build/esp-idf/esp_adc_cal/libesp_adc_cal.a differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj new file mode 100644 index 0000000..80e0185 Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj new file mode 100644 index 0000000..beec867 Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err.c.obj new file mode 100644 index 0000000..8b978a7 Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err.c.obj differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj new file mode 100644 index 0000000..18ed227 Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj new file mode 100644 index 0000000..c718fdd Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj new file mode 100644 index 0000000..2766606 Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj new file mode 100644 index 0000000..a9804ea Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj new file mode 100644 index 0000000..c33ab77 Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj new file mode 100644 index 0000000..dbeff35 Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj differ diff --git a/build/esp-idf/esp_common/libesp_common.a b/build/esp-idf/esp_common/libesp_common.a new file mode 100644 index 0000000..2c92fae Binary files /dev/null and b/build/esp-idf/esp_common/libesp_common.a differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj new file mode 100644 index 0000000..cf9f9a0 Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj new file mode 100644 index 0000000..3fc4148 Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj new file mode 100644 index 0000000..9e58d39 Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj new file mode 100644 index 0000000..a12460a Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj new file mode 100644 index 0000000..cccbac6 Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj new file mode 100644 index 0000000..ee28cfb Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj new file mode 100644 index 0000000..f5df64d Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj new file mode 100644 index 0000000..cdde185 Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj differ diff --git a/build/esp-idf/esp_eth/libesp_eth.a b/build/esp-idf/esp_eth/libesp_eth.a new file mode 100644 index 0000000..d653068 Binary files /dev/null and b/build/esp-idf/esp_eth/libesp_eth.a differ diff --git a/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj new file mode 100644 index 0000000..7775f62 Binary files /dev/null and b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj differ diff --git a/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj new file mode 100644 index 0000000..8e40f72 Binary files /dev/null and b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj differ diff --git a/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj new file mode 100644 index 0000000..7cfaf60 Binary files /dev/null and b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj differ diff --git a/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj new file mode 100644 index 0000000..7558712 Binary files /dev/null and b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj differ diff --git a/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj new file mode 100644 index 0000000..079a71f Binary files /dev/null and b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj differ diff --git a/build/esp-idf/esp_event/libesp_event.a b/build/esp-idf/esp_event/libesp_event.a new file mode 100644 index 0000000..690c1de Binary files /dev/null and b/build/esp-idf/esp_event/libesp_event.a differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj new file mode 100644 index 0000000..cd42b3c Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj new file mode 100644 index 0000000..82830ae Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj new file mode 100644 index 0000000..12bb7c2 Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj new file mode 100644 index 0000000..eed3954 Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj differ diff --git a/build/esp-idf/esp_gdbstub/libesp_gdbstub.a b/build/esp-idf/esp_gdbstub/libesp_gdbstub.a new file mode 100644 index 0000000..e204a87 Binary files /dev/null and b/build/esp-idf/esp_gdbstub/libesp_gdbstub.a differ diff --git a/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj new file mode 100644 index 0000000..a438afc Binary files /dev/null and b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj differ diff --git a/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj new file mode 100644 index 0000000..ea14e27 Binary files /dev/null and b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj differ diff --git a/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj new file mode 100644 index 0000000..beeedb5 Binary files /dev/null and b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj differ diff --git a/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj new file mode 100644 index 0000000..b36ddb1 Binary files /dev/null and b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj differ diff --git a/build/esp-idf/esp_http_client/libesp_http_client.a b/build/esp-idf/esp_http_client/libesp_http_client.a new file mode 100644 index 0000000..0d0162f Binary files /dev/null and b/build/esp-idf/esp_http_client/libesp_http_client.a differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj new file mode 100644 index 0000000..fc4f1bb Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj new file mode 100644 index 0000000..3b6e239 Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj new file mode 100644 index 0000000..fd22a21 Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj new file mode 100644 index 0000000..933298c Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj new file mode 100644 index 0000000..eb37ad0 Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj new file mode 100644 index 0000000..8f2e628 Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj new file mode 100644 index 0000000..8cd112f Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj differ diff --git a/build/esp-idf/esp_http_server/libesp_http_server.a b/build/esp-idf/esp_http_server/libesp_http_server.a new file mode 100644 index 0000000..4c4c5f0 Binary files /dev/null and b/build/esp-idf/esp_http_server/libesp_http_server.a differ diff --git a/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj b/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj new file mode 100644 index 0000000..dd4b455 Binary files /dev/null and b/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj differ diff --git a/build/esp-idf/esp_https_ota/libesp_https_ota.a b/build/esp-idf/esp_https_ota/libesp_https_ota.a new file mode 100644 index 0000000..eba87bc Binary files /dev/null and b/build/esp-idf/esp_https_ota/libesp_https_ota.a differ diff --git a/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj b/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj new file mode 100644 index 0000000..2740072 Binary files /dev/null and b/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj differ diff --git a/build/esp-idf/esp_https_server/libesp_https_server.a b/build/esp-idf/esp_https_server/libesp_https_server.a new file mode 100644 index 0000000..b524506 Binary files /dev/null and b/build/esp-idf/esp_https_server/libesp_https_server.a differ diff --git a/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj new file mode 100644 index 0000000..43a2b08 Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj differ diff --git a/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj new file mode 100644 index 0000000..167d74a Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj differ diff --git a/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj new file mode 100644 index 0000000..e0aae2e Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj differ diff --git a/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj new file mode 100644 index 0000000..84ecef1 Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj differ diff --git a/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a b/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a new file mode 100644 index 0000000..4a1d125 Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj new file mode 100644 index 0000000..8741f8c Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj new file mode 100644 index 0000000..bd6446f Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj new file mode 100644 index 0000000..8563ef4 Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj new file mode 100644 index 0000000..aa36546 Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj new file mode 100644 index 0000000..ba9a127 Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj new file mode 100644 index 0000000..1433a8c Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj new file mode 100644 index 0000000..b949418 Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj new file mode 100644 index 0000000..daa2806 Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj differ diff --git a/build/esp-idf/esp_netif/libesp_netif.a b/build/esp-idf/esp_netif/libesp_netif.a new file mode 100644 index 0000000..dfe93b1 Binary files /dev/null and b/build/esp-idf/esp_netif/libesp_netif.a differ diff --git a/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj b/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj new file mode 100644 index 0000000..9e0cd25 Binary files /dev/null and b/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj differ diff --git a/build/esp-idf/esp_ringbuf/libesp_ringbuf.a b/build/esp-idf/esp_ringbuf/libesp_ringbuf.a new file mode 100644 index 0000000..eca4308 Binary files /dev/null and b/build/esp-idf/esp_ringbuf/libesp_ringbuf.a differ diff --git a/build/esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj b/build/esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj new file mode 100644 index 0000000..2537182 Binary files /dev/null and b/build/esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj differ diff --git a/build/esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj b/build/esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj new file mode 100644 index 0000000..3c1288a Binary files /dev/null and b/build/esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj differ diff --git a/build/esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a b/build/esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a new file mode 100644 index 0000000..85c12be Binary files /dev/null and b/build/esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj new file mode 100644 index 0000000..97119af Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/dport_panic_highint_hdl.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/dport_panic_highint_hdl.S.obj new file mode 100644 index 0000000..380c4fa Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/dport_panic_highint_hdl.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/reset_reason.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/reset_reason.c.obj new file mode 100644 index 0000000..94599c2 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp32/reset_reason.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj new file mode 100644 index 0000000..70010a6 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler_asm.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler_asm.S.obj new file mode 100644 index 0000000..13fe4e2 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler_asm.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_api.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_api.c.obj new file mode 100644 index 0000000..594870b Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_api.c.obj differ diff --git a/build/esp-idf/esp_system/cmake_install.cmake b/build/esp-idf/esp_system/cmake_install.cmake new file mode 100644 index 0000000..0c7b8ca --- /dev/null +++ b/build/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,40 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/esp/bakalarka/build/esp-idf/esp_system/port/cmake_install.cmake") + +endif() + diff --git a/build/esp-idf/esp_system/libesp_system.a b/build/esp-idf/esp_system/libesp_system.a new file mode 100644 index 0000000..4b9ca5f Binary files /dev/null and b/build/esp-idf/esp_system/libesp_system.a differ diff --git a/build/esp-idf/esp_system/port/cmake_install.cmake b/build/esp-idf/esp_system/port/cmake_install.cmake new file mode 100644 index 0000000..fb1f477 --- /dev/null +++ b/build/esp-idf/esp_system/port/cmake_install.cmake @@ -0,0 +1,40 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_system/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/esp/bakalarka/build/esp-idf/esp_system/port/esp32/cmake_install.cmake") + +endif() + diff --git a/build/esp-idf/esp_system/port/esp32/cmake_install.cmake b/build/esp-idf/esp_system/port/esp32/cmake_install.cmake new file mode 100644 index 0000000..f3aaff1 --- /dev/null +++ b/build/esp-idf/esp_system/port/esp32/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_system/port/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj new file mode 100644 index 0000000..9820917 Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj new file mode 100644 index 0000000..ac2820b Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj new file mode 100644 index 0000000..829d91a Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj differ diff --git a/build/esp-idf/esp_timer/libesp_timer.a b/build/esp-idf/esp_timer/libesp_timer.a new file mode 100644 index 0000000..3a98e59 Binary files /dev/null and b/build/esp-idf/esp_timer/libesp_timer.a differ diff --git a/build/esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj b/build/esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj new file mode 100644 index 0000000..48a4c27 Binary files /dev/null and b/build/esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj differ diff --git a/build/esp-idf/esp_websocket_client/libesp_websocket_client.a b/build/esp-idf/esp_websocket_client/libesp_websocket_client.a new file mode 100644 index 0000000..15c3095 Binary files /dev/null and b/build/esp-idf/esp_websocket_client/libesp_websocket_client.a differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj new file mode 100644 index 0000000..5f2a143 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj new file mode 100644 index 0000000..51a787f Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj new file mode 100644 index 0000000..6643145 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj new file mode 100644 index 0000000..6cf7898 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj new file mode 100644 index 0000000..1159cf3 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj new file mode 100644 index 0000000..0b6812b Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj new file mode 100644 index 0000000..1bb4143 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj new file mode 100644 index 0000000..c1896f7 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj new file mode 100644 index 0000000..29608a7 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj new file mode 100644 index 0000000..6ab1ae2 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj differ diff --git a/build/esp-idf/esp_wifi/libesp_wifi.a b/build/esp-idf/esp_wifi/libesp_wifi.a new file mode 100644 index 0000000..00d56ec Binary files /dev/null and b/build/esp-idf/esp_wifi/libesp_wifi.a differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj new file mode 100644 index 0000000..3eb83be Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj new file mode 100644 index 0000000..b13c648 Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj new file mode 100644 index 0000000..0fc14c4 Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj new file mode 100644 index 0000000..0758cb6 Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj differ diff --git a/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj new file mode 100644 index 0000000..026e7f2 Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj differ diff --git a/build/esp-idf/espcoredump/libespcoredump.a b/build/esp-idf/espcoredump/libespcoredump.a new file mode 100644 index 0000000..865c37d Binary files /dev/null and b/build/esp-idf/espcoredump/libespcoredump.a differ diff --git a/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj b/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj new file mode 100644 index 0000000..29c1600 Binary files /dev/null and b/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj differ diff --git a/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlrole.c.obj b/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlrole.c.obj new file mode 100644 index 0000000..d22cbce Binary files /dev/null and b/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlrole.c.obj differ diff --git a/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok.c.obj b/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok.c.obj new file mode 100644 index 0000000..f5d5ec1 Binary files /dev/null and b/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok.c.obj differ diff --git a/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_impl.c.obj b/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_impl.c.obj new file mode 100644 index 0000000..4d92585 Binary files /dev/null and b/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_impl.c.obj differ diff --git a/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_ns.c.obj b/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_ns.c.obj new file mode 100644 index 0000000..9d88d0c Binary files /dev/null and b/build/esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_ns.c.obj differ diff --git a/build/esp-idf/expat/libexpat.a b/build/esp-idf/expat/libexpat.a new file mode 100644 index 0000000..9ea9397 Binary files /dev/null and b/build/esp-idf/expat/libexpat.a differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj new file mode 100644 index 0000000..756744d Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj new file mode 100644 index 0000000..49abed2 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj new file mode 100644 index 0000000..533f4df Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj new file mode 100644 index 0000000..1b75485 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj new file mode 100644 index 0000000..1b59a53 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj new file mode 100644 index 0000000..3ab34d8 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj new file mode 100644 index 0000000..5ad2171 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj new file mode 100644 index 0000000..9d1ba46 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj new file mode 100644 index 0000000..d2f4630 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj new file mode 100644 index 0000000..944f7d4 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj differ diff --git a/build/esp-idf/fatfs/libfatfs.a b/build/esp-idf/fatfs/libfatfs.a new file mode 100644 index 0000000..c413fac Binary files /dev/null and b/build/esp-idf/fatfs/libfatfs.a differ diff --git a/build/esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj b/build/esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj new file mode 100644 index 0000000..a05cf7a Binary files /dev/null and b/build/esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj differ diff --git a/build/esp-idf/files/libfiles.a b/build/esp-idf/files/libfiles.a new file mode 100644 index 0000000..706fcd9 Binary files /dev/null and b/build/esp-idf/files/libfiles.a differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj new file mode 100644 index 0000000..bc7dc9a Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj new file mode 100644 index 0000000..3445a5b Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj new file mode 100644 index 0000000..4495cde Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj new file mode 100644 index 0000000..0b8a103 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj new file mode 100644 index 0000000..852bc6f Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj new file mode 100644 index 0000000..bfece1b Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdiag.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdiag.c.obj new file mode 100644 index 0000000..aaf120a Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdiag.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj new file mode 100644 index 0000000..4a7d782 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj new file mode 100644 index 0000000..fe0362d Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj new file mode 100644 index 0000000..25d7df9 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj new file mode 100644 index 0000000..dc05c76 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj new file mode 100644 index 0000000..b966de0 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj new file mode 100644 index 0000000..d64da34 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj new file mode 100644 index 0000000..9cda10c Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj new file mode 100644 index 0000000..a2076d1 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj new file mode 100644 index 0000000..380d9ce Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj new file mode 100644 index 0000000..ce0bc13 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj new file mode 100644 index 0000000..7385e9a Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj new file mode 100644 index 0000000..468b430 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj new file mode 100644 index 0000000..9b72ad0 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj new file mode 100644 index 0000000..38e90df Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj new file mode 100644 index 0000000..6a7e01a Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj new file mode 100644 index 0000000..24e5598 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj new file mode 100644 index 0000000..5098204 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj new file mode 100644 index 0000000..9c4b9a5 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj new file mode 100644 index 0000000..5035dc2 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj new file mode 100644 index 0000000..53c6cf7 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj new file mode 100644 index 0000000..a88acfd Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj new file mode 100644 index 0000000..194c67e Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj new file mode 100644 index 0000000..503e410 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj new file mode 100644 index 0000000..f46b52f Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj differ diff --git a/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj new file mode 100644 index 0000000..0fb02e6 Binary files /dev/null and b/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj differ diff --git a/build/esp-idf/freemodbus/libfreemodbus.a b/build/esp-idf/freemodbus/libfreemodbus.a new file mode 100644 index 0000000..2e23844 Binary files /dev/null and b/build/esp-idf/freemodbus/libfreemodbus.a differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj new file mode 100644 index 0000000..3c582c5 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj new file mode 100644 index 0000000..18a5b75 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj new file mode 100644 index 0000000..daeb05e Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj new file mode 100644 index 0000000..4006424 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj new file mode 100644 index 0000000..7ce0bfd Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj new file mode 100644 index 0000000..c9d5c50 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj new file mode 100644 index 0000000..0f02241 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj new file mode 100644 index 0000000..aee8922 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj new file mode 100644 index 0000000..49938c3 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj new file mode 100644 index 0000000..e0b218a Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj new file mode 100644 index 0000000..69a2f73 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj new file mode 100644 index 0000000..f3385a1 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj new file mode 100644 index 0000000..9479d8f Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj new file mode 100644 index 0000000..838b0aa Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj new file mode 100644 index 0000000..71dd5b2 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj new file mode 100644 index 0000000..f0857f4 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj differ diff --git a/build/esp-idf/freertos/libfreertos.a b/build/esp-idf/freertos/libfreertos.a new file mode 100644 index 0000000..6c7e51e Binary files /dev/null and b/build/esp-idf/freertos/libfreertos.a differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj new file mode 100644 index 0000000..dc6257a Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj new file mode 100644 index 0000000..7f0da9f Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj new file mode 100644 index 0000000..dc1d6f7 Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj differ diff --git a/build/esp-idf/heap/libheap.a b/build/esp-idf/heap/libheap.a new file mode 100644 index 0000000..71d7356 Binary files /dev/null and b/build/esp-idf/heap/libheap.a differ diff --git a/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj b/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj new file mode 100644 index 0000000..548eb81 Binary files /dev/null and b/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj differ diff --git a/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj b/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj new file mode 100644 index 0000000..b1899b8 Binary files /dev/null and b/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj differ diff --git a/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj b/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj new file mode 100644 index 0000000..162116e Binary files /dev/null and b/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj differ diff --git a/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj b/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj new file mode 100644 index 0000000..3add9f0 Binary files /dev/null and b/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj differ diff --git a/build/esp-idf/https_server/libhttps_server.a b/build/esp-idf/https_server/libhttps_server.a new file mode 100644 index 0000000..676b237 Binary files /dev/null and b/build/esp-idf/https_server/libhttps_server.a differ diff --git a/build/esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src/jsmn.c.obj b/build/esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src/jsmn.c.obj new file mode 100644 index 0000000..c0783f9 Binary files /dev/null and b/build/esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src/jsmn.c.obj differ diff --git a/build/esp-idf/jsmn/libjsmn.a b/build/esp-idf/jsmn/libjsmn.a new file mode 100644 index 0000000..6d223ce Binary files /dev/null and b/build/esp-idf/jsmn/libjsmn.a differ diff --git a/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj b/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj new file mode 100644 index 0000000..f130f98 Binary files /dev/null and b/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj differ diff --git a/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj b/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj new file mode 100644 index 0000000..b21980b Binary files /dev/null and b/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj differ diff --git a/build/esp-idf/json/libjson.a b/build/esp-idf/json/libjson.a new file mode 100644 index 0000000..d61d0bb Binary files /dev/null and b/build/esp-idf/json/libjson.a differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c.obj new file mode 100644 index 0000000..27d5e95 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c.obj new file mode 100644 index 0000000..6271fe2 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/crypto_auth.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/crypto_auth.c.obj new file mode 100644 index 0000000..28253ee Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/crypto_auth.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c.obj new file mode 100644 index 0000000..bdb7ab3 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c.obj new file mode 100644 index 0000000..562be35 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c.obj new file mode 100644 index 0000000..2ea03a5 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box.c.obj new file mode 100644 index 0000000..beef809 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_easy.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_easy.c.obj new file mode 100644 index 0000000..043d5e2 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_easy.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_seal.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_seal.c.obj new file mode 100644 index 0000000..9b6a6cd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_seal.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c.obj new file mode 100644 index 0000000..d08a679 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c.obj new file mode 100644 index 0000000..1f41f0c Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c.obj new file mode 100644 index 0000000..6c20e64 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c.obj new file mode 100644 index 0000000..23f7c80 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c.obj new file mode 100644 index 0000000..9bd1697 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c.obj new file mode 100644 index 0000000..2e949c5 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c.obj new file mode 100644 index 0000000..374c5bf Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c.obj new file mode 100644 index 0000000..cbec0c9 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c.obj new file mode 100644 index 0000000..61b7f75 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c.obj new file mode 100644 index 0000000..521271a Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c.obj new file mode 100644 index 0000000..b6ae693 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c.obj new file mode 100644 index 0000000..359b5e4 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj new file mode 100644 index 0000000..a17e71a Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj new file mode 100644 index 0000000..c9cc052 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c.obj new file mode 100644 index 0000000..5c6598e Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/crypto_hash.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/crypto_hash.c.obj new file mode 100644 index 0000000..e67cb2e Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/crypto_hash.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c.obj new file mode 100644 index 0000000..052fc3d Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c.obj new file mode 100644 index 0000000..a14767a Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c.obj new file mode 100644 index 0000000..7ffef56 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c.obj new file mode 100644 index 0000000..a55ef23 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c.obj new file mode 100644 index 0000000..287523d Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c.obj new file mode 100644 index 0000000..b3de28d Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx/crypto_kx.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx/crypto_kx.c.obj new file mode 100644 index 0000000..3e0f15a Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx/crypto_kx.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c.obj new file mode 100644 index 0000000..045714b Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c.obj new file mode 100644 index 0000000..65a9efd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c.obj new file mode 100644 index 0000000..88c94dd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c.obj new file mode 100644 index 0000000..b9098d3 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c.obj new file mode 100644 index 0000000..a842c1a Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c.obj new file mode 100644 index 0000000..952653c Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c.obj new file mode 100644 index 0000000..136237d Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c.obj new file mode 100644 index 0000000..ad51c9a Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c.obj new file mode 100644 index 0000000..316ddb3 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c.obj new file mode 100644 index 0000000..eae9841 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c.obj new file mode 100644 index 0000000..1c1eded Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c.obj new file mode 100644 index 0000000..40b55d9 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c.obj new file mode 100644 index 0000000..5f653c2 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c.obj new file mode 100644 index 0000000..cedf67f Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c.obj new file mode 100644 index 0000000..8053cd2 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c.obj new file mode 100644 index 0000000..aeb7668 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c.obj new file mode 100644 index 0000000..5a1638b Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c.obj new file mode 100644 index 0000000..33f96e0 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c.obj new file mode 100644 index 0000000..8cde91f Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c.obj new file mode 100644 index 0000000..6aec0d8 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c.obj new file mode 100644 index 0000000..ad98fae Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c.obj new file mode 100644 index 0000000..f8f9780 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c.obj new file mode 100644 index 0000000..80ee3cd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c.obj new file mode 100644 index 0000000..b2a3daf Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c.obj new file mode 100644 index 0000000..d6f348d Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c.obj new file mode 100644 index 0000000..2435ba3 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj new file mode 100644 index 0000000..ca140a9 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj new file mode 100644 index 0000000..ed0d0b8 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c.obj new file mode 100644 index 0000000..a387d46 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c.obj new file mode 100644 index 0000000..340e41b Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c.obj new file mode 100644 index 0000000..e457fe1 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c.obj new file mode 100644 index 0000000..1a71310 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c.obj new file mode 100644 index 0000000..367ff40 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c.obj new file mode 100644 index 0000000..6d75119 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/crypto_sign.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/crypto_sign.c.obj new file mode 100644 index 0000000..c7045cd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/crypto_sign.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c.obj new file mode 100644 index 0000000..d1bb9a3 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c.obj new file mode 100644 index 0000000..152c904 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c.obj new file mode 100644 index 0000000..8296efa Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c.obj new file mode 100644 index 0000000..49e54b0 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c.obj new file mode 100644 index 0000000..be735d4 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c.obj new file mode 100644 index 0000000..3327939 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c.obj new file mode 100644 index 0000000..588cb37 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c.obj new file mode 100644 index 0000000..04d3af5 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c.obj new file mode 100644 index 0000000..5d2134a Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c.obj new file mode 100644 index 0000000..ca16583 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c.obj new file mode 100644 index 0000000..50ab5bb Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c.obj new file mode 100644 index 0000000..259cb84 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c.obj new file mode 100644 index 0000000..327374d Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c.obj new file mode 100644 index 0000000..e28d9e2 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c.obj new file mode 100644 index 0000000..a501e0b Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c.obj new file mode 100644 index 0000000..c692e16 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/crypto_stream.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/crypto_stream.c.obj new file mode 100644 index 0000000..97bb19e Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/crypto_stream.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c.obj new file mode 100644 index 0000000..3f202dc Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c.obj new file mode 100644 index 0000000..da75d1a Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c.obj new file mode 100644 index 0000000..9bffefe Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c.obj new file mode 100644 index 0000000..56764f1 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c.obj new file mode 100644 index 0000000..d1e5822 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c.obj new file mode 100644 index 0000000..a9ce40b Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c.obj new file mode 100644 index 0000000..38c882f Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c.obj new file mode 100644 index 0000000..996d6f6 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c.obj new file mode 100644 index 0000000..8730afa Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c.obj new file mode 100644 index 0000000..dc13532 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c.obj new file mode 100644 index 0000000..a4ee6bd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium/verify.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium/verify.c.obj new file mode 100644 index 0000000..514fc08 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium/verify.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj new file mode 100644 index 0000000..8ae2094 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj new file mode 100644 index 0000000..78c824f Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj new file mode 100644 index 0000000..2089514 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj new file mode 100644 index 0000000..722ab19 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/core.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/core.c.obj new file mode 100644 index 0000000..45c61fd Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/core.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/runtime.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/runtime.c.obj new file mode 100644 index 0000000..255ecd0 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/runtime.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj new file mode 100644 index 0000000..af382f6 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/version.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/version.c.obj new file mode 100644 index 0000000..44519a1 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/version.c.obj differ diff --git a/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj new file mode 100644 index 0000000..d883c25 Binary files /dev/null and b/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj differ diff --git a/build/esp-idf/libsodium/liblibsodium.a b/build/esp-idf/libsodium/liblibsodium.a new file mode 100644 index 0000000..9ea84bd Binary files /dev/null and b/build/esp-idf/libsodium/liblibsodium.a differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj new file mode 100644 index 0000000..6c11894 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj new file mode 100644 index 0000000..2a42736 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj new file mode 100644 index 0000000..92a8d48 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj differ diff --git a/build/esp-idf/log/liblog.a b/build/esp-idf/log/liblog.a new file mode 100644 index 0000000..3788220 Binary files /dev/null and b/build/esp-idf/log/liblog.a differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj new file mode 100644 index 0000000..a865405 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj new file mode 100644 index 0000000..84ec2c5 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj new file mode 100644 index 0000000..6fd7b98 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj new file mode 100644 index 0000000..1eb66dd Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj new file mode 100644 index 0000000..89c1731 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj new file mode 100644 index 0000000..053984c Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj new file mode 100644 index 0000000..a9911c7 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj new file mode 100644 index 0000000..e2e9b5f Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj new file mode 100644 index 0000000..483c266 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj new file mode 100644 index 0000000..5ddeec5 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj new file mode 100644 index 0000000..8dc675c Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj new file mode 100644 index 0000000..7d95462 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj new file mode 100644 index 0000000..78912f2 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj new file mode 100644 index 0000000..9d2435c Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj new file mode 100644 index 0000000..3799aa3 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj new file mode 100644 index 0000000..5f65337 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj new file mode 100644 index 0000000..8d7eb97 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj new file mode 100644 index 0000000..e3a22c5 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj new file mode 100644 index 0000000..8f1a176 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj new file mode 100644 index 0000000..73172f9 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj new file mode 100644 index 0000000..1dc48ca Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj new file mode 100644 index 0000000..805613f Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj new file mode 100644 index 0000000..6ee1a8c Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj new file mode 100644 index 0000000..96b2427 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj new file mode 100644 index 0000000..b6cf75b Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj new file mode 100644 index 0000000..71dc10b Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj new file mode 100644 index 0000000..f677088 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj new file mode 100644 index 0000000..318cfa9 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj new file mode 100644 index 0000000..3e36a3d Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj new file mode 100644 index 0000000..2f14165 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj new file mode 100644 index 0000000..bca36c4 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj new file mode 100644 index 0000000..538a2df Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj new file mode 100644 index 0000000..aef71ee Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj new file mode 100644 index 0000000..9d34d2f Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj new file mode 100644 index 0000000..b8475a7 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj new file mode 100644 index 0000000..e4ab4ab Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj new file mode 100644 index 0000000..f318079 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj new file mode 100644 index 0000000..670d0c1 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj new file mode 100644 index 0000000..fe3d286 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj new file mode 100644 index 0000000..26698c8 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj new file mode 100644 index 0000000..c5fb223 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj new file mode 100644 index 0000000..160ddb0 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj new file mode 100644 index 0000000..458b6d3 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj new file mode 100644 index 0000000..4332ad2 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj new file mode 100644 index 0000000..2b3332e Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj new file mode 100644 index 0000000..f731b36 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj new file mode 100644 index 0000000..3f3331f Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj new file mode 100644 index 0000000..f6de80a Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj new file mode 100644 index 0000000..8cb1bcf Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj new file mode 100644 index 0000000..fa6bedd Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj new file mode 100644 index 0000000..b6e7ce4 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj new file mode 100644 index 0000000..41baa7a Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj new file mode 100644 index 0000000..e7f784c Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj new file mode 100644 index 0000000..43363a5 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj new file mode 100644 index 0000000..e0bcdd7 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj new file mode 100644 index 0000000..ea4143a Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj new file mode 100644 index 0000000..d0b512d Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj new file mode 100644 index 0000000..09d4e1c Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj new file mode 100644 index 0000000..927d497 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj new file mode 100644 index 0000000..60fb502 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj new file mode 100644 index 0000000..711bde3 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj new file mode 100644 index 0000000..e42563e Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj new file mode 100644 index 0000000..164fe29 Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj differ diff --git a/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj new file mode 100644 index 0000000..22f1c3d Binary files /dev/null and b/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj differ diff --git a/build/esp-idf/lv_examples/cmake_install.cmake b/build/esp-idf/lv_examples/cmake_install.cmake index 478e4c5..00ffc46 100644 --- a/build/esp-idf/lv_examples/cmake_install.cmake +++ b/build/esp-idf/lv_examples/cmake_install.cmake @@ -1,4 +1,4 @@ -# Install script for directory: /home/mithras/esp/bakalarka/components/lv_examples +# Install script for directory: /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) diff --git a/build/esp-idf/lv_examples/liblv_examples.a b/build/esp-idf/lv_examples/liblv_examples.a new file mode 100644 index 0000000..ad23220 Binary files /dev/null and b/build/esp-idf/lv_examples/liblv_examples.a differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj new file mode 100644 index 0000000..34ca6a8 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj new file mode 100644 index 0000000..7a6054b Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj new file mode 100644 index 0000000..2aa8074 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj new file mode 100644 index 0000000..a6bee04 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj new file mode 100644 index 0000000..c3d3b11 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj new file mode 100644 index 0000000..8145372 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj new file mode 100644 index 0000000..1dad5b2 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj new file mode 100644 index 0000000..a57f4dc Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj new file mode 100644 index 0000000..6c396b2 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj new file mode 100644 index 0000000..6b1e1da Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj new file mode 100644 index 0000000..88c135b Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj new file mode 100644 index 0000000..3369e20 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj new file mode 100644 index 0000000..7454787 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj new file mode 100644 index 0000000..494465a Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj new file mode 100644 index 0000000..2ba9b63 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj new file mode 100644 index 0000000..33a9b6a Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj new file mode 100644 index 0000000..08c7087 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj new file mode 100644 index 0000000..9657eb4 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj new file mode 100644 index 0000000..482c53e Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj new file mode 100644 index 0000000..f0653a0 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj new file mode 100644 index 0000000..aa793c4 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj new file mode 100644 index 0000000..2ca8329 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj new file mode 100644 index 0000000..0b7d0f8 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj new file mode 100644 index 0000000..f5551d5 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj new file mode 100644 index 0000000..de98d1f Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj new file mode 100644 index 0000000..afafac0 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj new file mode 100644 index 0000000..7901783 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj new file mode 100644 index 0000000..a24192d Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj new file mode 100644 index 0000000..d0389b5 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj new file mode 100644 index 0000000..7ac36c4 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj new file mode 100644 index 0000000..59d957a Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj new file mode 100644 index 0000000..d16bca5 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj new file mode 100644 index 0000000..d16a51c Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj new file mode 100644 index 0000000..6084594 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj new file mode 100644 index 0000000..0ef0374 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj new file mode 100644 index 0000000..4e1a77d Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj new file mode 100644 index 0000000..8dc2ca5 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj new file mode 100644 index 0000000..9337969 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj new file mode 100644 index 0000000..d09662c Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj new file mode 100644 index 0000000..1a3d144 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj new file mode 100644 index 0000000..1fb5f26 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj new file mode 100644 index 0000000..5d8a9aa Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj new file mode 100644 index 0000000..c880b84 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj new file mode 100644 index 0000000..acd9475 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj new file mode 100644 index 0000000..4063e03 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj new file mode 100644 index 0000000..f03271e Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj new file mode 100644 index 0000000..fa34c1c Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj new file mode 100644 index 0000000..9aba0ea Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj new file mode 100644 index 0000000..4168095 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj new file mode 100644 index 0000000..61d6c00 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj new file mode 100644 index 0000000..dd2eb0d Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj new file mode 100644 index 0000000..3614334 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj new file mode 100644 index 0000000..78580f6 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj new file mode 100644 index 0000000..fdf8002 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj new file mode 100644 index 0000000..e65fef6 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj new file mode 100644 index 0000000..c27e871 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj new file mode 100644 index 0000000..7e5734d Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj new file mode 100644 index 0000000..539a7eb Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj new file mode 100644 index 0000000..6dc82ef Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj new file mode 100644 index 0000000..7ffa17b Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj new file mode 100644 index 0000000..6daf530 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj new file mode 100644 index 0000000..b197d21 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj new file mode 100644 index 0000000..af89a7a Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj new file mode 100644 index 0000000..00f9df7 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj new file mode 100644 index 0000000..5562a0a Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj new file mode 100644 index 0000000..db1254a Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj new file mode 100644 index 0000000..1f7feb1 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj new file mode 100644 index 0000000..973d5b6 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj new file mode 100644 index 0000000..0f3e75d Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj new file mode 100644 index 0000000..7f8b17f Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj new file mode 100644 index 0000000..d1d4b9a Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj new file mode 100644 index 0000000..90f4358 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj new file mode 100644 index 0000000..b8c4daf Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj new file mode 100644 index 0000000..82c6781 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj new file mode 100644 index 0000000..84531f4 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj new file mode 100644 index 0000000..b4252e5 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj new file mode 100644 index 0000000..1e1e6aa Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj new file mode 100644 index 0000000..59f1017 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj new file mode 100644 index 0000000..3fe043e Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj new file mode 100644 index 0000000..d6675bf Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj new file mode 100644 index 0000000..6c74e06 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj new file mode 100644 index 0000000..eb208e3 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj new file mode 100644 index 0000000..ab9f8c0 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj new file mode 100644 index 0000000..aae5307 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj new file mode 100644 index 0000000..4ab5a5f Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj new file mode 100644 index 0000000..c2c93a7 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj new file mode 100644 index 0000000..db487b4 Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj differ diff --git a/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj new file mode 100644 index 0000000..7e95c5f Binary files /dev/null and b/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj differ diff --git a/build/esp-idf/lvgl/cmake_install.cmake b/build/esp-idf/lvgl/cmake_install.cmake index dead6a8..2ffaff4 100644 --- a/build/esp-idf/lvgl/cmake_install.cmake +++ b/build/esp-idf/lvgl/cmake_install.cmake @@ -1,4 +1,4 @@ -# Install script for directory: /home/mithras/esp/bakalarka/components/lvgl +# Install script for directory: /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) diff --git a/build/esp-idf/lvgl/liblvgl.a b/build/esp-idf/lvgl/liblvgl.a new file mode 100644 index 0000000..4ece4a0 Binary files /dev/null and b/build/esp-idf/lvgl/liblvgl.a differ diff --git a/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj b/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj new file mode 100644 index 0000000..9864b0e Binary files /dev/null and b/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj differ diff --git a/build/esp-idf/lvgl_esp32_drivers/cmake_install.cmake b/build/esp-idf/lvgl_esp32_drivers/cmake_install.cmake index 91410bd..6abac14 100644 --- a/build/esp-idf/lvgl_esp32_drivers/cmake_install.cmake +++ b/build/esp-idf/lvgl_esp32_drivers/cmake_install.cmake @@ -1,4 +1,4 @@ -# Install script for directory: /home/mithras/esp/bakalarka/components/lvgl_esp32_drivers +# Install script for directory: /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) diff --git a/build/esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a b/build/esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a new file mode 100644 index 0000000..f0e04f0 Binary files /dev/null and b/build/esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a differ diff --git a/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj new file mode 100644 index 0000000..e3aeed7 Binary files /dev/null and b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj differ diff --git a/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj new file mode 100644 index 0000000..2bfacda Binary files /dev/null and b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj differ diff --git a/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj new file mode 100644 index 0000000..d93aa83 Binary files /dev/null and b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj differ diff --git a/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj new file mode 100644 index 0000000..0109f15 Binary files /dev/null and b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj differ diff --git a/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj new file mode 100644 index 0000000..b03be38 Binary files /dev/null and b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj differ diff --git a/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj new file mode 100644 index 0000000..e8064d0 Binary files /dev/null and b/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj differ diff --git a/build/esp-idf/lvgl_tft/cmake_install.cmake b/build/esp-idf/lvgl_tft/cmake_install.cmake index 8233e67..0300139 100644 --- a/build/esp-idf/lvgl_tft/cmake_install.cmake +++ b/build/esp-idf/lvgl_tft/cmake_install.cmake @@ -1,4 +1,4 @@ -# Install script for directory: /home/mithras/esp/bakalarka/components/lvgl_esp32_drivers/lvgl_tft +# Install script for directory: /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) diff --git a/build/esp-idf/lvgl_tft/liblvgl_tft.a b/build/esp-idf/lvgl_tft/liblvgl_tft.a new file mode 100644 index 0000000..fee07a1 Binary files /dev/null and b/build/esp-idf/lvgl_tft/liblvgl_tft.a differ diff --git a/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj new file mode 100644 index 0000000..89d3362 Binary files /dev/null and b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj differ diff --git a/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj new file mode 100644 index 0000000..a2ec712 Binary files /dev/null and b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj differ diff --git a/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj new file mode 100644 index 0000000..7d30d87 Binary files /dev/null and b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj differ diff --git a/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj new file mode 100644 index 0000000..630835c Binary files /dev/null and b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj differ diff --git a/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj new file mode 100644 index 0000000..a9c5457 Binary files /dev/null and b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj differ diff --git a/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj new file mode 100644 index 0000000..f9abfec Binary files /dev/null and b/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj differ diff --git a/build/esp-idf/lvgl_touch/cmake_install.cmake b/build/esp-idf/lvgl_touch/cmake_install.cmake index 8e8c9a8..cb2ca4e 100644 --- a/build/esp-idf/lvgl_touch/cmake_install.cmake +++ b/build/esp-idf/lvgl_touch/cmake_install.cmake @@ -1,4 +1,4 @@ -# Install script for directory: /home/mithras/esp/bakalarka/components/lvgl_esp32_drivers/lvgl_touch +# Install script for directory: /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) diff --git a/build/esp-idf/lvgl_touch/liblvgl_touch.a b/build/esp-idf/lvgl_touch/liblvgl_touch.a new file mode 100644 index 0000000..2d1d22a Binary files /dev/null and b/build/esp-idf/lvgl_touch/liblvgl_touch.a differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj new file mode 100644 index 0000000..566364a Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj new file mode 100644 index 0000000..d44bad4 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj new file mode 100644 index 0000000..00d3124 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj new file mode 100644 index 0000000..082f52d Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj new file mode 100644 index 0000000..466dcb7 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj new file mode 100644 index 0000000..36268c8 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj new file mode 100644 index 0000000..c8168ce Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj new file mode 100644 index 0000000..6d0e465 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj new file mode 100644 index 0000000..f2544f3 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj new file mode 100644 index 0000000..cbed9d7 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj new file mode 100644 index 0000000..4a7b2b4 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj new file mode 100644 index 0000000..5e2cd78 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj new file mode 100644 index 0000000..58b313a Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj new file mode 100644 index 0000000..36c632e Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj new file mode 100644 index 0000000..d6a6bdb Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj new file mode 100644 index 0000000..978ebae Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj new file mode 100644 index 0000000..4a19fa1 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj new file mode 100644 index 0000000..9c73243 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj new file mode 100644 index 0000000..4b3885d Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj new file mode 100644 index 0000000..ccb2b09 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj new file mode 100644 index 0000000..6dc9bd9 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj new file mode 100644 index 0000000..291d5c5 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj new file mode 100644 index 0000000..6457326 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj new file mode 100644 index 0000000..90a2226 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj new file mode 100644 index 0000000..6ef7f03 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj new file mode 100644 index 0000000..c55c51f Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj new file mode 100644 index 0000000..a0177c1 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj new file mode 100644 index 0000000..258a6af Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj new file mode 100644 index 0000000..29207ab Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj new file mode 100644 index 0000000..cb5bba0 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj new file mode 100644 index 0000000..3cbaee1 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj new file mode 100644 index 0000000..9f14ff5 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj new file mode 100644 index 0000000..8703347 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj new file mode 100644 index 0000000..bf1b557 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj new file mode 100644 index 0000000..a765620 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj new file mode 100644 index 0000000..cca2c39 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj new file mode 100644 index 0000000..1fd1251 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj new file mode 100644 index 0000000..e821011 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj new file mode 100644 index 0000000..d2d24e8 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj new file mode 100644 index 0000000..ebd59ef Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj new file mode 100644 index 0000000..0297fc1 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj new file mode 100644 index 0000000..aa60f20 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj new file mode 100644 index 0000000..730709a Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj new file mode 100644 index 0000000..c3669b2 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj new file mode 100644 index 0000000..c215161 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj new file mode 100644 index 0000000..33ae379 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj new file mode 100644 index 0000000..4c06588 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj new file mode 100644 index 0000000..b29c071 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj new file mode 100644 index 0000000..363364e Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj new file mode 100644 index 0000000..fe849e4 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj new file mode 100644 index 0000000..2cc18cc Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj new file mode 100644 index 0000000..882b19f Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj new file mode 100644 index 0000000..abceb8f Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj new file mode 100644 index 0000000..6cc1da0 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj new file mode 100644 index 0000000..b3edfc4 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj new file mode 100644 index 0000000..15d8994 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj new file mode 100644 index 0000000..86a1c05 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj new file mode 100644 index 0000000..5fedf61 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj new file mode 100644 index 0000000..43dec03 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj new file mode 100644 index 0000000..f6c0f55 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj new file mode 100644 index 0000000..3dd4b7d Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj new file mode 100644 index 0000000..76cb229 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj new file mode 100644 index 0000000..1f26ca9 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj new file mode 100644 index 0000000..3bd6487 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj new file mode 100644 index 0000000..46e5885 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj new file mode 100644 index 0000000..ad6d349 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj new file mode 100644 index 0000000..74858e8 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj new file mode 100644 index 0000000..1cf7175 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj new file mode 100644 index 0000000..5d952b8 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj new file mode 100644 index 0000000..653ab65 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj new file mode 100644 index 0000000..814c7ce Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj new file mode 100644 index 0000000..65f2643 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj new file mode 100644 index 0000000..e7b0d73 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj new file mode 100644 index 0000000..6711a52 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj new file mode 100644 index 0000000..2655db6 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj new file mode 100644 index 0000000..d55b1e5 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj new file mode 100644 index 0000000..3eab338 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj new file mode 100644 index 0000000..e41dee4 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj new file mode 100644 index 0000000..99dff3b Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj new file mode 100644 index 0000000..3d54337 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj new file mode 100644 index 0000000..aab0f45 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj new file mode 100644 index 0000000..3567f49 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj new file mode 100644 index 0000000..7ee2827 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj new file mode 100644 index 0000000..9562e37 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj differ diff --git a/build/esp-idf/lwip/liblwip.a b/build/esp-idf/lwip/liblwip.a new file mode 100644 index 0000000..2f906ae Binary files /dev/null and b/build/esp-idf/lwip/liblwip.a differ 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 new file mode 100644 index 0000000..4295849 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj differ diff --git a/build/esp-idf/main/libmain.a b/build/esp-idf/main/libmain.a new file mode 100644 index 0000000..1dc57df Binary files /dev/null and b/build/esp-idf/main/libmain.a differ diff --git a/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj new file mode 100644 index 0000000..04ee031 Binary files /dev/null and b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj differ diff --git a/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj new file mode 100644 index 0000000..d904a97 Binary files /dev/null and b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj differ diff --git a/build/esp-idf/mbedtls/libmbedtls.a b/build/esp-idf/mbedtls/libmbedtls.a new file mode 100644 index 0000000..82bd165 Binary files /dev/null and b/build/esp-idf/mbedtls/libmbedtls.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj new file mode 100644 index 0000000..729f928 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/bignum.c.obj new file mode 100644 index 0000000..17a0cbd Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha1.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha1.c.obj new file mode 100644 index 0000000..4c31e60 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha1.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha256.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha256.c.obj new file mode 100644 index 0000000..9caddf2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha256.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha512.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha512.c.obj new file mode 100644 index 0000000..3e8e68f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_sha512.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj new file mode 100644 index 0000000..8d9e48b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_aes_xts.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_aes_xts.c.obj new file mode 100644 index 0000000..072a8da Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_aes_xts.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_bignum.c.obj new file mode 100644 index 0000000..b297105 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj new file mode 100644 index 0000000..50e239f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj new file mode 100644 index 0000000..fbccf7d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj new file mode 100644 index 0000000..4dbb2d2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj new file mode 100644 index 0000000..8a2fbf3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj new file mode 100644 index 0000000..ba410cf Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj new file mode 100644 index 0000000..0d2bb2f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj new file mode 100644 index 0000000..744ec71 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj new file mode 100644 index 0000000..de32fb2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj new file mode 100644 index 0000000..6f5f6fd Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj new file mode 100644 index 0000000..eeefe08 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj new file mode 100644 index 0000000..eefc075 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj new file mode 100644 index 0000000..434d1c5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj new file mode 100644 index 0000000..4b98108 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj new file mode 100644 index 0000000..cfec0ac Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj new file mode 100644 index 0000000..3ea1587 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj new file mode 100644 index 0000000..e941cff Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj new file mode 100644 index 0000000..636745a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj new file mode 100644 index 0000000..186ef5d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj new file mode 100644 index 0000000..c478801 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj new file mode 100644 index 0000000..29b9974 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj new file mode 100644 index 0000000..a52986e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj new file mode 100644 index 0000000..8bfeca3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj new file mode 100644 index 0000000..3a52d60 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj new file mode 100644 index 0000000..f30abb9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj new file mode 100644 index 0000000..6beecb5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj new file mode 100644 index 0000000..8783172 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj new file mode 100644 index 0000000..a786694 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj new file mode 100644 index 0000000..1ccab15 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj new file mode 100644 index 0000000..0d24396 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj new file mode 100644 index 0000000..50c6f19 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj new file mode 100644 index 0000000..0dae6dd Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj new file mode 100644 index 0000000..d5d4975 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj new file mode 100644 index 0000000..625670d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj new file mode 100644 index 0000000..b8aa325 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj new file mode 100644 index 0000000..0cc8cec Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj new file mode 100644 index 0000000..c54644e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj new file mode 100644 index 0000000..467fd54 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj new file mode 100644 index 0000000..e6824c2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj new file mode 100644 index 0000000..7cd562e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj new file mode 100644 index 0000000..02cdd2a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj new file mode 100644 index 0000000..4f2f724 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj new file mode 100644 index 0000000..a13d0ea Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj new file mode 100644 index 0000000..317e958 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj new file mode 100644 index 0000000..9fe5300 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj new file mode 100644 index 0000000..979d074 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj new file mode 100644 index 0000000..e91eb0a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj new file mode 100644 index 0000000..66f0493 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj new file mode 100644 index 0000000..faac285 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj new file mode 100644 index 0000000..e71a32b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj new file mode 100644 index 0000000..5b1d447 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj new file mode 100644 index 0000000..d7ad3dc Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj new file mode 100644 index 0000000..2e889b3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj new file mode 100644 index 0000000..e103638 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj new file mode 100644 index 0000000..480b626 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj new file mode 100644 index 0000000..d332598 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj new file mode 100644 index 0000000..56a2177 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj new file mode 100644 index 0000000..32bc807 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj new file mode 100644 index 0000000..01bb260 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj new file mode 100644 index 0000000..9253480 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj new file mode 100644 index 0000000..d9fbfb0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj new file mode 100644 index 0000000..db9eb52 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj new file mode 100644 index 0000000..d6d7363 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj new file mode 100644 index 0000000..909432c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj new file mode 100644 index 0000000..8f2580d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj new file mode 100644 index 0000000..1df5113 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj new file mode 100644 index 0000000..a41e8a7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj new file mode 100644 index 0000000..a370f69 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj new file mode 100644 index 0000000..f9f0ed5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj new file mode 100644 index 0000000..89b2157 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj new file mode 100644 index 0000000..d1ac645 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj new file mode 100644 index 0000000..3373cd2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj new file mode 100644 index 0000000..41d7203 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj new file mode 100644 index 0000000..d67881e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj new file mode 100644 index 0000000..bc9d322 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj new file mode 100644 index 0000000..4beebef Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj new file mode 100644 index 0000000..a19461b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj new file mode 100644 index 0000000..fe2b2e2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj new file mode 100644 index 0000000..9ed4237 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj new file mode 100644 index 0000000..8d35368 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj new file mode 100644 index 0000000..1cca1d6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj new file mode 100644 index 0000000..e8e38b6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj new file mode 100644 index 0000000..fe4b483 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj new file mode 100644 index 0000000..f59427a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj new file mode 100644 index 0000000..2e4b5d5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a b/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a new file mode 100644 index 0000000..f4b14f7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a b/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a new file mode 100644 index 0000000..f8047a1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a b/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a new file mode 100644 index 0000000..2df7cd0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a differ diff --git a/build/esp-idf/mbedtls/x509_crt_bundle b/build/esp-idf/mbedtls/x509_crt_bundle new file mode 100644 index 0000000..50f3450 Binary files /dev/null and b/build/esp-idf/mbedtls/x509_crt_bundle differ diff --git a/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj b/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj new file mode 100644 index 0000000..8de7c0f Binary files /dev/null and b/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj differ diff --git a/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj b/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj new file mode 100644 index 0000000..f8d2cc1 Binary files /dev/null and b/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj differ diff --git a/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj b/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj new file mode 100644 index 0000000..bd92d4b Binary files /dev/null and b/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj differ diff --git a/build/esp-idf/mdns/libmdns.a b/build/esp-idf/mdns/libmdns.a new file mode 100644 index 0000000..52e25e4 Binary files /dev/null and b/build/esp-idf/mdns/libmdns.a differ diff --git a/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj new file mode 100644 index 0000000..16a7fad Binary files /dev/null and b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj differ diff --git a/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj new file mode 100644 index 0000000..c409d71 Binary files /dev/null and b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj differ diff --git a/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj new file mode 100644 index 0000000..078f644 Binary files /dev/null and b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj differ diff --git a/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj new file mode 100644 index 0000000..ebc9eba Binary files /dev/null and b/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj differ diff --git a/build/esp-idf/mqtt/libmqtt.a b/build/esp-idf/mqtt/libmqtt.a new file mode 100644 index 0000000..822c123 Binary files /dev/null and b/build/esp-idf/mqtt/libmqtt.a differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj new file mode 100644 index 0000000..474b112 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj new file mode 100644 index 0000000..afce7f4 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj new file mode 100644 index 0000000..32da1f2 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj new file mode 100644 index 0000000..621c89a Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj new file mode 100644 index 0000000..fc6e9ec Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj new file mode 100644 index 0000000..49b4e6d Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj new file mode 100644 index 0000000..1b8d9fd Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj new file mode 100644 index 0000000..79a2914 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj new file mode 100644 index 0000000..4b0e177 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj new file mode 100644 index 0000000..88c95de Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj new file mode 100644 index 0000000..796e0ef Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj new file mode 100644 index 0000000..e8fb86b Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj new file mode 100644 index 0000000..55d568d Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj new file mode 100644 index 0000000..5d52b64 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj new file mode 100644 index 0000000..e60897d Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj differ diff --git a/build/esp-idf/newlib/libnewlib.a b/build/esp-idf/newlib/libnewlib.a new file mode 100644 index 0000000..4cb182d Binary files /dev/null and b/build/esp-idf/newlib/libnewlib.a differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_buf.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_buf.c.obj new file mode 100644 index 0000000..4789070 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_buf.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_callbacks.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_callbacks.c.obj new file mode 100644 index 0000000..fde098c Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_callbacks.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_debug.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_debug.c.obj new file mode 100644 index 0000000..2b3afb6 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_debug.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj new file mode 100644 index 0000000..ee6b8f7 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj new file mode 100644 index 0000000..c71e98a Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj new file mode 100644 index 0000000..c9765e4 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman_data.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman_data.c.obj new file mode 100644 index 0000000..606ff3e Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman_data.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj new file mode 100644 index 0000000..e190f15 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj new file mode 100644 index 0000000..63d2608 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_map.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_map.c.obj new file mode 100644 index 0000000..48b8dae Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_map.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_mem.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_mem.c.obj new file mode 100644 index 0000000..3d5c5b9 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_mem.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_npn.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_npn.c.obj new file mode 100644 index 0000000..129fcea Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_npn.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_option.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_option.c.obj new file mode 100644 index 0000000..a5eb832 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_option.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj new file mode 100644 index 0000000..74ea59f Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj new file mode 100644 index 0000000..eaba1bb Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_priority_spec.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_priority_spec.c.obj new file mode 100644 index 0000000..5515e1b Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_priority_spec.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj new file mode 100644 index 0000000..c68ae13 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj new file mode 100644 index 0000000..bd29232 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj new file mode 100644 index 0000000..b1c4ef2 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj new file mode 100644 index 0000000..4efb8b9 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj new file mode 100644 index 0000000..a40ed94 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_version.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_version.c.obj new file mode 100644 index 0000000..2e8cab0 Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_version.c.obj differ diff --git a/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj new file mode 100644 index 0000000..8c7b30f Binary files /dev/null and b/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj differ diff --git a/build/esp-idf/nghttp/libnghttp.a b/build/esp-idf/nghttp/libnghttp.a new file mode 100644 index 0000000..914d1f3 Binary files /dev/null and b/build/esp-idf/nghttp/libnghttp.a differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj new file mode 100644 index 0000000..7b45956 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj new file mode 100644 index 0000000..c5c3190 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj new file mode 100644 index 0000000..839103a Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj new file mode 100644 index 0000000..3e88d33 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj new file mode 100644 index 0000000..c19ab05 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj new file mode 100644 index 0000000..1b2f4b7 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj new file mode 100644 index 0000000..51ed105 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj new file mode 100644 index 0000000..c348d4d Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj new file mode 100644 index 0000000..8b22607 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj new file mode 100644 index 0000000..818e1c1 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj new file mode 100644 index 0000000..d9e918a Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/libnvs_flash.a b/build/esp-idf/nvs_flash/libnvs_flash.a new file mode 100644 index 0000000..3031de4 Binary files /dev/null and b/build/esp-idf/nvs_flash/libnvs_flash.a differ diff --git a/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj new file mode 100644 index 0000000..7e78343 Binary files /dev/null and b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj differ diff --git a/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj new file mode 100644 index 0000000..996debc Binary files /dev/null and b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj differ diff --git a/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj new file mode 100644 index 0000000..5dd9504 Binary files /dev/null and b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj differ diff --git a/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj new file mode 100644 index 0000000..ea9a5a6 Binary files /dev/null and b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj differ diff --git a/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj new file mode 100644 index 0000000..209a5da Binary files /dev/null and b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj differ diff --git a/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj new file mode 100644 index 0000000..b010dc0 Binary files /dev/null and b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj differ diff --git a/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj new file mode 100644 index 0000000..79fe227 Binary files /dev/null and b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj differ diff --git a/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj new file mode 100644 index 0000000..43c5179 Binary files /dev/null and b/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj differ diff --git a/build/esp-idf/openssl/libopenssl.a b/build/esp-idf/openssl/libopenssl.a new file mode 100644 index 0000000..9a4406d Binary files /dev/null and b/build/esp-idf/openssl/libopenssl.a differ diff --git a/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj new file mode 100644 index 0000000..ef99d14 Binary files /dev/null and b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj differ diff --git a/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj new file mode 100644 index 0000000..a657e66 Binary files /dev/null and b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj differ diff --git a/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj new file mode 100644 index 0000000..cff3bde Binary files /dev/null and b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj differ diff --git a/build/esp-idf/perfmon/libperfmon.a b/build/esp-idf/perfmon/libperfmon.a new file mode 100644 index 0000000..05855f4 Binary files /dev/null and b/build/esp-idf/perfmon/libperfmon.a differ diff --git a/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj b/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj new file mode 100644 index 0000000..efd3633 Binary files /dev/null and b/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj differ diff --git a/build/esp-idf/protobuf-c/libprotobuf-c.a b/build/esp-idf/protobuf-c/libprotobuf-c.a new file mode 100644 index 0000000..8783a79 Binary files /dev/null and b/build/esp-idf/protobuf-c/libprotobuf-c.a differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj new file mode 100644 index 0000000..65a9357 Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj new file mode 100644 index 0000000..e14739f Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj new file mode 100644 index 0000000..ce72899 Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj new file mode 100644 index 0000000..11799bf Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj new file mode 100644 index 0000000..7bb01da Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj new file mode 100644 index 0000000..adaa118 Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj new file mode 100644 index 0000000..50b8acd Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj new file mode 100644 index 0000000..1fe0430 Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj new file mode 100644 index 0000000..cdbc37f Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj differ diff --git a/build/esp-idf/protocomm/libprotocomm.a b/build/esp-idf/protocomm/libprotocomm.a new file mode 100644 index 0000000..73e2106 Binary files /dev/null and b/build/esp-idf/protocomm/libprotocomm.a differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj new file mode 100644 index 0000000..b14e796 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj new file mode 100644 index 0000000..e260460 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj new file mode 100644 index 0000000..b46b1f7 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj differ diff --git a/build/esp-idf/pthread/libpthread.a b/build/esp-idf/pthread/libpthread.a new file mode 100644 index 0000000..69cc740 Binary files /dev/null and b/build/esp-idf/pthread/libpthread.a differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj new file mode 100644 index 0000000..8657d43 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj new file mode 100644 index 0000000..8775a00 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj new file mode 100644 index 0000000..c401f00 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj new file mode 100644 index 0000000..9d67a0e Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj new file mode 100644 index 0000000..625f272 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj new file mode 100644 index 0000000..da16c7e Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj differ diff --git a/build/esp-idf/sdmmc/libsdmmc.a b/build/esp-idf/sdmmc/libsdmmc.a new file mode 100644 index 0000000..2562d1a Binary files /dev/null and b/build/esp-idf/sdmmc/libsdmmc.a differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj new file mode 100644 index 0000000..2ac5b8f Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/cpu_util.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/cpu_util.c.obj new file mode 100644 index 0000000..76fc26e Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/cpu_util.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj new file mode 100644 index 0000000..d9fda0d Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj new file mode 100644 index 0000000..862d381 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj new file mode 100644 index 0000000..7b83040 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj new file mode 100644 index 0000000..d22b20d Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj new file mode 100644 index 0000000..56f19c4 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj new file mode 100644 index 0000000..21d81ef Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj new file mode 100644 index 0000000..9bfb9b7 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj new file mode 100644 index 0000000..ea51de7 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj new file mode 100644 index 0000000..b97b01c Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj new file mode 100644 index 0000000..d32e7ee Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj new file mode 100644 index 0000000..ad86831 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj new file mode 100644 index 0000000..bff5c07 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj new file mode 100644 index 0000000..1cab242 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/cpu_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/cpu_hal.c.obj new file mode 100644 index 0000000..5cff61a Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/cpu_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj new file mode 100644 index 0000000..ed1c00f Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj new file mode 100644 index 0000000..aa54ecc Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj new file mode 100644 index 0000000..5889354 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj new file mode 100644 index 0000000..aae114f Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj new file mode 100644 index 0000000..9119cb4 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj new file mode 100644 index 0000000..bd89580 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj new file mode 100644 index 0000000..e5d9478 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj new file mode 100644 index 0000000..c493c2c Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mpu_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mpu_hal.c.obj new file mode 100644 index 0000000..8975d28 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mpu_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj new file mode 100644 index 0000000..56a7344 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj new file mode 100644 index 0000000..d5f74eb Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj new file mode 100644 index 0000000..c439677 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj new file mode 100644 index 0000000..2e3f930 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj new file mode 100644 index 0000000..6af2e3d Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/soc_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/soc_hal.c.obj new file mode 100644 index 0000000..52fe07f Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/soc_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj new file mode 100644 index 0000000..7e9b6d3 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj new file mode 100644 index 0000000..d63dafc Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj new file mode 100644 index 0000000..b978860 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj new file mode 100644 index 0000000..7ec1fd1 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj new file mode 100644 index 0000000..302a2c0 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj new file mode 100644 index 0000000..02eda8b Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj new file mode 100644 index 0000000..a91a080 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj new file mode 100644 index 0000000..b9a6328 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj new file mode 100644 index 0000000..4a5e439 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj new file mode 100644 index 0000000..646fba6 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj new file mode 100644 index 0000000..dc88166 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj new file mode 100644 index 0000000..c212390 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj new file mode 100644 index 0000000..f88f8c9 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj differ diff --git a/build/esp-idf/soc/libsoc.a b/build/esp-idf/soc/libsoc.a new file mode 100644 index 0000000..7a073ab Binary files /dev/null and b/build/esp-idf/soc/libsoc.a differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj new file mode 100644 index 0000000..f9f2cac Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj new file mode 100644 index 0000000..7ad3f29 Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj new file mode 100644 index 0000000..44e36bf Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj new file mode 100644 index 0000000..656d4bb Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj new file mode 100644 index 0000000..d32728e Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj new file mode 100644 index 0000000..ea5cfca Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj new file mode 100644 index 0000000..8d09d85 Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj new file mode 100644 index 0000000..576b491 Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj new file mode 100644 index 0000000..c0a31dc Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj new file mode 100644 index 0000000..fec63c8 Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj new file mode 100644 index 0000000..e33bf48 Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj new file mode 100644 index 0000000..56dfef4 Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj new file mode 100644 index 0000000..74ef2ea Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj new file mode 100644 index 0000000..9173057 Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj differ diff --git a/build/esp-idf/soc/soc/esp32/libsoc_esp32.a b/build/esp-idf/soc/soc/esp32/libsoc_esp32.a new file mode 100644 index 0000000..7ef2539 Binary files /dev/null and b/build/esp-idf/soc/soc/esp32/libsoc_esp32.a differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj new file mode 100644 index 0000000..83d71a0 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj new file mode 100644 index 0000000..1a4933e Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj new file mode 100644 index 0000000..d3ffffe Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj new file mode 100644 index 0000000..ece92b0 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj new file mode 100644 index 0000000..cbd0982 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj new file mode 100644 index 0000000..1240ab9 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj new file mode 100644 index 0000000..ba72b98 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj new file mode 100644 index 0000000..dfcfa3b Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj new file mode 100644 index 0000000..0d16901 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj new file mode 100644 index 0000000..e39bbe4 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj new file mode 100644 index 0000000..b240a79 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj new file mode 100644 index 0000000..5f023aa Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj new file mode 100644 index 0000000..aa4fe82 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj new file mode 100644 index 0000000..865564a Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj differ diff --git a/build/esp-idf/spi_flash/libspi_flash.a b/build/esp-idf/spi_flash/libspi_flash.a new file mode 100644 index 0000000..3c9862a Binary files /dev/null and b/build/esp-idf/spi_flash/libspi_flash.a differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj new file mode 100644 index 0000000..3910ebb Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj new file mode 100644 index 0000000..6f51d9d Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj new file mode 100644 index 0000000..77dacfc Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj new file mode 100644 index 0000000..7f5e03d Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj new file mode 100644 index 0000000..60be84b Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj new file mode 100644 index 0000000..05ea3bc Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj new file mode 100644 index 0000000..a2e1798 Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj differ diff --git a/build/esp-idf/spiffs/libspiffs.a b/build/esp-idf/spiffs/libspiffs.a new file mode 100644 index 0000000..0e3d59c Binary files /dev/null and b/build/esp-idf/spiffs/libspiffs.a differ diff --git a/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj new file mode 100644 index 0000000..49fda0e Binary files /dev/null and b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj differ diff --git a/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj new file mode 100644 index 0000000..45464ba Binary files /dev/null and b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj differ diff --git a/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj new file mode 100644 index 0000000..77792a6 Binary files /dev/null and b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj differ diff --git a/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj new file mode 100644 index 0000000..3fb9f80 Binary files /dev/null and b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj differ diff --git a/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj new file mode 100644 index 0000000..31e03de Binary files /dev/null and b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj differ diff --git a/build/esp-idf/tcp_transport/libtcp_transport.a b/build/esp-idf/tcp_transport/libtcp_transport.a new file mode 100644 index 0000000..593e6b4 Binary files /dev/null and b/build/esp-idf/tcp_transport/libtcp_transport.a differ diff --git a/build/esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj b/build/esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj new file mode 100644 index 0000000..23b1799 Binary files /dev/null and b/build/esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj differ diff --git a/build/esp-idf/tcpip_adapter/libtcpip_adapter.a b/build/esp-idf/tcpip_adapter/libtcpip_adapter.a new file mode 100644 index 0000000..58a1a69 Binary files /dev/null and b/build/esp-idf/tcpip_adapter/libtcpip_adapter.a differ diff --git a/build/esp-idf/tinyusb/cmake_install.cmake b/build/esp-idf/tinyusb/cmake_install.cmake new file mode 100644 index 0000000..1bcfb00 --- /dev/null +++ b/build/esp-idf/tinyusb/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/tinyusb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj b/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj new file mode 100644 index 0000000..f603a54 Binary files /dev/null and b/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj differ diff --git a/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj b/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj new file mode 100644 index 0000000..c468eb9 Binary files /dev/null and b/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj differ diff --git a/build/esp-idf/ulp/libulp.a b/build/esp-idf/ulp/libulp.a new file mode 100644 index 0000000..7e0d1f8 Binary files /dev/null and b/build/esp-idf/ulp/libulp.a differ diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj new file mode 100644 index 0000000..0c3a103 Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj differ diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj new file mode 100644 index 0000000..88fffbc Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj differ diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj new file mode 100644 index 0000000..1922871 Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj differ diff --git a/build/esp-idf/unity/libunity.a b/build/esp-idf/unity/libunity.a new file mode 100644 index 0000000..bbbc0e6 Binary files /dev/null and b/build/esp-idf/unity/libunity.a differ diff --git a/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj new file mode 100644 index 0000000..a346cd8 Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj differ diff --git a/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj new file mode 100644 index 0000000..25d0a25 Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj differ diff --git a/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj new file mode 100644 index 0000000..b0306c2 Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj differ diff --git a/build/esp-idf/vfs/libvfs.a b/build/esp-idf/vfs/libvfs.a new file mode 100644 index 0000000..a36d6af Binary files /dev/null and b/build/esp-idf/vfs/libvfs.a differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj new file mode 100644 index 0000000..48aa139 Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj new file mode 100644 index 0000000..f1b0327 Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj new file mode 100644 index 0000000..b46146a Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj new file mode 100644 index 0000000..dc3e8fe Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj new file mode 100644 index 0000000..103b899 Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj new file mode 100644 index 0000000..7e32d5e Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj new file mode 100644 index 0000000..811b155 Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/libwear_levelling.a b/build/esp-idf/wear_levelling/libwear_levelling.a new file mode 100644 index 0000000..a90f346 Binary files /dev/null and b/build/esp-idf/wear_levelling/libwear_levelling.a differ diff --git a/build/esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj b/build/esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj new file mode 100644 index 0000000..53b9102 Binary files /dev/null and b/build/esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj differ diff --git a/build/esp-idf/wifi/libwifi.a b/build/esp-idf/wifi/libwifi.a new file mode 100644 index 0000000..cfe40d4 Binary files /dev/null and b/build/esp-idf/wifi/libwifi.a differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj new file mode 100644 index 0000000..2f2a7b8 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj new file mode 100644 index 0000000..6582e9c Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj new file mode 100644 index 0000000..163b5da Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj new file mode 100644 index 0000000..ba7988e Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj new file mode 100644 index 0000000..4013814 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj new file mode 100644 index 0000000..3db03b7 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj new file mode 100644 index 0000000..1d014d0 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj new file mode 100644 index 0000000..82d8caf Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj new file mode 100644 index 0000000..984c376 Binary files /dev/null and b/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj differ diff --git a/build/esp-idf/wifi_provisioning/libwifi_provisioning.a b/build/esp-idf/wifi_provisioning/libwifi_provisioning.a new file mode 100644 index 0000000..1dba0ab Binary files /dev/null and b/build/esp-idf/wifi_provisioning/libwifi_provisioning.a differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj new file mode 100644 index 0000000..700fb3d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj new file mode 100644 index 0000000..31db6b9 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj new file mode 100644 index 0000000..cb52480 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj new file mode 100644 index 0000000..cce1823 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj new file mode 100644 index 0000000..a087b36 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj new file mode 100644 index 0000000..391e70e Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj new file mode 100644 index 0000000..b0f0470 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj new file mode 100644 index 0000000..1fbd940 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj new file mode 100644 index 0000000..5fc1353 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj new file mode 100644 index 0000000..a164391 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj new file mode 100644 index 0000000..1eb512e Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj new file mode 100644 index 0000000..5ce258c Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj new file mode 100644 index 0000000..defeb6a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj new file mode 100644 index 0000000..63bd1c6 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj new file mode 100644 index 0000000..c14ee91 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj new file mode 100644 index 0000000..8eda2ac Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj new file mode 100644 index 0000000..932cbd7 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj new file mode 100644 index 0000000..9d63b45 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj new file mode 100644 index 0000000..b330726 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj new file mode 100644 index 0000000..9f5692a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj new file mode 100644 index 0000000..d348264 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj new file mode 100644 index 0000000..fe61bc4 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj new file mode 100644 index 0000000..447b527 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj new file mode 100644 index 0000000..960dfc3 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj new file mode 100644 index 0000000..66a8a5d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj new file mode 100644 index 0000000..3e89167 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj new file mode 100644 index 0000000..49bfcc6 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj new file mode 100644 index 0000000..b617b17 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj new file mode 100644 index 0000000..ca0bb79 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj new file mode 100644 index 0000000..caffb62 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj new file mode 100644 index 0000000..e4f2717 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj new file mode 100644 index 0000000..10a29c9 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj new file mode 100644 index 0000000..6300394 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj new file mode 100644 index 0000000..501ce9d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj new file mode 100644 index 0000000..ccac9d1 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj new file mode 100644 index 0000000..0df22a3 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj new file mode 100644 index 0000000..655ca8b Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj new file mode 100644 index 0000000..cc32d9d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj new file mode 100644 index 0000000..7d3fd9c Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj new file mode 100644 index 0000000..1bbc6f9 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj new file mode 100644 index 0000000..25a5392 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj new file mode 100644 index 0000000..15e1900 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj new file mode 100644 index 0000000..95b5dd5 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj new file mode 100644 index 0000000..45f99a0 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj new file mode 100644 index 0000000..a160eec Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj new file mode 100644 index 0000000..f2c1901 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj new file mode 100644 index 0000000..62bac52 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj new file mode 100644 index 0000000..998eb81 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj new file mode 100644 index 0000000..3edf533 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj new file mode 100644 index 0000000..7e6759a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj new file mode 100644 index 0000000..de28045 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj new file mode 100644 index 0000000..55e5e97 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj new file mode 100644 index 0000000..f7bed9a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj new file mode 100644 index 0000000..219e122 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj new file mode 100644 index 0000000..ccc7c97 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj new file mode 100644 index 0000000..d8813d4 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj new file mode 100644 index 0000000..b304b22 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj new file mode 100644 index 0000000..d87a654 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj new file mode 100644 index 0000000..aadc616 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj new file mode 100644 index 0000000..98fdd33 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj new file mode 100644 index 0000000..a6d60c5 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj new file mode 100644 index 0000000..a55b74c Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj new file mode 100644 index 0000000..0b67d75 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj new file mode 100644 index 0000000..b8c738f Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj new file mode 100644 index 0000000..fab69ad Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj new file mode 100644 index 0000000..af9cc3d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj new file mode 100644 index 0000000..1e63301 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj new file mode 100644 index 0000000..08f4a2c Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj new file mode 100644 index 0000000..5173713 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj new file mode 100644 index 0000000..7c82b15 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj new file mode 100644 index 0000000..df56f81 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj new file mode 100644 index 0000000..cac9d27 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj new file mode 100644 index 0000000..1fdbc96 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj new file mode 100644 index 0000000..d0b0b9e Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj new file mode 100644 index 0000000..bea6d58 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj new file mode 100644 index 0000000..33ed7c3 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj new file mode 100644 index 0000000..471f56a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj new file mode 100644 index 0000000..d1df455 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj new file mode 100644 index 0000000..e9f3251 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj new file mode 100644 index 0000000..b7fc727 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj new file mode 100644 index 0000000..749e8df Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj new file mode 100644 index 0000000..7ee4e14 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj new file mode 100644 index 0000000..b8aa21e Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj new file mode 100644 index 0000000..7f11628 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj new file mode 100644 index 0000000..a13ca98 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj new file mode 100644 index 0000000..69843e6 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj new file mode 100644 index 0000000..97089d5 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/libwpa_supplicant.a b/build/esp-idf/wpa_supplicant/libwpa_supplicant.a new file mode 100644 index 0000000..6596945 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/libwpa_supplicant.a differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj new file mode 100644 index 0000000..8a1cb03 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj new file mode 100644 index 0000000..65cfbbb Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj new file mode 100644 index 0000000..7ff6331 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/esp32/trax_init.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/esp32/trax_init.c.obj new file mode 100644 index 0000000..c2ed5ab Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/esp32/trax_init.c.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj new file mode 100644 index 0000000..eb00376 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa_asm.S.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa_asm.S.obj new file mode 100644 index 0000000..ab12883 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa_asm.S.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj new file mode 100644 index 0000000..f0f8756 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj differ diff --git a/build/esp-idf/xtensa/libxtensa.a b/build/esp-idf/xtensa/libxtensa.a new file mode 100644 index 0000000..c5c5268 Binary files /dev/null and b/build/esp-idf/xtensa/libxtensa.a differ diff --git a/build/kconfigs.in b/build/kconfigs.in index 96b5313..04dea2a 100644 --- a/build/kconfigs.in +++ b/build/kconfigs.in @@ -41,4 +41,6 @@ source "/home/mithras/esp/esp-idf/components/unity/Kconfig" source "/home/mithras/esp/esp-idf/components/vfs/Kconfig" source "/home/mithras/esp/esp-idf/components/wear_levelling/Kconfig" source "/home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig" -source "/home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig" \ No newline at end of file +source "/home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig" +source "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/Kconfig" +source "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/Kconfig" \ No newline at end of file diff --git a/build/ldgen_libraries b/build/ldgen_libraries index 48db0b5..130da66 100644 --- a/build/ldgen_libraries +++ b/build/ldgen_libraries @@ -67,5 +67,11 @@ /home/mithras/esp/bakalarka/build/esp-idf/ca/libca.a /home/mithras/esp/bakalarka/build/esp-idf/cmd_nvs/libcmd_nvs.a /home/mithras/esp/bakalarka/build/esp-idf/cmd_system/libcmd_system.a +/home/mithras/esp/bakalarka/build/esp-idf/lvgl/liblvgl.a +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a +/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/liblv_examples.a +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/liblvgl_tft.a +/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/liblvgl_touch.a +/home/mithras/esp/bakalarka/build/esp-idf/display/libdisplay.a /home/mithras/esp/bakalarka/build/esp-idf/wifi/libwifi.a /home/mithras/esp/bakalarka/build/esp-idf/https_server/libhttps_server.a diff --git a/build/ldgen_libraries.in b/build/ldgen_libraries.in index 58550ac..55daca2 100644 --- a/build/ldgen_libraries.in +++ b/build/ldgen_libraries.in @@ -67,5 +67,11 @@ $ $ $ $ +$ +$ +$ +$ +$ +$ $ $ \ No newline at end of file diff --git a/build/partition_table/partition-table.bin b/build/partition_table/partition-table.bin new file mode 100644 index 0000000..b323d8a Binary files /dev/null and b/build/partition_table/partition-table.bin differ diff --git a/build/project_description.json b/build/project_description.json index 69b6806..9b1e567 100644 --- a/build/project_description.json +++ b/build/project_description.json @@ -12,9 +12,9 @@ "monitor_baud" : "115200", "monitor_toolprefix": "xtensa-esp32-elf-", "config_environment" : { - "COMPONENT_KCONFIGS" : "/home/mithras/esp/esp-idf/components/app_trace/Kconfig;/home/mithras/esp/esp-idf/components/bt/Kconfig;/home/mithras/esp/esp-idf/components/coap/Kconfig;/home/mithras/esp/esp-idf/components/driver/Kconfig;/home/mithras/esp/esp-idf/components/efuse/Kconfig;/home/mithras/esp/esp-idf/components/esp-tls/Kconfig;/home/mithras/esp/esp-idf/components/esp32/Kconfig;/home/mithras/esp/esp-idf/components/esp_adc_cal/Kconfig;/home/mithras/esp/esp-idf/components/esp_common/Kconfig;/home/mithras/esp/esp-idf/components/esp_eth/Kconfig;/home/mithras/esp/esp-idf/components/esp_event/Kconfig;/home/mithras/esp/esp-idf/components/esp_gdbstub/Kconfig;/home/mithras/esp/esp-idf/components/esp_http_client/Kconfig;/home/mithras/esp/esp-idf/components/esp_http_server/Kconfig;/home/mithras/esp/esp-idf/components/esp_https_ota/Kconfig;/home/mithras/esp/esp-idf/components/esp_https_server/Kconfig;/home/mithras/esp/esp-idf/components/esp_netif/Kconfig;/home/mithras/esp/esp-idf/components/esp_system/Kconfig;/home/mithras/esp/esp-idf/components/esp_timer/Kconfig;/home/mithras/esp/esp-idf/components/esp_wifi/Kconfig;/home/mithras/esp/esp-idf/components/espcoredump/Kconfig;/home/mithras/esp/esp-idf/components/fatfs/Kconfig;/home/mithras/esp/esp-idf/components/freemodbus/Kconfig;/home/mithras/esp/esp-idf/components/freertos/Kconfig;/home/mithras/esp/esp-idf/components/heap/Kconfig;/home/mithras/esp/esp-idf/components/jsmn/Kconfig;/home/mithras/esp/esp-idf/components/libsodium/Kconfig;/home/mithras/esp/esp-idf/components/log/Kconfig;/home/mithras/esp/esp-idf/components/lwip/Kconfig;/home/mithras/esp/esp-idf/components/mbedtls/Kconfig;/home/mithras/esp/esp-idf/components/mdns/Kconfig;/home/mithras/esp/esp-idf/components/mqtt/Kconfig;/home/mithras/esp/esp-idf/components/newlib/Kconfig;/home/mithras/esp/esp-idf/components/nvs_flash/Kconfig;/home/mithras/esp/esp-idf/components/openssl/Kconfig;/home/mithras/esp/esp-idf/components/pthread/Kconfig;/home/mithras/esp/esp-idf/components/spi_flash/Kconfig;/home/mithras/esp/esp-idf/components/spiffs/Kconfig;/home/mithras/esp/esp-idf/components/tinyusb/Kconfig;/home/mithras/esp/esp-idf/components/unity/Kconfig;/home/mithras/esp/esp-idf/components/vfs/Kconfig;/home/mithras/esp/esp-idf/components/wear_levelling/Kconfig;/home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig;/home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig", + "COMPONENT_KCONFIGS" : "/home/mithras/esp/esp-idf/components/app_trace/Kconfig;/home/mithras/esp/esp-idf/components/bt/Kconfig;/home/mithras/esp/esp-idf/components/coap/Kconfig;/home/mithras/esp/esp-idf/components/driver/Kconfig;/home/mithras/esp/esp-idf/components/efuse/Kconfig;/home/mithras/esp/esp-idf/components/esp-tls/Kconfig;/home/mithras/esp/esp-idf/components/esp32/Kconfig;/home/mithras/esp/esp-idf/components/esp_adc_cal/Kconfig;/home/mithras/esp/esp-idf/components/esp_common/Kconfig;/home/mithras/esp/esp-idf/components/esp_eth/Kconfig;/home/mithras/esp/esp-idf/components/esp_event/Kconfig;/home/mithras/esp/esp-idf/components/esp_gdbstub/Kconfig;/home/mithras/esp/esp-idf/components/esp_http_client/Kconfig;/home/mithras/esp/esp-idf/components/esp_http_server/Kconfig;/home/mithras/esp/esp-idf/components/esp_https_ota/Kconfig;/home/mithras/esp/esp-idf/components/esp_https_server/Kconfig;/home/mithras/esp/esp-idf/components/esp_netif/Kconfig;/home/mithras/esp/esp-idf/components/esp_system/Kconfig;/home/mithras/esp/esp-idf/components/esp_timer/Kconfig;/home/mithras/esp/esp-idf/components/esp_wifi/Kconfig;/home/mithras/esp/esp-idf/components/espcoredump/Kconfig;/home/mithras/esp/esp-idf/components/fatfs/Kconfig;/home/mithras/esp/esp-idf/components/freemodbus/Kconfig;/home/mithras/esp/esp-idf/components/freertos/Kconfig;/home/mithras/esp/esp-idf/components/heap/Kconfig;/home/mithras/esp/esp-idf/components/jsmn/Kconfig;/home/mithras/esp/esp-idf/components/libsodium/Kconfig;/home/mithras/esp/esp-idf/components/log/Kconfig;/home/mithras/esp/esp-idf/components/lwip/Kconfig;/home/mithras/esp/esp-idf/components/mbedtls/Kconfig;/home/mithras/esp/esp-idf/components/mdns/Kconfig;/home/mithras/esp/esp-idf/components/mqtt/Kconfig;/home/mithras/esp/esp-idf/components/newlib/Kconfig;/home/mithras/esp/esp-idf/components/nvs_flash/Kconfig;/home/mithras/esp/esp-idf/components/openssl/Kconfig;/home/mithras/esp/esp-idf/components/pthread/Kconfig;/home/mithras/esp/esp-idf/components/spi_flash/Kconfig;/home/mithras/esp/esp-idf/components/spiffs/Kconfig;/home/mithras/esp/esp-idf/components/tinyusb/Kconfig;/home/mithras/esp/esp-idf/components/unity/Kconfig;/home/mithras/esp/esp-idf/components/vfs/Kconfig;/home/mithras/esp/esp-idf/components/wear_levelling/Kconfig;/home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig;/home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig;/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/Kconfig;/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/Kconfig", "COMPONENT_KCONFIGS_PROJBUILD" : "/home/mithras/esp/esp-idf/components/app_update/Kconfig.projbuild;/home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild;/home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild;/home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild;/home/mithras/esp/bakalarka/main/Kconfig.projbuild" }, - "build_components" : [ "app_trace", "app_update", "asio", "bootloader", "bootloader_support", "bt", "ca", "cbor", "cmd_nvs", "cmd_system", "coap", "console", "cxx", "driver", "efuse", "esp-tls", "esp32", "esp_adc_cal", "esp_common", "esp_eth", "esp_event", "esp_gdbstub", "esp_http_client", "esp_http_server", "esp_https_ota", "esp_https_server", "esp_local_ctrl", "esp_netif", "esp_ringbuf", "esp_rom", "esp_serial_slave_link", "esp_system", "esp_timer", "esp_websocket_client", "esp_wifi", "espcoredump", "esptool_py", "expat", "fatfs", "files", "freemodbus", "freertos", "heap", "https_server", "idf_test", "jsmn", "json", "libsodium", "log", "lwip", "main", "mbedtls", "mdns", "mqtt", "newlib", "nghttp", "nvs_flash", "openssl", "partition_table", "perfmon", "protobuf-c", "protocomm", "pthread", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "tcpip_adapter", "tinyusb", "ulp", "unity", "vfs", "wear_levelling", "wifi", "wifi_provisioning", "wpa_supplicant", "xtensa", "" ], - "build_component_paths" : [ "/home/mithras/esp/esp-idf/components/app_trace", "/home/mithras/esp/esp-idf/components/app_update", "/home/mithras/esp/esp-idf/components/asio", "/home/mithras/esp/esp-idf/components/bootloader", "/home/mithras/esp/esp-idf/components/bootloader_support", "/home/mithras/esp/esp-idf/components/bt", "/home/mithras/esp/bakalarka/components/ca", "/home/mithras/esp/esp-idf/components/cbor", "/home/mithras/esp/bakalarka/components/cmd_nvs", "/home/mithras/esp/bakalarka/components/cmd_system", "/home/mithras/esp/esp-idf/components/coap", "/home/mithras/esp/esp-idf/components/console", "/home/mithras/esp/esp-idf/components/cxx", "/home/mithras/esp/esp-idf/components/driver", "/home/mithras/esp/esp-idf/components/efuse", "/home/mithras/esp/esp-idf/components/esp-tls", "/home/mithras/esp/esp-idf/components/esp32", "/home/mithras/esp/esp-idf/components/esp_adc_cal", "/home/mithras/esp/esp-idf/components/esp_common", "/home/mithras/esp/esp-idf/components/esp_eth", "/home/mithras/esp/esp-idf/components/esp_event", "/home/mithras/esp/esp-idf/components/esp_gdbstub", "/home/mithras/esp/esp-idf/components/esp_http_client", "/home/mithras/esp/esp-idf/components/esp_http_server", "/home/mithras/esp/esp-idf/components/esp_https_ota", "/home/mithras/esp/esp-idf/components/esp_https_server", "/home/mithras/esp/esp-idf/components/esp_local_ctrl", "/home/mithras/esp/esp-idf/components/esp_netif", "/home/mithras/esp/esp-idf/components/esp_ringbuf", "/home/mithras/esp/esp-idf/components/esp_rom", "/home/mithras/esp/esp-idf/components/esp_serial_slave_link", "/home/mithras/esp/esp-idf/components/esp_system", "/home/mithras/esp/esp-idf/components/esp_timer", "/home/mithras/esp/esp-idf/components/esp_websocket_client", "/home/mithras/esp/esp-idf/components/esp_wifi", "/home/mithras/esp/esp-idf/components/espcoredump", "/home/mithras/esp/esp-idf/components/esptool_py", "/home/mithras/esp/esp-idf/components/expat", "/home/mithras/esp/esp-idf/components/fatfs", "/home/mithras/esp/bakalarka/components/files", "/home/mithras/esp/esp-idf/components/freemodbus", "/home/mithras/esp/esp-idf/components/freertos", "/home/mithras/esp/esp-idf/components/heap", "/home/mithras/esp/bakalarka/components/https_server", "/home/mithras/esp/esp-idf/components/idf_test", "/home/mithras/esp/esp-idf/components/jsmn", "/home/mithras/esp/esp-idf/components/json", "/home/mithras/esp/esp-idf/components/libsodium", "/home/mithras/esp/esp-idf/components/log", "/home/mithras/esp/esp-idf/components/lwip", "/home/mithras/esp/bakalarka/main", "/home/mithras/esp/esp-idf/components/mbedtls", "/home/mithras/esp/esp-idf/components/mdns", "/home/mithras/esp/esp-idf/components/mqtt", "/home/mithras/esp/esp-idf/components/newlib", "/home/mithras/esp/esp-idf/components/nghttp", "/home/mithras/esp/esp-idf/components/nvs_flash", "/home/mithras/esp/esp-idf/components/openssl", "/home/mithras/esp/esp-idf/components/partition_table", "/home/mithras/esp/esp-idf/components/perfmon", "/home/mithras/esp/esp-idf/components/protobuf-c", "/home/mithras/esp/esp-idf/components/protocomm", "/home/mithras/esp/esp-idf/components/pthread", "/home/mithras/esp/esp-idf/components/sdmmc", "/home/mithras/esp/esp-idf/components/soc", "/home/mithras/esp/esp-idf/components/spi_flash", "/home/mithras/esp/esp-idf/components/spiffs", "/home/mithras/esp/esp-idf/components/tcp_transport", "/home/mithras/esp/esp-idf/components/tcpip_adapter", "/home/mithras/esp/esp-idf/components/tinyusb", "/home/mithras/esp/esp-idf/components/ulp", "/home/mithras/esp/esp-idf/components/unity", "/home/mithras/esp/esp-idf/components/vfs", "/home/mithras/esp/esp-idf/components/wear_levelling", "/home/mithras/esp/bakalarka/components/wifi", "/home/mithras/esp/esp-idf/components/wifi_provisioning", "/home/mithras/esp/esp-idf/components/wpa_supplicant", "/home/mithras/esp/esp-idf/components/xtensa", "" ] + "build_components" : [ "app_trace", "app_update", "asio", "bootloader", "bootloader_support", "bt", "ca", "cbor", "cmd_nvs", "cmd_system", "coap", "console", "cxx", "display", "driver", "efuse", "esp-tls", "esp32", "esp_adc_cal", "esp_common", "esp_eth", "esp_event", "esp_gdbstub", "esp_http_client", "esp_http_server", "esp_https_ota", "esp_https_server", "esp_local_ctrl", "esp_netif", "esp_ringbuf", "esp_rom", "esp_serial_slave_link", "esp_system", "esp_timer", "esp_websocket_client", "esp_wifi", "espcoredump", "esptool_py", "expat", "fatfs", "files", "freemodbus", "freertos", "heap", "https_server", "idf_test", "jsmn", "json", "libsodium", "log", "lv_examples", "lvgl", "lvgl_esp32_drivers", "lvgl_tft", "lvgl_touch", "lwip", "main", "mbedtls", "mdns", "mqtt", "newlib", "nghttp", "nvs_flash", "openssl", "partition_table", "perfmon", "protobuf-c", "protocomm", "pthread", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "tcpip_adapter", "tinyusb", "ulp", "unity", "vfs", "wear_levelling", "wifi", "wifi_provisioning", "wpa_supplicant", "xtensa", "" ], + "build_component_paths" : [ "/home/mithras/esp/esp-idf/components/app_trace", "/home/mithras/esp/esp-idf/components/app_update", "/home/mithras/esp/esp-idf/components/asio", "/home/mithras/esp/esp-idf/components/bootloader", "/home/mithras/esp/esp-idf/components/bootloader_support", "/home/mithras/esp/esp-idf/components/bt", "/home/mithras/esp/bakalarka/components/ca", "/home/mithras/esp/esp-idf/components/cbor", "/home/mithras/esp/bakalarka/components/cmd_nvs", "/home/mithras/esp/bakalarka/components/cmd_system", "/home/mithras/esp/esp-idf/components/coap", "/home/mithras/esp/esp-idf/components/console", "/home/mithras/esp/esp-idf/components/cxx", "/home/mithras/esp/bakalarka/components/display", "/home/mithras/esp/esp-idf/components/driver", "/home/mithras/esp/esp-idf/components/efuse", "/home/mithras/esp/esp-idf/components/esp-tls", "/home/mithras/esp/esp-idf/components/esp32", "/home/mithras/esp/esp-idf/components/esp_adc_cal", "/home/mithras/esp/esp-idf/components/esp_common", "/home/mithras/esp/esp-idf/components/esp_eth", "/home/mithras/esp/esp-idf/components/esp_event", "/home/mithras/esp/esp-idf/components/esp_gdbstub", "/home/mithras/esp/esp-idf/components/esp_http_client", "/home/mithras/esp/esp-idf/components/esp_http_server", "/home/mithras/esp/esp-idf/components/esp_https_ota", "/home/mithras/esp/esp-idf/components/esp_https_server", "/home/mithras/esp/esp-idf/components/esp_local_ctrl", "/home/mithras/esp/esp-idf/components/esp_netif", "/home/mithras/esp/esp-idf/components/esp_ringbuf", "/home/mithras/esp/esp-idf/components/esp_rom", "/home/mithras/esp/esp-idf/components/esp_serial_slave_link", "/home/mithras/esp/esp-idf/components/esp_system", "/home/mithras/esp/esp-idf/components/esp_timer", "/home/mithras/esp/esp-idf/components/esp_websocket_client", "/home/mithras/esp/esp-idf/components/esp_wifi", "/home/mithras/esp/esp-idf/components/espcoredump", "/home/mithras/esp/esp-idf/components/esptool_py", "/home/mithras/esp/esp-idf/components/expat", "/home/mithras/esp/esp-idf/components/fatfs", "/home/mithras/esp/bakalarka/components/files", "/home/mithras/esp/esp-idf/components/freemodbus", "/home/mithras/esp/esp-idf/components/freertos", "/home/mithras/esp/esp-idf/components/heap", "/home/mithras/esp/bakalarka/components/https_server", "/home/mithras/esp/esp-idf/components/idf_test", "/home/mithras/esp/esp-idf/components/jsmn", "/home/mithras/esp/esp-idf/components/json", "/home/mithras/esp/esp-idf/components/libsodium", "/home/mithras/esp/esp-idf/components/log", "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lv_examples", "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl", "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers", "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft", "/home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch", "/home/mithras/esp/esp-idf/components/lwip", "/home/mithras/esp/bakalarka/main", "/home/mithras/esp/esp-idf/components/mbedtls", "/home/mithras/esp/esp-idf/components/mdns", "/home/mithras/esp/esp-idf/components/mqtt", "/home/mithras/esp/esp-idf/components/newlib", "/home/mithras/esp/esp-idf/components/nghttp", "/home/mithras/esp/esp-idf/components/nvs_flash", "/home/mithras/esp/esp-idf/components/openssl", "/home/mithras/esp/esp-idf/components/partition_table", "/home/mithras/esp/esp-idf/components/perfmon", "/home/mithras/esp/esp-idf/components/protobuf-c", "/home/mithras/esp/esp-idf/components/protocomm", "/home/mithras/esp/esp-idf/components/pthread", "/home/mithras/esp/esp-idf/components/sdmmc", "/home/mithras/esp/esp-idf/components/soc", "/home/mithras/esp/esp-idf/components/spi_flash", "/home/mithras/esp/esp-idf/components/spiffs", "/home/mithras/esp/esp-idf/components/tcp_transport", "/home/mithras/esp/esp-idf/components/tcpip_adapter", "/home/mithras/esp/esp-idf/components/tinyusb", "/home/mithras/esp/esp-idf/components/ulp", "/home/mithras/esp/esp-idf/components/unity", "/home/mithras/esp/esp-idf/components/vfs", "/home/mithras/esp/esp-idf/components/wear_levelling", "/home/mithras/esp/bakalarka/components/wifi", "/home/mithras/esp/esp-idf/components/wifi_provisioning", "/home/mithras/esp/esp-idf/components/wpa_supplicant", "/home/mithras/esp/esp-idf/components/xtensa", "" ] } diff --git a/build/project_elf_src.c b/build/project_elf_src.c new file mode 100644 index 0000000..e69de29 diff --git a/build/prvtkey.pem.S b/build/prvtkey.pem.S new file mode 100644 index 0000000..9eb49f1 --- /dev/null +++ b/build/prvtkey.pem.S @@ -0,0 +1,126 @@ +/* * Data converted from /home/mithras/esp/bakalarka/components/https_server/certs/prvtkey.pem + * (null byte appended) + */ +.data +.section .rodata.embedded + +.global prvtkey_pem +prvtkey_pem: + +.global _binary_prvtkey_pem_start +_binary_prvtkey_pem_start: /* for objcopy compatibility */ +.byte 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x50, 0x52, 0x49, 0x56, 0x41 +.byte 0x54, 0x45, 0x20, 0x4b, 0x45, 0x59, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x4d, 0x49, 0x49, 0x45 +.byte 0x76, 0x67, 0x49, 0x42, 0x41, 0x44, 0x41, 0x4e, 0x42, 0x67, 0x6b, 0x71, 0x68, 0x6b, 0x69, 0x47 +.byte 0x39, 0x77, 0x30, 0x42, 0x41, 0x51, 0x45, 0x46, 0x41, 0x41, 0x53, 0x43, 0x42, 0x4b, 0x67, 0x77 +.byte 0x67, 0x67, 0x53, 0x6b, 0x41, 0x67, 0x45, 0x41, 0x41, 0x6f, 0x49, 0x42, 0x41, 0x51, 0x43, 0x77 +.byte 0x59, 0x70, 0x37, 0x65, 0x70, 0x7a, 0x2b, 0x2b, 0x30, 0x51, 0x6b, 0x48, 0x0a, 0x4a, 0x69, 0x6f +.byte 0x4d, 0x44, 0x37, 0x55, 0x37, 0x42, 0x69, 0x74, 0x4c, 0x67, 0x70, 0x63, 0x59, 0x50, 0x69, 0x38 +.byte 0x43, 0x69, 0x64, 0x31, 0x6c, 0x37, 0x73, 0x6e, 0x74, 0x36, 0x4b, 0x70, 0x35, 0x34, 0x36, 0x69 +.byte 0x51, 0x73, 0x44, 0x42, 0x4a, 0x33, 0x6c, 0x38, 0x78, 0x6e, 0x52, 0x74, 0x50, 0x55, 0x37, 0x41 +.byte 0x4e, 0x45, 0x73, 0x6a, 0x54, 0x38, 0x4b, 0x78, 0x49, 0x48, 0x6d, 0x79, 0x77, 0x0a, 0x68, 0x2f +.byte 0x4e, 0x47, 0x70, 0x39, 0x34, 0x46, 0x6c, 0x4f, 0x4b, 0x52, 0x77, 0x33, 0x61, 0x68, 0x68, 0x33 +.byte 0x79, 0x55, 0x47, 0x74, 0x6f, 0x77, 0x53, 0x39, 0x76, 0x64, 0x48, 0x76, 0x2b, 0x53, 0x2b, 0x54 +.byte 0x41, 0x66, 0x75, 0x6a, 0x30, 0x37, 0x4e, 0x6a, 0x53, 0x6e, 0x4b, 0x49, 0x79, 0x76, 0x35, 0x4b +.byte 0x6e, 0x47, 0x5a, 0x4a, 0x2b, 0x66, 0x44, 0x46, 0x6c, 0x34, 0x51, 0x31, 0x74, 0x54, 0x0a, 0x61 +.byte 0x51, 0x4a, 0x79, 0x62, 0x59, 0x31, 0x5a, 0x34, 0x69, 0x74, 0x69, 0x72, 0x4c, 0x36, 0x2f, 0x32 +.byte 0x43, 0x47, 0x45, 0x6d, 0x38, 0x67, 0x2f, 0x69, 0x59, 0x68, 0x4c, 0x4e, 0x44, 0x42, 0x73, 0x52 +.byte 0x4d, 0x66, 0x70, 0x44, 0x70, 0x66, 0x58, 0x65, 0x34, 0x55, 0x52, 0x79, 0x57, 0x69, 0x4d, 0x33 +.byte 0x52, 0x68, 0x66, 0x37, 0x7a, 0x74, 0x71, 0x5a, 0x64, 0x76, 0x65, 0x62, 0x39, 0x61, 0x6c, 0x0a +.byte 0x33, 0x70, 0x41, 0x4a, 0x5a, 0x49, 0x44, 0x54, 0x4c, 0x57, 0x43, 0x46, 0x51, 0x49, 0x31, 0x4d +.byte 0x76, 0x51, 0x6a, 0x4b, 0x61, 0x6d, 0x6b, 0x41, 0x51, 0x6b, 0x45, 0x53, 0x2f, 0x67, 0x5a, 0x6a +.byte 0x30, 0x69, 0x55, 0x5a, 0x46, 0x77, 0x62, 0x47, 0x4a, 0x50, 0x42, 0x6a, 0x35, 0x34, 0x6e, 0x6b +.byte 0x75, 0x4c, 0x46, 0x4c, 0x4b, 0x65, 0x64, 0x77, 0x37, 0x44, 0x62, 0x77, 0x67, 0x72, 0x56, 0x67 +.byte 0x0a, 0x30, 0x2b, 0x6e, 0x33, 0x66, 0x51, 0x39, 0x62, 0x2f, 0x67, 0x51, 0x65, 0x70, 0x77, 0x35 +.byte 0x50, 0x78, 0x51, 0x6a, 0x79, 0x6f, 0x62, 0x59, 0x32, 0x44, 0x73, 0x44, 0x67, 0x47, 0x5a, 0x56 +.byte 0x2b, 0x4d, 0x46, 0x6a, 0x55, 0x6d, 0x61, 0x55, 0x54, 0x61, 0x2b, 0x58, 0x58, 0x36, 0x38, 0x53 +.byte 0x72, 0x47, 0x34, 0x77, 0x4a, 0x2b, 0x44, 0x77, 0x72, 0x6b, 0x64, 0x6d, 0x70, 0x48, 0x52, 0x65 +.byte 0x42, 0x0a, 0x76, 0x46, 0x69, 0x31, 0x48, 0x67, 0x31, 0x68, 0x41, 0x67, 0x4d, 0x42, 0x41, 0x41 +.byte 0x45, 0x43, 0x67, 0x67, 0x45, 0x41, 0x61, 0x54, 0x43, 0x6e, 0x5a, 0x6b, 0x6c, 0x2f, 0x37, 0x71 +.byte 0x42, 0x6a, 0x4c, 0x65, 0x78, 0x49, 0x72, 0x79, 0x43, 0x2f, 0x43, 0x42, 0x42, 0x4a, 0x79, 0x61 +.byte 0x4a, 0x37, 0x30, 0x57, 0x31, 0x6b, 0x51, 0x37, 0x4e, 0x4d, 0x59, 0x66, 0x6e, 0x69, 0x57, 0x77 +.byte 0x75, 0x69, 0x0a, 0x66, 0x30, 0x61, 0x52, 0x78, 0x4a, 0x67, 0x4f, 0x64, 0x44, 0x38, 0x31, 0x72 +.byte 0x6a, 0x54, 0x76, 0x6b, 0x49, 0x4e, 0x73, 0x50, 0x70, 0x2b, 0x78, 0x50, 0x52, 0x51, 0x4f, 0x36 +.byte 0x6f, 0x4f, 0x61, 0x64, 0x6a, 0x7a, 0x64, 0x6a, 0x49, 0x6d, 0x59, 0x45, 0x75, 0x51, 0x54, 0x71 +.byte 0x72, 0x4a, 0x54, 0x45, 0x55, 0x6e, 0x6e, 0x74, 0x62, 0x75, 0x39, 0x32, 0x34, 0x65, 0x68, 0x2b +.byte 0x32, 0x44, 0x39, 0x0a, 0x4d, 0x66, 0x32, 0x43, 0x41, 0x61, 0x6e, 0x6a, 0x30, 0x6d, 0x67, 0x6c +.byte 0x52, 0x6e, 0x73, 0x63, 0x53, 0x39, 0x6d, 0x6d, 0x6c, 0x6a, 0x5a, 0x30, 0x4b, 0x7a, 0x6f, 0x47 +.byte 0x4d, 0x58, 0x36, 0x5a, 0x2f, 0x45, 0x68, 0x6e, 0x75, 0x53, 0x34, 0x30, 0x57, 0x69, 0x4a, 0x54 +.byte 0x6c, 0x57, 0x6c, 0x48, 0x36, 0x4d, 0x6c, 0x51, 0x55, 0x2f, 0x46, 0x44, 0x6e, 0x77, 0x43, 0x36 +.byte 0x55, 0x33, 0x34, 0x79, 0x0a, 0x4a, 0x4b, 0x79, 0x36, 0x2f, 0x6a, 0x47, 0x72, 0x79, 0x66, 0x73 +.byte 0x78, 0x2b, 0x6b, 0x47, 0x55, 0x2f, 0x4e, 0x52, 0x76, 0x4b, 0x53, 0x72, 0x75, 0x36, 0x4a, 0x59 +.byte 0x4a, 0x57, 0x74, 0x35, 0x76, 0x37, 0x73, 0x4f, 0x72, 0x79, 0x6d, 0x48, 0x57, 0x44, 0x36, 0x32 +.byte 0x49, 0x54, 0x35, 0x39, 0x68, 0x33, 0x62, 0x6c, 0x4f, 0x69, 0x50, 0x38, 0x47, 0x4d, 0x74, 0x59 +.byte 0x4b, 0x65, 0x51, 0x6c, 0x58, 0x0a, 0x34, 0x39, 0x6f, 0x6d, 0x39, 0x4d, 0x6f, 0x31, 0x56, 0x54 +.byte 0x49, 0x46, 0x41, 0x53, 0x59, 0x33, 0x6c, 0x72, 0x78, 0x6d, 0x65, 0x78, 0x62, 0x59, 0x2b, 0x36 +.byte 0x46, 0x47, 0x38, 0x59, 0x4f, 0x2b, 0x74, 0x66, 0x49, 0x65, 0x30, 0x74, 0x54, 0x41, 0x69, 0x47 +.byte 0x72, 0x6b, 0x62, 0x39, 0x50, 0x7a, 0x36, 0x74, 0x59, 0x62, 0x61, 0x6a, 0x39, 0x46, 0x6a, 0x45 +.byte 0x57, 0x4f, 0x76, 0x34, 0x56, 0x63, 0x0a, 0x2b, 0x33, 0x56, 0x4d, 0x42, 0x55, 0x56, 0x64, 0x47 +.byte 0x4a, 0x6a, 0x67, 0x71, 0x76, 0x45, 0x38, 0x66, 0x78, 0x2b, 0x2f, 0x2b, 0x6d, 0x48, 0x6f, 0x34 +.byte 0x52, 0x67, 0x36, 0x39, 0x42, 0x55, 0x50, 0x66, 0x50, 0x53, 0x72, 0x70, 0x45, 0x67, 0x37, 0x73 +.byte 0x51, 0x4b, 0x42, 0x67, 0x51, 0x44, 0x6c, 0x4c, 0x38, 0x35, 0x47, 0x30, 0x34, 0x56, 0x5a, 0x67 +.byte 0x72, 0x4e, 0x5a, 0x67, 0x4f, 0x78, 0x36, 0x0a, 0x70, 0x54, 0x6c, 0x43, 0x43, 0x6c, 0x2f, 0x4e +.byte 0x6b, 0x66, 0x4e, 0x62, 0x31, 0x4f, 0x59, 0x61, 0x30, 0x42, 0x45, 0x4c, 0x71, 0x57, 0x49, 0x4e +.byte 0x6f, 0x57, 0x61, 0x57, 0x51, 0x48, 0x6e, 0x6d, 0x36, 0x6c, 0x58, 0x38, 0x59, 0x6a, 0x72, 0x55 +.byte 0x6a, 0x77, 0x52, 0x70, 0x42, 0x46, 0x35, 0x73, 0x37, 0x6d, 0x46, 0x68, 0x67, 0x75, 0x46, 0x6a +.byte 0x55, 0x6a, 0x70, 0x2f, 0x4e, 0x57, 0x36, 0x44, 0x0a, 0x30, 0x45, 0x45, 0x67, 0x35, 0x42, 0x6d +.byte 0x4f, 0x30, 0x65, 0x50, 0x4a, 0x33, 0x64, 0x4c, 0x4b, 0x53, 0x65, 0x4f, 0x41, 0x37, 0x67, 0x4d +.byte 0x6f, 0x37, 0x79, 0x37, 0x6b, 0x41, 0x63, 0x44, 0x2f, 0x59, 0x47, 0x54, 0x6f, 0x71, 0x41, 0x61 +.byte 0x47, 0x6c, 0x6a, 0x6b, 0x42, 0x49, 0x2b, 0x49, 0x41, 0x57, 0x4b, 0x35, 0x53, 0x75, 0x35, 0x79 +.byte 0x6c, 0x64, 0x72, 0x45, 0x43, 0x54, 0x51, 0x4b, 0x47, 0x0a, 0x59, 0x6e, 0x4d, 0x4b, 0x79, 0x51 +.byte 0x31, 0x4d, 0x57, 0x55, 0x66, 0x43, 0x59, 0x45, 0x77, 0x48, 0x74, 0x50, 0x76, 0x46, 0x76, 0x45 +.byte 0x35, 0x61, 0x50, 0x77, 0x4b, 0x42, 0x67, 0x51, 0x44, 0x46, 0x42, 0x57, 0x58, 0x65, 0x6b, 0x70 +.byte 0x78, 0x48, 0x49, 0x76, 0x74, 0x2f, 0x42, 0x34, 0x31, 0x43, 0x6c, 0x2f, 0x54, 0x66, 0x74, 0x41 +.byte 0x7a, 0x45, 0x37, 0x2f, 0x66, 0x35, 0x38, 0x4a, 0x6a, 0x56, 0x0a, 0x4d, 0x46, 0x6f, 0x2f, 0x4a +.byte 0x43, 0x68, 0x39, 0x54, 0x44, 0x63, 0x48, 0x36, 0x4e, 0x35, 0x54, 0x4d, 0x54, 0x52, 0x53, 0x31 +.byte 0x2f, 0x69, 0x51, 0x72, 0x76, 0x35, 0x4d, 0x36, 0x6b, 0x4a, 0x53, 0x53, 0x72, 0x48, 0x6e, 0x71 +.byte 0x38, 0x70, 0x71, 0x44, 0x58, 0x4f, 0x77, 0x66, 0x48, 0x4c, 0x77, 0x78, 0x65, 0x74, 0x70, 0x6b +.byte 0x39, 0x74, 0x72, 0x39, 0x33, 0x37, 0x56, 0x52, 0x7a, 0x6f, 0x4c, 0x0a, 0x43, 0x75, 0x47, 0x31 +.byte 0x41, 0x72, 0x37, 0x63, 0x31, 0x41, 0x4f, 0x36, 0x75, 0x6a, 0x4e, 0x6e, 0x41, 0x45, 0x6d, 0x55 +.byte 0x56, 0x43, 0x32, 0x44, 0x70, 0x70, 0x4c, 0x2f, 0x63, 0x6b, 0x35, 0x6d, 0x52, 0x50, 0x57, 0x4b +.byte 0x2f, 0x6b, 0x67, 0x4c, 0x77, 0x5a, 0x53, 0x61, 0x4e, 0x63, 0x5a, 0x66, 0x38, 0x73, 0x79, 0x64 +.byte 0x52, 0x67, 0x70, 0x68, 0x73, 0x57, 0x31, 0x6f, 0x67, 0x4a, 0x69, 0x6e, 0x0a, 0x37, 0x67, 0x30 +.byte 0x6e, 0x47, 0x62, 0x46, 0x77, 0x58, 0x77, 0x4b, 0x42, 0x67, 0x51, 0x43, 0x50, 0x6f, 0x5a, 0x59 +.byte 0x30, 0x37, 0x50, 0x72, 0x31, 0x54, 0x65, 0x50, 0x34, 0x67, 0x38, 0x4f, 0x77, 0x57, 0x54, 0x75 +.byte 0x35, 0x46, 0x36, 0x64, 0x53, 0x76, 0x64, 0x55, 0x32, 0x43, 0x41, 0x62, 0x74, 0x5a, 0x74, 0x68 +.byte 0x48, 0x35, 0x71, 0x39, 0x38, 0x75, 0x31, 0x6e, 0x2f, 0x63, 0x41, 0x6a, 0x31, 0x0a, 0x6e, 0x6f +.byte 0x61, 0x6b, 0x31, 0x53, 0x72, 0x70, 0x61, 0x33, 0x66, 0x6f, 0x47, 0x4d, 0x54, 0x55, 0x6e, 0x39 +.byte 0x43, 0x48, 0x75, 0x2b, 0x35, 0x6b, 0x77, 0x48, 0x50, 0x49, 0x70, 0x55, 0x50, 0x4e, 0x65, 0x41 +.byte 0x5a, 0x5a, 0x42, 0x70, 0x71, 0x39, 0x31, 0x75, 0x78, 0x61, 0x35, 0x70, 0x6e, 0x6b, 0x44, 0x4d +.byte 0x70, 0x33, 0x55, 0x72, 0x4c, 0x49, 0x52, 0x4a, 0x32, 0x75, 0x5a, 0x79, 0x72, 0x38, 0x0a, 0x34 +.byte 0x50, 0x78, 0x63, 0x6b, 0x6e, 0x45, 0x45, 0x68, 0x38, 0x44, 0x52, 0x35, 0x68, 0x73, 0x4d, 0x2f +.byte 0x49, 0x62, 0x44, 0x63, 0x72, 0x43, 0x4a, 0x51, 0x67, 0x6c, 0x4d, 0x31, 0x39, 0x5a, 0x74, 0x51 +.byte 0x65, 0x57, 0x33, 0x4c, 0x4b, 0x6b, 0x59, 0x34, 0x42, 0x73, 0x49, 0x78, 0x6a, 0x44, 0x66, 0x34 +.byte 0x35, 0x79, 0x6d, 0x48, 0x34, 0x30, 0x37, 0x49, 0x51, 0x4b, 0x42, 0x67, 0x45, 0x2f, 0x67, 0x0a +.byte 0x55, 0x6c, 0x36, 0x63, 0x50, 0x66, 0x4f, 0x78, 0x51, 0x52, 0x6c, 0x4e, 0x4c, 0x48, 0x34, 0x56 +.byte 0x4d, 0x56, 0x67, 0x49, 0x6e, 0x53, 0x79, 0x79, 0x78, 0x57, 0x78, 0x31, 0x6d, 0x4f, 0x44, 0x46 +.byte 0x79, 0x37, 0x44, 0x52, 0x72, 0x67, 0x43, 0x75, 0x68, 0x35, 0x6b, 0x54, 0x56, 0x68, 0x2b, 0x51 +.byte 0x55, 0x56, 0x42, 0x4d, 0x38, 0x78, 0x39, 0x6c, 0x63, 0x77, 0x41, 0x6e, 0x38, 0x56, 0x39, 0x2f +.byte 0x0a, 0x6e, 0x51, 0x54, 0x35, 0x35, 0x77, 0x52, 0x38, 0x45, 0x36, 0x30, 0x33, 0x70, 0x7a, 0x6e +.byte 0x71, 0x59, 0x2f, 0x6a, 0x58, 0x30, 0x78, 0x76, 0x41, 0x71, 0x5a, 0x45, 0x36, 0x59, 0x56, 0x50 +.byte 0x63, 0x77, 0x34, 0x6b, 0x70, 0x5a, 0x63, 0x77, 0x4e, 0x77, 0x4c, 0x31, 0x52, 0x68, 0x45, 0x6c +.byte 0x38, 0x47, 0x6c, 0x69, 0x69, 0x6b, 0x42, 0x6c, 0x52, 0x7a, 0x55, 0x4c, 0x33, 0x53, 0x73, 0x57 +.byte 0x33, 0x0a, 0x71, 0x33, 0x30, 0x41, 0x66, 0x71, 0x45, 0x56, 0x69, 0x48, 0x50, 0x45, 0x33, 0x58 +.byte 0x70, 0x45, 0x36, 0x36, 0x50, 0x50, 0x6f, 0x36, 0x48, 0x62, 0x31, 0x79, 0x6d, 0x4a, 0x43, 0x56 +.byte 0x72, 0x37, 0x37, 0x69, 0x55, 0x75, 0x43, 0x33, 0x77, 0x74, 0x41, 0x6f, 0x47, 0x42, 0x41, 0x49 +.byte 0x42, 0x72, 0x4f, 0x47, 0x75, 0x6e, 0x76, 0x31, 0x71, 0x5a, 0x4d, 0x66, 0x71, 0x6d, 0x77, 0x41 +.byte 0x59, 0x32, 0x0a, 0x6c, 0x78, 0x6c, 0x7a, 0x52, 0x67, 0x78, 0x67, 0x53, 0x69, 0x61, 0x65, 0x76 +.byte 0x30, 0x6c, 0x54, 0x4e, 0x78, 0x44, 0x7a, 0x5a, 0x6b, 0x6d, 0x55, 0x2f, 0x75, 0x33, 0x64, 0x67 +.byte 0x64, 0x54, 0x77, 0x4a, 0x35, 0x44, 0x44, 0x41, 0x4e, 0x71, 0x50, 0x77, 0x4a, 0x63, 0x36, 0x62 +.byte 0x38, 0x53, 0x47, 0x59, 0x54, 0x70, 0x39, 0x72, 0x51, 0x30, 0x6d, 0x62, 0x67, 0x56, 0x48, 0x6e +.byte 0x68, 0x49, 0x42, 0x0a, 0x6a, 0x63, 0x4a, 0x51, 0x42, 0x51, 0x6b, 0x54, 0x66, 0x71, 0x36, 0x5a +.byte 0x30, 0x48, 0x36, 0x4f, 0x6f, 0x54, 0x56, 0x69, 0x37, 0x64, 0x50, 0x73, 0x33, 0x69, 0x62, 0x51 +.byte 0x4a, 0x46, 0x72, 0x74, 0x6b, 0x6f, 0x79, 0x76, 0x59, 0x41, 0x62, 0x79, 0x6b, 0x33, 0x36, 0x71 +.byte 0x75, 0x42, 0x6d, 0x4e, 0x52, 0x6a, 0x56, 0x68, 0x36, 0x72, 0x63, 0x38, 0x34, 0x36, 0x38, 0x62 +.byte 0x68, 0x58, 0x59, 0x72, 0x0a, 0x76, 0x2f, 0x74, 0x2b, 0x4d, 0x65, 0x47, 0x4a, 0x50, 0x2f, 0x30 +.byte 0x5a, 0x77, 0x38, 0x76, 0x2f, 0x58, 0x32, 0x43, 0x46, 0x6c, 0x6c, 0x39, 0x36, 0x0a, 0x2d, 0x2d +.byte 0x2d, 0x2d, 0x2d, 0x45, 0x4e, 0x44, 0x20, 0x50, 0x52, 0x49, 0x56, 0x41, 0x54, 0x45, 0x20, 0x4b +.byte 0x45, 0x59, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x00 + +.global _binary_prvtkey_pem_end +_binary_prvtkey_pem_end: /* for objcopy compatibility */ + + +.global prvtkey_pem_length +prvtkey_pem_length: /* not including null byte */ +.word 1704 diff --git a/build/rules.ninja b/build/rules.ninja index a9717a7..17b1d60 100644 --- a/build/rules.ninja +++ b/build/rules.ninja @@ -1475,6 +1475,120 @@ rule CXX_STATIC_LIBRARY_LINKER____idf_cmd_system restat = $RESTAT +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lvgl + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lvgl + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lvgl_esp32_drivers + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lvgl_esp32_drivers + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lv_examples + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lv_examples + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lvgl_tft + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lvgl_tft + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lvgl_touch + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lvgl_touch + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_display + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_display + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + ############################################# # Rule for compiling C files. diff --git a/build/x509_crt_bundle.S b/build/x509_crt_bundle.S new file mode 100644 index 0000000..adb12dc --- /dev/null +++ b/build/x509_crt_bundle.S @@ -0,0 +1,4031 @@ +/* * Data converted from /home/mithras/esp/bakalarka/build/esp-idf/mbedtls/x509_crt_bundle + */ +.data +.section .rodata.embedded + +.global x509_crt_bundle +x509_crt_bundle: + +.global _binary_x509_crt_bundle_start +_binary_x509_crt_bundle_start: /* for objcopy compatibility */ +.byte 0x00, 0x87, 0x00, 0x36, 0x01, 0x26, 0x30, 0x34, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09 +.byte 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x08, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 0x30, 0x82, 0x01, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc8, 0x68, 0xf1 +.byte 0xc9, 0xd6, 0xd6, 0xb3, 0x34, 0x75, 0x26, 0x82, 0x1e, 0xec, 0xb4, 0xbe, 0xea, 0x5c, 0xe1, 0x26 +.byte 0xed, 0x11, 0x47, 0x61, 0xe1, 0xa2, 0x7c, 0x16, 0x78, 0x40, 0x21, 0xe4, 0x60, 0x9e, 0x5a, 0xc8 +.byte 0x63, 0xe1, 0xc4, 0xb1, 0x96, 0x92, 0xff, 0x18, 0x6d, 0x69, 0x23, 0xe1, 0x2b, 0x62, 0xf7, 0xdd +.byte 0xe2, 0x36, 0x2f, 0x91, 0x07, 0xb9, 0x48, 0xcf, 0x0e, 0xec, 0x79, 0xb6, 0x2c, 0xe7, 0x34, 0x4b +.byte 0x70, 0x08, 0x25, 0xa3, 0x3c, 0x87, 0x1b, 0x19, 0xf2, 0x81, 0x07, 0x0f, 0x38, 0x90, 0x19, 0xd3 +.byte 0x11, 0xfe, 0x86, 0xb4, 0xf2, 0xd1, 0x5e, 0x1e, 0x1e, 0x96, 0xcd, 0x80, 0x6c, 0xce, 0x3b, 0x31 +.byte 0x93, 0xb6, 0xf2, 0xa0, 0xd0, 0xa9, 0x95, 0x12, 0x7d, 0xa5, 0x9a, 0xcc, 0x6b, 0xc8, 0x84, 0x56 +.byte 0x8a, 0x33, 0xa9, 0xe7, 0x22, 0x15, 0x53, 0x16, 0xf0, 0xcc, 0x17, 0xec, 0x57, 0x5f, 0xe9, 0xa2 +.byte 0x0a, 0x98, 0x09, 0xde, 0xe3, 0x5f, 0x9c, 0x6f, 0xdc, 0x48, 0xe3, 0x85, 0x0b, 0x15, 0x5a, 0xa6 +.byte 0xba, 0x9f, 0xac, 0x48, 0xe3, 0x09, 0xb2, 0xf7, 0xf4, 0x32, 0xde, 0x5e, 0x34, 0xbe, 0x1c, 0x78 +.byte 0x5d, 0x42, 0x5b, 0xce, 0x0e, 0x22, 0x8f, 0x4d, 0x90, 0xd7, 0x7d, 0x32, 0x18, 0xb3, 0x0b, 0x2c +.byte 0x6a, 0xbf, 0x8e, 0x3f, 0x14, 0x11, 0x89, 0x20, 0x0e, 0x77, 0x14, 0xb5, 0x3d, 0x94, 0x08, 0x87 +.byte 0xf7, 0x25, 0x1e, 0xd5, 0xb2, 0x60, 0x00, 0xec, 0x6f, 0x2a, 0x28, 0x25, 0x6e, 0x2a, 0x3e, 0x18 +.byte 0x63, 0x17, 0x25, 0x3f, 0x3e, 0x44, 0x20, 0x16, 0xf6, 0x26, 0xc8, 0x25, 0xae, 0x05, 0x4a, 0xb4 +.byte 0xe7, 0x63, 0x2c, 0xf3, 0x8c, 0x16, 0x53, 0x7e, 0x5c, 0xfb, 0x11, 0x1a, 0x08, 0xc1, 0x46, 0x62 +.byte 0x9f, 0x22, 0xb8, 0xf1, 0xc2, 0x8d, 0x69, 0xdc, 0xfa, 0x3a, 0x58, 0x06, 0xdf, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x39, 0x02, 0x26, 0x30, 0x37, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x0b, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f, 0x6e, 0x65, 0x72, 0x61, 0x31, 0x1f +.byte 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f +.byte 0x6e, 0x65, 0x72, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x76, 0x31, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0xc2, 0xbe, 0xeb, 0x27, 0xf0, 0x21, 0xa3, 0xf3, 0x69, 0x26, 0x55, 0x7e, 0x9d, 0xc5, 0x55, 0x16 +.byte 0x91, 0x5c, 0xfd, 0xef, 0x21, 0xbf, 0x53, 0x80, 0x7a, 0x2d, 0xd2, 0x91, 0x8c, 0x63, 0x31, 0xf0 +.byte 0xec, 0x24, 0xf0, 0xc3, 0xa5, 0xd2, 0x72, 0x7c, 0x10, 0x6d, 0xf4, 0x37, 0xb7, 0xe5, 0xe6, 0x7c +.byte 0x79, 0xea, 0x8c, 0xb5, 0x82, 0x8b, 0xae, 0x48, 0xb6, 0xac, 0x00, 0xdc, 0x65, 0x75, 0xec, 0x2a +.byte 0x4d, 0x5f, 0xc1, 0x87, 0xf5, 0x20, 0x65, 0x2b, 0x81, 0xa8, 0x47, 0x3e, 0x89, 0x23, 0x95, 0x30 +.byte 0x16, 0x90, 0x7f, 0xe8, 0x57, 0x07, 0x48, 0xe7, 0x19, 0xae, 0xbf, 0x45, 0x67, 0xb1, 0x37, 0x1b +.byte 0x06, 0x2a, 0xfe, 0xde, 0xf9, 0xac, 0x7d, 0x83, 0xfb, 0x5e, 0xba, 0xe4, 0x8f, 0x97, 0x67, 0xbe +.byte 0x4b, 0x8e, 0x8d, 0x64, 0x07, 0x57, 0x38, 0x55, 0x69, 0x34, 0x36, 0x3d, 0x13, 0x48, 0xef, 0x4f +.byte 0xe2, 0xd3, 0x66, 0x1e, 0xa4, 0xcf, 0x1a, 0xb7, 0x5e, 0x36, 0x33, 0xd4, 0xb4, 0x06, 0xbd, 0x18 +.byte 0x01, 0xfd, 0x77, 0x84, 0x50, 0x00, 0x45, 0xf5, 0x8c, 0x5d, 0xe8, 0x23, 0xbc, 0x7e, 0xfe, 0x35 +.byte 0xe1, 0xed, 0x50, 0x7b, 0xa9, 0x30, 0x8d, 0x19, 0xd3, 0x09, 0x8e, 0x68, 0x67, 0x5d, 0xbf, 0x3c +.byte 0x97, 0x18, 0x53, 0xbb, 0x29, 0x62, 0xc5, 0xca, 0x5e, 0x72, 0xc1, 0xc7, 0x96, 0xd4, 0xdb, 0x2d +.byte 0xa0, 0xb4, 0x1f, 0x69, 0x03, 0xec, 0xea, 0xe2, 0x50, 0xf1, 0x0c, 0x3c, 0xf0, 0xac, 0xf3, 0x53 +.byte 0x2d, 0xf0, 0x1c, 0xf5, 0xed, 0x6c, 0x39, 0x39, 0x73, 0x80, 0x16, 0xc8, 0x52, 0xb0, 0x23, 0xcd +.byte 0xe0, 0x3e, 0xdc, 0xdd, 0x3c, 0x47, 0xa0, 0xbb, 0x35, 0x8a, 0xe2, 0x98, 0x68, 0x8b, 0xbe, 0xe5 +.byte 0xbf, 0x72, 0xee, 0xd2, 0xfa, 0xa5, 0xed, 0x12, 0xed, 0xfc, 0x98, 0x18, 0xa9, 0x26, 0x76, 0xdc +.byte 0x28, 0x4b, 0x10, 0x20, 0x1c, 0xd3, 0x7f, 0x16, 0x77, 0x2d, 0xed, 0x6f, 0x80, 0xf7, 0x49, 0xbb +.byte 0x53, 0x05, 0xbb, 0x5d, 0x68, 0xc7, 0xd4, 0xc8, 0x75, 0x16, 0x3f, 0x89, 0x5a, 0x8b, 0xf7, 0x17 +.byte 0x47, 0xd4, 0x4c, 0xf1, 0xd2, 0x89, 0x79, 0x3e, 0x4d, 0x3d, 0x98, 0xa8, 0x61, 0xde, 0x3a, 0x1e +.byte 0xd2, 0xf8, 0x5e, 0x03, 0xe0, 0xc1, 0xc9, 0x1c, 0x8c, 0xd3, 0x8d, 0x4d, 0xd3, 0x95, 0x36, 0xb3 +.byte 0x37, 0x5f, 0x63, 0x63, 0x9b, 0x33, 0x14, 0xf0, 0x2d, 0x26, 0x6b, 0x53, 0x7c, 0x89, 0x8c, 0x32 +.byte 0xc2, 0x6e, 0xec, 0x3d, 0x21, 0x00, 0x39, 0xc9, 0xa1, 0x68, 0xe2, 0x50, 0x83, 0x2e, 0xb0, 0x3a +.byte 0x2b, 0xf3, 0x36, 0xa0, 0xac, 0x2f, 0xe4, 0x6f, 0x61, 0xc2, 0x51, 0x09, 0x39, 0x3e, 0x8b, 0x53 +.byte 0xb9, 0xbb, 0x67, 0xda, 0xdc, 0x53, 0xb9, 0x76, 0x59, 0x36, 0x9d, 0x43, 0xe5, 0x20, 0xe0, 0x3d +.byte 0x32, 0x60, 0x85, 0x22, 0x51, 0xb7, 0xc7, 0x33, 0xbb, 0xdd, 0x15, 0x2f, 0xa4, 0x78, 0xa6, 0x07 +.byte 0x7b, 0x81, 0x46, 0x36, 0x04, 0x86, 0xdd, 0x79, 0x35, 0xc7, 0x95, 0x2c, 0x3b, 0xb0, 0xa3, 0x17 +.byte 0x35, 0xe5, 0x73, 0x1f, 0xb4, 0x5c, 0x59, 0xef, 0xda, 0xea, 0x10, 0x65, 0x7b, 0x7a, 0xd0, 0x7f +.byte 0x9f, 0xb3, 0xb4, 0x2a, 0x37, 0x3b, 0x70, 0x8b, 0x9b, 0x5b, 0xb9, 0x2b, 0xb7, 0xec, 0xb2, 0x51 +.byte 0x12, 0x97, 0x53, 0x29, 0x5a, 0xd4, 0xf0, 0x12, 0x10, 0xdc, 0x4f, 0x02, 0xbb, 0x12, 0x92, 0x2f +.byte 0x62, 0xd4, 0x3f, 0x69, 0x43, 0x7c, 0x0d, 0xd6, 0xfc, 0x58, 0x75, 0x01, 0x88, 0x9d, 0x58, 0x16 +.byte 0x4b, 0xde, 0xba, 0x90, 0xff, 0x47, 0x01, 0x89, 0x06, 0x6a, 0xf6, 0x5f, 0xb2, 0x90, 0x6a, 0xb3 +.byte 0x02, 0xa6, 0x02, 0x88, 0xbf, 0xb3, 0x47, 0x7e, 0x2a, 0xd9, 0xd5, 0xfa, 0x68, 0x78, 0x35, 0x4d +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3a, 0x02, 0x26, 0x30, 0x38, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x0b, 0x49, 0x5a, 0x45, 0x4e, 0x50, 0x45, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x13 +.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0a, 0x49, 0x7a, 0x65, 0x6e, 0x70, 0x65, 0x2e +.byte 0x63, 0x6f, 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xc9, 0xd3, 0x7a, 0xca, 0x0f, 0x1e, 0xac, 0xa7, 0x86, 0xe8, 0x16, 0x65 +.byte 0x6a, 0xb1, 0xc2, 0x1b, 0x45, 0x32, 0x71, 0x95, 0xd9, 0xfe, 0x10, 0x5b, 0xcc, 0xaf, 0xe7, 0xa5 +.byte 0x79, 0x01, 0x8f, 0x89, 0xc3, 0xca, 0xf2, 0x55, 0x71, 0xf7, 0x77, 0xbe, 0x77, 0x94, 0xf3, 0x72 +.byte 0xa4, 0x2c, 0x44, 0xd8, 0x9e, 0x92, 0x9b, 0x14, 0x3a, 0xa1, 0xe7, 0x24, 0x90, 0x0a, 0x0a, 0x56 +.byte 0x8e, 0xc5, 0xd8, 0x26, 0x94, 0xe1, 0xd9, 0x48, 0xe1, 0x2d, 0x3e, 0xda, 0x0a, 0x72, 0xdd, 0xa3 +.byte 0x99, 0x15, 0xda, 0x81, 0xa2, 0x87, 0xf4, 0x7b, 0x6e, 0x26, 0x77, 0x89, 0x58, 0xad, 0xd6, 0xeb +.byte 0x0c, 0xb2, 0x41, 0x7a, 0x73, 0x6e, 0x6d, 0xdb, 0x7a, 0x78, 0x41, 0xe9, 0x08, 0x88, 0x12, 0x7e +.byte 0x87, 0x2e, 0x66, 0x11, 0x63, 0x6c, 0x54, 0xfb, 0x3c, 0x9d, 0x72, 0xc0, 0xbc, 0x2e, 0xff, 0xc2 +.byte 0xb7, 0xdd, 0x0d, 0x76, 0xe3, 0x3a, 0xd7, 0xf7, 0xb4, 0x68, 0xbe, 0xa2, 0xf5, 0xe3, 0x81, 0x6e +.byte 0xc1, 0x46, 0x6f, 0x5d, 0x8d, 0xe0, 0x4d, 0xc6, 0x54, 0x55, 0x89, 0x1a, 0x33, 0x31, 0x0a, 0xb1 +.byte 0x57, 0xb9, 0xa3, 0x8a, 0x98, 0xc3, 0xec, 0x3b, 0x34, 0xc5, 0x95, 0x41, 0x69, 0x7e, 0x75, 0xc2 +.byte 0x3c, 0x20, 0xc5, 0x61, 0xba, 0x51, 0x47, 0xa0, 0x20, 0x90, 0x93, 0xa1, 0x90, 0x4b, 0xf3, 0x4e +.byte 0x7c, 0x85, 0x45, 0x54, 0x9a, 0xd1, 0x05, 0x26, 0x41, 0xb0, 0xb5, 0x4d, 0x1d, 0x33, 0xbe, 0xc4 +.byte 0x03, 0xc8, 0x25, 0x7c, 0xc1, 0x70, 0xdb, 0x3b, 0xf4, 0x09, 0x2d, 0x54, 0x27, 0x48, 0xac, 0x2f +.byte 0xe1, 0xc4, 0xac, 0x3e, 0xc8, 0xcb, 0x92, 0x4c, 0x53, 0x39, 0x37, 0x23, 0xec, 0xd3, 0x01, 0xf9 +.byte 0xe0, 0x09, 0x44, 0x4d, 0x4d, 0x64, 0xc0, 0xe1, 0x0d, 0x5a, 0x87, 0x22, 0xbc, 0xad, 0x1b, 0xa3 +.byte 0xfe, 0x26, 0xb5, 0x15, 0xf3, 0xa7, 0xfc, 0x84, 0x19, 0xe9, 0xec, 0xa1, 0x88, 0xb4, 0x44, 0x69 +.byte 0x84, 0x83, 0xf3, 0x89, 0xd1, 0x74, 0x06, 0xa9, 0xcc, 0x0b, 0xd6, 0xc2, 0xde, 0x27, 0x85, 0x50 +.byte 0x26, 0xca, 0x17, 0xb8, 0xc9, 0x7a, 0x87, 0x56, 0x2c, 0x1a, 0x01, 0x1e, 0x6c, 0xbe, 0x13, 0xad +.byte 0x10, 0xac, 0xb5, 0x24, 0xf5, 0x38, 0x91, 0xa1, 0xd6, 0x4b, 0xda, 0xf1, 0xbb, 0xd2, 0xde, 0x47 +.byte 0xb5, 0xf1, 0xbc, 0x81, 0xf6, 0x59, 0x6b, 0xcf, 0x19, 0x53, 0xe9, 0x8d, 0x15, 0xcb, 0x4a, 0xcb +.byte 0xa9, 0x6f, 0x44, 0xe5, 0x1b, 0x41, 0xcf, 0xe1, 0x86, 0xa7, 0xca, 0xd0, 0x6a, 0x9f, 0xbc, 0x4c +.byte 0x8d, 0x06, 0x33, 0x5a, 0xa2, 0x85, 0xe5, 0x90, 0x35, 0xa0, 0x62, 0x5c, 0x16, 0x4e, 0xf0, 0xe3 +.byte 0xa2, 0xfa, 0x03, 0x1a, 0xb4, 0x2c, 0x71, 0xb3, 0x58, 0x2c, 0xde, 0x7b, 0x0b, 0xdb, 0x1a, 0x0f +.byte 0xeb, 0xde, 0x21, 0x1f, 0x06, 0x77, 0x06, 0x03, 0xb0, 0xc9, 0xef, 0x99, 0xfc, 0xc0, 0xb9, 0x4f +.byte 0x0b, 0x86, 0x28, 0xfe, 0xd2, 0xb9, 0xea, 0xe3, 0xda, 0xa5, 0xc3, 0x47, 0x69, 0x12, 0xe0, 0xdb +.byte 0xf0, 0xf6, 0x19, 0x8b, 0xed, 0x7b, 0x70, 0xd7, 0x02, 0xd6, 0xed, 0x87, 0x18, 0x28, 0x2c, 0x04 +.byte 0x24, 0x4c, 0x77, 0xe4, 0x48, 0x8a, 0x1a, 0xc6, 0x3b, 0x9a, 0xd4, 0x0f, 0xca, 0xfa, 0x75, 0xd2 +.byte 0x01, 0x40, 0x5a, 0x8d, 0x79, 0xbf, 0x8b, 0xcf, 0x4b, 0xcf, 0xaa, 0x16, 0xc1, 0x95, 0xe4, 0xad +.byte 0x4c, 0x8a, 0x3e, 0x17, 0x91, 0xd4, 0xb1, 0x62, 0xe5, 0x82, 0xe5, 0x80, 0x04, 0xa4, 0x03, 0x7e +.byte 0x8d, 0xbf, 0xda, 0x7f, 0xa2, 0x0f, 0x97, 0x4f, 0x0c, 0xd3, 0x0d, 0xfb, 0xd7, 0xd1, 0xe5, 0x72 +.byte 0x7e, 0x1c, 0xc8, 0x77, 0xff, 0x5b, 0x9a, 0x0f, 0xb7, 0xae, 0x05, 0x46, 0xe5, 0xf1, 0xa8, 0x16 +.byte 0xec, 0x47, 0xa4, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3b, 0x01, 0x26, 0x30, 0x39, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x49, 0x31, 0x0f, 0x30, 0x0d +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x53, 0x6f, 0x6e, 0x65, 0x72, 0x61, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x53, 0x6f, 0x6e, 0x65, 0x72, 0x61, 0x20, 0x43 +.byte 0x6c, 0x61, 0x73, 0x73, 0x32, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x90, 0x17, 0x4a, 0x35, 0x9d, 0xca, 0xf0 +.byte 0x0d, 0x96, 0xc7, 0x44, 0xfa, 0x16, 0x37, 0xfc, 0x48, 0xbd, 0xbd, 0x7f, 0x80, 0x2d, 0x35, 0x3b +.byte 0xe1, 0x6f, 0xa8, 0x67, 0xa9, 0xbf, 0x03, 0x1c, 0x4d, 0x8c, 0x6f, 0x32, 0x47, 0xd5, 0x41, 0x68 +.byte 0xa4, 0x13, 0x04, 0xc1, 0x35, 0x0c, 0x9a, 0x84, 0x43, 0xfc, 0x5c, 0x1d, 0xff, 0x89, 0xb3, 0xe8 +.byte 0x17, 0x18, 0xcd, 0x91, 0x5f, 0xfb, 0x89, 0xe3, 0xea, 0xbf, 0x4e, 0x5d, 0x7c, 0x1b, 0x26, 0xd3 +.byte 0x75, 0x79, 0xed, 0xe6, 0x84, 0xe3, 0x57, 0xe5, 0xad, 0x29, 0xc4, 0xf4, 0x3a, 0x28, 0xe7, 0xa5 +.byte 0x7b, 0x84, 0x36, 0x69, 0xb3, 0xfd, 0x5e, 0x76, 0xbd, 0xa3, 0x2d, 0x99, 0xd3, 0x90, 0x4e, 0x23 +.byte 0x28, 0x7d, 0x18, 0x63, 0xf1, 0x54, 0x3b, 0x26, 0x9d, 0x76, 0x5b, 0x97, 0x42, 0xb2, 0xff, 0xae +.byte 0xf0, 0x4e, 0xec, 0xdd, 0x39, 0x95, 0x4e, 0x83, 0x06, 0x7f, 0xe7, 0x49, 0x40, 0xc8, 0xc5, 0x01 +.byte 0xb2, 0x54, 0x5a, 0x66, 0x1d, 0x3d, 0xfc, 0xf9, 0xe9, 0x3c, 0x0a, 0x9e, 0x81, 0xb8, 0x70, 0xf0 +.byte 0x01, 0x8b, 0xe4, 0x23, 0x54, 0x7c, 0xc8, 0xae, 0xf8, 0x90, 0x1e, 0x00, 0x96, 0x72, 0xd4, 0x54 +.byte 0xcf, 0x61, 0x23, 0xbc, 0xea, 0xfb, 0x9d, 0x02, 0x95, 0xd1, 0xb6, 0xb9, 0x71, 0x3a, 0x69, 0x08 +.byte 0x3f, 0x0f, 0xb4, 0xe1, 0x42, 0xc7, 0x88, 0xf5, 0x3f, 0x98, 0xa8, 0xa7, 0xba, 0x1c, 0xe0, 0x71 +.byte 0x71, 0xef, 0x58, 0x57, 0x81, 0x50, 0x7a, 0x5c, 0x6b, 0x74, 0x46, 0x0e, 0x83, 0x03, 0x98, 0xc3 +.byte 0x8e, 0xa8, 0x6e, 0xf2, 0x76, 0x32, 0x6e, 0x27, 0x83, 0xc2, 0x73, 0xf3, 0xdc, 0x18, 0xe8, 0xb4 +.byte 0x93, 0xea, 0x75, 0x44, 0x6b, 0x04, 0x60, 0x20, 0x71, 0x57, 0x87, 0x9d, 0xf3, 0xbe, 0xa0, 0x90 +.byte 0x23, 0x3d, 0x8a, 0x24, 0xe1, 0xda, 0x21, 0xdb, 0xc3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3b +.byte 0x01, 0x26, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a +.byte 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61 +.byte 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x01 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb2, 0x78 +.byte 0x80, 0x71, 0xca, 0x78, 0xd5, 0xe3, 0x71, 0xaf, 0x47, 0x80, 0x50, 0x74, 0x7d, 0x6e, 0xd8, 0xd7 +.byte 0x88, 0x76, 0xf4, 0x99, 0x68, 0xf7, 0x58, 0x21, 0x60, 0xf9, 0x74, 0x84, 0x01, 0x2f, 0xac, 0x02 +.byte 0x2d, 0x86, 0xd3, 0xa0, 0x43, 0x7a, 0x4e, 0xb2, 0xa4, 0xd0, 0x36, 0xba, 0x01, 0xbe, 0x8d, 0xdb +.byte 0x48, 0xc8, 0x07, 0x17, 0x36, 0x4c, 0xf4, 0xee, 0x88, 0x23, 0xc7, 0x3e, 0xeb, 0x37, 0xf5, 0xb5 +.byte 0x19, 0xf8, 0x49, 0x68, 0xb0, 0xde, 0xd7, 0xb9, 0x76, 0x38, 0x1d, 0x61, 0x9e, 0xa4, 0xfe, 0x82 +.byte 0x36, 0xa5, 0xe5, 0x4a, 0x56, 0xe4, 0x45, 0xe1, 0xf9, 0xfd, 0xb4, 0x16, 0xfa, 0x74, 0xda, 0x9c +.byte 0x9b, 0x35, 0x39, 0x2f, 0xfa, 0xb0, 0x20, 0x50, 0x06, 0x6c, 0x7a, 0xd0, 0x80, 0xb2, 0xa6, 0xf9 +.byte 0xaf, 0xec, 0x47, 0x19, 0x8f, 0x50, 0x38, 0x07, 0xdc, 0xa2, 0x87, 0x39, 0x58, 0xf8, 0xba, 0xd5 +.byte 0xa9, 0xf9, 0x48, 0x67, 0x30, 0x96, 0xee, 0x94, 0x78, 0x5e, 0x6f, 0x89, 0xa3, 0x51, 0xc0, 0x30 +.byte 0x86, 0x66, 0xa1, 0x45, 0x66, 0xba, 0x54, 0xeb, 0xa3, 0xc3, 0x91, 0xf9, 0x48, 0xdc, 0xff, 0xd1 +.byte 0xe8, 0x30, 0x2d, 0x7d, 0x2d, 0x74, 0x70, 0x35, 0xd7, 0x88, 0x24, 0xf7, 0x9e, 0xc4, 0x59, 0x6e +.byte 0xbb, 0x73, 0x87, 0x17, 0xf2, 0x32, 0x46, 0x28, 0xb8, 0x43, 0xfa, 0xb7, 0x1d, 0xaa, 0xca, 0xb4 +.byte 0xf2, 0x9f, 0x24, 0x0e, 0x2d, 0x4b, 0xf7, 0x71, 0x5c, 0x5e, 0x69, 0xff, 0xea, 0x95, 0x02, 0xcb +.byte 0x38, 0x8a, 0xae, 0x50, 0x38, 0x6f, 0xdb, 0xfb, 0x2d, 0x62, 0x1b, 0xc5, 0xc7, 0x1e, 0x54, 0xe1 +.byte 0x77, 0xe0, 0x67, 0xc8, 0x0f, 0x9c, 0x87, 0x23, 0xd6, 0x3f, 0x40, 0x20, 0x7f, 0x20, 0x80, 0xc4 +.byte 0x80, 0x4c, 0x3e, 0x3b, 0x24, 0x26, 0x8e, 0x04, 0xae, 0x6c, 0x9a, 0xc8, 0xaa, 0x0d, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x3b, 0x02, 0x26, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xad, 0x96, 0x9f, 0x2d, 0x9c, 0x4a, 0x4c, 0x4a, 0x81, 0x79, 0x51, 0x99, 0xec +.byte 0x8a, 0xcb, 0x6b, 0x60, 0x51, 0x13, 0xbc, 0x4d, 0x6d, 0x06, 0xfc, 0xb0, 0x08, 0x8d, 0xdd, 0x19 +.byte 0x10, 0x6a, 0xc7, 0x26, 0x0c, 0x35, 0xd8, 0xc0, 0x6f, 0x20, 0x84, 0xe9, 0x94, 0xb1, 0x9b, 0x85 +.byte 0x03, 0xc3, 0x5b, 0xdb, 0x4a, 0xe8, 0xc8, 0xf8, 0x90, 0x76, 0xd9, 0x5b, 0x4f, 0xe3, 0x4c, 0xe8 +.byte 0x06, 0x36, 0x4d, 0xcc, 0x9a, 0xac, 0x3d, 0x0c, 0x90, 0x2b, 0x92, 0xd4, 0x06, 0x19, 0x60, 0xac +.byte 0x37, 0x44, 0x79, 0x85, 0x81, 0x82, 0xad, 0x5a, 0x37, 0xe0, 0x0d, 0xcc, 0x9d, 0xa6, 0x4c, 0x52 +.byte 0x76, 0xea, 0x43, 0x9d, 0xb7, 0x04, 0xd1, 0x50, 0xf6, 0x55, 0xe0, 0xd5, 0xd2, 0xa6, 0x49, 0x85 +.byte 0xe9, 0x37, 0xe9, 0xca, 0x7e, 0xae, 0x5c, 0x95, 0x4d, 0x48, 0x9a, 0x3f, 0xae, 0x20, 0x5a, 0x6d +.byte 0x88, 0x95, 0xd9, 0x34, 0xb8, 0x52, 0x1a, 0x43, 0x90, 0xb0, 0xbf, 0x6c, 0x05, 0xb9, 0xb6, 0x78 +.byte 0xb7, 0xea, 0xd0, 0xe4, 0x3a, 0x3c, 0x12, 0x53, 0x62, 0xff, 0x4a, 0xf2, 0x7b, 0xbe, 0x35, 0x05 +.byte 0xa9, 0x12, 0x34, 0xe3, 0xf3, 0x64, 0x74, 0x62, 0x2c, 0x3d, 0x00, 0x49, 0x5a, 0x28, 0xfe, 0x32 +.byte 0x44, 0xbb, 0x87, 0xdd, 0x65, 0x27, 0x02, 0x71, 0x3b, 0xda, 0x4a, 0xf7, 0x1f, 0xda, 0xcd, 0xf7 +.byte 0x21, 0x55, 0x90, 0x4f, 0x0f, 0xec, 0xae, 0x82, 0xe1, 0x9f, 0x6b, 0xd9, 0x45, 0xd3, 0xbb, 0xf0 +.byte 0x5f, 0x87, 0xed, 0x3c, 0x2c, 0x39, 0x86, 0xda, 0x3f, 0xde, 0xec, 0x72, 0x55, 0xeb, 0x79, 0xa3 +.byte 0xad, 0xdb, 0xdd, 0x7c, 0xb0, 0xba, 0x1c, 0xce, 0xfc, 0xde, 0x4f, 0x35, 0x76, 0xcf, 0x0f, 0xf8 +.byte 0x78, 0x1f, 0x6a, 0x36, 0x51, 0x46, 0x27, 0x61, 0x5b, 0xe9, 0x9e, 0xcf, 0xf0, 0xa2, 0x55, 0x7d +.byte 0x7c, 0x25, 0x8a, 0x6f, 0x2f, 0xb4, 0xc5, 0xcf, 0x84, 0x2e, 0x2b, 0xfd, 0x0d, 0x51, 0x10, 0x6c +.byte 0xfb, 0x5f, 0x1b, 0xbc, 0x1b, 0x7e, 0xc5, 0xae, 0x3b, 0x98, 0x01, 0x31, 0x92, 0xff, 0x0b, 0x57 +.byte 0xf4, 0x9a, 0xb2, 0xb9, 0x57, 0xe9, 0xab, 0xef, 0x0d, 0x76, 0xd1, 0xf0, 0xee, 0xf4, 0xce, 0x86 +.byte 0xa7, 0xe0, 0x6e, 0xe9, 0xb4, 0x69, 0xa1, 0xdf, 0x69, 0xf6, 0x33, 0xc6, 0x69, 0x2e, 0x97, 0x13 +.byte 0x9e, 0xa5, 0x87, 0xb0, 0x57, 0x10, 0x81, 0x37, 0xc9, 0x53, 0xb3, 0xbb, 0x7f, 0xf6, 0x92, 0xd1 +.byte 0x9c, 0xd0, 0x18, 0xf4, 0x92, 0x6e, 0xda, 0x83, 0x4f, 0xa6, 0x63, 0x99, 0x4c, 0xa5, 0xfb, 0x5e +.byte 0xef, 0x21, 0x64, 0x7a, 0x20, 0x5f, 0x6c, 0x64, 0x85, 0x15, 0xcb, 0x37, 0xe9, 0x62, 0x0c, 0x0b +.byte 0x2a, 0x16, 0xdc, 0x01, 0x2e, 0x32, 0xda, 0x3e, 0x4b, 0xf5, 0x9e, 0x3a, 0xf6, 0x17, 0x40, 0x94 +.byte 0xef, 0x9e, 0x91, 0x08, 0x86, 0xfa, 0xbe, 0x63, 0xa8, 0x5a, 0x33, 0xec, 0xcb, 0x74, 0x43, 0x95 +.byte 0xf9, 0x6c, 0x69, 0x52, 0x36, 0xc7, 0x29, 0x6f, 0xfc, 0x55, 0x03, 0x5c, 0x1f, 0xfb, 0x9f, 0xbd +.byte 0x47, 0xeb, 0xe7, 0x49, 0x47, 0x95, 0x0b, 0x4e, 0x89, 0x22, 0x09, 0x49, 0xe0, 0xf5, 0x61, 0x1e +.byte 0xf1, 0xbf, 0x2e, 0x8a, 0x72, 0x6e, 0x80, 0x59, 0xff, 0x57, 0x3a, 0xf9, 0x75, 0x32, 0xa3, 0x4e +.byte 0x5f, 0xec, 0xed, 0x28, 0x62, 0xd9, 0x4d, 0x73, 0xf2, 0xcc, 0x81, 0x17, 0x60, 0xed, 0xcd, 0xeb +.byte 0xdc, 0xdb, 0xa7, 0xca, 0xc5, 0x7e, 0x02, 0xbd, 0xf2, 0x54, 0x08, 0x54, 0xfd, 0xb4, 0x2d, 0x09 +.byte 0x2c, 0x17, 0x54, 0x4a, 0x98, 0xd1, 0x54, 0xe1, 0x51, 0x67, 0x08, 0xd2, 0xed, 0x6e, 0x7e, 0x6f +.byte 0x3f, 0xd2, 0x2d, 0x81, 0x59, 0x29, 0x66, 0xcb, 0x90, 0x39, 0x95, 0x11, 0x1e, 0x74, 0x27, 0xfe +.byte 0xdd, 0xeb, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3b, 0x00, 0x5b, 0x30, 0x39, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48 +.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42 +.byte 0x00, 0x04, 0x29, 0x97, 0xa7, 0xc6, 0x41, 0x7f, 0xc0, 0x0d, 0x9b, 0xe8, 0x01, 0x1b, 0x56, 0xc6 +.byte 0xf2, 0x52, 0xa5, 0xba, 0x2d, 0xb2, 0x12, 0xe8, 0xd2, 0x2e, 0xd7, 0xfa, 0xc9, 0xc5, 0xd8, 0xaa +.byte 0x6d, 0x1f, 0x73, 0x81, 0x3b, 0x3b, 0x98, 0x6b, 0x39, 0x7c, 0x33, 0xa5, 0xc5, 0x4e, 0x86, 0x8e +.byte 0x80, 0x17, 0x68, 0x62, 0x45, 0x57, 0x7d, 0x44, 0x58, 0x1d, 0xb3, 0x37, 0xe5, 0x67, 0x08, 0xeb +.byte 0x66, 0xde, 0x00, 0x3b, 0x00, 0x78, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06 +.byte 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20 +.byte 0x34, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05 +.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xd2, 0xab, 0x8a, 0x37, 0x4f, 0xa3, 0x53 +.byte 0x0d, 0xfe, 0xc1, 0x8a, 0x7b, 0x4b, 0xa8, 0x7b, 0x46, 0x4b, 0x63, 0xb0, 0x62, 0xf6, 0x2d, 0x1b +.byte 0xdb, 0x08, 0x71, 0x21, 0xd2, 0x00, 0xe8, 0x63, 0xbd, 0x9a, 0x27, 0xfb, 0xf0, 0x39, 0x6e, 0x5d +.byte 0xea, 0x3d, 0xa5, 0xc9, 0x81, 0xaa, 0xa3, 0x5b, 0x20, 0x98, 0x45, 0x5d, 0x16, 0xdb, 0xfd, 0xe8 +.byte 0x10, 0x6d, 0xe3, 0x9c, 0xe0, 0xe3, 0xbd, 0x5f, 0x84, 0x62, 0xf3, 0x70, 0x64, 0x33, 0xa0, 0xcb +.byte 0x24, 0x2f, 0x70, 0xba, 0x88, 0xa1, 0x2a, 0xa0, 0x75, 0xf8, 0x81, 0xae, 0x62, 0x06, 0xc4, 0x81 +.byte 0xdb, 0x39, 0x6e, 0x29, 0xb0, 0x1e, 0xfa, 0x2e, 0x5c, 0x00, 0x3d, 0x02, 0x26, 0x30, 0x3b, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31 +.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x10, 0x41, 0x43, 0x20, 0x52, 0x41, 0x49 +.byte 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xba, 0x71, 0x80, 0x7a, 0x4c +.byte 0x86, 0x6e, 0x7f, 0xc8, 0x13, 0x6d, 0xc0, 0xc6, 0x7d, 0x1c, 0x00, 0x97, 0x8f, 0x2c, 0x0c, 0x23 +.byte 0xbb, 0x10, 0x9a, 0x40, 0xa9, 0x1a, 0xb7, 0x87, 0x88, 0xf8, 0x9b, 0x56, 0x6a, 0xfb, 0xe6, 0x7b +.byte 0x8e, 0x8b, 0x92, 0x8e, 0xa7, 0x25, 0x5d, 0x59, 0x11, 0xdb, 0x36, 0x2e, 0xb7, 0x51, 0x17, 0x1f +.byte 0xa9, 0x08, 0x1f, 0x04, 0x17, 0x24, 0x58, 0xaa, 0x37, 0x4a, 0x18, 0xdf, 0xe5, 0x39, 0xd4, 0x57 +.byte 0xfd, 0xd7, 0xc1, 0x2c, 0x91, 0x01, 0x91, 0xe2, 0x22, 0xd4, 0x03, 0xc0, 0x58, 0xfc, 0x77, 0x47 +.byte 0xec, 0x8f, 0x3e, 0x74, 0x43, 0xba, 0xac, 0x34, 0x8d, 0x4d, 0x38, 0x76, 0x67, 0x8e, 0xb0, 0xc8 +.byte 0x6f, 0x30, 0x33, 0x58, 0x71, 0x5c, 0xb4, 0xf5, 0x6b, 0x6e, 0xd4, 0x01, 0x50, 0xb8, 0x13, 0x7e +.byte 0x6c, 0x4a, 0xa3, 0x49, 0xd1, 0x20, 0x19, 0xee, 0xbc, 0xc0, 0x29, 0x18, 0x65, 0xa7, 0xde, 0xfe +.byte 0xef, 0xdd, 0x0a, 0x90, 0x21, 0xe7, 0x1a, 0x67, 0x92, 0x42, 0x10, 0x98, 0x5f, 0x4f, 0x30, 0xbc +.byte 0x3e, 0x1c, 0x45, 0xb4, 0x10, 0xd7, 0x68, 0x40, 0x14, 0xc0, 0x40, 0xfa, 0xe7, 0x77, 0x17, 0x7a +.byte 0xe6, 0x0b, 0x8f, 0x65, 0x5b, 0x3c, 0xd9, 0x9a, 0x52, 0xdb, 0xb5, 0xbd, 0x9e, 0x46, 0xcf, 0x3d +.byte 0xeb, 0x91, 0x05, 0x02, 0xc0, 0x96, 0xb2, 0x76, 0x4c, 0x4d, 0x10, 0x96, 0x3b, 0x92, 0xfa, 0x9c +.byte 0x7f, 0x0f, 0x99, 0xdf, 0xbe, 0x23, 0x35, 0x45, 0x1e, 0x02, 0x5c, 0xfe, 0xb5, 0xa8, 0x9b, 0x99 +.byte 0x25, 0xda, 0x5e, 0xf3, 0x22, 0xc3, 0x39, 0xf5, 0xe4, 0x2a, 0x2e, 0xd3, 0xc6, 0x1f, 0xc4, 0x6c +.byte 0xaa, 0xc5, 0x1c, 0x6a, 0x01, 0x05, 0x4a, 0x2f, 0xd2, 0xc5, 0xc1, 0xa8, 0x34, 0x26, 0x5d, 0x66 +.byte 0xa5, 0xd2, 0x02, 0x21, 0xf9, 0x18, 0xb7, 0x06, 0xf5, 0x4e, 0x99, 0x6f, 0xa8, 0xab, 0x4c, 0x51 +.byte 0xe8, 0xcf, 0x50, 0x18, 0xc5, 0x77, 0xc8, 0x39, 0x09, 0x2c, 0x49, 0x92, 0x32, 0x99, 0xa8, 0xbb +.byte 0x17, 0x17, 0x79, 0xb0, 0x5a, 0xc5, 0xe6, 0xa3, 0xc4, 0x59, 0x65, 0x47, 0x35, 0x83, 0x5e, 0xa9 +.byte 0xe8, 0x35, 0x0b, 0x99, 0xbb, 0xe4, 0xcd, 0x20, 0xc6, 0x9b, 0x4a, 0x06, 0x39, 0xb5, 0x68, 0xfc +.byte 0x22, 0xba, 0xee, 0x55, 0x8c, 0x2b, 0x4e, 0xea, 0xf3, 0xb1, 0xe3, 0xfc, 0xb6, 0x99, 0x9a, 0xd5 +.byte 0x42, 0xfa, 0x71, 0x4d, 0x08, 0xcf, 0x87, 0x1e, 0x6a, 0x71, 0x7d, 0xf9, 0xd3, 0xb4, 0xe9, 0xa5 +.byte 0x71, 0x81, 0x7b, 0xc2, 0x4e, 0x47, 0x96, 0xa5, 0xf6, 0x76, 0x85, 0xa3, 0x28, 0x8f, 0xe9, 0x80 +.byte 0x6e, 0x81, 0x53, 0xa5, 0x6d, 0x5f, 0xb8, 0x48, 0xf9, 0xc2, 0xf9, 0x36, 0xa6, 0x2e, 0x49, 0xff +.byte 0xb8, 0x96, 0xc2, 0x8c, 0x07, 0xb3, 0x9b, 0x88, 0x58, 0xfc, 0xeb, 0x1b, 0x1c, 0xde, 0x2d, 0x70 +.byte 0xe2, 0x97, 0x92, 0x30, 0xa1, 0x89, 0xe3, 0xbc, 0x55, 0xa8, 0x27, 0xd6, 0x4b, 0xed, 0x90, 0xad +.byte 0x8b, 0xfa, 0x63, 0x25, 0x59, 0x2d, 0xa8, 0x35, 0xdd, 0xca, 0x97, 0x33, 0xbc, 0xe5, 0xcd, 0xc7 +.byte 0x9d, 0xd1, 0xec, 0xef, 0x5e, 0x0e, 0x4a, 0x90, 0x06, 0x26, 0x63, 0xad, 0xb9, 0xd9, 0x35, 0x2d +.byte 0x07, 0xba, 0x76, 0x65, 0x2c, 0xac, 0x57, 0x8f, 0x7d, 0xf4, 0x07, 0x94, 0xd7, 0x81, 0x02, 0x96 +.byte 0x5d, 0xa3, 0x07, 0x49, 0xd5, 0x7a, 0xd0, 0x57, 0xf9, 0x1b, 0xe7, 0x53, 0x46, 0x75, 0xaa, 0xb0 +.byte 0x79, 0x42, 0xcb, 0x68, 0x71, 0x08, 0xe9, 0x60, 0xbd, 0x39, 0x69, 0xce, 0xf4, 0xaf, 0xc3, 0x56 +.byte 0x40, 0xc7, 0xad, 0x52, 0xa2, 0x09, 0xe4, 0x6f, 0x86, 0x47, 0x8a, 0x1f, 0xeb, 0x28, 0x27, 0x5d +.byte 0x83, 0x20, 0xaf, 0x04, 0xc9, 0x6c, 0x56, 0x9a, 0x8b, 0x46, 0xf5, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x3d, 0x01, 0x26, 0x30, 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x52, 0x4f, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x08, 0x63, 0x65 +.byte 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x10, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43 +.byte 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xb7, 0x33, 0xb9, 0x7e, 0xc8, 0x25, 0x4a, 0x8e, 0xb5, 0xdb, 0xb4, 0x28, 0x1b, 0xaa +.byte 0x57, 0x90, 0xe8, 0xd1, 0x22, 0xd3, 0x64, 0xba, 0xd3, 0x93, 0xe8, 0xd4, 0xac, 0x86, 0x61, 0x40 +.byte 0x6a, 0x60, 0x57, 0x68, 0x54, 0x84, 0x4d, 0xbc, 0x6a, 0x54, 0x02, 0x05, 0xff, 0xdf, 0x9b, 0x9a +.byte 0x2a, 0xae, 0x5d, 0x07, 0x8f, 0x4a, 0xc3, 0x28, 0x7f, 0xef, 0xfb, 0x2b, 0xfa, 0x79, 0xf1, 0xc7 +.byte 0xad, 0xf0, 0x10, 0x53, 0x24, 0x90, 0x8b, 0x66, 0xc9, 0xa8, 0x88, 0xab, 0xaf, 0x5a, 0xa3, 0x00 +.byte 0xe9, 0xbe, 0xba, 0x46, 0xee, 0x5b, 0x73, 0x7b, 0x2c, 0x17, 0x82, 0x81, 0x5e, 0x62, 0x2c, 0xa1 +.byte 0x02, 0x65, 0xb3, 0xbd, 0xc5, 0x2b, 0x00, 0x7e, 0xc4, 0xfc, 0x03, 0x33, 0x57, 0x0d, 0xed, 0xe2 +.byte 0xfa, 0xce, 0x5d, 0x45, 0xd6, 0x38, 0xcd, 0x35, 0xb6, 0xb2, 0xc1, 0xd0, 0x9c, 0x81, 0x4a, 0xaa +.byte 0xe4, 0xb2, 0x01, 0x5c, 0x1d, 0x8f, 0x5f, 0x99, 0xc4, 0xb1, 0xad, 0xdb, 0x88, 0x21, 0xeb, 0x90 +.byte 0x08, 0x82, 0x80, 0xf3, 0x30, 0xa3, 0x43, 0xe6, 0x90, 0x82, 0xae, 0x55, 0x28, 0x49, 0xed, 0x5b +.byte 0xd7, 0xa9, 0x10, 0x38, 0x0e, 0xfe, 0x8f, 0x4c, 0x5b, 0x9b, 0x46, 0xea, 0x41, 0xf5, 0xb0, 0x08 +.byte 0x74, 0xc3, 0xd0, 0x88, 0x33, 0xb6, 0x7c, 0xd7, 0x74, 0xdf, 0xdc, 0x84, 0xd1, 0x43, 0x0e, 0x75 +.byte 0x39, 0xa1, 0x25, 0x40, 0x28, 0xea, 0x78, 0xcb, 0x0e, 0x2c, 0x2e, 0x39, 0x9d, 0x8c, 0x8b, 0x6e +.byte 0x16, 0x1c, 0x2f, 0x26, 0x82, 0x10, 0xe2, 0xe3, 0x65, 0x94, 0x0a, 0x04, 0xc0, 0x5e, 0xf7, 0x5d +.byte 0x5b, 0xf8, 0x10, 0xe2, 0xd0, 0xba, 0x7a, 0x4b, 0xfb, 0xde, 0x37, 0x00, 0x00, 0x1a, 0x5b, 0x28 +.byte 0xe3, 0xd2, 0x9c, 0x73, 0x3e, 0x32, 0x87, 0x98, 0xa1, 0xc9, 0x51, 0x2f, 0xd7, 0xde, 0xac, 0x33 +.byte 0xb3, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3d, 0x01, 0x26, 0x30, 0x3b, 0x31, 0x18, 0x30 +.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0f, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x16, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xf8, 0xc8, 0xbc, 0xbd, 0x14, 0x50, 0x66 +.byte 0x13, 0xff, 0xf0, 0xd3, 0x79, 0xec, 0x23, 0xf2, 0xb7, 0x1a, 0xc7, 0x8e, 0x85, 0xf1, 0x12, 0x73 +.byte 0xa6, 0x19, 0xaa, 0x10, 0xdb, 0x9c, 0xa2, 0x65, 0x74, 0x5a, 0x77, 0x3e, 0x51, 0x7d, 0x56, 0xf6 +.byte 0xdc, 0x23, 0xb6, 0xd4, 0xed, 0x5f, 0x58, 0xb1, 0x37, 0x4d, 0xd5, 0x49, 0x0e, 0x6e, 0xf5, 0x6a +.byte 0x87, 0xd6, 0xd2, 0x8c, 0xd2, 0x27, 0xc6, 0xe2, 0xff, 0x36, 0x9f, 0x98, 0x65, 0xa0, 0x13, 0x4e +.byte 0xc6, 0x2a, 0x64, 0x9b, 0xd5, 0x90, 0x12, 0xcf, 0x14, 0x06, 0xf4, 0x3b, 0xe3, 0xd4, 0x28, 0xbe +.byte 0xe8, 0x0e, 0xf8, 0xab, 0x4e, 0x48, 0x94, 0x6d, 0x8e, 0x95, 0x31, 0x10, 0x5c, 0xed, 0xa2, 0x2d +.byte 0xbd, 0xd5, 0x3a, 0x6d, 0xb2, 0x1c, 0xbb, 0x60, 0xc0, 0x46, 0x4b, 0x01, 0xf5, 0x49, 0xae, 0x7e +.byte 0x46, 0x8a, 0xd0, 0x74, 0x8d, 0xa1, 0x0c, 0x02, 0xce, 0xee, 0xfc, 0xe7, 0x8f, 0xb8, 0x6b, 0x66 +.byte 0xf3, 0x7f, 0x44, 0x00, 0xbf, 0x66, 0x25, 0x14, 0x2b, 0xdd, 0x10, 0x30, 0x1d, 0x07, 0x96, 0x3f +.byte 0x4d, 0xf6, 0x6b, 0xb8, 0x8f, 0xb7, 0x7b, 0x0c, 0xa5, 0x38, 0xeb, 0xde, 0x47, 0xdb, 0xd5, 0x5d +.byte 0x39, 0xfc, 0x88, 0xa7, 0xf3, 0xd7, 0x2a, 0x74, 0xf1, 0xe8, 0x5a, 0xa2, 0x3b, 0x9f, 0x50, 0xba +.byte 0xa6, 0x8c, 0x45, 0x35, 0xc2, 0x50, 0x65, 0x95, 0xdc, 0x63, 0x82, 0xef, 0xdd, 0xbf, 0x77, 0x4d +.byte 0x9c, 0x62, 0xc9, 0x63, 0x73, 0x16, 0xd0, 0x29, 0x0f, 0x49, 0xa9, 0x48, 0xf0, 0xb3, 0xaa, 0xb7 +.byte 0x6c, 0xc5, 0xa7, 0x30, 0x39, 0x40, 0x5d, 0xae, 0xc4, 0xe2, 0x5d, 0x26, 0x53, 0xf0, 0xce, 0x1c +.byte 0x23, 0x08, 0x61, 0xa8, 0x94, 0x19, 0xba, 0x04, 0x62, 0x40, 0xec, 0x1f, 0x38, 0x70, 0x77, 0x12 +.byte 0x06, 0x71, 0xa7, 0x30, 0x18, 0x5d, 0x25, 0x27, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3e +.byte 0x01, 0x26, 0x30, 0x3c, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x15, 0x41 +.byte 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x32, 0x30, 0x31, 0x31, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41 +.byte 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45 +.byte 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01 +.byte 0x00, 0x95, 0x85, 0x3b, 0x97, 0x6f, 0x2a, 0x3b, 0x2e, 0x3b, 0xcf, 0xa6, 0xf3, 0x29, 0x35, 0xbe +.byte 0xcf, 0x18, 0xac, 0x3e, 0xaa, 0xd9, 0xf8, 0x4d, 0xa0, 0x3e, 0x1a, 0x47, 0xb9, 0xbc, 0x9a, 0xdf +.byte 0xf2, 0xfe, 0xcc, 0x3e, 0x47, 0xe8, 0x7a, 0x96, 0xc2, 0x24, 0x8e, 0x35, 0xf4, 0xa9, 0x0c, 0xfc +.byte 0x82, 0xfd, 0x6d, 0xc1, 0x72, 0x62, 0x27, 0xbd, 0xea, 0x6b, 0xeb, 0xe7, 0x8a, 0xcc, 0x54, 0x3e +.byte 0x90, 0x50, 0xcf, 0x80, 0xd4, 0x95, 0xfb, 0xe8, 0xb5, 0x82, 0xd4, 0x14, 0xc5, 0xb6, 0xa9, 0x55 +.byte 0x25, 0x57, 0xdb, 0xb1, 0x50, 0xf6, 0xb0, 0x60, 0x64, 0x59, 0x7a, 0x69, 0xcf, 0x03, 0xb7, 0x6f +.byte 0x0d, 0xbe, 0xca, 0x3e, 0x6f, 0x74, 0x72, 0xea, 0xaa, 0x30, 0x2a, 0x73, 0x62, 0xbe, 0x49, 0x91 +.byte 0x61, 0xc8, 0x11, 0xfe, 0x0e, 0x03, 0x2a, 0xf7, 0x6a, 0x20, 0xdc, 0x02, 0x15, 0x0d, 0x5e, 0x15 +.byte 0x6a, 0xfc, 0xe3, 0x82, 0xc1, 0xb5, 0xc5, 0x9d, 0x64, 0x09, 0x6c, 0xa3, 0x59, 0x98, 0x07, 0x27 +.byte 0xc7, 0x1b, 0x96, 0x2b, 0x61, 0x74, 0x71, 0x6c, 0x43, 0xf1, 0xf7, 0x35, 0x89, 0x10, 0xe0, 0x9e +.byte 0xec, 0x55, 0xa1, 0x37, 0x22, 0xa2, 0x87, 0x04, 0x05, 0x2c, 0x47, 0x7d, 0xb4, 0x1c, 0xb9, 0x62 +.byte 0x29, 0x66, 0x28, 0xca, 0xb7, 0xe1, 0x93, 0xf5, 0xa4, 0x94, 0x03, 0x99, 0xb9, 0x70, 0x85, 0xb5 +.byte 0xe6, 0x48, 0xea, 0x8d, 0x50, 0xfc, 0xd9, 0xde, 0xcc, 0x6f, 0x07, 0x0e, 0xdd, 0x0b, 0x72, 0x9d +.byte 0x80, 0x30, 0x16, 0x07, 0x95, 0x3f, 0x28, 0x0e, 0xfd, 0xc5, 0x75, 0x4f, 0x53, 0xd6, 0x74, 0x9a +.byte 0xb4, 0x24, 0x2e, 0x8e, 0x02, 0x91, 0xcf, 0x76, 0xc5, 0x9b, 0x1e, 0x55, 0x74, 0x9c, 0x78, 0x21 +.byte 0xb1, 0xf0, 0x2d, 0xf1, 0x0b, 0x9f, 0xc2, 0xd5, 0x96, 0x18, 0x1f, 0xf0, 0x54, 0x22, 0x7a, 0x8c +.byte 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3f, 0x02, 0x26, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e, 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1b, 0x30, 0x19 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x12, 0x55, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x20, 0x47, 0x32, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc5, 0xe6, 0x2b, 0x6f, 0x7c, 0xef +.byte 0x26, 0x05, 0x27, 0xa3, 0x81, 0x24, 0xda, 0x6f, 0xcb, 0x01, 0xf9, 0x99, 0x9a, 0xa9, 0x32, 0xc2 +.byte 0x22, 0x87, 0x61, 0x41, 0x91, 0x3b, 0xcb, 0xc3, 0x68, 0x1b, 0x06, 0xc5, 0x4c, 0xa9, 0x2b, 0xc1 +.byte 0x67, 0x17, 0x22, 0x1d, 0x2b, 0xed, 0xf9, 0x29, 0x89, 0x93, 0xa2, 0x78, 0xbd, 0x92, 0x6b, 0xa0 +.byte 0xa3, 0x0d, 0xa2, 0x7e, 0xca, 0x93, 0xb3, 0xa6, 0xd1, 0x8c, 0x35, 0xd5, 0x75, 0xf9, 0x17, 0xf6 +.byte 0xcf, 0x45, 0xc5, 0xe5, 0x7a, 0xec, 0x77, 0x93, 0xa0, 0x8f, 0x23, 0xae, 0x0e, 0x1a, 0x03, 0x7f +.byte 0xbe, 0xd4, 0xd0, 0xed, 0x2e, 0x7b, 0xab, 0x46, 0x23, 0x5b, 0xff, 0x2c, 0xe6, 0x54, 0x7a, 0x94 +.byte 0xc0, 0x2a, 0x15, 0xf0, 0xc9, 0x8d, 0xb0, 0x7a, 0x3b, 0x24, 0xe1, 0xd7, 0x68, 0xe2, 0x31, 0x3c +.byte 0x06, 0x33, 0x46, 0xb6, 0x54, 0x11, 0xa6, 0xa5, 0x2f, 0x22, 0x54, 0x2a, 0x58, 0x0d, 0x01, 0x02 +.byte 0xf1, 0xfa, 0x15, 0x51, 0x67, 0x6c, 0xc0, 0xfa, 0xd7, 0xb6, 0x1b, 0x7f, 0xd1, 0x56, 0x88, 0x2f +.byte 0x1a, 0x3a, 0x8d, 0x3b, 0xbb, 0x82, 0x11, 0xe0, 0x47, 0x00, 0xd0, 0x52, 0x87, 0xab, 0xfb, 0x86 +.byte 0x7e, 0x0f, 0x24, 0x6b, 0x40, 0x9d, 0x34, 0x67, 0xbc, 0x8d, 0xc7, 0x2d, 0x86, 0x6f, 0x79, 0x3e +.byte 0x8e, 0xa9, 0x3c, 0x17, 0x4b, 0x7f, 0xb0, 0x99, 0xe3, 0xb0, 0x71, 0x60, 0xdc, 0x0b, 0xf5, 0x64 +.byte 0xc3, 0xce, 0x43, 0xbc, 0x6d, 0x71, 0xb9, 0xd2, 0xde, 0x27, 0x5b, 0x8a, 0xe8, 0xd8, 0xc6, 0xae +.byte 0xe1, 0x59, 0x7d, 0xcf, 0x28, 0x2d, 0x35, 0xb8, 0x95, 0x56, 0x1a, 0xf1, 0xb2, 0x58, 0x4b, 0xb7 +.byte 0x12, 0x37, 0xc8, 0x7c, 0xb3, 0xed, 0x4b, 0x80, 0xe1, 0x8d, 0xfa, 0x32, 0x23, 0xb6, 0x6f, 0xb7 +.byte 0x48, 0x95, 0x08, 0xb1, 0x44, 0x4e, 0x85, 0x8c, 0x3a, 0x02, 0x54, 0x20, 0x2f, 0xdf, 0xbf, 0x57 +.byte 0x4f, 0x3b, 0x3a, 0x90, 0x21, 0xd7, 0xc1, 0x26, 0x35, 0x54, 0x20, 0xec, 0xc7, 0x3f, 0x47, 0xec +.byte 0xef, 0x5a, 0xbf, 0x4b, 0x7a, 0xc1, 0xad, 0x3b, 0x17, 0x50, 0x5c, 0x62, 0xd8, 0x0f, 0x4b, 0x4a +.byte 0xdc, 0x2b, 0xfa, 0x6e, 0xbc, 0x73, 0x92, 0xcd, 0xec, 0xc7, 0x50, 0xe8, 0x41, 0x96, 0xd7, 0xa9 +.byte 0x7e, 0x6d, 0xd8, 0xe9, 0x1d, 0x8f, 0x8a, 0xb5, 0xb9, 0x58, 0x92, 0xba, 0x4a, 0x92, 0x2b, 0x0c +.byte 0x56, 0xfd, 0x80, 0xeb, 0x08, 0xf0, 0x5e, 0x29, 0x6e, 0x1b, 0x1c, 0x0c, 0xaf, 0x8f, 0x93, 0x89 +.byte 0xad, 0xdb, 0xbd, 0xa3, 0x9e, 0x21, 0xca, 0x89, 0x19, 0xec, 0xdf, 0xb5, 0xc3, 0x1a, 0xeb, 0x16 +.byte 0xfe, 0x78, 0x36, 0x4c, 0xd6, 0x6e, 0xd0, 0x3e, 0x17, 0x1c, 0x90, 0x17, 0x6b, 0x26, 0xba, 0xfb +.byte 0x7a, 0x2f, 0xbf, 0x11, 0x1c, 0x18, 0x0e, 0x2d, 0x73, 0x03, 0x8f, 0xa0, 0xe5, 0x35, 0xa0, 0x5a +.byte 0xe2, 0x4c, 0x75, 0x1d, 0x71, 0xe1, 0x39, 0x38, 0x53, 0x78, 0x40, 0xcc, 0x83, 0x93, 0xd7, 0x0a +.byte 0x9e, 0x9d, 0x5b, 0x8f, 0x8a, 0xe4, 0xe5, 0xe0, 0x48, 0xe4, 0x48, 0xb2, 0x47, 0xcd, 0x4e, 0x2a +.byte 0x75, 0x2a, 0x7b, 0xf2, 0x22, 0xf6, 0xc9, 0xbe, 0x09, 0x91, 0x96, 0x57, 0x7a, 0x88, 0x88, 0xac +.byte 0xee, 0x70, 0xac, 0xf9, 0xdc, 0x29, 0xe3, 0x0c, 0x1c, 0x3b, 0x12, 0x4e, 0x44, 0xd6, 0xa7, 0x4e +.byte 0xb0, 0x26, 0xc8, 0xf3, 0xd9, 0x1a, 0x97, 0x91, 0x68, 0xea, 0xef, 0x8d, 0x46, 0x06, 0xd2, 0x56 +.byte 0x45, 0x58, 0x9a, 0x3c, 0x0c, 0x0f, 0x83, 0xb8, 0x05, 0x25, 0xc3, 0x39, 0xcf, 0x3b, 0xa4, 0x34 +.byte 0x89, 0xb7, 0x79, 0x12, 0x2f, 0x47, 0xc5, 0xe7, 0xa9, 0x97, 0x69, 0xfc, 0xa6, 0x77, 0x67, 0xb5 +.byte 0xdf, 0x7b, 0xf1, 0x7a, 0x65, 0x15, 0xe4, 0x61, 0x56, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x3f, 0x01, 0x26, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x46, 0x52, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x08, 0x43, 0x65, 0x72 +.byte 0x74, 0x70, 0x6c, 0x75, 0x73, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12 +.byte 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x20 +.byte 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xdc, 0x50, 0x96, 0xd0, 0x12, 0xf8, 0x35, 0xd2, 0x08, 0x78, 0x7a, 0xb6, 0x52 +.byte 0x70, 0xfd, 0x6f, 0xee, 0xcf, 0xb9, 0x11, 0xcb, 0x5d, 0x77, 0xe1, 0xec, 0xe9, 0x7e, 0x04, 0x8d +.byte 0xd6, 0xcc, 0x6f, 0x73, 0x43, 0x57, 0x60, 0xac, 0x33, 0x0a, 0x44, 0xec, 0x03, 0x5f, 0x1c, 0x80 +.byte 0x24, 0x91, 0xe5, 0xa8, 0x91, 0x56, 0x12, 0x82, 0xf7, 0xe0, 0x2b, 0xf4, 0xdb, 0xae, 0x61, 0x2e +.byte 0x89, 0x10, 0x8d, 0x6b, 0x6c, 0xba, 0xb3, 0x02, 0xbd, 0xd5, 0x36, 0xc5, 0x48, 0x37, 0x23, 0xe2 +.byte 0xf0, 0x5a, 0x37, 0x52, 0x33, 0x17, 0x12, 0xe2, 0xd1, 0x60, 0x4d, 0xbe, 0x2f, 0x41, 0x11, 0xe3 +.byte 0xf6, 0x17, 0x25, 0x0c, 0x8b, 0x91, 0xc0, 0x1b, 0x99, 0x7b, 0x99, 0x56, 0x0d, 0xaf, 0xee, 0xd2 +.byte 0xbc, 0x47, 0x57, 0xe3, 0x79, 0x49, 0x7b, 0x34, 0x89, 0x27, 0x24, 0x84, 0xde, 0xb1, 0xec, 0xe9 +.byte 0x58, 0x4e, 0xfe, 0x4e, 0xdf, 0x5a, 0xbe, 0x41, 0xad, 0xac, 0x08, 0xc5, 0x18, 0x0e, 0xef, 0xd2 +.byte 0x53, 0xee, 0x6c, 0xd0, 0x9d, 0x12, 0x01, 0x13, 0x8d, 0xdc, 0x80, 0x62, 0xf7, 0x95, 0xa9, 0x44 +.byte 0x88, 0x4a, 0x71, 0x4e, 0x60, 0x55, 0x9e, 0xdb, 0x23, 0x19, 0x79, 0x56, 0x07, 0x0c, 0x3f, 0x63 +.byte 0x0b, 0x5c, 0xb0, 0xe2, 0xbe, 0x7e, 0x15, 0xfc, 0x94, 0x33, 0x58, 0x41, 0x38, 0x74, 0xc4, 0xe1 +.byte 0x8f, 0x8b, 0xdf, 0x26, 0xac, 0x1f, 0xb5, 0x8b, 0x3b, 0xb7, 0x43, 0x59, 0x6b, 0xb0, 0x24, 0xa6 +.byte 0x6d, 0x90, 0x8b, 0xc4, 0x72, 0xea, 0x5d, 0x33, 0x98, 0xb7, 0xcb, 0xde, 0x5e, 0x7b, 0xef, 0x94 +.byte 0xf1, 0x1b, 0x3e, 0xca, 0xc9, 0x21, 0xc1, 0xc5, 0x98, 0x02, 0xaa, 0xa2, 0xf6, 0x5b, 0x77, 0x9b +.byte 0xf5, 0x7e, 0x96, 0x55, 0x34, 0x1c, 0x67, 0x69, 0xc0, 0xf1, 0x42, 0xe3, 0x47, 0xac, 0xfc, 0x28 +.byte 0x1c, 0x66, 0x55, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x41, 0x02, 0x26, 0x30, 0x3f, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x30, 0x30, 0x2e, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x27, 0x47, 0x6f, 0x76, 0x65, 0x72, 0x6e, 0x6d, 0x65, 0x6e, 0x74 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x9a, 0x25 +.byte 0xb8, 0xec, 0xcc, 0xa2, 0x75, 0xa8, 0x7b, 0xf7, 0xce, 0x5b, 0x59, 0x8a, 0xc9, 0xd1, 0x86, 0x12 +.byte 0x08, 0x54, 0xec, 0x9c, 0xf2, 0xe7, 0x46, 0xf6, 0x88, 0xf3, 0x7c, 0xe9, 0xa5, 0xdf, 0x4c, 0x47 +.byte 0x36, 0xa4, 0x1b, 0x01, 0x1c, 0x7f, 0x1e, 0x57, 0x8a, 0x8d, 0xc3, 0xc5, 0xd1, 0x21, 0xe3, 0xda +.byte 0x24, 0x3f, 0x48, 0x2b, 0xfb, 0x9f, 0x2e, 0xa1, 0x94, 0xe7, 0x2c, 0x1c, 0x93, 0xd1, 0xbf, 0x1b +.byte 0x01, 0x87, 0x53, 0x99, 0xce, 0xa7, 0xf5, 0x0a, 0x21, 0x76, 0x77, 0xff, 0xa9, 0xb7, 0xc6, 0x73 +.byte 0x94, 0x4f, 0x46, 0xf7, 0x10, 0x49, 0x37, 0xfa, 0xa8, 0x59, 0x49, 0x5d, 0x6a, 0x81, 0x07, 0x56 +.byte 0xf2, 0x8a, 0xf9, 0x06, 0xd0, 0xf7, 0x70, 0x22, 0x4d, 0xb4, 0xb7, 0x41, 0xb9, 0x32, 0xb8, 0xb1 +.byte 0xf0, 0xb1, 0xc3, 0x9c, 0x3f, 0x70, 0xfd, 0x53, 0xdd, 0x81, 0xaa, 0xd8, 0x63, 0x78, 0xf6, 0xd8 +.byte 0x53, 0x6e, 0xa1, 0xac, 0x6a, 0x84, 0x24, 0x72, 0x54, 0x86, 0xc6, 0xd2, 0xb2, 0xca, 0x1c, 0x0e +.byte 0x79, 0x81, 0xd6, 0xb5, 0x70, 0x62, 0x08, 0x01, 0x2e, 0x4e, 0x4f, 0x0e, 0xd5, 0x11, 0xaf, 0xa9 +.byte 0xaf, 0xe5, 0x9a, 0xbf, 0xdc, 0xcc, 0x87, 0x6d, 0x26, 0xe4, 0xc9, 0x57, 0xa2, 0xfb, 0x96, 0xf9 +.byte 0xcc, 0xe1, 0x3f, 0x53, 0x8c, 0x6c, 0x4c, 0x7e, 0x9b, 0x53, 0x08, 0x0b, 0x6c, 0x17, 0xfb, 0x67 +.byte 0xc8, 0xc2, 0xad, 0xb1, 0xcd, 0x80, 0xb4, 0x97, 0xdc, 0x76, 0x01, 0x16, 0x15, 0xe9, 0x6a, 0xd7 +.byte 0xa4, 0xe1, 0x78, 0x47, 0xce, 0x86, 0xd5, 0xfb, 0x31, 0xf3, 0xfa, 0x31, 0xbe, 0x34, 0xaa, 0x28 +.byte 0xfb, 0x70, 0x4c, 0x1d, 0x49, 0xc7, 0xaf, 0x2c, 0x9d, 0x6d, 0x66, 0xa6, 0xb6, 0x8d, 0x64, 0x7e +.byte 0xb5, 0x20, 0x6a, 0x9d, 0x3b, 0x81, 0xb6, 0x8f, 0x40, 0x00, 0x67, 0x4b, 0x89, 0x86, 0xb8, 0xcc +.byte 0x65, 0xfe, 0x15, 0x53, 0xe9, 0x04, 0xc1, 0xd6, 0x5f, 0x1d, 0x44, 0xd7, 0x0a, 0x2f, 0x27, 0x9a +.byte 0x46, 0x7d, 0xa1, 0x0d, 0x75, 0xad, 0x54, 0x86, 0x15, 0xdc, 0x49, 0x3b, 0xf1, 0x96, 0xce, 0x0f +.byte 0x9b, 0xa0, 0xec, 0xa3, 0x7a, 0x5d, 0xbe, 0xd5, 0x2a, 0x75, 0x42, 0xe5, 0x7b, 0xde, 0xa5, 0xb6 +.byte 0xaa, 0xaf, 0x28, 0xac, 0xac, 0x90, 0xac, 0x38, 0xb7, 0xd5, 0x68, 0x35, 0x26, 0x7a, 0xdc, 0xf7 +.byte 0x3b, 0xf3, 0xfd, 0x45, 0x9b, 0xd1, 0xbb, 0x43, 0x78, 0x6e, 0x6f, 0xf1, 0x42, 0x54, 0x6a, 0x98 +.byte 0xf0, 0x0d, 0xad, 0x97, 0xe9, 0x52, 0x5e, 0xe9, 0xd5, 0x6a, 0x72, 0xde, 0x6a, 0xf7, 0x1b, 0x60 +.byte 0x14, 0xf4, 0xa5, 0xe4, 0xb6, 0x71, 0x67, 0xaa, 0x1f, 0xea, 0xe2, 0x4d, 0xc1, 0x42, 0x40, 0xfe +.byte 0x67, 0x46, 0x17, 0x38, 0x2f, 0x47, 0x3f, 0x71, 0x9c, 0xae, 0xe5, 0x21, 0xca, 0x61, 0x2d, 0x6d +.byte 0x07, 0xa8, 0x84, 0x7c, 0x2d, 0xee, 0x51, 0x25, 0xf1, 0x63, 0x90, 0x9e, 0xfd, 0xe1, 0x57, 0x88 +.byte 0x6b, 0xef, 0x8a, 0x23, 0x6d, 0xb1, 0xe6, 0xbd, 0x3f, 0xad, 0xd1, 0x3d, 0x96, 0x0b, 0x85, 0x8d +.byte 0xcd, 0x6b, 0x27, 0xbb, 0xb7, 0x05, 0x9b, 0xec, 0xbb, 0x91, 0xa9, 0x0a, 0x07, 0x12, 0x02, 0x97 +.byte 0x4e, 0x20, 0x90, 0xf0, 0xff, 0x0d, 0x1e, 0xe2, 0x41, 0x3b, 0xd3, 0x40, 0x3a, 0xe7, 0x8d, 0x5d +.byte 0xda, 0x66, 0xe4, 0x02, 0xb0, 0x07, 0x52, 0x98, 0x5c, 0x0e, 0x8e, 0x33, 0x9c, 0xc2, 0xa6, 0x95 +.byte 0xfb, 0x55, 0x19, 0x6e, 0x4c, 0x8e, 0xae, 0x4b, 0x0f, 0xbd, 0xc1, 0x38, 0x4d, 0x5e, 0x8f, 0x84 +.byte 0x1d, 0x66, 0xcd, 0xc5, 0x60, 0x96, 0xb4, 0x52, 0x5a, 0x05, 0x89, 0x8e, 0x95, 0x7a, 0x98, 0xc1 +.byte 0x91, 0x3c, 0x95, 0x23, 0xb2, 0x0e, 0xf4, 0x79, 0xb4, 0xc9, 0x7c, 0xc1, 0x4a, 0x21, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x41, 0x01, 0x26, 0x30, 0x3f, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x20, 0x53, 0x69, 0x67, 0x6e +.byte 0x61, 0x74, 0x75, 0x72, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x2e, 0x31 +.byte 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x44, 0x53, 0x54, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x58, 0x33, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xdf, 0xaf, 0xe9, 0x97, 0x50, 0x08, 0x83 +.byte 0x57, 0xb4, 0xcc, 0x62, 0x65, 0xf6, 0x90, 0x82, 0xec, 0xc7, 0xd3, 0x2c, 0x6b, 0x30, 0xca, 0x5b +.byte 0xec, 0xd9, 0xc3, 0x7d, 0xc7, 0x40, 0xc1, 0x18, 0x14, 0x8b, 0xe0, 0xe8, 0x33, 0x76, 0x49, 0x2a +.byte 0xe3, 0x3f, 0x21, 0x49, 0x93, 0xac, 0x4e, 0x0e, 0xaf, 0x3e, 0x48, 0xcb, 0x65, 0xee, 0xfc, 0xd3 +.byte 0x21, 0x0f, 0x65, 0xd2, 0x2a, 0xd9, 0x32, 0x8f, 0x8c, 0xe5, 0xf7, 0x77, 0xb0, 0x12, 0x7b, 0xb5 +.byte 0x95, 0xc0, 0x89, 0xa3, 0xa9, 0xba, 0xed, 0x73, 0x2e, 0x7a, 0x0c, 0x06, 0x32, 0x83, 0xa2, 0x7e +.byte 0x8a, 0x14, 0x30, 0xcd, 0x11, 0xa0, 0xe1, 0x2a, 0x38, 0xb9, 0x79, 0x0a, 0x31, 0xfd, 0x50, 0xbd +.byte 0x80, 0x65, 0xdf, 0xb7, 0x51, 0x63, 0x83, 0xc8, 0xe2, 0x88, 0x61, 0xea, 0x4b, 0x61, 0x81, 0xec +.byte 0x52, 0x6b, 0xb9, 0xa2, 0xe2, 0x4b, 0x1a, 0x28, 0x9f, 0x48, 0xa3, 0x9e, 0x0c, 0xda, 0x09, 0x8e +.byte 0x3e, 0x17, 0x2e, 0x1e, 0xdd, 0x20, 0xdf, 0x5b, 0xc6, 0x2a, 0x8a, 0xab, 0x2e, 0xbd, 0x70, 0xad +.byte 0xc5, 0x0b, 0x1a, 0x25, 0x90, 0x74, 0x72, 0xc5, 0x7b, 0x6a, 0xab, 0x34, 0xd6, 0x30, 0x89, 0xff +.byte 0xe5, 0x68, 0x13, 0x7b, 0x54, 0x0b, 0xc8, 0xd6, 0xae, 0xec, 0x5a, 0x9c, 0x92, 0x1e, 0x3d, 0x64 +.byte 0xb3, 0x8c, 0xc6, 0xdf, 0xbf, 0xc9, 0x41, 0x70, 0xec, 0x16, 0x72, 0xd5, 0x26, 0xec, 0x38, 0x55 +.byte 0x39, 0x43, 0xd0, 0xfc, 0xfd, 0x18, 0x5c, 0x40, 0xf1, 0x97, 0xeb, 0xd5, 0x9a, 0x9b, 0x8d, 0x1d +.byte 0xba, 0xda, 0x25, 0xb9, 0xc6, 0xd8, 0xdf, 0xc1, 0x15, 0x02, 0x3a, 0xab, 0xda, 0x6e, 0xf1, 0x3e +.byte 0x2e, 0xf5, 0x5c, 0x08, 0x9c, 0x3c, 0xd6, 0x83, 0x69, 0xe4, 0x10, 0x9b, 0x19, 0x2a, 0xb6, 0x29 +.byte 0x57, 0xe3, 0xe5, 0x3d, 0x9b, 0x9f, 0xf0, 0x02, 0x5d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x43 +.byte 0x02, 0x26, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69 +.byte 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x13, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72 +.byte 0x65, 0x6d, 0x69, 0x75, 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc4, 0x12, 0xdf, 0xa9, 0x5f, 0xfe, 0x41, 0xdd, 0xdd, 0xf5 +.byte 0x9f, 0x8a, 0xe3, 0xf6, 0xac, 0xe1, 0x3c, 0x78, 0x9a, 0xbc, 0xd8, 0xf0, 0x7f, 0x7a, 0xa0, 0x33 +.byte 0x2a, 0xdc, 0x8d, 0x20, 0x5b, 0xae, 0x2d, 0x6f, 0xe7, 0x93, 0xd9, 0x36, 0x70, 0x6a, 0x68, 0xcf +.byte 0x8e, 0x51, 0xa3, 0x85, 0x5b, 0x67, 0x04, 0xa0, 0x10, 0x24, 0x6f, 0x5d, 0x28, 0x82, 0xc1, 0x97 +.byte 0x57, 0xd8, 0x48, 0x29, 0x13, 0xb6, 0xe1, 0xbe, 0x91, 0x4d, 0xdf, 0x85, 0x0c, 0x53, 0x18, 0x9a +.byte 0x1e, 0x24, 0xa2, 0x4f, 0x8f, 0xf0, 0xa2, 0x85, 0x0b, 0xcb, 0xf4, 0x29, 0x7f, 0xd2, 0xa4, 0x58 +.byte 0xee, 0x26, 0x4d, 0xc9, 0xaa, 0xa8, 0x7b, 0x9a, 0xd9, 0xfa, 0x38, 0xde, 0x44, 0x57, 0x15, 0xe5 +.byte 0xf8, 0x8c, 0xc8, 0xd9, 0x48, 0xe2, 0x0d, 0x16, 0x27, 0x1d, 0x1e, 0xc8, 0x83, 0x85, 0x25, 0xb7 +.byte 0xba, 0xaa, 0x55, 0x41, 0xcc, 0x03, 0x22, 0x4b, 0x2d, 0x91, 0x8d, 0x8b, 0xe6, 0x89, 0xaf, 0x66 +.byte 0xc7, 0xe9, 0xff, 0x2b, 0xe9, 0x3c, 0xac, 0xda, 0xd2, 0xb3, 0xc3, 0xe1, 0x68, 0x9c, 0x89, 0xf8 +.byte 0x7a, 0x00, 0x56, 0xde, 0xf4, 0x55, 0x95, 0x6c, 0xfb, 0xba, 0x64, 0xdd, 0x62, 0x8b, 0xdf, 0x0b +.byte 0x77, 0x32, 0xeb, 0x62, 0xcc, 0x26, 0x9a, 0x9b, 0xbb, 0xaa, 0x62, 0x83, 0x4c, 0xb4, 0x06, 0x7a +.byte 0x30, 0xc8, 0x29, 0xbf, 0xed, 0x06, 0x4d, 0x97, 0xb9, 0x1c, 0xc4, 0x31, 0x2b, 0xd5, 0x5f, 0xbc +.byte 0x53, 0x12, 0x17, 0x9c, 0x99, 0x57, 0x29, 0x66, 0x77, 0x61, 0x21, 0x31, 0x07, 0x2e, 0x25, 0x49 +.byte 0x9d, 0x18, 0xf2, 0xee, 0xf3, 0x2b, 0x71, 0x8c, 0xb5, 0xba, 0x39, 0x07, 0x49, 0x77, 0xfc, 0xef +.byte 0x2e, 0x92, 0x90, 0x05, 0x8d, 0x2d, 0x2f, 0x77, 0x7b, 0xef, 0x43, 0xbf, 0x35, 0xbb, 0x9a, 0xd8 +.byte 0xf9, 0x73, 0xa7, 0x2c, 0xf2, 0xd0, 0x57, 0xee, 0x28, 0x4e, 0x26, 0x5f, 0x8f, 0x90, 0x68, 0x09 +.byte 0x2f, 0xb8, 0xf8, 0xdc, 0x06, 0xe9, 0x2e, 0x9a, 0x3e, 0x51, 0xa7, 0xd1, 0x22, 0xc4, 0x0a, 0xa7 +.byte 0x38, 0x48, 0x6c, 0xb3, 0xf9, 0xff, 0x7d, 0xab, 0x86, 0x57, 0xe3, 0xba, 0xd6, 0x85, 0x78, 0x77 +.byte 0xba, 0x43, 0xea, 0x48, 0x7f, 0xf6, 0xd8, 0xbe, 0x23, 0x6d, 0x1e, 0xbf, 0xd1, 0x36, 0x6c, 0x58 +.byte 0x5c, 0xf1, 0xee, 0xa4, 0x19, 0x54, 0x1a, 0xf5, 0x03, 0xd2, 0x76, 0xe6, 0xe1, 0x8c, 0xbd, 0x3c +.byte 0xb3, 0xd3, 0x48, 0x4b, 0xe2, 0xc8, 0xf8, 0x7f, 0x92, 0xa8, 0x76, 0x46, 0x9c, 0x42, 0x65, 0x3e +.byte 0xa4, 0x1e, 0xc1, 0x07, 0x03, 0x5a, 0x46, 0x2d, 0xb8, 0x97, 0xf3, 0xb7, 0xd5, 0xb2, 0x55, 0x21 +.byte 0xef, 0xba, 0xdc, 0x4c, 0x00, 0x97, 0xfb, 0x14, 0x95, 0x27, 0x33, 0xbf, 0xe8, 0x43, 0x47, 0x46 +.byte 0xd2, 0x08, 0x99, 0x16, 0x60, 0x3b, 0x9a, 0x7e, 0xd2, 0xe6, 0xed, 0x38, 0xea, 0xec, 0x01, 0x1e +.byte 0x3c, 0x48, 0x56, 0x49, 0x09, 0xc7, 0x4c, 0x37, 0x00, 0x9e, 0x88, 0x0e, 0xc0, 0x73, 0xe1, 0x6f +.byte 0x66, 0xe9, 0x72, 0x47, 0x30, 0x3e, 0x10, 0xe5, 0x0b, 0x03, 0xc9, 0x9a, 0x42, 0x00, 0x6c, 0xc5 +.byte 0x94, 0x7e, 0x61, 0xc4, 0x8a, 0xdf, 0x7f, 0x82, 0x1a, 0x0b, 0x59, 0xc4, 0x59, 0x32, 0x77, 0xb3 +.byte 0xbc, 0x60, 0x69, 0x56, 0x39, 0xfd, 0xb4, 0x06, 0x7b, 0x2c, 0xd6, 0x64, 0x36, 0xd9, 0xbd, 0x48 +.byte 0xed, 0x84, 0x1f, 0x7e, 0xa5, 0x22, 0x8f, 0x2a, 0xb8, 0x42, 0xf4, 0x82, 0xb7, 0xd4, 0x53, 0x90 +.byte 0x78, 0x4e, 0x2d, 0x1a, 0xfd, 0x81, 0x6f, 0x44, 0xd7, 0x3b, 0x01, 0x74, 0x96, 0x42, 0xe0, 0x00 +.byte 0xe2, 0x2e, 0x6b, 0xea, 0xc5, 0xee, 0x72, 0xac, 0xbb, 0xbf, 0xfe, 0xea, 0xaa, 0xa8, 0xf8, 0xdc +.byte 0xf6, 0xb2, 0x79, 0x8a, 0xb6, 0x67, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x44, 0x01, 0x26, 0x30 +.byte 0x42, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16 +.byte 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x12, 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xda, 0xcc, 0x18, 0x63, 0x30, 0xfd, 0xf4, 0x17, 0x23, 0x1a, 0x56, 0x7e +.byte 0x5b, 0xdf, 0x3c, 0x6c, 0x38, 0xe4, 0x71, 0xb7, 0x78, 0x91, 0xd4, 0xbc, 0xa1, 0xd8, 0x4c, 0xf8 +.byte 0xa8, 0x43, 0xb6, 0x03, 0xe9, 0x4d, 0x21, 0x07, 0x08, 0x88, 0xda, 0x58, 0x2f, 0x66, 0x39, 0x29 +.byte 0xbd, 0x05, 0x78, 0x8b, 0x9d, 0x38, 0xe8, 0x05, 0xb7, 0x6a, 0x7e, 0x71, 0xa4, 0xe6, 0xc4, 0x60 +.byte 0xa6, 0xb0, 0xef, 0x80, 0xe4, 0x89, 0x28, 0x0f, 0x9e, 0x25, 0xd6, 0xed, 0x83, 0xf3, 0xad, 0xa6 +.byte 0x91, 0xc7, 0x98, 0xc9, 0x42, 0x18, 0x35, 0x14, 0x9d, 0xad, 0x98, 0x46, 0x92, 0x2e, 0x4f, 0xca +.byte 0xf1, 0x87, 0x43, 0xc1, 0x16, 0x95, 0x57, 0x2d, 0x50, 0xef, 0x89, 0x2d, 0x80, 0x7a, 0x57, 0xad +.byte 0xf2, 0xee, 0x5f, 0x6b, 0xd2, 0x00, 0x8d, 0xb9, 0x14, 0xf8, 0x14, 0x15, 0x35, 0xd9, 0xc0, 0x46 +.byte 0xa3, 0x7b, 0x72, 0xc8, 0x91, 0xbf, 0xc9, 0x55, 0x2b, 0xcd, 0xd0, 0x97, 0x3e, 0x9c, 0x26, 0x64 +.byte 0xcc, 0xdf, 0xce, 0x83, 0x19, 0x71, 0xca, 0x4e, 0xe6, 0xd4, 0xd5, 0x7b, 0xa9, 0x19, 0xcd, 0x55 +.byte 0xde, 0xc8, 0xec, 0xd2, 0x5e, 0x38, 0x53, 0xe5, 0x5c, 0x4f, 0x8c, 0x2d, 0xfe, 0x50, 0x23, 0x36 +.byte 0xfc, 0x66, 0xe6, 0xcb, 0x8e, 0xa4, 0x39, 0x19, 0x00, 0xb7, 0x95, 0x02, 0x39, 0x91, 0x0b, 0x0e +.byte 0xfe, 0x38, 0x2e, 0xd1, 0x1d, 0x05, 0x9a, 0xf6, 0x4d, 0x3e, 0x6f, 0x0f, 0x07, 0x1d, 0xaf, 0x2c +.byte 0x1e, 0x8f, 0x60, 0x39, 0xe2, 0xfa, 0x36, 0x53, 0x13, 0x39, 0xd4, 0x5e, 0x26, 0x2b, 0xdb, 0x3d +.byte 0xa8, 0x14, 0xbd, 0x32, 0xeb, 0x18, 0x03, 0x28, 0x52, 0x04, 0x71, 0xe5, 0xab, 0x33, 0x3d, 0xe1 +.byte 0x38, 0xbb, 0x07, 0x36, 0x84, 0x62, 0x9c, 0x79, 0xea, 0x16, 0x30, 0xf4, 0x5f, 0xc0, 0x2b, 0xe8 +.byte 0x71, 0x6b, 0xe4, 0xf9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x44, 0x02, 0x26, 0x30, 0x42, 0x31 +.byte 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x09, 0x41, 0x43, 0x43, 0x56, 0x52, 0x41 +.byte 0x49, 0x5a, 0x31, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x07, 0x50, 0x4b +.byte 0x49, 0x41, 0x43, 0x43, 0x56, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04 +.byte 0x41, 0x43, 0x43, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45 +.byte 0x53, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0x9b, 0xa9, 0xab, 0xbf, 0x61, 0x4a, 0x97, 0xaf, 0x2f, 0x97, 0x66, 0x9a, 0x74, 0x5f +.byte 0xd0, 0xd9, 0x96, 0xfd, 0xcf, 0xe2, 0xe4, 0x66, 0xef, 0x1f, 0x1f, 0x47, 0x33, 0xc2, 0x44, 0xa3 +.byte 0xdf, 0x9a, 0xde, 0x1f, 0xb5, 0x54, 0xdd, 0x15, 0x7c, 0x69, 0x35, 0x11, 0x6f, 0xbb, 0xc8, 0x0c +.byte 0x8e, 0x6a, 0x18, 0x1e, 0xd8, 0x8f, 0xd9, 0x16, 0xbc, 0x10, 0x48, 0x36, 0x5c, 0xf0, 0x63, 0xb3 +.byte 0x90, 0x5a, 0x5c, 0x24, 0x37, 0xd7, 0xa3, 0xd6, 0xcb, 0x09, 0x71, 0xb9, 0xf1, 0x01, 0x72, 0x84 +.byte 0xb0, 0x7d, 0xdb, 0x4d, 0x80, 0xcd, 0xfc, 0xd3, 0x6f, 0xc9, 0xf8, 0xda, 0xb6, 0x0e, 0x82, 0xd2 +.byte 0x45, 0x85, 0xa8, 0x1b, 0x68, 0xa8, 0x3d, 0xe8, 0xf4, 0x44, 0x6c, 0xbd, 0xa1, 0xc2, 0xcb, 0x03 +.byte 0xbe, 0x8c, 0x3e, 0x13, 0x00, 0x84, 0xdf, 0x4a, 0x48, 0xc0, 0xe3, 0x22, 0x0a, 0xe8, 0xe9, 0x37 +.byte 0xa7, 0x18, 0x4c, 0xb1, 0x09, 0x0d, 0x23, 0x56, 0x7f, 0x04, 0x4d, 0xd9, 0x17, 0x84, 0x18, 0xa5 +.byte 0xc8, 0xda, 0x40, 0x94, 0x73, 0xeb, 0xce, 0x0e, 0x57, 0x3c, 0x03, 0x81, 0x3a, 0x9d, 0x0a, 0xa1 +.byte 0x57, 0x43, 0x69, 0xac, 0x57, 0x6d, 0x79, 0x90, 0x78, 0xe5, 0xb5, 0xb4, 0x3b, 0xd8, 0xbc, 0x4c +.byte 0x8d, 0x28, 0xa1, 0xa7, 0xa3, 0xa7, 0xba, 0x02, 0x4e, 0x25, 0xd1, 0x2a, 0xae, 0xed, 0xae, 0x03 +.byte 0x22, 0xb8, 0x6b, 0x20, 0x0f, 0x30, 0x28, 0x54, 0x95, 0x7f, 0xe0, 0xee, 0xce, 0x0a, 0x66, 0x9d +.byte 0xd1, 0x40, 0x2d, 0x6e, 0x22, 0xaf, 0x9d, 0x1a, 0xc1, 0x05, 0x19, 0xd2, 0x6f, 0xc0, 0xf2, 0x9f +.byte 0xf8, 0x7b, 0xb3, 0x02, 0x42, 0xfb, 0x50, 0xa9, 0x1d, 0x2d, 0x93, 0x0f, 0x23, 0xab, 0xc6, 0xc1 +.byte 0x0f, 0x92, 0xff, 0xd0, 0xa2, 0x15, 0xf5, 0x53, 0x09, 0x71, 0x1c, 0xff, 0x45, 0x13, 0x84, 0xe6 +.byte 0x26, 0x5e, 0xf8, 0xe0, 0x88, 0x1c, 0x0a, 0xfc, 0x16, 0xb6, 0xa8, 0x73, 0x06, 0xb8, 0xf0, 0x63 +.byte 0x84, 0x02, 0xa0, 0xc6, 0x5a, 0xec, 0xe7, 0x74, 0xdf, 0x70, 0xae, 0xa3, 0x83, 0x25, 0xea, 0xd6 +.byte 0xc7, 0x97, 0x87, 0x93, 0xa7, 0xc6, 0x8a, 0x8a, 0x33, 0x97, 0x60, 0x37, 0x10, 0x3e, 0x97, 0x3e +.byte 0x6e, 0x29, 0x15, 0xd6, 0xa1, 0x0f, 0xd1, 0x88, 0x2c, 0x12, 0x9f, 0x6f, 0xaa, 0xa4, 0xc6, 0x42 +.byte 0xeb, 0x41, 0xa2, 0xe3, 0x95, 0x43, 0xd3, 0x01, 0x85, 0x6d, 0x8e, 0xbb, 0x3b, 0xf3, 0x23, 0x36 +.byte 0xc7, 0xfe, 0x3b, 0xe0, 0xa1, 0x25, 0x07, 0x48, 0xab, 0xc9, 0x89, 0x74, 0xff, 0x08, 0x8f, 0x80 +.byte 0xbf, 0xc0, 0x96, 0x65, 0xf3, 0xee, 0xec, 0x4b, 0x68, 0xbd, 0x9d, 0x88, 0xc3, 0x31, 0xb3, 0x40 +.byte 0xf1, 0xe8, 0xcf, 0xf6, 0x38, 0xbb, 0x9c, 0xe4, 0xd1, 0x7f, 0xd4, 0xe5, 0x58, 0x9b, 0x7c, 0xfa +.byte 0xd4, 0xf3, 0x0e, 0x9b, 0x75, 0x91, 0xe4, 0xba, 0x52, 0x2e, 0x19, 0x7e, 0xd1, 0xf5, 0xcd, 0x5a +.byte 0x19, 0xfc, 0xba, 0x06, 0xf6, 0xfb, 0x52, 0xa8, 0x4b, 0x99, 0x04, 0xdd, 0xf8, 0xf9, 0xb4, 0x8b +.byte 0x50, 0xa3, 0x4e, 0x62, 0x89, 0xf0, 0x87, 0x24, 0xfa, 0x83, 0x42, 0xc1, 0x87, 0xfa, 0xd5, 0x2d +.byte 0x29, 0x2a, 0x5a, 0x71, 0x7a, 0x64, 0x6a, 0xd7, 0x27, 0x60, 0x63, 0x0d, 0xdb, 0xce, 0x49, 0xf5 +.byte 0x8d, 0x1f, 0x90, 0x89, 0x32, 0x17, 0xf8, 0x73, 0x43, 0xb8, 0xd2, 0x5a, 0x93, 0x86, 0x61, 0xd6 +.byte 0xe1, 0x75, 0x0a, 0xea, 0x79, 0x66, 0x76, 0x88, 0x4f, 0x71, 0xeb, 0x04, 0x25, 0xd6, 0x0a, 0x5a +.byte 0x7a, 0x93, 0xe5, 0xb9, 0x4b, 0x17, 0x40, 0x0f, 0xb1, 0xb6, 0xb9, 0xf5, 0xde, 0x4f, 0xdc, 0xe0 +.byte 0xb3, 0xac, 0x3b, 0x11, 0x70, 0x60, 0x84, 0x4a, 0x43, 0x6e, 0x99, 0x20, 0xc0, 0x29, 0x71, 0x0a +.byte 0xc0, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x01, 0x26, 0x30, 0x44, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66, 0x69, 0x72 +.byte 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69, 0x61 +.byte 0x6c, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xf6, 0x1b, 0x4f, 0x67, 0x07, 0x2b, 0xa1, 0x15, 0xf5, 0x06, 0x22, 0xcb, 0x1f, 0x01 +.byte 0xb2, 0xe3, 0x73, 0x45, 0x06, 0x44, 0x49, 0x2c, 0xbb, 0x49, 0x25, 0x14, 0xd6, 0xce, 0xc3, 0xb7 +.byte 0xab, 0x2c, 0x4f, 0xc6, 0x41, 0x32, 0x94, 0x57, 0xfa, 0x12, 0xa7, 0x5b, 0x0e, 0xe2, 0x8f, 0x1f +.byte 0x1e, 0x86, 0x19, 0xa7, 0xaa, 0xb5, 0x2d, 0xb9, 0x5f, 0x0d, 0x8a, 0xc2, 0xaf, 0x85, 0x35, 0x79 +.byte 0x32, 0x2d, 0xbb, 0x1c, 0x62, 0x37, 0xf2, 0xb1, 0x5b, 0x4a, 0x3d, 0xca, 0xcd, 0x71, 0x5f, 0xe9 +.byte 0x42, 0xbe, 0x94, 0xe8, 0xc8, 0xde, 0xf9, 0x22, 0x48, 0x64, 0xc6, 0xe5, 0xab, 0xc6, 0x2b, 0x6d +.byte 0xad, 0x05, 0xf0, 0xfa, 0xd5, 0x0b, 0xcf, 0x9a, 0xe5, 0xf0, 0x50, 0xa4, 0x8b, 0x3b, 0x47, 0xa5 +.byte 0x23, 0x5b, 0x7a, 0x7a, 0xf8, 0x33, 0x3f, 0xb8, 0xef, 0x99, 0x97, 0xe3, 0x20, 0xc1, 0xd6, 0x28 +.byte 0x89, 0xcf, 0x94, 0xfb, 0xb9, 0x45, 0xed, 0xe3, 0x40, 0x17, 0x11, 0xd4, 0x74, 0xf0, 0x0b, 0x31 +.byte 0xe2, 0x2b, 0x26, 0x6a, 0x9b, 0x4c, 0x57, 0xae, 0xac, 0x20, 0x3e, 0xba, 0x45, 0x7a, 0x05, 0xf3 +.byte 0xbd, 0x9b, 0x69, 0x15, 0xae, 0x7d, 0x4e, 0x20, 0x63, 0xc4, 0x35, 0x76, 0x3a, 0x07, 0x02, 0xc9 +.byte 0x37, 0xfd, 0xc7, 0x47, 0xee, 0xe8, 0xf1, 0x76, 0x1d, 0x73, 0x15, 0xf2, 0x97, 0xa4, 0xb5, 0xc8 +.byte 0x7a, 0x79, 0xd9, 0x42, 0xaa, 0x2b, 0x7f, 0x5c, 0xfe, 0xce, 0x26, 0x4f, 0xa3, 0x66, 0x81, 0x35 +.byte 0xaf, 0x44, 0xba, 0x54, 0x1e, 0x1c, 0x30, 0x32, 0x65, 0x9d, 0xe6, 0x3c, 0x93, 0x5e, 0x50, 0x4e +.byte 0x7a, 0xe3, 0x3a, 0xd4, 0x6e, 0xcc, 0x1a, 0xfb, 0xf9, 0xd2, 0x37, 0xae, 0x24, 0x2a, 0xab, 0x57 +.byte 0x03, 0x22, 0x28, 0x0d, 0x49, 0x75, 0x7f, 0xb7, 0x28, 0xda, 0x75, 0xbf, 0x8e, 0xe3, 0xdc, 0x0e +.byte 0x79, 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x01, 0x26, 0x30, 0x44, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66, 0x69, 0x72 +.byte 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e +.byte 0x67, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xb4, 0x84, 0xcc, 0x33, 0x17, 0x2e, 0x6b, 0x94, 0x6c, 0x6b, 0x61, 0x52, 0xa0, 0xeb +.byte 0xa3, 0xcf, 0x79, 0x94, 0x4c, 0xe5, 0x94, 0x80, 0x99, 0xcb, 0x55, 0x64, 0x44, 0x65, 0x8f, 0x67 +.byte 0x64, 0xe2, 0x06, 0xe3, 0x5c, 0x37, 0x49, 0xf6, 0x2f, 0x9b, 0x84, 0x84, 0x1e, 0x2d, 0xf2, 0x60 +.byte 0x9d, 0x30, 0x4e, 0xcc, 0x84, 0x85, 0xe2, 0x2c, 0xcf, 0x1e, 0x9e, 0xfe, 0x36, 0xab, 0x33, 0x77 +.byte 0x35, 0x44, 0xd8, 0x35, 0x96, 0x1a, 0x3d, 0x36, 0xe8, 0x7a, 0x0e, 0xd8, 0xd5, 0x47, 0xa1, 0x6a +.byte 0x69, 0x8b, 0xd9, 0xfc, 0xbb, 0x3a, 0xae, 0x79, 0x5a, 0xd5, 0xf4, 0xd6, 0x71, 0xbb, 0x9a, 0x90 +.byte 0x23, 0x6b, 0x9a, 0xb7, 0x88, 0x74, 0x87, 0x0c, 0x1e, 0x5f, 0xb9, 0x9e, 0x2d, 0xfa, 0xab, 0x53 +.byte 0x2b, 0xdc, 0xbb, 0x76, 0x3e, 0x93, 0x4c, 0x08, 0x08, 0x8c, 0x1e, 0xa2, 0x23, 0x1c, 0xd4, 0x6a +.byte 0xad, 0x22, 0xba, 0x99, 0x01, 0x2e, 0x6d, 0x65, 0xcb, 0xbe, 0x24, 0x66, 0x55, 0x24, 0x4b, 0x40 +.byte 0x44, 0xb1, 0x1b, 0xd7, 0xe1, 0xc2, 0x85, 0xc0, 0xde, 0x10, 0x3f, 0x3d, 0xed, 0xb8, 0xfc, 0xf1 +.byte 0xf1, 0x23, 0x53, 0xdc, 0xbf, 0x65, 0x97, 0x6f, 0xd9, 0xf9, 0x40, 0x71, 0x8d, 0x7d, 0xbd, 0x95 +.byte 0xd4, 0xce, 0xbe, 0xa0, 0x5e, 0x27, 0x23, 0xde, 0xfd, 0xa6, 0xd0, 0x26, 0x0e, 0x00, 0x29, 0xeb +.byte 0x3c, 0x46, 0xf0, 0x3d, 0x60, 0xbf, 0x3f, 0x50, 0xd2, 0xdc, 0x26, 0x41, 0x51, 0x9e, 0x14, 0x37 +.byte 0x42, 0x04, 0xa3, 0x70, 0x57, 0xa8, 0x1b, 0x87, 0xed, 0x2d, 0xfa, 0x7b, 0xee, 0x8c, 0x0a, 0xe3 +.byte 0xa9, 0x66, 0x89, 0x19, 0xcb, 0x41, 0xf9, 0xdd, 0x44, 0x36, 0x61, 0xcf, 0xe2, 0x77, 0x46, 0xc8 +.byte 0x7d, 0xf6, 0xf4, 0x92, 0x81, 0x36, 0xfd, 0xdb, 0x34, 0xf1, 0x72, 0x7e, 0xf3, 0x0c, 0x16, 0xbd +.byte 0xb4, 0x15, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30, 0x45, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69 +.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12 +.byte 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0x9a, 0x18, 0xca, 0x4b, 0x94, 0x0d, 0x00, 0x2d, 0xaf, 0x03, 0x29, 0x8a, 0xf0 +.byte 0x0f, 0x81, 0xc8, 0xae, 0x4c, 0x19, 0x85, 0x1d, 0x08, 0x9f, 0xab, 0x29, 0x44, 0x85, 0xf3, 0x2f +.byte 0x81, 0xad, 0x32, 0x1e, 0x90, 0x46, 0xbf, 0xa3, 0x86, 0x26, 0x1a, 0x1e, 0xfe, 0x7e, 0x1c, 0x18 +.byte 0x3a, 0x5c, 0x9c, 0x60, 0x17, 0x2a, 0x3a, 0x74, 0x83, 0x33, 0x30, 0x7d, 0x61, 0x54, 0x11, 0xcb +.byte 0xed, 0xab, 0xe0, 0xe6, 0xd2, 0xa2, 0x7e, 0xf5, 0x6b, 0x6f, 0x18, 0xb7, 0x0a, 0x0b, 0x2d, 0xfd +.byte 0xe9, 0x3e, 0xef, 0x0a, 0xc6, 0xb3, 0x10, 0xe9, 0xdc, 0xc2, 0x46, 0x17, 0xf8, 0x5d, 0xfd, 0xa4 +.byte 0xda, 0xff, 0x9e, 0x49, 0x5a, 0x9c, 0xe6, 0x33, 0xe6, 0x24, 0x96, 0xf7, 0x3f, 0xba, 0x5b, 0x2b +.byte 0x1c, 0x7a, 0x35, 0xc2, 0xd6, 0x67, 0xfe, 0xab, 0x66, 0x50, 0x8b, 0x6d, 0x28, 0x60, 0x2b, 0xef +.byte 0xd7, 0x60, 0xc3, 0xc7, 0x93, 0xbc, 0x8d, 0x36, 0x91, 0xf3, 0x7f, 0xf8, 0xdb, 0x11, 0x13, 0xc4 +.byte 0x9c, 0x77, 0x76, 0xc1, 0xae, 0xb7, 0x02, 0x6a, 0x81, 0x7a, 0xa9, 0x45, 0x83, 0xe2, 0x05, 0xe6 +.byte 0xb9, 0x56, 0xc1, 0x94, 0x37, 0x8f, 0x48, 0x71, 0x63, 0x22, 0xec, 0x17, 0x65, 0x07, 0x95, 0x8a +.byte 0x4b, 0xdf, 0x8f, 0xc6, 0x5a, 0x0a, 0xe5, 0xb0, 0xe3, 0x5f, 0x5e, 0x6b, 0x11, 0xab, 0x0c, 0xf9 +.byte 0x85, 0xeb, 0x44, 0xe9, 0xf8, 0x04, 0x73, 0xf2, 0xe9, 0xfe, 0x5c, 0x98, 0x8c, 0xf5, 0x73, 0xaf +.byte 0x6b, 0xb4, 0x7e, 0xcd, 0xd4, 0x5c, 0x02, 0x2b, 0x4c, 0x39, 0xe1, 0xb2, 0x95, 0x95, 0x2d, 0x42 +.byte 0x87, 0xd7, 0xd5, 0xb3, 0x90, 0x43, 0xb7, 0x6c, 0x13, 0xf1, 0xde, 0xdd, 0xf6, 0xc4, 0xf8, 0x89 +.byte 0x3f, 0xd1, 0x75, 0xf5, 0x92, 0xc3, 0x91, 0xd5, 0x8a, 0x88, 0xd0, 0x90, 0xec, 0xdc, 0x6d, 0xde +.byte 0x89, 0xc2, 0x65, 0x71, 0x96, 0x8b, 0x0d, 0x03, 0xfd, 0x9c, 0xbf, 0x5b, 0x16, 0xac, 0x92, 0xdb +.byte 0xea, 0xfe, 0x79, 0x7c, 0xad, 0xeb, 0xaf, 0xf7, 0x16, 0xcb, 0xdb, 0xcd, 0x25, 0x2b, 0xe5, 0x1f +.byte 0xfb, 0x9a, 0x9f, 0xe2, 0x51, 0xcc, 0x3a, 0x53, 0x0c, 0x48, 0xe6, 0x0e, 0xbd, 0xc9, 0xb4, 0x76 +.byte 0x06, 0x52, 0xe6, 0x11, 0x13, 0x85, 0x72, 0x63, 0x03, 0x04, 0xe0, 0x04, 0x36, 0x2b, 0x20, 0x19 +.byte 0x02, 0xe8, 0x74, 0xa7, 0x1f, 0xb6, 0xc9, 0x56, 0x66, 0xf0, 0x75, 0x25, 0xdc, 0x67, 0xc1, 0x0e +.byte 0x61, 0x60, 0x88, 0xb3, 0x3e, 0xd1, 0xa8, 0xfc, 0xa3, 0xda, 0x1d, 0xb0, 0xd1, 0xb1, 0x23, 0x54 +.byte 0xdf, 0x44, 0x76, 0x6d, 0xed, 0x41, 0xd8, 0xc1, 0xb2, 0x22, 0xb6, 0x53, 0x1c, 0xdf, 0x35, 0x1d +.byte 0xdc, 0xa1, 0x77, 0x2a, 0x31, 0xe4, 0x2d, 0xf5, 0xe5, 0xe5, 0xdb, 0xc8, 0xe0, 0xff, 0xe5, 0x80 +.byte 0xd7, 0x0b, 0x63, 0xa0, 0xff, 0x33, 0xa1, 0x0f, 0xba, 0x2c, 0x15, 0x15, 0xea, 0x97, 0xb3, 0xd2 +.byte 0xa2, 0xb5, 0xbe, 0xf2, 0x8c, 0x96, 0x1e, 0x1a, 0x8f, 0x1d, 0x6c, 0xa4, 0x61, 0x37, 0xb9, 0x86 +.byte 0x73, 0x33, 0xd7, 0x97, 0x96, 0x9e, 0x23, 0x7d, 0x82, 0xa4, 0x4c, 0x81, 0xe2, 0xa1, 0xd1, 0xba +.byte 0x67, 0x5f, 0x95, 0x07, 0xa3, 0x27, 0x11, 0xee, 0x16, 0x10, 0x7b, 0xbc, 0x45, 0x4a, 0x4c, 0xb2 +.byte 0x04, 0xd2, 0xab, 0xef, 0xd5, 0xfd, 0x0c, 0x51, 0xce, 0x50, 0x6a, 0x08, 0x31, 0xf9, 0x91, 0xda +.byte 0x0c, 0x8f, 0x64, 0x5c, 0x03, 0xc3, 0x3a, 0x8b, 0x20, 0x3f, 0x6e, 0x8d, 0x67, 0x3d, 0x3a, 0xd6 +.byte 0xfe, 0x7d, 0x5b, 0x88, 0xc9, 0x5e, 0xfb, 0xcc, 0x61, 0xdc, 0x8b, 0x33, 0x77, 0xd3, 0x44, 0x32 +.byte 0x35, 0x09, 0x62, 0x04, 0x92, 0x16, 0x10, 0xd8, 0x9e, 0x27, 0x47, 0xfb, 0x3b, 0x21, 0xe3, 0xf8 +.byte 0xeb, 0x1d, 0x5b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30, 0x45, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c +.byte 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x12, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xcc, 0x57, 0x42, 0x16, 0x54, 0x9c, 0xe6, 0x98, 0xd3, 0xd3, 0x4d, 0xee +.byte 0xfe, 0xed, 0xc7, 0x9f, 0x43, 0x39, 0x4a, 0x65, 0xb3, 0xe8, 0x16, 0x88, 0x34, 0xdb, 0x0d, 0x59 +.byte 0x91, 0x74, 0xcf, 0x92, 0xb8, 0x04, 0x40, 0xad, 0x02, 0x4b, 0x31, 0xab, 0xbc, 0x8d, 0x91, 0x68 +.byte 0xd8, 0x20, 0x0e, 0x1a, 0x01, 0xe2, 0x1a, 0x7b, 0x4e, 0x17, 0x5d, 0xe2, 0x8a, 0xb7, 0x3f, 0x99 +.byte 0x1a, 0xcd, 0xeb, 0x61, 0xab, 0xc2, 0x65, 0xa6, 0x1f, 0xb7, 0xb7, 0xbd, 0xb7, 0x8f, 0xfc, 0xfd +.byte 0x70, 0x8f, 0x0b, 0xa0, 0x67, 0xbe, 0x01, 0xa2, 0x59, 0xcf, 0x71, 0xe6, 0x0f, 0x29, 0x76, 0xff +.byte 0xb1, 0x56, 0x79, 0x45, 0x2b, 0x1f, 0x9e, 0x7a, 0x54, 0xe8, 0xa3, 0x29, 0x35, 0x68, 0xa4, 0x01 +.byte 0x4f, 0x0f, 0xa4, 0x2e, 0x37, 0xef, 0x1b, 0xbf, 0xe3, 0x8f, 0x10, 0xa8, 0x72, 0xab, 0x58, 0x57 +.byte 0xe7, 0x54, 0x86, 0xc8, 0xc9, 0xf3, 0x5b, 0xda, 0x2c, 0xda, 0x5d, 0x8e, 0x6e, 0x3c, 0xa3, 0x3e +.byte 0xda, 0xfb, 0x82, 0xe5, 0xdd, 0xf2, 0x5c, 0xb2, 0x05, 0x33, 0x6f, 0x8a, 0x36, 0xce, 0xd0, 0x13 +.byte 0x4e, 0xff, 0xbf, 0x4a, 0x0c, 0x34, 0x4c, 0xa6, 0xc3, 0x21, 0xbd, 0x50, 0x04, 0x55, 0xeb, 0xb1 +.byte 0xbb, 0x9d, 0xfb, 0x45, 0x1e, 0x64, 0x15, 0xde, 0x55, 0x01, 0x8c, 0x02, 0x76, 0xb5, 0xcb, 0xa1 +.byte 0x3f, 0x42, 0x69, 0xbc, 0x2f, 0xbd, 0x68, 0x43, 0x16, 0x56, 0x89, 0x2a, 0x37, 0x61, 0x91, 0xfd +.byte 0xa6, 0xae, 0x4e, 0xc0, 0xcb, 0x14, 0x65, 0x94, 0x37, 0x4b, 0x92, 0x06, 0xef, 0x04, 0xd0, 0xc8 +.byte 0x9c, 0x88, 0xdb, 0x0b, 0x7b, 0x81, 0xaf, 0xb1, 0x3d, 0x2a, 0xc4, 0x65, 0x3a, 0x78, 0xb6, 0xee +.byte 0xdc, 0x80, 0xb1, 0xd2, 0xd3, 0x99, 0x9c, 0x3a, 0xee, 0x6b, 0x5a, 0x6b, 0xb3, 0x8d, 0xb7, 0xd5 +.byte 0xce, 0x9c, 0xc2, 0xbe, 0xa5, 0x4b, 0x2f, 0x16, 0xb1, 0x9e, 0x68, 0x3b, 0x06, 0x6f, 0xae, 0x7d +.byte 0x9f, 0xf8, 0xde, 0xec, 0xcc, 0x29, 0xa7, 0x98, 0xa3, 0x25, 0x43, 0x2f, 0xef, 0xf1, 0x5f, 0x26 +.byte 0xe1, 0x88, 0x4d, 0xf8, 0x5e, 0x6e, 0xd7, 0xd9, 0x14, 0x6e, 0x19, 0x33, 0x69, 0xa7, 0x3b, 0x84 +.byte 0x89, 0x93, 0xc4, 0x53, 0x55, 0x13, 0xa1, 0x51, 0x78, 0x40, 0xf8, 0xb8, 0xc9, 0xa2, 0xee, 0x7b +.byte 0xba, 0x52, 0x42, 0x83, 0x9e, 0x14, 0xed, 0x05, 0x52, 0x5a, 0x59, 0x56, 0xa7, 0x97, 0xfc, 0x9d +.byte 0x3f, 0x0a, 0x29, 0xd8, 0xdc, 0x4f, 0x91, 0x0e, 0x13, 0xbc, 0xde, 0x95, 0xa4, 0xdf, 0x8b, 0x99 +.byte 0xbe, 0xac, 0x9b, 0x33, 0x88, 0xef, 0xb5, 0x81, 0xaf, 0x1b, 0xc6, 0x22, 0x53, 0xc8, 0xf6, 0xc7 +.byte 0xee, 0x97, 0x14, 0xb0, 0xc5, 0x7c, 0x78, 0x52, 0xc8, 0xf0, 0xce, 0x6e, 0x77, 0x60, 0x84, 0xa6 +.byte 0xe9, 0x2a, 0x76, 0x20, 0xed, 0x58, 0x01, 0x17, 0x30, 0x93, 0xe9, 0x1a, 0x8b, 0xe0, 0x73, 0x63 +.byte 0xd9, 0x6a, 0x92, 0x94, 0x49, 0x4e, 0xb4, 0xad, 0x4a, 0x85, 0xc4, 0xa3, 0x22, 0x30, 0xfc, 0x09 +.byte 0xed, 0x68, 0x22, 0x73, 0xa6, 0x88, 0x0c, 0x55, 0x21, 0x58, 0xc5, 0xe1, 0x3a, 0x9f, 0x2a, 0xdd +.byte 0xca, 0xe1, 0x90, 0xe0, 0xd9, 0x73, 0xab, 0x6c, 0x80, 0xb8, 0xe8, 0x0b, 0x64, 0x93, 0xa0, 0x9c +.byte 0x8c, 0x19, 0xff, 0xb3, 0xd2, 0x0c, 0xec, 0x91, 0x26, 0x87, 0x8a, 0xb3, 0xa2, 0xe1, 0x70, 0x8f +.byte 0x2c, 0x0a, 0xe5, 0xcd, 0x6d, 0x68, 0x51, 0xeb, 0xda, 0x3f, 0x05, 0x7f, 0x8b, 0x32, 0xe6, 0x13 +.byte 0x5c, 0x6b, 0xfe, 0x5f, 0x40, 0xe2, 0x22, 0xc8, 0xb4, 0xb4, 0x64, 0x4f, 0xd6, 0xba, 0x7d, 0x48 +.byte 0x3e, 0xa8, 0x69, 0x0c, 0xd7, 0xbb, 0x86, 0x71, 0xc9, 0x73, 0xb8, 0x3f, 0x3b, 0x9d, 0x25, 0x4b +.byte 0xda, 0xff, 0x40, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30, 0x45, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15, 0x30, 0x13 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e +.byte 0x20, 0x41, 0x47, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16, 0x53, 0x77 +.byte 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x20, 0x43, 0x41, 0x20 +.byte 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xaf, 0xe4, 0xee, 0x7e, 0x8b, 0x24, 0x0e, 0x12, 0x6e, 0xa9, 0x50 +.byte 0x2d, 0x16, 0x44, 0x3b, 0x92, 0x92, 0x5c, 0xca, 0xb8, 0x5d, 0x84, 0x92, 0x42, 0x13, 0x2a, 0xbc +.byte 0x65, 0x57, 0x82, 0x40, 0x3e, 0x57, 0x24, 0xcd, 0x50, 0x8b, 0x25, 0x2a, 0xb7, 0x6f, 0xfc, 0xef +.byte 0xa2, 0xd0, 0xc0, 0x1f, 0x02, 0x24, 0x4a, 0x13, 0x96, 0x8f, 0x23, 0x13, 0xe6, 0x28, 0x58, 0x00 +.byte 0xa3, 0x47, 0xc7, 0x06, 0xa7, 0x84, 0x23, 0x2b, 0xbb, 0xbd, 0x96, 0x2b, 0x7f, 0x55, 0xcc, 0x8b +.byte 0xc1, 0x57, 0x1f, 0x0e, 0x62, 0x65, 0x0f, 0xdd, 0x3d, 0x56, 0x8a, 0x73, 0xda, 0xae, 0x7e, 0x6d +.byte 0xba, 0x81, 0x1c, 0x7e, 0x42, 0x8c, 0x20, 0x35, 0xd9, 0x43, 0x4d, 0x84, 0xfa, 0x84, 0xdb, 0x52 +.byte 0x2c, 0xf3, 0x0e, 0x27, 0x77, 0x0b, 0x6b, 0xbf, 0x11, 0x2f, 0x72, 0x78, 0x9f, 0x2e, 0xd8, 0x3e +.byte 0xe6, 0x18, 0x37, 0x5a, 0x2a, 0x72, 0xf9, 0xda, 0x62, 0x90, 0x92, 0x95, 0xca, 0x1f, 0x9c, 0xe9 +.byte 0xb3, 0x3c, 0x2b, 0xcb, 0xf3, 0x01, 0x13, 0xbf, 0x5a, 0xcf, 0xc1, 0xb5, 0x0a, 0x60, 0xbd, 0xdd +.byte 0xb5, 0x99, 0x64, 0x53, 0xb8, 0xa0, 0x96, 0xb3, 0x6f, 0xe2, 0x26, 0x77, 0x91, 0x8c, 0xe0, 0x62 +.byte 0x10, 0x02, 0x9f, 0x34, 0x0f, 0xa4, 0xd5, 0x92, 0x33, 0x51, 0xde, 0xbe, 0x8d, 0xba, 0x84, 0x7a +.byte 0x60, 0x3c, 0x6a, 0xdb, 0x9f, 0x2b, 0xec, 0xde, 0xde, 0x01, 0x3f, 0x6e, 0x4d, 0xe5, 0x50, 0x86 +.byte 0xcb, 0xb4, 0xaf, 0xed, 0x44, 0x40, 0xc5, 0xca, 0x5a, 0x8c, 0xda, 0xd2, 0x2b, 0x7c, 0xa8, 0xee +.byte 0xbe, 0xa6, 0xe5, 0x0a, 0xaa, 0x0e, 0xa5, 0xdf, 0x05, 0x52, 0xb7, 0x55, 0xc7, 0x22, 0x5d, 0x32 +.byte 0x6a, 0x97, 0x97, 0x63, 0x13, 0xdb, 0xc9, 0xdb, 0x79, 0x36, 0x7b, 0x85, 0x3a, 0x4a, 0xc5, 0x52 +.byte 0x89, 0xf9, 0x24, 0xe7, 0x9d, 0x77, 0xa9, 0x82, 0xff, 0x55, 0x1c, 0xa5, 0x71, 0x69, 0x2b, 0xd1 +.byte 0x02, 0x24, 0xf2, 0xb3, 0x26, 0xd4, 0x6b, 0xda, 0x04, 0x55, 0xe5, 0xc1, 0x0a, 0xc7, 0x6d, 0x30 +.byte 0x37, 0x90, 0x2a, 0xe4, 0x9e, 0x14, 0x33, 0x5e, 0x16, 0x17, 0x55, 0xc5, 0x5b, 0xb5, 0xcb, 0x34 +.byte 0x89, 0x92, 0xf1, 0x9d, 0x26, 0x8f, 0xa1, 0x07, 0xd4, 0xc6, 0xb2, 0x78, 0x50, 0xdb, 0x0c, 0x0c +.byte 0x0b, 0x7c, 0x0b, 0x8c, 0x41, 0xd7, 0xb9, 0xe9, 0xdd, 0x8c, 0x88, 0xf7, 0xa3, 0x4d, 0xb2, 0x32 +.byte 0xcc, 0xd8, 0x17, 0xda, 0xcd, 0xb7, 0xce, 0x66, 0x9d, 0xd4, 0xfd, 0x5e, 0xff, 0xbd, 0x97, 0x3e +.byte 0x29, 0x75, 0xe7, 0x7e, 0xa7, 0x62, 0x58, 0xaf, 0x25, 0x34, 0xa5, 0x41, 0xc7, 0x3d, 0xbc, 0x0d +.byte 0x50, 0xca, 0x03, 0x03, 0x0f, 0x08, 0x5a, 0x1f, 0x95, 0x73, 0x78, 0x62, 0xbf, 0xaf, 0x72, 0x14 +.byte 0x69, 0x0e, 0xa5, 0xe5, 0x03, 0x0e, 0x78, 0x8e, 0x26, 0x28, 0x42, 0xf0, 0x07, 0x0b, 0x62, 0x20 +.byte 0x10, 0x67, 0x39, 0x46, 0xfa, 0xa9, 0x03, 0xcc, 0x04, 0x38, 0x7a, 0x66, 0xef, 0x20, 0x83, 0xb5 +.byte 0x8c, 0x4a, 0x56, 0x8e, 0x91, 0x00, 0xfc, 0x8e, 0x5c, 0x82, 0xde, 0x88, 0xa0, 0xc3, 0xe2, 0x68 +.byte 0x6e, 0x7d, 0x8d, 0xef, 0x3c, 0xdd, 0x65, 0xf4, 0x5d, 0xac, 0x51, 0xef, 0x24, 0x80, 0xae, 0xaa +.byte 0x56, 0x97, 0x6f, 0xf9, 0xad, 0x7d, 0xda, 0x61, 0x3f, 0x98, 0x77, 0x3c, 0xa5, 0x91, 0xb6, 0x1c +.byte 0x8c, 0x26, 0xda, 0x65, 0xa2, 0x09, 0x6d, 0xc1, 0xe2, 0x54, 0xe3, 0xb9, 0xca, 0x4c, 0x4c, 0x80 +.byte 0x8f, 0x77, 0x7b, 0x60, 0x9a, 0x1e, 0xdf, 0xb6, 0xf2, 0x48, 0x1e, 0x0e, 0xba, 0x4e, 0x54, 0x6d +.byte 0x98, 0xe0, 0xe1, 0xa2, 0x1a, 0xa2, 0x77, 0x50, 0xcf, 0xc4, 0x63, 0x92, 0xec, 0x47, 0x19, 0x9d +.byte 0xeb, 0xe6, 0x6b, 0xce, 0xc1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x01, 0x26, 0x30, 0x45 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30 +.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0f, 0x54, 0x72, 0x75, 0x73, 0x74, 0x69, 0x73, 0x20 +.byte 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x13, 0x54, 0x72, 0x75, 0x73, 0x74, 0x69, 0x73, 0x20, 0x46, 0x50, 0x53, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc5, 0x50, 0x7b, 0x9e, 0x3b, 0x35, 0xd0, 0xdf, 0xc4, 0x8c +.byte 0xcd, 0x8e, 0x9b, 0xed, 0xa3, 0xc0, 0x36, 0x99, 0xf4, 0x42, 0xea, 0xa7, 0x3e, 0x80, 0x83, 0x0f +.byte 0xa6, 0xa7, 0x59, 0x87, 0xc9, 0x90, 0x45, 0x43, 0x7e, 0x00, 0xea, 0x86, 0x79, 0x2a, 0x03, 0xbd +.byte 0x3d, 0x37, 0x99, 0x89, 0x66, 0xb7, 0xe5, 0x8a, 0x56, 0x86, 0x93, 0x9c, 0x68, 0x4b, 0x68, 0x04 +.byte 0x8c, 0x93, 0x93, 0x02, 0x3e, 0x30, 0xd2, 0x37, 0x3a, 0x22, 0x61, 0x89, 0x1c, 0x85, 0x4e, 0x7d +.byte 0x8f, 0xd5, 0xaf, 0x7b, 0x35, 0xf6, 0x7e, 0x28, 0x47, 0x89, 0x31, 0xdc, 0x0e, 0x79, 0x64, 0x1f +.byte 0x99, 0xd2, 0x5b, 0xba, 0xfe, 0x7f, 0x60, 0xbf, 0xad, 0xeb, 0xe7, 0x3c, 0x38, 0x29, 0x6a, 0x2f +.byte 0xe5, 0x91, 0x0b, 0x55, 0xff, 0xec, 0x6f, 0x58, 0xd5, 0x2d, 0xc9, 0xde, 0x4c, 0x66, 0x71, 0x8f +.byte 0x0c, 0xd7, 0x04, 0xda, 0x07, 0xe6, 0x1e, 0x18, 0xe3, 0xbd, 0x29, 0x02, 0xa8, 0xfa, 0x1c, 0xe1 +.byte 0x5b, 0xb9, 0x83, 0xa8, 0x41, 0x48, 0xbc, 0x1a, 0x71, 0x8d, 0xe7, 0x62, 0xe5, 0x2d, 0xb2, 0xeb +.byte 0xdf, 0x7c, 0xcf, 0xdb, 0xab, 0x5a, 0xca, 0x31, 0xf1, 0x4c, 0x22, 0xf3, 0x05, 0x13, 0xf7, 0x82 +.byte 0xf9, 0x73, 0x79, 0x0c, 0xbe, 0xd7, 0x4b, 0x1c, 0xc0, 0xd1, 0x15, 0x3c, 0x93, 0x41, 0x64, 0xd1 +.byte 0xe6, 0xbe, 0x23, 0x17, 0x22, 0x00, 0x89, 0x5e, 0x1f, 0x6b, 0xa5, 0xac, 0x6e, 0xa7, 0x4b, 0x8c +.byte 0xed, 0xa3, 0x72, 0xe6, 0xaf, 0x63, 0x4d, 0x2f, 0x85, 0xd2, 0x14, 0x35, 0x9a, 0x2e, 0x4e, 0x8c +.byte 0xea, 0x32, 0x98, 0x28, 0x86, 0xa1, 0x91, 0x09, 0x41, 0x3a, 0xb4, 0xe1, 0xe3, 0xf2, 0xfa, 0xf0 +.byte 0xc9, 0x0a, 0xa2, 0x41, 0xdd, 0xa9, 0xe3, 0x03, 0xc7, 0x88, 0x15, 0x3b, 0x1c, 0xd4, 0x1a, 0x94 +.byte 0xd7, 0x9f, 0x64, 0x59, 0x12, 0x6d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x00, 0x78, 0x30 +.byte 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14 +.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x41 +.byte 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d, 0x69 +.byte 0x75, 0x6d, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x0d, 0x30 +.byte 0x5e, 0x1b, 0x15, 0x9d, 0x03, 0xd0, 0xa1, 0x79, 0x35, 0xb7, 0x3a, 0x3c, 0x92, 0x7a, 0xca, 0x15 +.byte 0x1c, 0xcd, 0x62, 0xf3, 0x9c, 0x26, 0x5c, 0x07, 0x3d, 0xe5, 0x54, 0xfa, 0xa3, 0xd6, 0xcc, 0x12 +.byte 0xea, 0xf4, 0x14, 0x5f, 0xe8, 0x8e, 0x19, 0xab, 0x2f, 0x2e, 0x48, 0xe6, 0xac, 0x18, 0x43, 0x78 +.byte 0xac, 0xd0, 0x37, 0xc3, 0xbd, 0xb2, 0xcd, 0x2c, 0xe6, 0x47, 0xe2, 0x1a, 0xe6, 0x63, 0xb8, 0x3d +.byte 0x2e, 0x2f, 0x78, 0xc4, 0x4f, 0xdb, 0xf4, 0x0f, 0xa4, 0x68, 0x4c, 0x55, 0x72, 0x6b, 0x95, 0x1d +.byte 0x4e, 0x18, 0x42, 0x95, 0x78, 0xcc, 0x37, 0x3c, 0x91, 0xe2, 0x9b, 0x65, 0x2b, 0x29, 0x00, 0x47 +.byte 0x02, 0x26, 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x47, 0x65, 0x6f, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x15, 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x55, 0x6e, 0x69 +.byte 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa6, 0x15, 0x55, 0xa0, 0xa3, 0xc6 +.byte 0xe0, 0x1f, 0x8c, 0x9d, 0x21, 0x50, 0xd7, 0xc1, 0xbe, 0x2b, 0x5b, 0xb5, 0xa4, 0x9e, 0xa1, 0xd9 +.byte 0x72, 0x58, 0xbd, 0x00, 0x1b, 0x4c, 0xbf, 0x61, 0xc9, 0x14, 0x1d, 0x45, 0x82, 0xab, 0xc6, 0x1d +.byte 0x80, 0xd6, 0x3d, 0xeb, 0x10, 0x9c, 0x3a, 0xaf, 0x6d, 0x24, 0xf8, 0xbc, 0x71, 0x01, 0x9e, 0x06 +.byte 0xf5, 0x7c, 0x5f, 0x1e, 0xc1, 0x0e, 0x55, 0xca, 0x83, 0x9a, 0x59, 0x30, 0xae, 0x19, 0xcb, 0x30 +.byte 0x48, 0x95, 0xed, 0x22, 0x37, 0x8d, 0xf4, 0x4a, 0x9a, 0x72, 0x66, 0x3e, 0xad, 0x95, 0xc0, 0xe0 +.byte 0x16, 0x00, 0xe0, 0x10, 0x1f, 0x2b, 0x31, 0x0e, 0xd7, 0x94, 0x54, 0xd3, 0x42, 0x33, 0xa0, 0x34 +.byte 0x1d, 0x1e, 0x45, 0x76, 0xdd, 0x4f, 0xca, 0x18, 0x37, 0xec, 0x85, 0x15, 0x7a, 0x19, 0x08, 0xfc +.byte 0xd5, 0xc7, 0x9c, 0xf0, 0xf2, 0xa9, 0x2e, 0x10, 0xa9, 0x92, 0xe6, 0x3d, 0x58, 0x3d, 0xa9, 0x16 +.byte 0x68, 0x3c, 0x2f, 0x75, 0x21, 0x18, 0x7f, 0x28, 0x77, 0xa5, 0xe1, 0x61, 0x17, 0xb7, 0xa6, 0xe9 +.byte 0xf8, 0x1e, 0x99, 0xdb, 0x73, 0x6e, 0xf4, 0x0a, 0xa2, 0x21, 0x6c, 0xee, 0xda, 0xaa, 0x85, 0x92 +.byte 0x66, 0xaf, 0xf6, 0x7a, 0x6b, 0x82, 0xda, 0xba, 0x22, 0x08, 0x35, 0x0f, 0xcf, 0x42, 0xf1, 0x35 +.byte 0xfa, 0x6a, 0xee, 0x7e, 0x2b, 0x25, 0xcc, 0x3a, 0x11, 0xe4, 0x6d, 0xaf, 0x73, 0xb2, 0x76, 0x1d +.byte 0xad, 0xd0, 0xb2, 0x78, 0x67, 0x1a, 0xa4, 0x39, 0x1c, 0x51, 0x0b, 0x67, 0x56, 0x83, 0xfd, 0x38 +.byte 0x5d, 0x0d, 0xce, 0xdd, 0xf0, 0xbb, 0x2b, 0x96, 0x1f, 0xde, 0x7b, 0x32, 0x52, 0xfd, 0x1d, 0xbb +.byte 0xb5, 0x06, 0xa1, 0xb2, 0x21, 0x5e, 0xa5, 0xd6, 0x95, 0x68, 0x7f, 0xf0, 0x99, 0x9e, 0xdc, 0x45 +.byte 0x08, 0x3e, 0xe7, 0xd2, 0x09, 0x0d, 0x35, 0x94, 0xdd, 0x80, 0x4e, 0x53, 0x97, 0xd7, 0xb5, 0x09 +.byte 0x44, 0x20, 0x64, 0x16, 0x17, 0x03, 0x02, 0x4c, 0x53, 0x0d, 0x68, 0xde, 0xd5, 0xaa, 0x72, 0x4d +.byte 0x93, 0x6d, 0x82, 0x0e, 0xdb, 0x9c, 0xbd, 0xcf, 0xb4, 0xf3, 0x5c, 0x5d, 0x54, 0x7a, 0x69, 0x09 +.byte 0x96, 0xd6, 0xdb, 0x11, 0xc1, 0x8d, 0x75, 0xa8, 0xb4, 0xcf, 0x39, 0xc8, 0xce, 0x3c, 0xbc, 0x24 +.byte 0x7c, 0xe6, 0x62, 0xca, 0xe1, 0xbd, 0x7d, 0xa7, 0xbd, 0x57, 0x65, 0x0b, 0xe4, 0xfe, 0x25, 0xed +.byte 0xb6, 0x69, 0x10, 0xdc, 0x28, 0x1a, 0x46, 0xbd, 0x01, 0x1d, 0xd0, 0x97, 0xb5, 0xe1, 0x98, 0x3b +.byte 0xc0, 0x37, 0x64, 0xd6, 0x3d, 0x94, 0xee, 0x0b, 0xe1, 0xf5, 0x28, 0xae, 0x0b, 0x56, 0xbf, 0x71 +.byte 0x8b, 0x23, 0x29, 0x41, 0x8e, 0x86, 0xc5, 0x4b, 0x52, 0x7b, 0xd8, 0x71, 0xab, 0x1f, 0x8a, 0x15 +.byte 0xa6, 0x3b, 0x83, 0x5a, 0xd7, 0x58, 0x01, 0x51, 0xc6, 0x4c, 0x41, 0xd9, 0x7f, 0xd8, 0x41, 0x67 +.byte 0x72, 0xa2, 0x28, 0xdf, 0x60, 0x83, 0xa9, 0x9e, 0xc8, 0x7b, 0xfc, 0x53, 0x73, 0x72, 0x59, 0xf5 +.byte 0x93, 0x7a, 0x17, 0x76, 0x0e, 0xce, 0xf7, 0xe5, 0x5c, 0xd9, 0x0b, 0x55, 0x34, 0xa2, 0xaa, 0x5b +.byte 0xb5, 0x6a, 0x54, 0xe7, 0x13, 0xca, 0x57, 0xec, 0x97, 0x6d, 0xf4, 0x5e, 0x06, 0x2f, 0x45, 0x8b +.byte 0x58, 0xd4, 0x23, 0x16, 0x92, 0xe4, 0x16, 0x6e, 0x28, 0x63, 0x59, 0x30, 0xdf, 0x50, 0x01, 0x9c +.byte 0x63, 0x89, 0x1a, 0x9f, 0xdb, 0x17, 0x94, 0x82, 0x70, 0x37, 0xc3, 0x24, 0x9e, 0x9a, 0x47, 0xd6 +.byte 0x5a, 0xca, 0x4e, 0xa8, 0x69, 0x89, 0x72, 0x1f, 0x91, 0x6c, 0xdb, 0x7e, 0x9e, 0x1b, 0xad, 0xc7 +.byte 0x1f, 0x73, 0xdd, 0x2c, 0x4f, 0x19, 0x65, 0xfd, 0x7f, 0x93, 0x40, 0x10, 0x2e, 0xd2, 0xf0, 0xed +.byte 0x3c, 0x9e, 0x2e, 0x28, 0x3e, 0x69, 0x26, 0x33, 0xc5, 0x7b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x48, 0x02, 0x26, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x4c, 0x55, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d, 0x4c, 0x75, 0x78 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x16, 0x4c, 0x75, 0x78, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd7, 0x85, 0x97, 0xbf +.byte 0x11, 0x98, 0xe9, 0xf0, 0x62, 0x83, 0x4c, 0x3c, 0x87, 0xf9, 0x53, 0x6a, 0x37, 0x0b, 0xf2, 0x0f +.byte 0x3c, 0x87, 0xce, 0x6f, 0xdc, 0x26, 0x29, 0xbd, 0xc5, 0x89, 0xba, 0xc9, 0x83, 0x3d, 0xf7, 0xee +.byte 0xca, 0x5b, 0xc6, 0x6d, 0x49, 0x73, 0xb4, 0xc9, 0x46, 0xa3, 0x1b, 0x34, 0x13, 0x3f, 0xc1, 0x89 +.byte 0x45, 0x57, 0xf4, 0xd9, 0xb1, 0xfb, 0x36, 0x65, 0x4b, 0xfb, 0x08, 0xe2, 0x48, 0x71, 0x11, 0xc8 +.byte 0x6e, 0x3b, 0x9e, 0x9d, 0xdf, 0x89, 0x65, 0x37, 0xa6, 0x85, 0xf6, 0x3b, 0x44, 0x18, 0xb6, 0xc6 +.byte 0x37, 0x30, 0x62, 0x44, 0x92, 0x97, 0x69, 0x7d, 0x42, 0x30, 0x24, 0xe4, 0x0d, 0x0c, 0x89, 0x6b +.byte 0x63, 0xde, 0xc5, 0xe1, 0xdf, 0x4e, 0xa9, 0x14, 0x6c, 0x53, 0xe0, 0x61, 0xce, 0xf6, 0x17, 0x2f +.byte 0x1d, 0x3c, 0xbd, 0xe6, 0x22, 0x4c, 0x1d, 0x93, 0xf5, 0x10, 0xc4, 0xa1, 0x76, 0xec, 0x6a, 0xde +.byte 0xc5, 0x6c, 0xdf, 0x96, 0xb4, 0x56, 0x40, 0x42, 0xc0, 0x62, 0x92, 0x30, 0xa1, 0x2d, 0x15, 0x94 +.byte 0xa0, 0xd2, 0x20, 0x06, 0x09, 0x6e, 0x6a, 0x6d, 0xe5, 0xeb, 0xb7, 0xbe, 0xd4, 0xf0, 0xf1, 0x15 +.byte 0x7c, 0x8b, 0xe6, 0x4e, 0xba, 0x13, 0xcc, 0x4b, 0x27, 0x5e, 0x99, 0x3c, 0x17, 0x5d, 0x8f, 0x81 +.byte 0x7f, 0x33, 0x3d, 0x4f, 0xd3, 0x3f, 0x1b, 0xec, 0x5c, 0x3f, 0xf0, 0x3c, 0x4c, 0x75, 0x6e, 0xf2 +.byte 0xa6, 0xd5, 0x9d, 0xda, 0x2d, 0x07, 0x63, 0x02, 0xc6, 0x72, 0xe9, 0x94, 0xbc, 0x4c, 0x49, 0x95 +.byte 0x4f, 0x88, 0x52, 0xc8, 0xdb, 0xe8, 0x69, 0x82, 0xf8, 0xcc, 0x34, 0x5b, 0x22, 0xf0, 0x86, 0xa7 +.byte 0x89, 0xbd, 0x48, 0x0a, 0x6d, 0x66, 0x81, 0x6d, 0xc8, 0xc8, 0x64, 0xfb, 0x01, 0xe1, 0xf4, 0xe1 +.byte 0xde, 0xd9, 0x9e, 0xdd, 0xdb, 0x5b, 0xd4, 0x2a, 0x99, 0x26, 0x15, 0x1b, 0x1e, 0x4c, 0x92, 0x29 +.byte 0x82, 0x9e, 0xd5, 0x92, 0x81, 0x92, 0x41, 0x70, 0x19, 0xf7, 0xa4, 0xe5, 0x93, 0x4b, 0xbc, 0x77 +.byte 0x67, 0x31, 0xdd, 0x1c, 0xfd, 0x31, 0x70, 0x0d, 0x17, 0x99, 0x0c, 0xf9, 0x0c, 0x39, 0x19, 0x2a +.byte 0x17, 0xb5, 0x30, 0x71, 0x55, 0xd5, 0x0f, 0xae, 0x58, 0xe1, 0x3d, 0x2f, 0x34, 0x9b, 0xcf, 0x9f +.byte 0xf6, 0x78, 0x85, 0xc2, 0x93, 0x7a, 0x72, 0x3e, 0x66, 0x8f, 0x9c, 0x16, 0x11, 0x60, 0x8f, 0x9e +.byte 0x89, 0x6f, 0x67, 0xbe, 0xe0, 0x47, 0x5a, 0x3b, 0x0c, 0x9a, 0x67, 0x8b, 0xcf, 0x46, 0xc6, 0xae +.byte 0x38, 0xa3, 0xf2, 0xa7, 0xbc, 0xe6, 0xd6, 0x85, 0x6b, 0x33, 0x24, 0x70, 0x22, 0x4b, 0xcb, 0x08 +.byte 0x9b, 0xbb, 0xc8, 0xf8, 0x02, 0x29, 0x1d, 0xbe, 0x20, 0x0c, 0x46, 0xbf, 0x6b, 0x87, 0x9b, 0xb3 +.byte 0x2a, 0x66, 0x42, 0x35, 0x46, 0x6c, 0xaa, 0xba, 0xad, 0xf9, 0x98, 0x7b, 0xe9, 0x50, 0x55, 0x14 +.byte 0x31, 0xbf, 0xb1, 0xda, 0x2d, 0xed, 0x80, 0xad, 0x68, 0x24, 0xfb, 0x69, 0xab, 0xd8, 0x71, 0x13 +.byte 0x30, 0xe6, 0x67, 0xb3, 0x87, 0x40, 0xfd, 0x89, 0x7e, 0xf2, 0x43, 0xd1, 0x11, 0xdf, 0x2f, 0x65 +.byte 0x2f, 0x64, 0xce, 0x5f, 0x14, 0xb9, 0xb1, 0xbf, 0x31, 0xbd, 0x87, 0x78, 0x5a, 0x59, 0x65, 0x88 +.byte 0xaa, 0xfc, 0x59, 0x32, 0x48, 0x86, 0xd6, 0x4c, 0xb9, 0x29, 0x4b, 0x95, 0xd3, 0x76, 0xf3, 0x77 +.byte 0x25, 0x6d, 0x42, 0x1c, 0x38, 0x83, 0x4d, 0xfd, 0xa3, 0x5f, 0x9b, 0x7f, 0x2d, 0xac, 0x79, 0x1b +.byte 0x0e, 0x42, 0x31, 0x97, 0x63, 0xa4, 0xfb, 0x8a, 0x69, 0xd5, 0x22, 0x0d, 0x34, 0x90, 0x30, 0x2e +.byte 0xa8, 0xb4, 0xe0, 0x6d, 0xb6, 0x94, 0xac, 0xbc, 0x8b, 0x4e, 0xd7, 0x70, 0xfc, 0xc5, 0x38, 0x8e +.byte 0x64, 0x25, 0xe1, 0x4d, 0x39, 0x90, 0xce, 0xc9, 0x87, 0x84, 0x58, 0x71, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x43, 0x48, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x53 +.byte 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x41, 0x47, 0x31, 0x21, 0x30, 0x1f, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x18, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20 +.byte 0x53, 0x69, 0x6c, 0x76, 0x65, 0x72, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc4 +.byte 0xf1, 0x87, 0x7f, 0xd3, 0x78, 0x31, 0xf7, 0x38, 0xc9, 0xf8, 0xc3, 0x99, 0x43, 0xbc, 0xc7, 0xf7 +.byte 0xbc, 0x37, 0xe7, 0x4e, 0x71, 0xba, 0x4b, 0x8f, 0xa5, 0x73, 0x1d, 0x5c, 0x6e, 0x98, 0xae, 0x03 +.byte 0x57, 0xae, 0x38, 0x37, 0x43, 0x2f, 0x17, 0x3d, 0x1f, 0xc8, 0xce, 0x68, 0x10, 0xc1, 0x78, 0xae +.byte 0x19, 0x03, 0x2b, 0x10, 0xfa, 0x2c, 0x79, 0x83, 0xf6, 0xe8, 0xb9, 0x68, 0xb9, 0x55, 0xf2, 0x04 +.byte 0x44, 0xa7, 0x39, 0xf9, 0xfc, 0x04, 0x8b, 0x1e, 0xf1, 0xa2, 0x4d, 0x27, 0xf9, 0x61, 0x7b, 0xba +.byte 0xb7, 0xe5, 0xa2, 0x13, 0xb6, 0xeb, 0x61, 0x3e, 0xd0, 0x6c, 0xd1, 0xe6, 0xfb, 0xfa, 0x5e, 0xed +.byte 0x1d, 0xb4, 0x9e, 0xa0, 0x35, 0x5b, 0xa1, 0x92, 0xcb, 0xf0, 0x49, 0x92, 0xfe, 0x85, 0x0a, 0x05 +.byte 0x3e, 0xe6, 0xd9, 0x0b, 0xe2, 0x4f, 0xbb, 0xdc, 0x95, 0x37, 0xfc, 0x91, 0xe9, 0x32, 0x35, 0x22 +.byte 0xd1, 0x1f, 0x3a, 0x4e, 0x27, 0x85, 0x9d, 0xb0, 0x15, 0x94, 0x32, 0xda, 0x61, 0x0d, 0x47, 0x4d +.byte 0x60, 0x42, 0xae, 0x92, 0x47, 0xe8, 0x83, 0x5a, 0x50, 0x58, 0xe9, 0x8a, 0x8b, 0xb9, 0x5d, 0xa1 +.byte 0xdc, 0xdd, 0x99, 0x4a, 0x1f, 0x36, 0x67, 0xbb, 0x48, 0xe4, 0x83, 0xb6, 0x37, 0xeb, 0x48, 0x3a +.byte 0xaf, 0x0f, 0x67, 0x8f, 0x17, 0x07, 0xe8, 0x04, 0xca, 0xef, 0x6a, 0x31, 0x87, 0xd4, 0xc0, 0xb6 +.byte 0xf9, 0x94, 0x71, 0x7b, 0x67, 0x64, 0xb8, 0xb6, 0x91, 0x4a, 0x42, 0x7b, 0x65, 0x2e, 0x30, 0x6a +.byte 0x0c, 0xf5, 0x90, 0xee, 0x95, 0xe6, 0xf2, 0xcd, 0x82, 0xec, 0xd9, 0xa1, 0x4a, 0xec, 0xf6, 0xb2 +.byte 0x4b, 0xe5, 0x45, 0x85, 0xe6, 0x6d, 0x78, 0x93, 0x04, 0x2e, 0x9c, 0x82, 0x6d, 0x36, 0xa9, 0xc4 +.byte 0x31, 0x64, 0x1f, 0x86, 0x83, 0x0b, 0x2a, 0xf4, 0x35, 0x0a, 0x78, 0xc9, 0x55, 0xcf, 0x41, 0xb0 +.byte 0x47, 0xe9, 0x30, 0x9f, 0x99, 0xbe, 0x61, 0xa8, 0x06, 0x84, 0xb9, 0x28, 0x7a, 0x5f, 0x38, 0xd9 +.byte 0x1b, 0xa9, 0x38, 0xb0, 0x83, 0x7f, 0x73, 0xc1, 0xc3, 0x3b, 0x48, 0x2a, 0x82, 0x0f, 0x21, 0x9b +.byte 0xb8, 0xcc, 0xa8, 0x35, 0xc3, 0x84, 0x1b, 0x83, 0xb3, 0x3e, 0xbe, 0xa4, 0x95, 0x69, 0x01, 0x3a +.byte 0x89, 0x00, 0x78, 0x04, 0xd9, 0xc9, 0xf4, 0x99, 0x19, 0xab, 0x56, 0x7e, 0x5b, 0x8b, 0x86, 0x39 +.byte 0x15, 0x91, 0xa4, 0x10, 0x2c, 0x09, 0x32, 0x80, 0x60, 0xb3, 0x93, 0xc0, 0x2a, 0xb6, 0x18, 0x0b +.byte 0x9d, 0x7e, 0x8d, 0x49, 0xf2, 0x10, 0x4a, 0x7f, 0xf9, 0xd5, 0x46, 0x2f, 0x19, 0x92, 0xa3, 0x99 +.byte 0xa7, 0x26, 0xac, 0xbb, 0x8c, 0x3c, 0xe6, 0x0e, 0xbc, 0x47, 0x07, 0xdc, 0x73, 0x51, 0xf1, 0x70 +.byte 0x64, 0x2f, 0x08, 0xf9, 0xb4, 0x47, 0x1d, 0x30, 0x6c, 0x44, 0xea, 0x29, 0x37, 0x85, 0x92, 0x68 +.byte 0x66, 0xbc, 0x83, 0x38, 0xfe, 0x7b, 0x39, 0x2e, 0xd3, 0x50, 0xf0, 0x1f, 0xfb, 0x5e, 0x60, 0xb6 +.byte 0xa9, 0xa6, 0xfa, 0x27, 0x41, 0xf1, 0x9b, 0x18, 0x72, 0xf2, 0xf5, 0x84, 0x74, 0x4a, 0xc9, 0x67 +.byte 0xc4, 0x54, 0xae, 0x48, 0x64, 0xdf, 0x8c, 0xd1, 0x6e, 0xb0, 0x1d, 0xe1, 0x07, 0x8f, 0x08, 0x1e +.byte 0x99, 0x9c, 0x71, 0xe9, 0x4c, 0xd8, 0xa5, 0xf7, 0x47, 0x12, 0x1f, 0x74, 0xd1, 0x51, 0x9e, 0x86 +.byte 0xf3, 0xc2, 0xa2, 0x23, 0x40, 0x0b, 0x73, 0xdb, 0x4b, 0xa6, 0xe7, 0x73, 0x06, 0x8c, 0xc1, 0xa0 +.byte 0xe9, 0xc1, 0x59, 0xac, 0x46, 0xfa, 0xe6, 0x2f, 0xf8, 0xcf, 0x71, 0x9c, 0x46, 0x6d, 0xb9, 0xc4 +.byte 0x15, 0x8d, 0x38, 0x79, 0x03, 0x45, 0x48, 0xef, 0xc4, 0x5d, 0xd7, 0x08, 0xee, 0x87, 0x39, 0x22 +.byte 0x86, 0xb2, 0x0d, 0x0f, 0x58, 0x43, 0xf7, 0x71, 0xa9, 0x48, 0x2e, 0xfd, 0xea, 0xd6, 0x1f, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x08, 0x55, 0x6e, 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x55, 0x43, 0x41, 0x20, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65 +.byte 0x64, 0x20, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xa9, 0x09, 0x07, 0x28, 0x13, 0x02, 0xb0, 0x99, 0xe0, 0x64, 0xaa, 0x1e, 0x43, 0x16 +.byte 0x7a, 0x73, 0xb1, 0x91, 0xa0, 0x75, 0x3e, 0xa8, 0xfa, 0xe3, 0x38, 0x00, 0x7a, 0xec, 0x89, 0x6a +.byte 0x20, 0x0f, 0x8b, 0xc5, 0xb0, 0x9b, 0x33, 0x03, 0x5a, 0x86, 0xc6, 0x58, 0x86, 0xd5, 0xc1, 0x85 +.byte 0xbb, 0x4f, 0xc6, 0x9c, 0x40, 0x4d, 0xca, 0xbe, 0xee, 0x69, 0x96, 0xb8, 0xad, 0x81, 0x30, 0x9a +.byte 0x7c, 0x92, 0x05, 0xeb, 0x05, 0x2b, 0x9a, 0x48, 0xd0, 0xb8, 0x76, 0x3e, 0x96, 0xc8, 0x20, 0xbb +.byte 0xd2, 0xb0, 0xf1, 0x8f, 0xd8, 0xac, 0x45, 0x46, 0xff, 0xaa, 0x67, 0x60, 0xb4, 0x77, 0x7e, 0x6a +.byte 0x1f, 0x3c, 0x1a, 0x52, 0x7a, 0x04, 0x3d, 0x07, 0x3c, 0x85, 0x0d, 0x84, 0xd0, 0x1f, 0x76, 0x0a +.byte 0xf7, 0x6a, 0x14, 0xdf, 0x72, 0xe3, 0x34, 0x7c, 0x57, 0x4e, 0x56, 0x01, 0x3e, 0x79, 0xf1, 0xaa +.byte 0x29, 0x3b, 0x6c, 0xfa, 0xf8, 0x8f, 0x6d, 0x4d, 0xc8, 0x35, 0xdf, 0xae, 0xeb, 0xdc, 0x24, 0xee +.byte 0x79, 0x45, 0xa7, 0x85, 0xb6, 0x05, 0x88, 0xde, 0x88, 0x5d, 0x25, 0x7c, 0x97, 0x64, 0x67, 0x09 +.byte 0xd9, 0xbf, 0x5a, 0x15, 0x05, 0x86, 0xf3, 0x09, 0x1e, 0xec, 0x58, 0x32, 0x33, 0x11, 0xf3, 0x77 +.byte 0x64, 0xb0, 0x76, 0x1f, 0xe4, 0x10, 0x35, 0x17, 0x1b, 0xf2, 0x0e, 0xb1, 0x6c, 0xa4, 0x2a, 0xa3 +.byte 0x73, 0xfc, 0x09, 0x1f, 0x1e, 0x32, 0x19, 0x53, 0x11, 0xe7, 0xd9, 0xb3, 0x2c, 0x2e, 0x76, 0x2e +.byte 0xa1, 0xa3, 0xde, 0x7e, 0x6a, 0x88, 0x09, 0xe8, 0xf2, 0x07, 0x8a, 0xf8, 0xb2, 0xcd, 0x10, 0xe7 +.byte 0xe2, 0x73, 0x40, 0x93, 0xbb, 0x08, 0xd1, 0x3f, 0xe1, 0xfc, 0x0b, 0x94, 0xb3, 0x25, 0xef, 0x7c +.byte 0xa6, 0xd7, 0xd1, 0xaf, 0x9f, 0xff, 0x96, 0x9a, 0xf5, 0x91, 0x7b, 0x98, 0x0b, 0x77, 0xd4, 0x7e +.byte 0xe8, 0x07, 0xd2, 0x62, 0xb5, 0x95, 0x39, 0xe3, 0xf3, 0xf1, 0x6d, 0x0f, 0x0e, 0x65, 0x84, 0x8a +.byte 0x63, 0x54, 0xc5, 0x80, 0xb6, 0xe0, 0x9e, 0x4b, 0x7d, 0x47, 0x26, 0xa7, 0x01, 0x08, 0x5d, 0xd1 +.byte 0x88, 0x9e, 0xd7, 0xc3, 0x32, 0x44, 0xfa, 0x82, 0x4a, 0x0a, 0x68, 0x54, 0x7f, 0x38, 0x53, 0x03 +.byte 0xcc, 0xa4, 0x00, 0x33, 0x64, 0x51, 0x59, 0x0b, 0xa3, 0x82, 0x91, 0x7a, 0x5e, 0xec, 0x16, 0xc2 +.byte 0xf3, 0x2a, 0xe6, 0x62, 0xda, 0x2a, 0xdb, 0x59, 0x62, 0x10, 0x25, 0x4a, 0x2a, 0x81, 0x0b, 0x47 +.byte 0x07, 0x43, 0x06, 0x70, 0x87, 0xd2, 0xfa, 0x93, 0x11, 0x29, 0x7a, 0x48, 0x4d, 0xeb, 0x94, 0xc7 +.byte 0x70, 0x4d, 0xaf, 0x67, 0xd5, 0x51, 0xb1, 0x80, 0x20, 0x01, 0x01, 0xb4, 0x7a, 0x08, 0xa6, 0x90 +.byte 0x7f, 0x4e, 0xe0, 0xef, 0x07, 0x41, 0x87, 0xaf, 0x6a, 0xa5, 0x5e, 0x8b, 0xfb, 0xcf, 0x50, 0xb2 +.byte 0x9a, 0x54, 0xaf, 0xc3, 0x89, 0xba, 0x58, 0x2d, 0xf5, 0x30, 0x98, 0xb1, 0x36, 0x72, 0x39, 0x7e +.byte 0x49, 0x04, 0xfd, 0x29, 0xa7, 0x4c, 0x79, 0xe4, 0x05, 0x57, 0xdb, 0x94, 0xb9, 0x16, 0x53, 0x8d +.byte 0x46, 0xb3, 0x1d, 0x95, 0x61, 0x57, 0x56, 0x7f, 0xaf, 0xf0, 0x16, 0x5b, 0x61, 0x58, 0x6f, 0x36 +.byte 0x50, 0x11, 0x0b, 0xd8, 0xac, 0x2b, 0x95, 0x16, 0x1a, 0x0e, 0x1f, 0x08, 0xcd, 0x36, 0x34, 0x65 +.byte 0x10, 0x62, 0x66, 0xd5, 0x80, 0x5f, 0x14, 0x20, 0x5f, 0x2d, 0x0c, 0xa0, 0x78, 0x0a, 0x68, 0xd6 +.byte 0x2c, 0xd7, 0xe9, 0x6f, 0x2b, 0xd2, 0x4a, 0x05, 0x93, 0xfc, 0x9e, 0x6f, 0x6b, 0x67, 0xff, 0x88 +.byte 0xf1, 0x4e, 0xa5, 0x69, 0x4a, 0x52, 0x37, 0x05, 0xea, 0xc6, 0x16, 0x8d, 0xd2, 0xc4, 0x99, 0xd1 +.byte 0x82, 0x2b, 0x3b, 0xba, 0x35, 0x75, 0xf7, 0x51, 0x51, 0x58, 0xf3, 0xc8, 0x07, 0xdd, 0xe4, 0xb4 +.byte 0x03, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x01, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x4b, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f +.byte 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x48, 0x6f, 0x6e +.byte 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xac, 0xff, 0x38, 0xb6, 0xe9, 0x66, 0x02, 0x49, 0xe3, 0xa2, 0xb4 +.byte 0xe1, 0x90, 0xf9, 0x40, 0x8f, 0x79, 0xf9, 0xe2, 0xbd, 0x79, 0xfe, 0x02, 0xbd, 0xee, 0x24, 0x92 +.byte 0x1d, 0x22, 0xf6, 0xda, 0x85, 0x72, 0x69, 0xfe, 0xd7, 0x3f, 0x09, 0xd4, 0xdd, 0x91, 0xb5, 0x02 +.byte 0x9c, 0xd0, 0x8d, 0x5a, 0xe1, 0x55, 0xc3, 0x50, 0x86, 0xb9, 0x29, 0x26, 0xc2, 0xe3, 0xd9, 0xa0 +.byte 0xf1, 0x69, 0x03, 0x28, 0x20, 0x80, 0x45, 0x22, 0x2d, 0x56, 0xa7, 0x3b, 0x54, 0x95, 0x56, 0x22 +.byte 0x59, 0x1f, 0x28, 0xdf, 0x1f, 0x20, 0x3d, 0x6d, 0xa2, 0x36, 0xbe, 0x23, 0xa0, 0xb1, 0x6e, 0xb5 +.byte 0xb1, 0x27, 0x3f, 0x39, 0x53, 0x09, 0xea, 0xab, 0x6a, 0xe8, 0x74, 0xb2, 0xc2, 0x65, 0x5c, 0x8e +.byte 0xbf, 0x7c, 0xc3, 0x78, 0x84, 0xcd, 0x9e, 0x16, 0xfc, 0xf5, 0x2e, 0x4f, 0x20, 0x2a, 0x08, 0x9f +.byte 0x77, 0xf3, 0xc5, 0x1e, 0xc4, 0x9a, 0x52, 0x66, 0x1e, 0x48, 0x5e, 0xe3, 0x10, 0x06, 0x8f, 0x22 +.byte 0x98, 0xe1, 0x65, 0x8e, 0x1b, 0x5d, 0x23, 0x66, 0x3b, 0xb8, 0xa5, 0x32, 0x51, 0xc8, 0x86, 0xaa +.byte 0xa1, 0xa9, 0x9e, 0x7f, 0x76, 0x94, 0xc2, 0xa6, 0x6c, 0xb7, 0x41, 0xf0, 0xd5, 0xc8, 0x06, 0x38 +.byte 0xe6, 0xd4, 0x0c, 0xe2, 0xf3, 0x3b, 0x4c, 0x6d, 0x50, 0x8c, 0xc4, 0x83, 0x27, 0xc1, 0x13, 0x84 +.byte 0x59, 0x3d, 0x9e, 0x75, 0x74, 0xb6, 0xd8, 0x02, 0x5e, 0x3a, 0x90, 0x7a, 0xc0, 0x42, 0x36, 0x72 +.byte 0xec, 0x6a, 0x4d, 0xdc, 0xef, 0xc4, 0x00, 0xdf, 0x13, 0x18, 0x57, 0x5f, 0x26, 0x78, 0xc8, 0xd6 +.byte 0x0a, 0x79, 0x77, 0xbf, 0xf7, 0xaf, 0xb7, 0x76, 0xb9, 0xa5, 0x0b, 0x84, 0x17, 0x5d, 0x10, 0xea +.byte 0x6f, 0xe1, 0xab, 0x95, 0x11, 0x5f, 0x6d, 0x3c, 0xa3, 0x5c, 0x4d, 0x83, 0x5b, 0xf2, 0xb3, 0x19 +.byte 0x8a, 0x80, 0x8b, 0x0b, 0x87, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30 +.byte 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17 +.byte 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x55, 0x6e, 0x69, 0x76, 0x65, 0x72, 0x73 +.byte 0x61, 0x6c, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0x54, 0x52, 0xc1, 0xc9, 0x3e, 0xf2, 0xd9 +.byte 0xdc, 0xb1, 0x53, 0x1a, 0x59, 0x29, 0xe7, 0xb1, 0xc3, 0x45, 0x28, 0xe5, 0xd7, 0xd1, 0xed, 0xc5 +.byte 0xc5, 0x4b, 0xa1, 0xaa, 0x74, 0x7b, 0x57, 0xaf, 0x4a, 0x26, 0xfc, 0xd8, 0xf5, 0x5e, 0xa7, 0x6e +.byte 0x19, 0xdb, 0x74, 0x0c, 0x4f, 0x35, 0x5b, 0x32, 0x0b, 0x01, 0xe3, 0xdb, 0xeb, 0x7a, 0x77, 0x35 +.byte 0xea, 0xaa, 0x5a, 0xe0, 0xd6, 0xe8, 0xa1, 0x57, 0x94, 0xf0, 0x90, 0xa3, 0x74, 0x56, 0x94, 0x44 +.byte 0x30, 0x03, 0x1e, 0x5c, 0x4e, 0x2b, 0x85, 0x26, 0x74, 0x82, 0x7a, 0x0c, 0x76, 0xa0, 0x6f, 0x4d +.byte 0xce, 0x41, 0x2d, 0xa0, 0x15, 0x06, 0x14, 0x5f, 0xb7, 0x42, 0xcd, 0x7b, 0x8f, 0x58, 0x61, 0x34 +.byte 0xdc, 0x2a, 0x08, 0xf9, 0x2e, 0xc3, 0x01, 0xa6, 0x22, 0x44, 0x1c, 0x4c, 0x07, 0x82, 0xe6, 0x5b +.byte 0xce, 0xd0, 0x4a, 0x7c, 0x04, 0xd3, 0x19, 0x73, 0x27, 0xf0, 0xaa, 0x98, 0x7f, 0x2e, 0xaf, 0x4e +.byte 0xeb, 0x87, 0x1e, 0x24, 0x77, 0x6a, 0x5d, 0xb6, 0xe8, 0x5b, 0x45, 0xba, 0xdc, 0xc3, 0xa1, 0x05 +.byte 0x6f, 0x56, 0x8e, 0x8f, 0x10, 0x26, 0xa5, 0x49, 0xc3, 0x2e, 0xd7, 0x41, 0x87, 0x22, 0xe0, 0x4f +.byte 0x86, 0xca, 0x60, 0xb5, 0xea, 0xa1, 0x63, 0xc0, 0x01, 0x97, 0x10, 0x79, 0xbd, 0x00, 0x3c, 0x12 +.byte 0x6d, 0x2b, 0x15, 0xb1, 0xac, 0x4b, 0xb1, 0xee, 0x18, 0xb9, 0x4e, 0x96, 0xdc, 0xdc, 0x76, 0xff +.byte 0x3b, 0xbe, 0xcf, 0x5f, 0x03, 0xc0, 0xfc, 0x3b, 0xe8, 0xbe, 0x46, 0x1b, 0xff, 0xda, 0x40, 0xc2 +.byte 0x52, 0xf7, 0xfe, 0xe3, 0x3a, 0xf7, 0x6a, 0x77, 0x35, 0xd0, 0xda, 0x8d, 0xeb, 0x5e, 0x18, 0x6a +.byte 0x31, 0xc7, 0x1e, 0xba, 0x3c, 0x1b, 0x28, 0xd6, 0x6b, 0x54, 0xc6, 0xaa, 0x5b, 0xd7, 0xa2, 0x2c +.byte 0x1b, 0x19, 0xcc, 0xa2, 0x02, 0xf6, 0x9b, 0x59, 0xbd, 0x37, 0x6b, 0x86, 0xb5, 0x6d, 0x82, 0xba +.byte 0xd8, 0xea, 0xc9, 0x56, 0xbc, 0xa9, 0x36, 0x58, 0xfd, 0x3e, 0x19, 0xf3, 0xed, 0x0c, 0x26, 0xa9 +.byte 0x93, 0x38, 0xf8, 0x4f, 0xc1, 0x5d, 0x22, 0x06, 0xd0, 0x97, 0xea, 0xe1, 0xad, 0xc6, 0x55, 0xe0 +.byte 0x81, 0x2b, 0x28, 0x83, 0x3a, 0xfa, 0xf4, 0x7b, 0x21, 0x51, 0x00, 0xbe, 0x52, 0x38, 0xce, 0xcd +.byte 0x66, 0x79, 0xa8, 0xf4, 0x81, 0x56, 0xe2, 0xd0, 0x83, 0x09, 0x47, 0x51, 0x5b, 0x50, 0x6a, 0xcf +.byte 0xdb, 0x48, 0x1a, 0x5d, 0x3e, 0xf7, 0xcb, 0xf6, 0x65, 0xf7, 0x6c, 0xf1, 0x95, 0xf8, 0x02, 0x3b +.byte 0x32, 0x56, 0x82, 0x39, 0x7a, 0x5b, 0xbd, 0x2f, 0x89, 0x1b, 0xbf, 0xa1, 0xb4, 0xe8, 0xff, 0x7f +.byte 0x8d, 0x8c, 0xdf, 0x03, 0xf1, 0x60, 0x4e, 0x58, 0x11, 0x4c, 0xeb, 0xa3, 0x3f, 0x10, 0x2b, 0x83 +.byte 0x9a, 0x01, 0x73, 0xd9, 0x94, 0x6d, 0x84, 0x00, 0x27, 0x66, 0xac, 0xf0, 0x70, 0x40, 0x09, 0x42 +.byte 0x92, 0xad, 0x4f, 0x93, 0x0d, 0x61, 0x09, 0x51, 0x24, 0xd8, 0x92, 0xd5, 0x0b, 0x94, 0x61, 0xb2 +.byte 0x87, 0xb2, 0xed, 0xff, 0x9a, 0x35, 0xff, 0x85, 0x54, 0xca, 0xed, 0x44, 0x43, 0xac, 0x1b, 0x3c +.byte 0x16, 0x6b, 0x48, 0x4a, 0x0a, 0x1c, 0x40, 0x88, 0x1f, 0x92, 0xc2, 0x0b, 0x00, 0x05, 0xff, 0xf2 +.byte 0xc8, 0x02, 0x4a, 0xa4, 0xaa, 0xa9, 0xcc, 0x99, 0x96, 0x9c, 0x2f, 0x58, 0xe0, 0x7d, 0xe1, 0xbe +.byte 0xbb, 0x07, 0xdc, 0x5f, 0x04, 0x72, 0x5c, 0x31, 0x34, 0xc3, 0xec, 0x5f, 0x2d, 0xe0, 0x3d, 0x64 +.byte 0x90, 0x22, 0xe6, 0xd1, 0xec, 0xb8, 0x2e, 0xdd, 0x59, 0xae, 0xd9, 0xa1, 0x37, 0xbf, 0x54, 0x35 +.byte 0xdc, 0x73, 0x32, 0x4f, 0x8c, 0x04, 0x1e, 0x33, 0xb2, 0xc9, 0x46, 0xf1, 0xd8, 0x5c, 0xc8, 0x55 +.byte 0x50, 0xc9, 0x68, 0xbd, 0xa8, 0xba, 0x36, 0x09, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02 +.byte 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c +.byte 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73 +.byte 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47 +.byte 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0x11, 0x02, 0x8b, 0x1e +.byte 0xe3, 0xa1, 0x77, 0x9b, 0x3b, 0xdc, 0xbf, 0x94, 0x3e, 0xb7, 0x95, 0xa7, 0x40, 0x3c, 0xa1, 0xfd +.byte 0x82, 0xf9, 0x7d, 0x32, 0x06, 0x82, 0x71, 0xf6, 0xf6, 0x8c, 0x7f, 0xfb, 0xe8, 0xdb, 0xbc, 0x6a +.byte 0x2e, 0x97, 0x97, 0xa3, 0x8c, 0x4b, 0xf9, 0x2b, 0xf6, 0xb1, 0xf9, 0xce, 0x84, 0x1d, 0xb1, 0xf9 +.byte 0xc5, 0x97, 0xde, 0xef, 0xb9, 0xf2, 0xa3, 0xe9, 0xbc, 0x12, 0x89, 0x5e, 0xa7, 0xaa, 0x52, 0xab +.byte 0xf8, 0x23, 0x27, 0xcb, 0xa4, 0xb1, 0x9c, 0x63, 0xdb, 0xd7, 0x99, 0x7e, 0xf0, 0x0a, 0x5e, 0xeb +.byte 0x68, 0xa6, 0xf4, 0xc6, 0x5a, 0x47, 0x0d, 0x4d, 0x10, 0x33, 0xe3, 0x4e, 0xb1, 0x13, 0xa3, 0xc8 +.byte 0x18, 0x6c, 0x4b, 0xec, 0xfc, 0x09, 0x90, 0xdf, 0x9d, 0x64, 0x29, 0x25, 0x23, 0x07, 0xa1, 0xb4 +.byte 0xd2, 0x3d, 0x2e, 0x60, 0xe0, 0xcf, 0xd2, 0x09, 0x87, 0xbb, 0xcd, 0x48, 0xf0, 0x4d, 0xc2, 0xc2 +.byte 0x7a, 0x88, 0x8a, 0xbb, 0xba, 0xcf, 0x59, 0x19, 0xd6, 0xaf, 0x8f, 0xb0, 0x07, 0xb0, 0x9e, 0x31 +.byte 0xf1, 0x82, 0xc1, 0xc0, 0xdf, 0x2e, 0xa6, 0x6d, 0x6c, 0x19, 0x0e, 0xb5, 0xd8, 0x7e, 0x26, 0x1a +.byte 0x45, 0x03, 0x3d, 0xb0, 0x79, 0xa4, 0x94, 0x28, 0xad, 0x0f, 0x7f, 0x26, 0xe5, 0xa8, 0x08, 0xfe +.byte 0x96, 0xe8, 0x3c, 0x68, 0x94, 0x53, 0xee, 0x83, 0x3a, 0x88, 0x2b, 0x15, 0x96, 0x09, 0xb2, 0xe0 +.byte 0x7a, 0x8c, 0x2e, 0x75, 0xd6, 0x9c, 0xeb, 0xa7, 0x56, 0x64, 0x8f, 0x96, 0x4f, 0x68, 0xae, 0x3d +.byte 0x97, 0xc2, 0x84, 0x8f, 0xc0, 0xbc, 0x40, 0xc0, 0x0b, 0x5c, 0xbd, 0xf6, 0x87, 0xb3, 0x35, 0x6c +.byte 0xac, 0x18, 0x50, 0x7f, 0x84, 0xe0, 0x4c, 0xcd, 0x92, 0xd3, 0x20, 0xe9, 0x33, 0xbc, 0x52, 0x99 +.byte 0xaf, 0x32, 0xb5, 0x29, 0xb3, 0x25, 0x2a, 0xb4, 0x48, 0xf9, 0x72, 0xe1, 0xca, 0x64, 0xf7, 0xe6 +.byte 0x82, 0x10, 0x8d, 0xe8, 0x9d, 0xc2, 0x8a, 0x88, 0xfa, 0x38, 0x66, 0x8a, 0xfc, 0x63, 0xf9, 0x01 +.byte 0xf9, 0x78, 0xfd, 0x7b, 0x5c, 0x77, 0xfa, 0x76, 0x87, 0xfa, 0xec, 0xdf, 0xb1, 0x0e, 0x79, 0x95 +.byte 0x57, 0xb4, 0xbd, 0x26, 0xef, 0xd6, 0x01, 0xd1, 0xeb, 0x16, 0x0a, 0xbb, 0x8e, 0x0b, 0xb5, 0xc5 +.byte 0xc5, 0x8a, 0x55, 0xab, 0xd3, 0xac, 0xea, 0x91, 0x4b, 0x29, 0xcc, 0x19, 0xa4, 0x32, 0x25, 0x4e +.byte 0x2a, 0xf1, 0x65, 0x44, 0xd0, 0x02, 0xce, 0xaa, 0xce, 0x49, 0xb4, 0xea, 0x9f, 0x7c, 0x83, 0xb0 +.byte 0x40, 0x7b, 0xe7, 0x43, 0xab, 0xa7, 0x6c, 0xa3, 0x8f, 0x7d, 0x89, 0x81, 0xfa, 0x4c, 0xa5, 0xff +.byte 0xd5, 0x8e, 0xc3, 0xce, 0x4b, 0xe0, 0xb5, 0xd8, 0xb3, 0x8e, 0x45, 0xcf, 0x76, 0xc0, 0xed, 0x40 +.byte 0x2b, 0xfd, 0x53, 0x0f, 0xb0, 0xa7, 0xd5, 0x3b, 0x0d, 0xb1, 0x8a, 0xa2, 0x03, 0xde, 0x31, 0xad +.byte 0xcc, 0x77, 0xea, 0x6f, 0x7b, 0x3e, 0xd6, 0xdf, 0x91, 0x22, 0x12, 0xe6, 0xbe, 0xfa, 0xd8, 0x32 +.byte 0xfc, 0x10, 0x63, 0x14, 0x51, 0x72, 0xde, 0x5d, 0xd6, 0x16, 0x93, 0xbd, 0x29, 0x68, 0x33, 0xef +.byte 0x3a, 0x66, 0xec, 0x07, 0x8a, 0x26, 0xdf, 0x13, 0xd7, 0x57, 0x65, 0x78, 0x27, 0xde, 0x5e, 0x49 +.byte 0x14, 0x00, 0xa2, 0x00, 0x7f, 0x9a, 0xa8, 0x21, 0xb6, 0xa9, 0xb1, 0x95, 0xb0, 0xa5, 0xb9, 0x0d +.byte 0x16, 0x11, 0xda, 0xc7, 0x6c, 0x48, 0x3c, 0x40, 0xe0, 0x7e, 0x0d, 0x5a, 0xcd, 0x56, 0x3c, 0xd1 +.byte 0x97, 0x05, 0xb9, 0xcb, 0x4b, 0xed, 0x39, 0x4b, 0x9c, 0xc4, 0x3f, 0xd2, 0x55, 0x13, 0x6e, 0x24 +.byte 0xb0, 0xd6, 0x71, 0xfa, 0xf4, 0xc1, 0xba, 0xcc, 0xed, 0x1b, 0xf5, 0xfe, 0x81, 0x41, 0xd8, 0x00 +.byte 0x98, 0x3d, 0x3a, 0xc8, 0xae, 0x7a, 0x98, 0x37, 0x18, 0x05, 0x95, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f +.byte 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69 +.byte 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xce, 0xde +.byte 0xfd, 0xa6, 0xfb, 0xec, 0xec, 0x14, 0x34, 0x3c, 0x07, 0x06, 0x5a, 0x6c, 0x59, 0xf7, 0x19, 0x35 +.byte 0xdd, 0xf7, 0xc1, 0x9d, 0x55, 0xaa, 0xd3, 0xcd, 0x3b, 0xa4, 0x93, 0x72, 0xef, 0x0a, 0xfa, 0x6d +.byte 0x9d, 0xf6, 0xf0, 0x85, 0x80, 0x5b, 0xa1, 0x48, 0x52, 0x9f, 0x39, 0xc5, 0xb7, 0xee, 0x28, 0xac +.byte 0xef, 0xcb, 0x76, 0x68, 0x14, 0xb9, 0xdf, 0xad, 0x01, 0x6c, 0x99, 0x1f, 0xc4, 0x22, 0x1d, 0x9f +.byte 0xfe, 0x72, 0x77, 0xe0, 0x2c, 0x5b, 0xaf, 0xe4, 0x04, 0xbf, 0x4f, 0x72, 0xa0, 0x1a, 0x34, 0x98 +.byte 0xe8, 0x39, 0x68, 0xec, 0x95, 0x25, 0x7b, 0x76, 0xa1, 0xe6, 0x69, 0xb9, 0x85, 0x19, 0xbd, 0x89 +.byte 0x8c, 0xfe, 0xad, 0xed, 0x36, 0xea, 0x73, 0xbc, 0xff, 0x83, 0xe2, 0xcb, 0x7d, 0xc1, 0xd2, 0xce +.byte 0x4a, 0xb3, 0x8d, 0x05, 0x9e, 0x8b, 0x49, 0x93, 0xdf, 0xc1, 0x5b, 0xd0, 0x6e, 0x5e, 0xf0, 0x2e +.byte 0x30, 0x2e, 0x82, 0xfc, 0xfa, 0xbc, 0xb4, 0x17, 0x0a, 0x48, 0xe5, 0x88, 0x9b, 0xc5, 0x9b, 0x6b +.byte 0xde, 0xb0, 0xca, 0xb4, 0x03, 0xf0, 0xda, 0xf4, 0x90, 0xb8, 0x65, 0x64, 0xf7, 0x5c, 0x4c, 0xad +.byte 0xe8, 0x7e, 0x66, 0x5e, 0x99, 0xd7, 0xb8, 0xc2, 0x3e, 0xc8, 0xd0, 0x13, 0x9d, 0xad, 0xee, 0xe4 +.byte 0x45, 0x7b, 0x89, 0x55, 0xf7, 0x8a, 0x1f, 0x62, 0x52, 0x84, 0x12, 0xb3, 0xc2, 0x40, 0x97, 0xe3 +.byte 0x8a, 0x1f, 0x47, 0x91, 0xa6, 0x74, 0x5a, 0xd2, 0xf8, 0xb1, 0x63, 0x28, 0x10, 0xb8, 0xb3, 0x09 +.byte 0xb8, 0x56, 0x77, 0x40, 0xa2, 0x26, 0x98, 0x79, 0xc6, 0xfe, 0xdf, 0x25, 0xee, 0x3e, 0xe5, 0xa0 +.byte 0x7f, 0xd4, 0x61, 0x0f, 0x51, 0x4b, 0x3c, 0x3f, 0x8c, 0xda, 0xe1, 0x70, 0x74, 0xd8, 0xc2, 0x68 +.byte 0xa1, 0xf9, 0xc1, 0x0c, 0xe9, 0xa1, 0xe2, 0x7f, 0xbb, 0x55, 0x3c, 0x76, 0x06, 0xee, 0x6a, 0x4e +.byte 0xcc, 0x92, 0x88, 0x30, 0x4d, 0x9a, 0xbd, 0x4f, 0x0b, 0x48, 0x9a, 0x84, 0xb5, 0x98, 0xa3, 0xd5 +.byte 0xfb, 0x73, 0xc1, 0x57, 0x61, 0xdd, 0x28, 0x56, 0x75, 0x13, 0xae, 0x87, 0x8e, 0xe7, 0x0c, 0x51 +.byte 0x09, 0x10, 0x75, 0x88, 0x4c, 0xbc, 0x8d, 0xf9, 0x7b, 0x3c, 0xd4, 0x22, 0x48, 0x1f, 0x2a, 0xdc +.byte 0xeb, 0x6b, 0xbb, 0x44, 0xb1, 0xcb, 0x33, 0x71, 0x32, 0x46, 0xaf, 0xad, 0x4a, 0xf1, 0x8c, 0xe8 +.byte 0x74, 0x3a, 0xac, 0xe7, 0x1a, 0x22, 0x73, 0x80, 0xd2, 0x30, 0xf7, 0x25, 0x42, 0xc7, 0x22, 0x3b +.byte 0x3b, 0x12, 0xad, 0x96, 0x2e, 0xc6, 0xc3, 0x76, 0x07, 0xaa, 0x20, 0xb7, 0x35, 0x49, 0x57, 0xe9 +.byte 0x92, 0x49, 0xe8, 0x76, 0x16, 0x72, 0x31, 0x67, 0x2b, 0x96, 0x7e, 0x8a, 0xa3, 0xc7, 0x94, 0x56 +.byte 0x22, 0xbf, 0x6a, 0x4b, 0x7e, 0x01, 0x21, 0xb2, 0x23, 0x32, 0xdf, 0xe4, 0x9a, 0x44, 0x6d, 0x59 +.byte 0x5b, 0x5d, 0xf5, 0x00, 0xa0, 0x1c, 0x9b, 0xc6, 0x78, 0x97, 0x8d, 0x90, 0xff, 0x9b, 0xc8, 0xaa +.byte 0xb4, 0xaf, 0x11, 0x51, 0x39, 0x5e, 0xd9, 0xfb, 0x67, 0xad, 0xd5, 0x5b, 0x11, 0x9d, 0x32, 0x9a +.byte 0x1b, 0xbd, 0xd5, 0xba, 0x5b, 0xa5, 0xc9, 0xcb, 0x25, 0x69, 0x53, 0x55, 0x27, 0x5c, 0xe0, 0xca +.byte 0x36, 0xcb, 0x88, 0x61, 0xfb, 0x1e, 0xb7, 0xd0, 0xcb, 0xee, 0x16, 0xfb, 0xd3, 0xa6, 0x4c, 0xde +.byte 0x92, 0xa5, 0xd4, 0xe2, 0xdf, 0xf5, 0x06, 0x54, 0xde, 0x2e, 0x9d, 0x4b, 0xb4, 0x93, 0x30, 0xaa +.byte 0x81, 0xce, 0xdd, 0x1a, 0xdc, 0x51, 0x73, 0x0d, 0x4f, 0x70, 0xe9, 0xe5, 0xb6, 0x16, 0x21, 0x19 +.byte 0x79, 0xb2, 0xe6, 0x89, 0x0b, 0x75, 0x64, 0xca, 0xd5, 0xab, 0xbc, 0x09, 0xc1, 0x18, 0xa1, 0xff +.byte 0xd4, 0x54, 0xa1, 0x85, 0x3c, 0xfd, 0x14, 0x24, 0x03, 0xb2, 0x87, 0xd3, 0xa4, 0xb7, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x49, 0x00, 0x78, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65 +.byte 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x33 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x1f, 0x4f, 0x33, 0x87, 0x33, 0x29, 0x8a, 0xa1 +.byte 0x84, 0xde, 0xcb, 0xc7, 0x21, 0x58, 0x41, 0x89, 0xea, 0x56, 0x9d, 0x2b, 0x4b, 0x85, 0xc6, 0x1d +.byte 0x4c, 0x27, 0xbc, 0x7f, 0x26, 0x51, 0x72, 0x6f, 0xe2, 0x9f, 0xd6, 0xa3, 0xca, 0xcc, 0x45, 0x14 +.byte 0x46, 0x8b, 0xad, 0xef, 0x7e, 0x86, 0x8c, 0xec, 0xb1, 0x7e, 0x2f, 0xff, 0xa9, 0x71, 0x9d, 0x18 +.byte 0x84, 0x45, 0x04, 0x41, 0x55, 0x6e, 0x2b, 0xea, 0x26, 0x7f, 0xbb, 0x90, 0x01, 0xe3, 0x4b, 0x19 +.byte 0xba, 0xe4, 0x54, 0x96, 0x45, 0x09, 0xb1, 0xd5, 0x6c, 0x91, 0x44, 0xad, 0x84, 0x13, 0x8e, 0x9a +.byte 0x8c, 0x0d, 0x80, 0x0c, 0x32, 0xf6, 0xe0, 0x27, 0x00, 0x49, 0x00, 0x78, 0x30, 0x47, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31 +.byte 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x52, 0x34, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d +.byte 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf3, 0x74, 0x73 +.byte 0xa7, 0x68, 0x8b, 0x60, 0xae, 0x43, 0xb8, 0x35, 0xc5, 0x81, 0x30, 0x7b, 0x4b, 0x49, 0x9d, 0xfb +.byte 0xc1, 0x61, 0xce, 0xe6, 0xde, 0x46, 0xbd, 0x6b, 0xd5, 0x61, 0x18, 0x35, 0xae, 0x40, 0xdd, 0x73 +.byte 0xf7, 0x89, 0x91, 0x30, 0x5a, 0xeb, 0x3c, 0xee, 0x85, 0x7c, 0xa2, 0x40, 0x76, 0x3b, 0xa9, 0xc6 +.byte 0xb8, 0x47, 0xd8, 0x2a, 0xe7, 0x92, 0x91, 0x6a, 0x73, 0xe9, 0xb1, 0x72, 0x39, 0x9f, 0x29, 0x9f +.byte 0xa2, 0x98, 0xd3, 0x5f, 0x5e, 0x58, 0x86, 0x65, 0x0f, 0xa1, 0x84, 0x65, 0x06, 0xd1, 0xdc, 0x8b +.byte 0xc9, 0xc7, 0x73, 0xc8, 0x8c, 0x6a, 0x2f, 0xe5, 0xc4, 0xab, 0xd1, 0x1d, 0x8a, 0x00, 0x4a, 0x02 +.byte 0x26, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d +.byte 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61 +.byte 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa0, 0xbe, 0x50, 0x10 +.byte 0x8e, 0xe9, 0xf2, 0x6c, 0x40, 0xb4, 0x04, 0x9c, 0x85, 0xb9, 0x31, 0xca, 0xdc, 0x2d, 0xe4, 0x11 +.byte 0xa9, 0x04, 0x3c, 0x1b, 0x55, 0xc1, 0xe7, 0x58, 0x30, 0x1d, 0x24, 0xb4, 0xc3, 0xef, 0x85, 0xde +.byte 0x8c, 0x2c, 0xe1, 0xc1, 0x3d, 0xdf, 0x82, 0xe6, 0x4f, 0xad, 0x47, 0x87, 0x6c, 0xec, 0x5b, 0x49 +.byte 0xc1, 0x4a, 0xd5, 0xbb, 0x8f, 0xec, 0x87, 0xac, 0x7f, 0x82, 0x9a, 0x86, 0xec, 0x3d, 0x03, 0x99 +.byte 0x52, 0x01, 0xd2, 0x35, 0x9e, 0xac, 0xda, 0xf0, 0x53, 0xc9, 0x66, 0x3c, 0xd4, 0xac, 0x02, 0x01 +.byte 0xda, 0x24, 0xd3, 0x3b, 0xa8, 0x02, 0x46, 0xaf, 0xa4, 0x1c, 0xe3, 0xf8, 0x73, 0x58, 0x76, 0xb7 +.byte 0xf6, 0x0e, 0x90, 0x0d, 0xb5, 0xf0, 0xcf, 0xcc, 0xfa, 0xf9, 0xc6, 0x4c, 0xe5, 0xc3, 0x86, 0x30 +.byte 0x0a, 0x8d, 0x17, 0x7e, 0x35, 0xeb, 0xc5, 0xdf, 0xbb, 0x0e, 0x9c, 0xc0, 0x8d, 0x87, 0xe3, 0x88 +.byte 0x38, 0x85, 0x67, 0xfa, 0x3e, 0xc7, 0xab, 0xe0, 0x13, 0x9c, 0x05, 0x18, 0x98, 0xcf, 0x93, 0xf5 +.byte 0xb1, 0x92, 0xb4, 0xfc, 0x23, 0xd3, 0xcf, 0xd5, 0xc4, 0x27, 0x49, 0xe0, 0x9e, 0x3c, 0x9b, 0x08 +.byte 0xa3, 0x8b, 0x5d, 0x2a, 0x21, 0xe0, 0xfc, 0x39, 0xaa, 0x53, 0xda, 0x7d, 0x7e, 0xcf, 0x1a, 0x09 +.byte 0x53, 0xbc, 0x5d, 0x05, 0x04, 0xcf, 0xa1, 0x4a, 0x8f, 0x8b, 0x76, 0x82, 0x0d, 0xa1, 0xf8, 0xd2 +.byte 0xc7, 0x14, 0x77, 0x5b, 0x90, 0x36, 0x07, 0x81, 0x9b, 0x3e, 0x06, 0xfa, 0x52, 0x5e, 0x63, 0xc5 +.byte 0xa6, 0x00, 0xfe, 0xa5, 0xe9, 0x52, 0x1b, 0x52, 0xb5, 0x92, 0x39, 0x72, 0x03, 0x09, 0x62, 0xbd +.byte 0xb0, 0x60, 0x16, 0x6e, 0xa6, 0xdd, 0x25, 0xc2, 0x03, 0x66, 0xdd, 0xf3, 0x04, 0xd1, 0x40, 0xe2 +.byte 0x4e, 0x8b, 0x86, 0xf4, 0x6f, 0xe5, 0x83, 0xa0, 0x27, 0x84, 0x5e, 0x04, 0xc1, 0xf5, 0x90, 0xbd +.byte 0x30, 0x3d, 0xc4, 0xef, 0xa8, 0x69, 0xbc, 0x38, 0x9b, 0xa4, 0xa4, 0x96, 0xd1, 0x62, 0xda, 0x69 +.byte 0xc0, 0x01, 0x96, 0xae, 0xcb, 0xc4, 0x51, 0x34, 0xea, 0x0c, 0xaa, 0xff, 0x21, 0x8e, 0x59, 0x8f +.byte 0x4a, 0x5c, 0xe4, 0x61, 0x9a, 0xa7, 0xd2, 0xe9, 0x2a, 0x78, 0x8d, 0x51, 0x3d, 0x3a, 0x15, 0xee +.byte 0xa2, 0x59, 0x8e, 0xa9, 0x5c, 0xde, 0xc5, 0xf9, 0x90, 0x22, 0xe5, 0x88, 0x45, 0x71, 0xdd, 0x91 +.byte 0x99, 0x6c, 0x7a, 0x9f, 0x3d, 0x3d, 0x98, 0x7c, 0x5e, 0xf6, 0xbe, 0x16, 0x68, 0xa0, 0x5e, 0xae +.byte 0x0b, 0x23, 0xfc, 0x5a, 0x0f, 0xaa, 0x22, 0x76, 0x2d, 0xc9, 0xa1, 0x10, 0x1d, 0xe4, 0xd3, 0x44 +.byte 0x23, 0x90, 0x88, 0x9f, 0xc6, 0x2a, 0xe6, 0xd7, 0xf5, 0x9a, 0xb3, 0x58, 0x1e, 0x2f, 0x30, 0x89 +.byte 0x08, 0x1b, 0x54, 0xa2, 0xb5, 0x98, 0x23, 0xec, 0x08, 0x77, 0x1c, 0x95, 0x5d, 0x61, 0xd1, 0xcb +.byte 0x89, 0x9c, 0x5f, 0xa2, 0x4a, 0x91, 0x9a, 0xef, 0x21, 0xaa, 0x49, 0x16, 0x08, 0xa8, 0xbd, 0x61 +.byte 0x28, 0x31, 0xc9, 0x74, 0xad, 0x85, 0xf6, 0xd9, 0xc5, 0xb1, 0x8b, 0xd1, 0xe5, 0x10, 0x32, 0x4d +.byte 0x5f, 0x8b, 0x20, 0x3a, 0x3c, 0x49, 0x1f, 0x33, 0x85, 0x59, 0x0d, 0xdb, 0xcb, 0x09, 0x75, 0x43 +.byte 0x69, 0x73, 0xfb, 0x6b, 0x71, 0x7d, 0xf0, 0xdf, 0xc4, 0x4c, 0x7d, 0xc6, 0xa3, 0x2e, 0xc8, 0x95 +.byte 0x79, 0xcb, 0x73, 0xa2, 0x8e, 0x4e, 0x4d, 0x24, 0xfb, 0x5e, 0xe4, 0x04, 0xbe, 0x72, 0x1b, 0xa6 +.byte 0x27, 0x2d, 0x49, 0x5a, 0x99, 0x7a, 0xd7, 0x5c, 0x09, 0x20, 0xb7, 0x7f, 0x94, 0xb9, 0x4f, 0xf1 +.byte 0x0d, 0x1c, 0x5e, 0x88, 0x42, 0x1b, 0x11, 0xb7, 0xe7, 0x91, 0xdb, 0x9e, 0x6c, 0xf4, 0x6a, 0xdf +.byte 0x8c, 0x06, 0x98, 0x03, 0xad, 0xcc, 0x28, 0xef, 0xa5, 0x47, 0xf3, 0x53, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x4a, 0x02, 0x26, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51 +.byte 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31 +.byte 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64 +.byte 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x47, 0x33, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0xa1, 0xae, 0x25, 0xb2, 0x01, 0x18, 0xdc, 0x57, 0x88, 0x3f, 0x46, 0xeb, 0xf9, 0xaf, 0xe2, 0xeb +.byte 0x23, 0x71, 0xe2, 0x9a, 0xd1, 0x61, 0x66, 0x21, 0x5f, 0xaa, 0xaf, 0x27, 0x51, 0xe5, 0x6e, 0x1b +.byte 0x16, 0xd4, 0x2d, 0x7d, 0x50, 0xb0, 0x53, 0x77, 0xbd, 0x78, 0x3a, 0x60, 0xe2, 0x64, 0x02, 0x9b +.byte 0x7c, 0x86, 0x9b, 0xd6, 0x1a, 0x8e, 0xad, 0xff, 0x1f, 0x15, 0x7f, 0xd5, 0x95, 0x1e, 0x12, 0xcb +.byte 0xe6, 0x14, 0x84, 0x04, 0xc1, 0xdf, 0x36, 0xb3, 0x16, 0x9f, 0x8a, 0xe3, 0xc9, 0xdb, 0x98, 0x34 +.byte 0xce, 0xd8, 0x33, 0x17, 0x28, 0x46, 0xfc, 0xa7, 0xc9, 0xf0, 0xd2, 0xb4, 0xd5, 0x4d, 0x09, 0x72 +.byte 0x49, 0xf9, 0xf2, 0x87, 0xe3, 0xa9, 0xda, 0x7d, 0xa1, 0x7d, 0x6b, 0xb2, 0x3a, 0x25, 0xa9, 0x6d +.byte 0x52, 0x44, 0xac, 0xf8, 0xbe, 0x6e, 0xfb, 0xdc, 0xa6, 0x73, 0x91, 0x90, 0x61, 0xa6, 0x03, 0x14 +.byte 0x20, 0xf2, 0xe7, 0x87, 0xa3, 0x88, 0xad, 0xad, 0xa0, 0x8c, 0xff, 0xa6, 0x0b, 0x25, 0x52, 0x25 +.byte 0xe7, 0x16, 0x01, 0xd5, 0xcb, 0xb8, 0x35, 0x81, 0x0c, 0xa3, 0x3b, 0xf0, 0xe1, 0xe1, 0xfc, 0x5a +.byte 0x5d, 0xce, 0x80, 0x71, 0x6d, 0xf8, 0x49, 0xab, 0x3e, 0x3b, 0xba, 0xb8, 0xd7, 0x80, 0x01, 0xfb +.byte 0xa5, 0xeb, 0x5b, 0xb3, 0xc5, 0x5e, 0x60, 0x2a, 0x31, 0xa0, 0xaf, 0x37, 0xe8, 0x20, 0x3a, 0x9f +.byte 0xa8, 0x32, 0x2c, 0x0c, 0xcc, 0x09, 0x1d, 0xd3, 0x9e, 0x8e, 0x5d, 0xbc, 0x4c, 0x98, 0xee, 0xc5 +.byte 0x1a, 0x68, 0x7b, 0xec, 0x53, 0xa6, 0xe9, 0x14, 0x35, 0xa3, 0xdf, 0xcd, 0x80, 0x9f, 0x0c, 0x48 +.byte 0xfb, 0x1c, 0xf4, 0xf1, 0xbf, 0x4a, 0xb8, 0xfa, 0xd5, 0x8c, 0x71, 0x4a, 0xc7, 0x1f, 0xad, 0xfe +.byte 0x41, 0x9a, 0xb3, 0x83, 0x5d, 0xf2, 0x84, 0x56, 0xef, 0xa5, 0x57, 0x43, 0xce, 0x29, 0xad, 0x8c +.byte 0xab, 0x55, 0xbf, 0xc4, 0xfb, 0x5b, 0x01, 0xdd, 0x23, 0x21, 0xa1, 0x58, 0x00, 0x8e, 0xc3, 0xd0 +.byte 0x6a, 0x13, 0xed, 0x13, 0xe3, 0x12, 0x2b, 0x80, 0xdc, 0x67, 0xe6, 0x95, 0xb2, 0xcd, 0x1e, 0x22 +.byte 0x6e, 0x2a, 0xf8, 0x41, 0xd4, 0xf2, 0xca, 0x14, 0x07, 0x8d, 0x8a, 0x55, 0x12, 0xc6, 0x69, 0xf5 +.byte 0xb8, 0x86, 0x68, 0x2f, 0x53, 0x5e, 0xb0, 0xd2, 0xaa, 0x21, 0xc1, 0x98, 0xe6, 0x30, 0xe3, 0x67 +.byte 0x55, 0xc7, 0x9b, 0x6e, 0xac, 0x19, 0xa8, 0x55, 0xa6, 0x45, 0x06, 0xd0, 0x23, 0x3a, 0xdb, 0xeb +.byte 0x65, 0x5d, 0x2a, 0x11, 0x11, 0xf0, 0x3b, 0x4f, 0xca, 0x6d, 0xf4, 0x34, 0xc4, 0x71, 0xe4, 0xff +.byte 0x00, 0x5a, 0xf6, 0x5c, 0xae, 0x23, 0x60, 0x85, 0x73, 0xf1, 0xe4, 0x10, 0xb1, 0x25, 0xae, 0xd5 +.byte 0x92, 0xbb, 0x13, 0xc1, 0x0c, 0xe0, 0x39, 0xda, 0xb4, 0x39, 0x57, 0xb5, 0xab, 0x35, 0xaa, 0x72 +.byte 0x21, 0x3b, 0x83, 0x35, 0xe7, 0x31, 0xdf, 0x7a, 0x21, 0x6e, 0xb8, 0x32, 0x08, 0x7d, 0x1d, 0x32 +.byte 0x91, 0x15, 0x4a, 0x62, 0x72, 0xcf, 0xe3, 0x77, 0xa1, 0xbc, 0xd5, 0x11, 0x1b, 0x76, 0x01, 0x67 +.byte 0x08, 0xe0, 0x41, 0x0b, 0xc3, 0xeb, 0x15, 0x6e, 0xf8, 0xa4, 0x19, 0xd9, 0xa2, 0xab, 0xaf, 0xe2 +.byte 0x27, 0x52, 0x56, 0x2b, 0x02, 0x8a, 0x2c, 0x14, 0x24, 0xf9, 0xbf, 0x42, 0x02, 0xbf, 0x26, 0xc8 +.byte 0xc6, 0x8f, 0xe0, 0x6e, 0x38, 0x7d, 0x53, 0x2d, 0xe5, 0xed, 0x98, 0xb3, 0x95, 0x63, 0x68, 0x7f +.byte 0xf9, 0x35, 0xf4, 0xdf, 0x88, 0xc5, 0x60, 0x35, 0x92, 0xc0, 0x7c, 0x69, 0x1c, 0x61, 0x95, 0x16 +.byte 0xd0, 0xeb, 0xde, 0x0b, 0xaf, 0x3e, 0x04, 0x10, 0x45, 0x65, 0x58, 0x50, 0x38, 0xaf, 0x48, 0xf2 +.byte 0x59, 0xb6, 0x16, 0xf2, 0x3c, 0x0d, 0x90, 0x02, 0xc6, 0x70, 0x2e, 0x01, 0xad, 0x3c, 0x15, 0xd7 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x26, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69 +.byte 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75 +.byte 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33 +.byte 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xb3, 0xcb, 0x0e, 0x10, 0x67, 0x8e, 0xea, 0x14, 0x97, 0xa7, 0x32, 0x2a +.byte 0x0a, 0x56, 0x36, 0x7f, 0x68, 0x4c, 0xc7, 0xb3, 0x6f, 0x3a, 0x23, 0x14, 0x91, 0xff, 0x19, 0x7f +.byte 0xa5, 0xca, 0xac, 0xee, 0xb3, 0x76, 0x9d, 0x7a, 0xe9, 0x8b, 0x1b, 0xab, 0x6b, 0x31, 0xdb, 0xfa +.byte 0x0b, 0x53, 0x4c, 0xaf, 0xc5, 0xa5, 0x1a, 0x79, 0x3c, 0x8a, 0x4c, 0xff, 0xac, 0xdf, 0x25, 0xde +.byte 0x4e, 0xd9, 0x82, 0x32, 0x0b, 0x44, 0xde, 0xca, 0xdb, 0x8c, 0xac, 0xa3, 0x6e, 0x16, 0x83, 0x3b +.byte 0xa6, 0x64, 0x4b, 0x32, 0x89, 0xfb, 0x16, 0x16, 0x38, 0x7e, 0xeb, 0x43, 0xe2, 0xd3, 0x74, 0x4a +.byte 0xc2, 0x62, 0x0a, 0x73, 0x0a, 0xdd, 0x49, 0xb3, 0x57, 0xd2, 0xb0, 0x0a, 0x85, 0x9d, 0x71, 0x3c +.byte 0xde, 0xa3, 0xcb, 0xc0, 0x32, 0xf3, 0x01, 0x39, 0x20, 0x43, 0x1b, 0x35, 0xd1, 0x53, 0xb3, 0xb1 +.byte 0xee, 0xc5, 0x93, 0x69, 0x82, 0x3e, 0x16, 0xb5, 0x28, 0x46, 0xa1, 0xde, 0xea, 0x89, 0x09, 0xed +.byte 0x43, 0xb8, 0x05, 0x46, 0x8a, 0x86, 0xf5, 0x59, 0x47, 0xbe, 0x1b, 0x6f, 0x01, 0x21, 0x10, 0xb9 +.byte 0xfd, 0xa9, 0xd2, 0x28, 0xca, 0x10, 0x39, 0x09, 0xca, 0x13, 0x36, 0xcf, 0x9c, 0xad, 0xad, 0x40 +.byte 0x74, 0x79, 0x2b, 0x02, 0x3f, 0x34, 0xff, 0xfa, 0x20, 0x69, 0x7d, 0xd3, 0xee, 0x61, 0xf5, 0xba +.byte 0xb3, 0xe7, 0x30, 0xd0, 0x37, 0x23, 0x86, 0x72, 0x61, 0x45, 0x29, 0x48, 0x59, 0x68, 0x6f, 0x77 +.byte 0xa6, 0x2e, 0x81, 0xbe, 0x07, 0x4d, 0x6f, 0xaf, 0xce, 0xc4, 0x45, 0x13, 0x91, 0x14, 0x70, 0x06 +.byte 0x8f, 0x1f, 0x9f, 0xf8, 0x87, 0x69, 0xb1, 0x0e, 0xef, 0xc3, 0x89, 0x19, 0xeb, 0xea, 0x1c, 0x61 +.byte 0xfc, 0x7a, 0x6c, 0x8a, 0xdc, 0xd6, 0x03, 0x0b, 0x9e, 0x26, 0xba, 0x12, 0xdd, 0xd4, 0x54, 0x39 +.byte 0xab, 0x26, 0xa3, 0x33, 0xea, 0x75, 0x81, 0xda, 0x2d, 0xcd, 0x0f, 0x4f, 0xe4, 0x03, 0xd1, 0xef +.byte 0x15, 0x97, 0x1b, 0x6b, 0x90, 0xc5, 0x02, 0x90, 0x93, 0x66, 0x02, 0x21, 0xb1, 0x47, 0xde, 0x8b +.byte 0x9a, 0x4a, 0x80, 0xb9, 0x55, 0x8f, 0xb5, 0xa2, 0x2f, 0xc0, 0xd6, 0x33, 0x67, 0xda, 0x7e, 0xc4 +.byte 0xa7, 0xb4, 0x04, 0x44, 0xeb, 0x47, 0xfb, 0xe6, 0x58, 0xb9, 0xf7, 0x0c, 0xf0, 0x7b, 0x2b, 0xb1 +.byte 0xc0, 0x70, 0x29, 0xc3, 0x40, 0x62, 0x2d, 0x3b, 0x48, 0x69, 0xdc, 0x23, 0x3c, 0x48, 0xeb, 0x7b +.byte 0x09, 0x79, 0xa9, 0x6d, 0xda, 0xa8, 0x30, 0x98, 0xcf, 0x80, 0x72, 0x03, 0x88, 0xa6, 0x5b, 0x46 +.byte 0xae, 0x72, 0x79, 0x7c, 0x08, 0x03, 0x21, 0x65, 0xae, 0xb7, 0xe1, 0x1c, 0xa5, 0xb1, 0x2a, 0xa2 +.byte 0x31, 0xde, 0x66, 0x04, 0xf7, 0xc0, 0x74, 0xe8, 0x71, 0xde, 0xff, 0x3d, 0x59, 0xcc, 0x96, 0x26 +.byte 0x12, 0x8b, 0x85, 0x95, 0x57, 0x1a, 0xab, 0x6b, 0x75, 0x0b, 0x44, 0x3d, 0x11, 0x28, 0x3c, 0x7b +.byte 0x61, 0xb7, 0xe2, 0x8f, 0x67, 0x4f, 0xe5, 0xec, 0x3c, 0x4c, 0x60, 0x80, 0x69, 0x57, 0x38, 0x1e +.byte 0x01, 0x5b, 0x8d, 0x55, 0xe8, 0xc7, 0xdf, 0xc0, 0xcc, 0x77, 0x23, 0x34, 0x49, 0x75, 0x7c, 0xf6 +.byte 0x98, 0x11, 0xeb, 0x2d, 0xde, 0xed, 0x41, 0x2e, 0x14, 0x05, 0x02, 0x7f, 0xe0, 0xfe, 0x20, 0xeb +.byte 0x35, 0xe7, 0x11, 0xac, 0x22, 0xce, 0x57, 0x3d, 0xde, 0xc9, 0x30, 0x6d, 0x10, 0x03, 0x85, 0xcd +.byte 0xf1, 0xff, 0x8c, 0x16, 0xb5, 0xc1, 0xb2, 0x3e, 0x88, 0x6c, 0x60, 0x7f, 0x90, 0x4f, 0x95, 0xf7 +.byte 0xf6, 0x2d, 0xad, 0x01, 0x39, 0x07, 0x04, 0xfa, 0x75, 0x80, 0x7d, 0xbf, 0x49, 0x50, 0xed, 0xef +.byte 0xc9, 0xc4, 0x7c, 0x1c, 0xeb, 0x80, 0x7e, 0xdb, 0xb6, 0xd0, 0xdd, 0x13, 0xfe, 0xc9, 0xd3, 0x9c +.byte 0xd7, 0xb2, 0x97, 0xa9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4a, 0x01, 0x26, 0x30, 0x48, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x17 +.byte 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 +.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xab, 0xa4, 0x81, 0xe5, 0x95, 0xcd, 0xf5, 0xf6 +.byte 0x14, 0x8e, 0xc2, 0x4f, 0xca, 0xd4, 0xe2, 0x78, 0x95, 0x58, 0x9c, 0x41, 0xe1, 0x0d, 0x99, 0x40 +.byte 0x24, 0x17, 0x39, 0x91, 0x33, 0x66, 0xe9, 0xbe, 0xe1, 0x83, 0xaf, 0x62, 0x5c, 0x89, 0xd1, 0xfc +.byte 0x24, 0x5b, 0x61, 0xb3, 0xe0, 0x11, 0x11, 0x41, 0x1c, 0x1d, 0x6e, 0xf0, 0xb8, 0xbb, 0xf8, 0xde +.byte 0xa7, 0x81, 0xba, 0xa6, 0x48, 0xc6, 0x9f, 0x1d, 0xbd, 0xbe, 0x8e, 0xa9, 0x41, 0x3e, 0xb8, 0x94 +.byte 0xed, 0x29, 0x1a, 0xd4, 0x8e, 0xd2, 0x03, 0x1d, 0x03, 0xef, 0x6d, 0x0d, 0x67, 0x1c, 0x57, 0xd7 +.byte 0x06, 0xad, 0xca, 0xc8, 0xf5, 0xfe, 0x0e, 0xaf, 0x66, 0x25, 0x48, 0x04, 0x96, 0x0b, 0x5d, 0xa3 +.byte 0xba, 0x16, 0xc3, 0x08, 0x4f, 0xd1, 0x46, 0xf8, 0x14, 0x5c, 0xf2, 0xc8, 0x5e, 0x01, 0x99, 0x6d +.byte 0xfd, 0x88, 0xcc, 0x86, 0xa8, 0xc1, 0x6f, 0x31, 0x42, 0x6c, 0x52, 0x3e, 0x68, 0xcb, 0xf3, 0x19 +.byte 0x34, 0xdf, 0xbb, 0x87, 0x18, 0x56, 0x80, 0x26, 0xc4, 0xd0, 0xdc, 0xc0, 0x6f, 0xdf, 0xde, 0xa0 +.byte 0xc2, 0x91, 0x16, 0xa0, 0x64, 0x11, 0x4b, 0x44, 0xbc, 0x1e, 0xf6, 0xe7, 0xfa, 0x63, 0xde, 0x66 +.byte 0xac, 0x76, 0xa4, 0x71, 0xa3, 0xec, 0x36, 0x94, 0x68, 0x7a, 0x77, 0xa4, 0xb1, 0xe7, 0x0e, 0x2f +.byte 0x81, 0x7a, 0xe2, 0xb5, 0x72, 0x86, 0xef, 0xa2, 0x6b, 0x8b, 0xf0, 0x0f, 0xdb, 0xd3, 0x59, 0x3f +.byte 0xba, 0x72, 0xbc, 0x44, 0x24, 0x9c, 0xe3, 0x73, 0xb3, 0xf7, 0xaf, 0x57, 0x2f, 0x42, 0x26, 0x9d +.byte 0xa9, 0x74, 0xba, 0x00, 0x52, 0xf2, 0x4b, 0xcd, 0x53, 0x7c, 0x47, 0x0b, 0x36, 0x85, 0x0e, 0x66 +.byte 0xa9, 0x08, 0x97, 0x16, 0x34, 0x57, 0xc1, 0x66, 0xf7, 0x80, 0xe3, 0xed, 0x70, 0x54, 0xc7, 0x93 +.byte 0xe0, 0x2e, 0x28, 0x15, 0x59, 0x87, 0xba, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4c, 0x02 +.byte 0x26, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x49 +.byte 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63 +.byte 0x69, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x02 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0x50 +.byte 0x19, 0xde, 0x3f, 0x99, 0x3d, 0xd4, 0x33, 0x46, 0xf1, 0x6f, 0x51, 0x61, 0x82, 0xb2, 0xa9, 0x4f +.byte 0x8f, 0x67, 0x89, 0x5d, 0x84, 0xd9, 0x53, 0xdd, 0x0c, 0x28, 0xd9, 0xd7, 0xf0, 0xff, 0xae, 0x95 +.byte 0x43, 0x72, 0x99, 0xf9, 0xb5, 0x5d, 0x7c, 0x8a, 0xc1, 0x42, 0xe1, 0x31, 0x50, 0x74, 0xd1, 0x81 +.byte 0x0d, 0x7c, 0xcd, 0x9b, 0x21, 0xab, 0x43, 0xe2, 0xac, 0xad, 0x5e, 0x86, 0x6e, 0xf3, 0x09, 0x8a +.byte 0x1f, 0x5a, 0x32, 0xbd, 0xa2, 0xeb, 0x94, 0xf9, 0xe8, 0x5c, 0x0a, 0xec, 0xff, 0x98, 0xd2, 0xaf +.byte 0x71, 0xb3, 0xb4, 0x53, 0x9f, 0x4e, 0x87, 0xef, 0x92, 0xbc, 0xbd, 0xec, 0x4f, 0x32, 0x30, 0x88 +.byte 0x4b, 0x17, 0x5e, 0x57, 0xc4, 0x53, 0xc2, 0xf6, 0x02, 0x97, 0x8d, 0xd9, 0x62, 0x2b, 0xbf, 0x24 +.byte 0x1f, 0x62, 0x8d, 0xdf, 0xc3, 0xb8, 0x29, 0x4b, 0x49, 0x78, 0x3c, 0x93, 0x60, 0x88, 0x22, 0xfc +.byte 0x99, 0xda, 0x36, 0xc8, 0xc2, 0xa2, 0xd4, 0x2c, 0x54, 0x00, 0x67, 0x35, 0x6e, 0x73, 0xbf, 0x02 +.byte 0x58, 0xf0, 0xa4, 0xdd, 0xe5, 0xb0, 0xa2, 0x26, 0x7a, 0xca, 0xe0, 0x36, 0xa5, 0x19, 0x16, 0xf5 +.byte 0xfd, 0xb7, 0xef, 0xae, 0x3f, 0x40, 0xf5, 0x6d, 0x5a, 0x04, 0xfd, 0xce, 0x34, 0xca, 0x24, 0xdc +.byte 0x74, 0x23, 0x1b, 0x5d, 0x33, 0x13, 0x12, 0x5d, 0xc4, 0x01, 0x25, 0xf6, 0x30, 0xdd, 0x02, 0x5d +.byte 0x9f, 0xe0, 0xd5, 0x47, 0xbd, 0xb4, 0xeb, 0x1b, 0xa1, 0xbb, 0x49, 0x49, 0xd8, 0x9f, 0x5b, 0x02 +.byte 0xf3, 0x8a, 0xe4, 0x24, 0x90, 0xe4, 0x62, 0x4f, 0x4f, 0xc1, 0xaf, 0x8b, 0x0e, 0x74, 0x17, 0xa8 +.byte 0xd1, 0x72, 0x88, 0x6a, 0x7a, 0x01, 0x49, 0xcc, 0xb4, 0x46, 0x79, 0xc6, 0x17, 0xb1, 0xda, 0x98 +.byte 0x1e, 0x07, 0x59, 0xfa, 0x75, 0x21, 0x85, 0x65, 0xdd, 0x90, 0x56, 0xce, 0xfb, 0xab, 0xa5, 0x60 +.byte 0x9d, 0xc4, 0x9d, 0xf9, 0x52, 0xb0, 0x8b, 0xbd, 0x87, 0xf9, 0x8f, 0x2b, 0x23, 0x0a, 0x23, 0x76 +.byte 0x3b, 0xf7, 0x33, 0xe1, 0xc9, 0x00, 0xf3, 0x69, 0xf9, 0x4b, 0xa2, 0xe0, 0x4e, 0xbc, 0x7e, 0x93 +.byte 0x39, 0x84, 0x07, 0xf7, 0x44, 0x70, 0x7e, 0xfe, 0x07, 0x5a, 0xe5, 0xb1, 0xac, 0xd1, 0x18, 0xcc +.byte 0xf2, 0x35, 0xe5, 0x49, 0x49, 0x08, 0xca, 0x56, 0xc9, 0x3d, 0xfb, 0x0f, 0x18, 0x7d, 0x8b, 0x3b +.byte 0xc1, 0x13, 0xc2, 0x4d, 0x8f, 0xc9, 0x4f, 0x0e, 0x37, 0xe9, 0x1f, 0xa1, 0x0e, 0x6a, 0xdf, 0x62 +.byte 0x2e, 0xcb, 0x35, 0x06, 0x51, 0x79, 0x2c, 0xc8, 0x25, 0x38, 0xf4, 0xfa, 0x4b, 0xa7, 0x89, 0x5c +.byte 0x9c, 0xd2, 0xe3, 0x0d, 0x39, 0x86, 0x4a, 0x74, 0x7c, 0xd5, 0x59, 0x87, 0xc2, 0x3f, 0x4e, 0x0c +.byte 0x5c, 0x52, 0xf4, 0x3d, 0xf7, 0x52, 0x82, 0xf1, 0xea, 0xa3, 0xac, 0xfd, 0x49, 0x34, 0x1a, 0x28 +.byte 0xf3, 0x41, 0x88, 0x3a, 0x13, 0xee, 0xe8, 0xde, 0xff, 0x99, 0x1d, 0x5f, 0xba, 0xcb, 0xe8, 0x1e +.byte 0xf2, 0xb9, 0x50, 0x60, 0xc0, 0x31, 0xd3, 0x73, 0xe5, 0xef, 0xbe, 0xa0, 0xed, 0x33, 0x0b, 0x74 +.byte 0xbe, 0x20, 0x20, 0xc4, 0x67, 0x6c, 0xf0, 0x08, 0x03, 0x7a, 0x55, 0x80, 0x7f, 0x46, 0x4e, 0x96 +.byte 0xa7, 0xf4, 0x1e, 0x3e, 0xe1, 0xf6, 0xd8, 0x09, 0xe1, 0x33, 0x64, 0x2b, 0x63, 0xd7, 0x32, 0x5e +.byte 0x9f, 0xf9, 0xc0, 0x7b, 0x0f, 0x78, 0x6f, 0x97, 0xbc, 0x93, 0x9a, 0xf9, 0x9c, 0x12, 0x90, 0x78 +.byte 0x7a, 0x80, 0x87, 0x15, 0xd7, 0x72, 0x74, 0x9c, 0x55, 0x74, 0x78, 0xb1, 0xba, 0xe1, 0x6e, 0x70 +.byte 0x04, 0xba, 0x4f, 0xa0, 0xba, 0x68, 0xc3, 0x7b, 0xff, 0x31, 0xf0, 0x73, 0x3d, 0x3d, 0x94, 0x2a +.byte 0xb1, 0x0b, 0x41, 0x0e, 0xa0, 0xfe, 0x4d, 0x88, 0x65, 0x6b, 0x79, 0x33, 0xb4, 0xd7, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x4c, 0x01, 0x26, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x72 +.byte 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x10, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xaf, 0x35, 0x2e, 0xd8, 0xac, 0x6c, 0x55, 0x69, 0x06, 0x71, 0xe5, 0x13 +.byte 0x68, 0x24, 0xb3, 0x4f, 0xd8, 0xcc, 0x21, 0x47, 0xf8, 0xf1, 0x60, 0x38, 0x89, 0x89, 0x03, 0xe9 +.byte 0xbd, 0xea, 0x5e, 0x46, 0x53, 0x09, 0xdc, 0x5c, 0xf5, 0x5a, 0xe8, 0xf7, 0x45, 0x2a, 0x02, 0xeb +.byte 0x31, 0x61, 0xd7, 0x29, 0x33, 0x4c, 0xce, 0xc7, 0x7c, 0x0a, 0x37, 0x7e, 0x0f, 0xba, 0x32, 0x98 +.byte 0xe1, 0x1d, 0x97, 0xaf, 0x8f, 0xc7, 0xdc, 0xc9, 0x38, 0x96, 0xf3, 0xdb, 0x1a, 0xfc, 0x51, 0xed +.byte 0x68, 0xc6, 0xd0, 0x6e, 0xa4, 0x7c, 0x24, 0xd1, 0xae, 0x42, 0xc8, 0x96, 0x50, 0x63, 0x2e, 0xe0 +.byte 0xfe, 0x75, 0xfe, 0x98, 0xa7, 0x5f, 0x49, 0x2e, 0x95, 0xe3, 0x39, 0x33, 0x64, 0x8e, 0x1e, 0xa4 +.byte 0x5f, 0x90, 0xd2, 0x67, 0x3c, 0xb2, 0xd9, 0xfe, 0x41, 0xb9, 0x55, 0xa7, 0x09, 0x8e, 0x72, 0x05 +.byte 0x1e, 0x8b, 0xdd, 0x44, 0x85, 0x82, 0x42, 0xd0, 0x49, 0xc0, 0x1d, 0x60, 0xf0, 0xd1, 0x17, 0x2c +.byte 0x95, 0xeb, 0xf6, 0xa5, 0xc1, 0x92, 0xa3, 0xc5, 0xc2, 0xa7, 0x08, 0x60, 0x0d, 0x60, 0x04, 0x10 +.byte 0x96, 0x79, 0x9e, 0x16, 0x34, 0xe6, 0xa9, 0xb6, 0xfa, 0x25, 0x45, 0x39, 0xc8, 0x1e, 0x65, 0xf9 +.byte 0x93, 0xf5, 0xaa, 0xf1, 0x52, 0xdc, 0x99, 0x98, 0x3d, 0xa5, 0x86, 0x1a, 0x0c, 0x35, 0x33, 0xfa +.byte 0x4b, 0xa5, 0x04, 0x06, 0x15, 0x1c, 0x31, 0x80, 0xef, 0xaa, 0x18, 0x6b, 0xc2, 0x7b, 0xd7, 0xda +.byte 0xce, 0xf9, 0x33, 0x20, 0xd5, 0xf5, 0xbd, 0x6a, 0x33, 0x2d, 0x81, 0x04, 0xfb, 0xb0, 0x5c, 0xd4 +.byte 0x9c, 0xa3, 0xe2, 0x5c, 0x1d, 0xe3, 0xa9, 0x42, 0x75, 0x5e, 0x7b, 0xd4, 0x77, 0xef, 0x39, 0x54 +.byte 0xba, 0xc9, 0x0a, 0x18, 0x1b, 0x12, 0x99, 0x49, 0x2f, 0x88, 0x4b, 0xfd, 0x50, 0x62, 0xd1, 0x73 +.byte 0xe7, 0x8f, 0x7a, 0x43, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4e, 0x01, 0x26, 0x30, 0x4c, 0x31 +.byte 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52 +.byte 0x32, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x82, 0x01, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xa6, 0xcf, 0x24, 0x0e +.byte 0xbe, 0x2e, 0x6f, 0x28, 0x99, 0x45, 0x42, 0xc4, 0xab, 0x3e, 0x21, 0x54, 0x9b, 0x0b, 0xd3, 0x7f +.byte 0x84, 0x70, 0xfa, 0x12, 0xb3, 0xcb, 0xbf, 0x87, 0x5f, 0xc6, 0x7f, 0x86, 0xd3, 0xb2, 0x30, 0x5c +.byte 0xd6, 0xfd, 0xad, 0xf1, 0x7b, 0xdc, 0xe5, 0xf8, 0x60, 0x96, 0x09, 0x92, 0x10, 0xf5, 0xd0, 0x53 +.byte 0xde, 0xfb, 0x7b, 0x7e, 0x73, 0x88, 0xac, 0x52, 0x88, 0x7b, 0x4a, 0xa6, 0xca, 0x49, 0xa6, 0x5e +.byte 0xa8, 0xa7, 0x8c, 0x5a, 0x11, 0xbc, 0x7a, 0x82, 0xeb, 0xbe, 0x8c, 0xe9, 0xb3, 0xac, 0x96, 0x25 +.byte 0x07, 0x97, 0x4a, 0x99, 0x2a, 0x07, 0x2f, 0xb4, 0x1e, 0x77, 0xbf, 0x8a, 0x0f, 0xb5, 0x02, 0x7c +.byte 0x1b, 0x96, 0xb8, 0xc5, 0xb9, 0x3a, 0x2c, 0xbc, 0xd6, 0x12, 0xb9, 0xeb, 0x59, 0x7d, 0xe2, 0xd0 +.byte 0x06, 0x86, 0x5f, 0x5e, 0x49, 0x6a, 0xb5, 0x39, 0x5e, 0x88, 0x34, 0xec, 0xbc, 0x78, 0x0c, 0x08 +.byte 0x98, 0x84, 0x6c, 0xa8, 0xcd, 0x4b, 0xb4, 0xa0, 0x7d, 0x0c, 0x79, 0x4d, 0xf0, 0xb8, 0x2d, 0xcb +.byte 0x21, 0xca, 0xd5, 0x6c, 0x5b, 0x7d, 0xe1, 0xa0, 0x29, 0x84, 0xa1, 0xf9, 0xd3, 0x94, 0x49, 0xcb +.byte 0x24, 0x62, 0x91, 0x20, 0xbc, 0xdd, 0x0b, 0xd5, 0xd9, 0xcc, 0xf9, 0xea, 0x27, 0x0a, 0x2b, 0x73 +.byte 0x91, 0xc6, 0x9d, 0x1b, 0xac, 0xc8, 0xcb, 0xe8, 0xe0, 0xa0, 0xf4, 0x2f, 0x90, 0x8b, 0x4d, 0xfb +.byte 0xb0, 0x36, 0x1b, 0xf6, 0x19, 0x7a, 0x85, 0xe0, 0x6d, 0xf2, 0x61, 0x13, 0x88, 0x5c, 0x9f, 0xe0 +.byte 0x93, 0x0a, 0x51, 0x97, 0x8a, 0x5a, 0xce, 0xaf, 0xab, 0xd5, 0xf7, 0xaa, 0x09, 0xaa, 0x60, 0xbd +.byte 0xdc, 0xd9, 0x5f, 0xdf, 0x72, 0xa9, 0x60, 0x13, 0x5e, 0x00, 0x01, 0xc9, 0x4a, 0xfa, 0x3f, 0xa4 +.byte 0xea, 0x07, 0x03, 0x21, 0x02, 0x8e, 0x82, 0xca, 0x03, 0xc2, 0x9b, 0x8f, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x4e, 0x01, 0x26, 0x30, 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x33, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13 +.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53 +.byte 0x69, 0x67, 0x6e, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xcc, 0x25, 0x76, 0x90, 0x79, 0x06, 0x78, 0x22, 0x16, 0xf5, 0xc0, 0x83 +.byte 0xb6, 0x84, 0xca, 0x28, 0x9e, 0xfd, 0x05, 0x76, 0x11, 0xc5, 0xad, 0x88, 0x72, 0xfc, 0x46, 0x02 +.byte 0x43, 0xc7, 0xb2, 0x8a, 0x9d, 0x04, 0x5f, 0x24, 0xcb, 0x2e, 0x4b, 0xe1, 0x60, 0x82, 0x46, 0xe1 +.byte 0x52, 0xab, 0x0c, 0x81, 0x47, 0x70, 0x6c, 0xdd, 0x64, 0xd1, 0xeb, 0xf5, 0x2c, 0xa3, 0x0f, 0x82 +.byte 0x3d, 0x0c, 0x2b, 0xae, 0x97, 0xd7, 0xb6, 0x14, 0x86, 0x10, 0x79, 0xbb, 0x3b, 0x13, 0x80, 0x77 +.byte 0x8c, 0x08, 0xe1, 0x49, 0xd2, 0x6a, 0x62, 0x2f, 0x1f, 0x5e, 0xfa, 0x96, 0x68, 0xdf, 0x89, 0x27 +.byte 0x95, 0x38, 0x9f, 0x06, 0xd7, 0x3e, 0xc9, 0xcb, 0x26, 0x59, 0x0d, 0x73, 0xde, 0xb0, 0xc8, 0xe9 +.byte 0x26, 0x0e, 0x83, 0x15, 0xc6, 0xef, 0x5b, 0x8b, 0xd2, 0x04, 0x60, 0xca, 0x49, 0xa6, 0x28, 0xf6 +.byte 0x69, 0x3b, 0xf6, 0xcb, 0xc8, 0x28, 0x91, 0xe5, 0x9d, 0x8a, 0x61, 0x57, 0x37, 0xac, 0x74, 0x14 +.byte 0xdc, 0x74, 0xe0, 0x3a, 0xee, 0x72, 0x2f, 0x2e, 0x9c, 0xfb, 0xd0, 0xbb, 0xbf, 0xf5, 0x3d, 0x00 +.byte 0xe1, 0x06, 0x33, 0xe8, 0x82, 0x2b, 0xae, 0x53, 0xa6, 0x3a, 0x16, 0x73, 0x8c, 0xdd, 0x41, 0x0e +.byte 0x20, 0x3a, 0xc0, 0xb4, 0xa7, 0xa1, 0xe9, 0xb2, 0x4f, 0x90, 0x2e, 0x32, 0x60, 0xe9, 0x57, 0xcb +.byte 0xb9, 0x04, 0x92, 0x68, 0x68, 0xe5, 0x38, 0x26, 0x60, 0x75, 0xb2, 0x9f, 0x77, 0xff, 0x91, 0x14 +.byte 0xef, 0xae, 0x20, 0x49, 0xfc, 0xad, 0x40, 0x15, 0x48, 0xd1, 0x02, 0x31, 0x61, 0x19, 0x5e, 0xb8 +.byte 0x97, 0xef, 0xad, 0x77, 0xb7, 0x64, 0x9a, 0x7a, 0xbf, 0x5f, 0xc1, 0x13, 0xef, 0x9b, 0x62, 0xfb +.byte 0x0d, 0x6c, 0xe0, 0x54, 0x69, 0x16, 0xa9, 0x03, 0xda, 0x6e, 0xe9, 0x83, 0x93, 0x71, 0x76, 0xc6 +.byte 0x69, 0x85, 0x82, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4e, 0x02, 0x26, 0x30, 0x4c, 0x31 +.byte 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52 +.byte 0x36, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x95, 0x07, 0xe8, 0x73 +.byte 0xca, 0x66, 0xf9, 0xec, 0x14, 0xca, 0x7b, 0x3c, 0xf7, 0x0d, 0x08, 0xf1, 0xb4, 0x45, 0x0b, 0x2c +.byte 0x82, 0xb4, 0x48, 0xc6, 0xeb, 0x5b, 0x3c, 0xae, 0x83, 0xb8, 0x41, 0x92, 0x33, 0x14, 0xa4, 0x6f +.byte 0x7f, 0xe9, 0x2a, 0xcc, 0xc6, 0xb0, 0x88, 0x6b, 0xc5, 0xb6, 0x89, 0xd1, 0xc6, 0xb2, 0xff, 0x14 +.byte 0xce, 0x51, 0x14, 0x21, 0xec, 0x4a, 0xdd, 0x1b, 0x5a, 0xc6, 0xd6, 0x87, 0xee, 0x4d, 0x3a, 0x15 +.byte 0x06, 0xed, 0x64, 0x66, 0x0b, 0x92, 0x80, 0xca, 0x44, 0xde, 0x73, 0x94, 0x4e, 0xf3, 0xa7, 0x89 +.byte 0x7f, 0x4f, 0x78, 0x63, 0x08, 0xc8, 0x12, 0x50, 0x6d, 0x42, 0x66, 0x2f, 0x4d, 0xb9, 0x79, 0x28 +.byte 0x4d, 0x52, 0x1a, 0x8a, 0x1a, 0x80, 0xb7, 0x19, 0x81, 0x0e, 0x7e, 0xc4, 0x8a, 0xbc, 0x64, 0x4c +.byte 0x21, 0x1c, 0x43, 0x68, 0xd7, 0x3d, 0x3c, 0x8a, 0xc5, 0xb2, 0x66, 0xd5, 0x90, 0x9a, 0xb7, 0x31 +.byte 0x06, 0xc5, 0xbe, 0xe2, 0x6d, 0x32, 0x06, 0xa6, 0x1e, 0xf9, 0xb9, 0xeb, 0xaa, 0xa3, 0xb8, 0xbf +.byte 0xbe, 0x82, 0x63, 0x50, 0xd0, 0xf0, 0x18, 0x89, 0xdf, 0xe4, 0x0f, 0x79, 0xf5, 0xea, 0xa2, 0x1f +.byte 0x2a, 0xd2, 0x70, 0x2e, 0x7b, 0xe7, 0xbc, 0x93, 0xbb, 0x6d, 0x53, 0xe2, 0x48, 0x7c, 0x8c, 0x10 +.byte 0x07, 0x38, 0xff, 0x66, 0xb2, 0x77, 0x61, 0x7e, 0xe0, 0xea, 0x8c, 0x3c, 0xaa, 0xb4, 0xa4, 0xf6 +.byte 0xf3, 0x95, 0x4a, 0x12, 0x07, 0x6d, 0xfd, 0x8c, 0xb2, 0x89, 0xcf, 0xd0, 0xa0, 0x61, 0x77, 0xc8 +.byte 0x58, 0x74, 0xb0, 0xd4, 0x23, 0x3a, 0xf7, 0x5d, 0x3a, 0xca, 0xa2, 0xdb, 0x9d, 0x09, 0xde, 0x5d +.byte 0x44, 0x2d, 0x90, 0xf1, 0x81, 0xcd, 0x57, 0x92, 0xfa, 0x7e, 0xbc, 0x50, 0x04, 0x63, 0x34, 0xdf +.byte 0x6b, 0x93, 0x18, 0xbe, 0x6b, 0x36, 0xb2, 0x39, 0xe4, 0xac, 0x24, 0x36, 0xb7, 0xf0, 0xef, 0xb6 +.byte 0x1c, 0x13, 0x57, 0x93, 0xb6, 0xde, 0xb2, 0xf8, 0xe2, 0x85, 0xb7, 0x73, 0xa2, 0xb8, 0x35, 0xaa +.byte 0x45, 0xf2, 0xe0, 0x9d, 0x36, 0xa1, 0x6f, 0x54, 0x8a, 0xf1, 0x72, 0x56, 0x6e, 0x2e, 0x88, 0xc5 +.byte 0x51, 0x42, 0x44, 0x15, 0x94, 0xee, 0xa3, 0xc5, 0x38, 0x96, 0x9b, 0x4e, 0x4e, 0x5a, 0x0b, 0x47 +.byte 0xf3, 0x06, 0x36, 0x49, 0x77, 0x30, 0xbc, 0x71, 0x37, 0xe5, 0xa6, 0xec, 0x21, 0x08, 0x75, 0xfc +.byte 0xe6, 0x61, 0x16, 0x3f, 0x77, 0xd5, 0xd9, 0x91, 0x97, 0x84, 0x0a, 0x6c, 0xd4, 0x02, 0x4d, 0x74 +.byte 0xc0, 0x14, 0xed, 0xfd, 0x39, 0xfb, 0x83, 0xf2, 0x5e, 0x14, 0xa1, 0x04, 0xb0, 0x0b, 0xe9, 0xfe +.byte 0xee, 0x8f, 0xe1, 0x6e, 0x0b, 0xb2, 0x08, 0xb3, 0x61, 0x66, 0x09, 0x6a, 0xb1, 0x06, 0x3a, 0x65 +.byte 0x96, 0x59, 0xc0, 0xf0, 0x35, 0xfd, 0xc9, 0xda, 0x28, 0x8d, 0x1a, 0x11, 0x87, 0x70, 0x81, 0x0a +.byte 0xa8, 0x9a, 0x75, 0x1d, 0x9e, 0x3a, 0x86, 0x05, 0x00, 0x9e, 0xdb, 0x80, 0xd6, 0x25, 0xf9, 0xdc +.byte 0x05, 0x9e, 0x27, 0x59, 0x4c, 0x76, 0x39, 0x5b, 0xea, 0xf9, 0xa5, 0xa1, 0xd8, 0x83, 0x0f, 0xd1 +.byte 0xff, 0xdf, 0x30, 0x11, 0xf9, 0x85, 0xcf, 0x33, 0x48, 0xf5, 0xca, 0x6d, 0x64, 0x14, 0x2c, 0x7a +.byte 0x58, 0x4f, 0xd3, 0x4b, 0x08, 0x49, 0xc5, 0x95, 0x64, 0x1a, 0x63, 0x0e, 0x79, 0x3d, 0xf5, 0xb3 +.byte 0x8c, 0xca, 0x58, 0xad, 0x9c, 0x42, 0x45, 0x79, 0x6e, 0x0e, 0x87, 0x19, 0x5c, 0x54, 0xb1, 0x65 +.byte 0xb6, 0xbf, 0x8c, 0x9b, 0xdc, 0x13, 0xe9, 0x0d, 0x6f, 0xb8, 0x2e, 0xdc, 0x67, 0x6e, 0xc9, 0x8b +.byte 0x11, 0xb5, 0x84, 0x14, 0x8a, 0x00, 0x19, 0x70, 0x83, 0x79, 0x91, 0x97, 0x91, 0xd4, 0x1a, 0x27 +.byte 0xbf, 0x37, 0x1e, 0x32, 0x07, 0xd8, 0x14, 0x63, 0x3c, 0x28, 0x4c, 0xaf, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x4f, 0x01, 0x26, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x44 +.byte 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20 +.byte 0x32, 0x30, 0x30, 0x39, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xd3, 0xb2, 0x4a, 0xcf, 0x7a, 0x47, 0xef, 0x75, 0x9b, 0x23, 0xfa +.byte 0x3a, 0x2f, 0xd6, 0x50, 0x45, 0x89, 0x35, 0x3a, 0xc6, 0x6b, 0xdb, 0xfe, 0xdb, 0x00, 0x68, 0xa8 +.byte 0xe0, 0x03, 0x11, 0x1d, 0x37, 0x50, 0x08, 0x9f, 0x4d, 0x4a, 0x68, 0x94, 0x35, 0xb3, 0x53, 0xd1 +.byte 0x94, 0x63, 0xa7, 0x20, 0x56, 0xaf, 0xde, 0x51, 0x78, 0xec, 0x2a, 0x3d, 0xf3, 0x48, 0x48, 0x50 +.byte 0x3e, 0x0a, 0xdf, 0x46, 0x55, 0x8b, 0x27, 0x6d, 0xc3, 0x10, 0x4d, 0x0d, 0x91, 0x52, 0x43, 0xd8 +.byte 0x87, 0xe0, 0x5d, 0x4e, 0x36, 0xb5, 0x21, 0xca, 0x5f, 0x39, 0x40, 0x04, 0x5f, 0x5b, 0x7e, 0xcc +.byte 0xa3, 0xc6, 0x2b, 0xa9, 0x40, 0x1e, 0xd9, 0x36, 0x84, 0xd6, 0x48, 0xf3, 0x92, 0x1e, 0x34, 0x46 +.byte 0x20, 0x24, 0xc1, 0xa4, 0x51, 0x8e, 0x4a, 0x1a, 0xef, 0x50, 0x3f, 0x69, 0x5d, 0x19, 0x7f, 0x45 +.byte 0xc3, 0xc7, 0x01, 0x8f, 0x51, 0xc9, 0x23, 0xe8, 0x72, 0xae, 0xb4, 0xbc, 0x56, 0x09, 0x7f, 0x12 +.byte 0xcb, 0x1c, 0xb1, 0xaf, 0x29, 0x90, 0x0a, 0xc9, 0x55, 0xcc, 0x0f, 0xd3, 0xb4, 0x1a, 0xed, 0x47 +.byte 0x35, 0x5a, 0x4a, 0xed, 0x9c, 0x73, 0x04, 0x21, 0xd0, 0xaa, 0xbd, 0x0c, 0x13, 0xb5, 0x00, 0xca +.byte 0x26, 0x6c, 0xc4, 0x6b, 0x0c, 0x94, 0x5a, 0x95, 0x94, 0xda, 0x50, 0x9a, 0xf1, 0xff, 0xa5, 0x2b +.byte 0x66, 0x31, 0xa4, 0xc9, 0x38, 0xa0, 0xdf, 0x1d, 0x1f, 0xb8, 0x09, 0x2e, 0xf3, 0xa7, 0xe8, 0x67 +.byte 0x52, 0xab, 0x95, 0x1f, 0xe0, 0x46, 0x3e, 0xd8, 0xa4, 0xc3, 0xca, 0x5a, 0xc5, 0x31, 0x80, 0xe8 +.byte 0x48, 0x9a, 0x9f, 0x94, 0x69, 0xfe, 0x19, 0xdd, 0xd8, 0x73, 0x7c, 0x81, 0xca, 0x96, 0xde, 0x8e +.byte 0xed, 0xb3, 0x32, 0x05, 0x65, 0x84, 0x34, 0xe6, 0xe6, 0xfd, 0x57, 0x10, 0xb5, 0x5f, 0x76, 0xbf +.byte 0x2f, 0xb0, 0x10, 0x0d, 0xc5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x02, 0x26, 0x30, 0x4d +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30 +.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x21, 0x49, 0x64, 0x65, 0x6e +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x63 +.byte 0x74, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x02 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0x22 +.byte 0x94, 0xfc, 0xa4, 0x48, 0xaf, 0xe8, 0x47, 0x6b, 0x0a, 0xfb, 0x27, 0x76, 0xe4, 0xf2, 0x3f, 0x8a +.byte 0x3b, 0x7a, 0x4a, 0x2c, 0x31, 0x2a, 0x8c, 0x8d, 0xb0, 0xa9, 0xc3, 0x31, 0x6b, 0xa8, 0x77, 0x76 +.byte 0x84, 0x26, 0xb6, 0xac, 0x81, 0x42, 0x0d, 0x08, 0xeb, 0x55, 0x58, 0xbb, 0x7a, 0xf8, 0xbc, 0x65 +.byte 0x7d, 0xf2, 0xa0, 0x6d, 0x8b, 0xa8, 0x47, 0xe9, 0x62, 0x76, 0x1e, 0x11, 0xee, 0x08, 0x14, 0xd1 +.byte 0xb2, 0x44, 0x16, 0xf4, 0xea, 0xd0, 0xfa, 0x1e, 0x2f, 0x5e, 0xdb, 0xcb, 0x73, 0x41, 0xae, 0xbc +.byte 0x00, 0xb0, 0x4a, 0x2b, 0x40, 0xb2, 0xac, 0xe1, 0x3b, 0x4b, 0xc2, 0x2d, 0x9d, 0xe4, 0xa1, 0x9b +.byte 0xec, 0x1a, 0x3a, 0x1e, 0xf0, 0x08, 0xb3, 0xd0, 0xe4, 0x24, 0x35, 0x07, 0x9f, 0x9c, 0xb4, 0xc9 +.byte 0x52, 0x6d, 0xdb, 0x07, 0xca, 0x8f, 0xb5, 0x5b, 0xf0, 0x83, 0xf3, 0x4f, 0xc7, 0x2d, 0xa5, 0xc8 +.byte 0xad, 0xcb, 0x95, 0x20, 0xa4, 0x31, 0x28, 0x57, 0x58, 0x5a, 0xe4, 0x8d, 0x1b, 0x9a, 0xab, 0x9e +.byte 0x0d, 0x0c, 0xf2, 0x0a, 0x33, 0x39, 0x22, 0x39, 0x0a, 0x97, 0x2e, 0xf3, 0x53, 0x77, 0xb9, 0x44 +.byte 0x45, 0xfd, 0x84, 0xcb, 0x36, 0x20, 0x81, 0x59, 0x2d, 0x9a, 0x6f, 0x6d, 0x48, 0x48, 0x61, 0xca +.byte 0x4c, 0xdf, 0x53, 0xd1, 0xaf, 0x52, 0xbc, 0x44, 0x9f, 0xab, 0x2f, 0x6b, 0x83, 0x72, 0xef, 0x75 +.byte 0x80, 0xda, 0x06, 0x33, 0x1b, 0x5d, 0xc8, 0xda, 0x63, 0xc6, 0x4d, 0xcd, 0xac, 0x66, 0x31, 0xcd +.byte 0xd1, 0xde, 0x3e, 0x87, 0x10, 0x36, 0xe1, 0xb9, 0xa4, 0x7a, 0xef, 0x60, 0x50, 0xb2, 0xcb, 0xca +.byte 0xa6, 0x56, 0xe0, 0x37, 0xaf, 0xab, 0x34, 0x13, 0x39, 0x25, 0xe8, 0x39, 0x66, 0xe4, 0x98, 0x7a +.byte 0xaa, 0x12, 0x98, 0x9c, 0x59, 0x66, 0x86, 0x3e, 0xad, 0xf1, 0xb0, 0xca, 0x3e, 0x06, 0x0f, 0x7b +.byte 0xf0, 0x11, 0x4b, 0x37, 0xa0, 0x44, 0x6d, 0x7b, 0xcb, 0xa8, 0x8c, 0x71, 0xf4, 0xd5, 0xb5, 0x91 +.byte 0x36, 0xcc, 0xf0, 0x15, 0xc6, 0x2b, 0xde, 0x51, 0x17, 0xb1, 0x97, 0x4c, 0x50, 0x3d, 0xb1, 0x95 +.byte 0x59, 0x7c, 0x05, 0x7d, 0x2d, 0x21, 0xd5, 0x00, 0xbf, 0x01, 0x67, 0xa2, 0x5e, 0x7b, 0xa6, 0x5c +.byte 0xf2, 0xf7, 0x22, 0xf1, 0x90, 0x0d, 0x93, 0xdb, 0xaa, 0x44, 0x51, 0x66, 0xcc, 0x7d, 0x76, 0x03 +.byte 0xeb, 0x6a, 0xa8, 0x2a, 0x38, 0x19, 0x97, 0x76, 0x0d, 0x6b, 0x8a, 0x61, 0xf9, 0xbc, 0xf6, 0xee +.byte 0x76, 0xfd, 0x70, 0x2b, 0xdd, 0x29, 0x3c, 0xf8, 0x0a, 0x1e, 0x5b, 0x42, 0x1c, 0x8b, 0x56, 0x2f +.byte 0x55, 0x1b, 0x1c, 0xa1, 0x2e, 0xb5, 0xc7, 0x16, 0xe6, 0xf8, 0xaa, 0x3c, 0x92, 0x8e, 0x69, 0xb6 +.byte 0x01, 0xc1, 0xb5, 0x86, 0x9d, 0x89, 0x0f, 0x0b, 0x38, 0x94, 0x54, 0xe8, 0xea, 0xdc, 0x9e, 0x3d +.byte 0x25, 0xbc, 0x53, 0x26, 0xed, 0xd5, 0xab, 0x39, 0xaa, 0xc5, 0x40, 0x4c, 0x54, 0xab, 0xb2, 0xb4 +.byte 0xd9, 0xd9, 0xf8, 0xd7, 0x72, 0xdb, 0x1c, 0xbc, 0x6d, 0xbd, 0x65, 0x5f, 0xef, 0x88, 0x35, 0x2a +.byte 0x66, 0x2f, 0xee, 0xf6, 0xb3, 0x65, 0xf0, 0x33, 0x8d, 0x7c, 0x98, 0x41, 0x69, 0x46, 0x0f, 0x43 +.byte 0x1c, 0x69, 0xfa, 0x9b, 0xb5, 0xd0, 0x61, 0x6a, 0xcd, 0xca, 0x4b, 0xd9, 0x4c, 0x90, 0x46, 0xab +.byte 0x15, 0x59, 0xa1, 0x47, 0x54, 0x29, 0x2e, 0x83, 0x28, 0x5f, 0x1c, 0xc2, 0xa2, 0xab, 0x72, 0x17 +.byte 0x00, 0x06, 0x8e, 0x45, 0xec, 0x8b, 0xe2, 0x33, 0x3d, 0x7f, 0xda, 0x19, 0x44, 0xe4, 0x62, 0x72 +.byte 0xc3, 0xdf, 0x22, 0xc6, 0xf2, 0x56, 0xd4, 0xdd, 0x5f, 0x95, 0x72, 0xed, 0x6d, 0x5f, 0xf7, 0x48 +.byte 0x03, 0x5b, 0xfd, 0xc5, 0x2a, 0xa0, 0xf6, 0x73, 0x23, 0x84, 0x10, 0x1b, 0x01, 0xe7, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x50, 0x02, 0x26, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x14, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x41, 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31 +.byte 0x36, 0x33, 0x33, 0x32, 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17 +.byte 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd7, 0xc7, 0x5e, 0xf7, 0xc1, 0x07, 0xd4, 0x77 +.byte 0xfb, 0x43, 0x21, 0xf4, 0xf4, 0xf5, 0x69, 0xe4, 0xee, 0x32, 0x01, 0xdb, 0xa3, 0x86, 0x1f, 0xe4 +.byte 0x59, 0x0d, 0xba, 0xe7, 0x75, 0x83, 0x52, 0xeb, 0xea, 0x1c, 0x61, 0x15, 0x48, 0xbb, 0x1d, 0x07 +.byte 0xca, 0x8c, 0xae, 0xb0, 0xdc, 0x96, 0x9d, 0xea, 0xc3, 0x60, 0x92, 0x86, 0x82, 0x28, 0x73, 0x9c +.byte 0x56, 0x06, 0xff, 0x4b, 0x64, 0xf0, 0x0c, 0x2a, 0x37, 0x49, 0xb5, 0xe5, 0xcf, 0x0c, 0x7c, 0xee +.byte 0xf1, 0x4a, 0xbb, 0x73, 0x30, 0x65, 0xf3, 0xd5, 0x2f, 0x83, 0xb6, 0x7e, 0xe3, 0xe7, 0xf5, 0x9e +.byte 0xab, 0x60, 0xf9, 0xd3, 0xf1, 0x9d, 0x92, 0x74, 0x8a, 0xe4, 0x1c, 0x96, 0xac, 0x5b, 0x80, 0xe9 +.byte 0xb5, 0xf4, 0x31, 0x87, 0xa3, 0x51, 0xfc, 0xc7, 0x7e, 0xa1, 0x6f, 0x8e, 0x53, 0x77, 0xd4, 0x97 +.byte 0xc1, 0x55, 0x33, 0x92, 0x3e, 0x18, 0x2f, 0x75, 0xd4, 0xad, 0x86, 0x49, 0xcb, 0x95, 0xaf, 0x54 +.byte 0x06, 0x6c, 0xd8, 0x06, 0x13, 0x8d, 0x5b, 0xff, 0xe1, 0x26, 0x19, 0x59, 0xc0, 0x24, 0xba, 0x81 +.byte 0x71, 0x79, 0x90, 0x44, 0x50, 0x68, 0x24, 0x94, 0x5f, 0xb8, 0xb3, 0x11, 0xf1, 0x29, 0x41, 0x61 +.byte 0xa3, 0x41, 0xcb, 0x23, 0x36, 0xd5, 0xc1, 0xf1, 0x32, 0x50, 0x10, 0x4e, 0x7f, 0xf4, 0x86, 0x93 +.byte 0xec, 0x84, 0xd3, 0x8e, 0xbc, 0x4b, 0xbf, 0x5c, 0x01, 0x4e, 0x07, 0x3d, 0xdc, 0x14, 0x8a, 0x94 +.byte 0x0a, 0xa4, 0xea, 0x73, 0xfb, 0x0b, 0x51, 0xe8, 0x13, 0x07, 0x18, 0xfa, 0x0e, 0xf1, 0x2b, 0xd1 +.byte 0x54, 0x15, 0x7d, 0x3c, 0xe1, 0xf7, 0xb4, 0x19, 0x42, 0x67, 0x62, 0x5e, 0x77, 0xe0, 0xa2, 0x55 +.byte 0xec, 0xb6, 0xd9, 0x69, 0x17, 0xd5, 0x3a, 0xaf, 0x44, 0xed, 0x4a, 0xc5, 0x9e, 0xe4, 0x7a, 0x27 +.byte 0x7c, 0xe5, 0x75, 0xd7, 0xaa, 0xcb, 0x25, 0xe7, 0xdf, 0x6b, 0x0a, 0xdb, 0x0f, 0x4d, 0x93, 0x4e +.byte 0xa8, 0xa0, 0xcd, 0x7b, 0x2e, 0xf2, 0x59, 0x01, 0x6a, 0xb7, 0x0d, 0xb8, 0x07, 0x81, 0x7e, 0x8b +.byte 0x38, 0x1b, 0x38, 0xe6, 0x0a, 0x57, 0x99, 0x3d, 0xee, 0x21, 0xe8, 0xa3, 0xf5, 0x0c, 0x16, 0xdd +.byte 0x8b, 0xec, 0x34, 0x8e, 0x9c, 0x2a, 0x1c, 0x00, 0x15, 0x17, 0x8d, 0x68, 0x83, 0xd2, 0x70, 0x9f +.byte 0x18, 0x08, 0xcd, 0x11, 0x68, 0xd5, 0xc9, 0x6b, 0x52, 0xcd, 0xc4, 0x46, 0x8f, 0xdc, 0xb5, 0xf3 +.byte 0xd8, 0x57, 0x73, 0x1e, 0xe9, 0x94, 0x39, 0x04, 0xbf, 0xd3, 0xde, 0x38, 0xde, 0xb4, 0x53, 0xec +.byte 0x69, 0x1c, 0xa2, 0x7e, 0xc4, 0x8f, 0xe4, 0x1b, 0x70, 0xad, 0xf2, 0xa2, 0xf9, 0xfb, 0xf7, 0x16 +.byte 0x64, 0x66, 0x69, 0x9f, 0x49, 0x51, 0xa2, 0xe2, 0x15, 0x18, 0x67, 0x06, 0x4a, 0x7f, 0xd5, 0x6c +.byte 0xb5, 0x4d, 0xb3, 0x33, 0xe0, 0x61, 0xeb, 0x5d, 0xbe, 0xe9, 0x98, 0x0f, 0x32, 0xd7, 0x1d, 0x4b +.byte 0x3c, 0x2e, 0x5a, 0x01, 0x52, 0x91, 0x09, 0xf2, 0xdf, 0xea, 0x8d, 0xd8, 0x06, 0x40, 0x63, 0xaa +.byte 0x11, 0xe4, 0xfe, 0xc3, 0x37, 0x9e, 0x14, 0x52, 0x3f, 0xf4, 0xe2, 0xcc, 0xf2, 0x61, 0x93, 0xd1 +.byte 0xfd, 0x67, 0x6b, 0xd7, 0x52, 0xae, 0xbf, 0x68, 0xab, 0x40, 0x43, 0xa0, 0x57, 0x35, 0x53, 0x78 +.byte 0xf0, 0x53, 0xf8, 0x61, 0x42, 0x07, 0x64, 0xc6, 0xd7, 0x6f, 0x9b, 0x4c, 0x38, 0x0d, 0x63, 0xac +.byte 0x62, 0xaf, 0x36, 0x8b, 0xa2, 0x73, 0x0a, 0x0d, 0xf5, 0x21, 0xbd, 0x74, 0xaa, 0x4d, 0xea, 0x72 +.byte 0x03, 0x49, 0xdb, 0xc7, 0x5f, 0x1d, 0x62, 0x63, 0xc7, 0xfd, 0xdd, 0x91, 0xec, 0x33, 0xee, 0xf5 +.byte 0x6d, 0xb4, 0x6e, 0x30, 0x68, 0xde, 0xc8, 0xd6, 0x26, 0xb0, 0x75, 0x5e, 0x7b, 0xb4, 0x07, 0x20 +.byte 0x98, 0xa1, 0x76, 0x32, 0xb8, 0x4d, 0x6c, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x50, 0x02 +.byte 0x26, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4f +.byte 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70, 0x61 +.byte 0x73, 0x73, 0x20, 0x41, 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37, 0x31 +.byte 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73 +.byte 0x73, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xa5, 0xda, 0x0a, 0x95, 0x16, 0x50, 0xe3, 0x95, 0xf2, 0x5e, 0x9d, 0x76, 0x31, 0x06 +.byte 0x32, 0x7a, 0x9b, 0xf1, 0x10, 0x76, 0xb8, 0x00, 0x9a, 0xb5, 0x52, 0x36, 0xcd, 0x24, 0x47, 0xb0 +.byte 0x9f, 0x18, 0x64, 0xbc, 0x9a, 0xf6, 0xfa, 0xd5, 0x79, 0xd8, 0x90, 0x62, 0x4c, 0x22, 0x2f, 0xde +.byte 0x38, 0x3d, 0xd6, 0xe0, 0xa8, 0xe9, 0x1c, 0x2c, 0xdb, 0x78, 0x11, 0xe9, 0x8e, 0x68, 0x51, 0x15 +.byte 0x72, 0xc7, 0xf3, 0x33, 0x87, 0xe4, 0xa0, 0x5d, 0x0b, 0x5c, 0xe0, 0x57, 0x07, 0x2a, 0x30, 0xf5 +.byte 0xcd, 0xc4, 0x37, 0x77, 0x28, 0x4d, 0x18, 0x91, 0xe6, 0xbf, 0xd5, 0x52, 0xfd, 0x71, 0x2d, 0x70 +.byte 0x3e, 0xe7, 0xc6, 0xc4, 0x8a, 0xe3, 0xf0, 0x28, 0x0b, 0xf4, 0x76, 0x98, 0xa1, 0x8b, 0x87, 0x55 +.byte 0xb2, 0x3a, 0x13, 0xfc, 0xb7, 0x3e, 0x27, 0x37, 0x8e, 0x22, 0xe3, 0xa8, 0x4f, 0x2a, 0xef, 0x60 +.byte 0xbb, 0x3d, 0xb7, 0x39, 0xc3, 0x0e, 0x01, 0x47, 0x99, 0x5d, 0x12, 0x4f, 0xdb, 0x43, 0xfa, 0x57 +.byte 0xa1, 0xed, 0xf9, 0x9d, 0xbe, 0x11, 0x47, 0x26, 0x5b, 0x13, 0x98, 0xab, 0x5d, 0x16, 0x8a, 0xb0 +.byte 0x37, 0x1c, 0x57, 0x9d, 0x45, 0xff, 0x88, 0x96, 0x36, 0xbf, 0xbb, 0xca, 0x07, 0x7b, 0x6f, 0x87 +.byte 0x63, 0xd7, 0xd0, 0x32, 0x6a, 0xd6, 0x5d, 0x6c, 0x0c, 0xf1, 0xb3, 0x6e, 0x39, 0xe2, 0x6b, 0x31 +.byte 0x2e, 0x39, 0x00, 0x27, 0x14, 0xde, 0x38, 0xc0, 0xec, 0x19, 0x66, 0x86, 0x12, 0xe8, 0x9d, 0x72 +.byte 0x16, 0x13, 0x64, 0x52, 0xc7, 0xa9, 0x37, 0x1c, 0xfd, 0x82, 0x30, 0xed, 0x84, 0x18, 0x1d, 0xf4 +.byte 0xae, 0x5c, 0xff, 0x70, 0x13, 0x00, 0xeb, 0xb1, 0xf5, 0x33, 0x7a, 0x4b, 0xd6, 0x55, 0xf8, 0x05 +.byte 0x8d, 0x4b, 0x69, 0xb0, 0xf5, 0xb3, 0x28, 0x36, 0x5c, 0x14, 0xc4, 0x51, 0x73, 0x4d, 0x6b, 0x0b +.byte 0xf1, 0x34, 0x07, 0xdb, 0x17, 0x39, 0xd7, 0xdc, 0x28, 0x7b, 0x6b, 0xf5, 0x9f, 0xf3, 0x2e, 0xc1 +.byte 0x4f, 0x17, 0x2a, 0x10, 0xf3, 0xcc, 0xca, 0xe8, 0xeb, 0xfd, 0x6b, 0xab, 0x2e, 0x9a, 0x9f, 0x2d +.byte 0x82, 0x6e, 0x04, 0xd4, 0x52, 0x01, 0x93, 0x2d, 0x3d, 0x86, 0xfc, 0x7e, 0xfc, 0xdf, 0xef, 0x42 +.byte 0x1d, 0xa6, 0x6b, 0xef, 0xb9, 0x20, 0xc6, 0xf7, 0xbd, 0xa0, 0xa7, 0x95, 0xfd, 0xa7, 0xe6, 0x89 +.byte 0x24, 0xd8, 0xcc, 0x8c, 0x34, 0x6c, 0xe2, 0x23, 0x2f, 0xd9, 0x12, 0x1a, 0x21, 0xb9, 0x55, 0x91 +.byte 0x6f, 0x0b, 0x91, 0x79, 0x19, 0x0c, 0xad, 0x40, 0x88, 0x0b, 0x70, 0xe2, 0x7a, 0xd2, 0x0e, 0xd8 +.byte 0x68, 0x48, 0xbb, 0x82, 0x13, 0x39, 0x10, 0x58, 0xe9, 0xd8, 0x2a, 0x07, 0xc6, 0x12, 0xdb, 0x58 +.byte 0xdb, 0xd2, 0x3b, 0x55, 0x10, 0x47, 0x05, 0x15, 0x67, 0x62, 0x7e, 0x18, 0x63, 0xa6, 0x46, 0x3f +.byte 0x09, 0x0e, 0x54, 0x32, 0x5e, 0xbf, 0x0d, 0x62, 0x7a, 0x27, 0xef, 0x80, 0xe8, 0xdb, 0xd9, 0x4b +.byte 0x06, 0x5a, 0x37, 0x5a, 0x25, 0xd0, 0x08, 0x12, 0x77, 0xd4, 0x6f, 0x09, 0x50, 0x97, 0x3d, 0xc8 +.byte 0x1d, 0xc3, 0xdf, 0x8c, 0x45, 0x30, 0x56, 0xc6, 0xd3, 0x64, 0xab, 0x66, 0xf3, 0xc0, 0x5e, 0x96 +.byte 0x9c, 0xc3, 0xc4, 0xef, 0xc3, 0x7c, 0x6b, 0x8b, 0x3a, 0x79, 0x7f, 0xb3, 0x49, 0xcf, 0x3d, 0xe2 +.byte 0x89, 0x9f, 0xa0, 0x30, 0x4b, 0x85, 0xb9, 0x9c, 0x94, 0x24, 0x79, 0x8f, 0x7d, 0x6b, 0xa9, 0x45 +.byte 0x68, 0x0f, 0x2b, 0xd0, 0xf1, 0xda, 0x1c, 0xcb, 0x69, 0xb8, 0xca, 0x49, 0x62, 0x6d, 0xc8, 0xd0 +.byte 0x63, 0x62, 0xdd, 0x60, 0x0f, 0x58, 0xaa, 0x8f, 0xa1, 0xbc, 0x05, 0xa5, 0x66, 0xa2, 0xcf, 0x1b +.byte 0x76, 0xb2, 0x84, 0x64, 0xb1, 0x4c, 0x39, 0x52, 0xc0, 0x30, 0xba, 0xf0, 0x8c, 0x4b, 0x02, 0xb0 +.byte 0xb6, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x51, 0x02, 0x26, 0x30, 0x4f, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53, 0x65 +.byte 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20 +.byte 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0c +.byte 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x31, 0x30, 0x82, 0x02, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xad, 0xe8, 0x24 +.byte 0x73, 0xf4, 0x14, 0x37, 0xf3, 0x9b, 0x9e, 0x2b, 0x57, 0x28, 0x1c, 0x87, 0xbe, 0xdc, 0xb7, 0xdf +.byte 0x38, 0x90, 0x8c, 0x6e, 0x3c, 0xe6, 0x57, 0xa0, 0x78, 0xf7, 0x75, 0xc2, 0xa2, 0xfe, 0xf5, 0x6a +.byte 0x6e, 0xf6, 0x00, 0x4f, 0x28, 0xdb, 0xde, 0x68, 0x86, 0x6c, 0x44, 0x93, 0xb6, 0xb1, 0x63, 0xfd +.byte 0x14, 0x12, 0x6b, 0xbf, 0x1f, 0xd2, 0xea, 0x31, 0x9b, 0x21, 0x7e, 0xd1, 0x33, 0x3c, 0xba, 0x48 +.byte 0xf5, 0xdd, 0x79, 0xdf, 0xb3, 0xb8, 0xff, 0x12, 0xf1, 0x21, 0x9a, 0x4b, 0xc1, 0x8a, 0x86, 0x71 +.byte 0x69, 0x4a, 0x66, 0x66, 0x6c, 0x8f, 0x7e, 0x3c, 0x70, 0xbf, 0xad, 0x29, 0x22, 0x06, 0xf3, 0xe4 +.byte 0xc0, 0xe6, 0x80, 0xae, 0xe2, 0x4b, 0x8f, 0xb7, 0x99, 0x7e, 0x94, 0x03, 0x9f, 0xd3, 0x47, 0x97 +.byte 0x7c, 0x99, 0x48, 0x23, 0x53, 0xe8, 0x38, 0xae, 0x4f, 0x0a, 0x6f, 0x83, 0x2e, 0xd1, 0x49, 0x57 +.byte 0x8c, 0x80, 0x74, 0xb6, 0xda, 0x2f, 0xd0, 0x38, 0x8d, 0x7b, 0x03, 0x70, 0x21, 0x1b, 0x75, 0xf2 +.byte 0x30, 0x3c, 0xfa, 0x8f, 0xae, 0xdd, 0xda, 0x63, 0xab, 0xeb, 0x16, 0x4f, 0xc2, 0x8e, 0x11, 0x4b +.byte 0x7e, 0xcf, 0x0b, 0xe8, 0xff, 0xb5, 0x77, 0x2e, 0xf4, 0xb2, 0x7b, 0x4a, 0xe0, 0x4c, 0x12, 0x25 +.byte 0x0c, 0x70, 0x8d, 0x03, 0x29, 0xa0, 0xe1, 0x53, 0x24, 0xec, 0x13, 0xd9, 0xee, 0x19, 0xbf, 0x10 +.byte 0xb3, 0x4a, 0x8c, 0x3f, 0x89, 0xa3, 0x61, 0x51, 0xde, 0xac, 0x87, 0x07, 0x94, 0xf4, 0x63, 0x71 +.byte 0xec, 0x2e, 0xe2, 0x6f, 0x5b, 0x98, 0x81, 0xe1, 0x89, 0x5c, 0x34, 0x79, 0x6c, 0x76, 0xef, 0x3b +.byte 0x90, 0x62, 0x79, 0xe6, 0xdb, 0xa4, 0x9a, 0x2f, 0x26, 0xc5, 0xd0, 0x10, 0xe1, 0x0e, 0xde, 0xd9 +.byte 0x10, 0x8e, 0x16, 0xfb, 0xb7, 0xf7, 0xa8, 0xf7, 0xc7, 0xe5, 0x02, 0x07, 0x98, 0x8f, 0x36, 0x08 +.byte 0x95, 0xe7, 0xe2, 0x37, 0x96, 0x0d, 0x36, 0x75, 0x9e, 0xfb, 0x0e, 0x72, 0xb1, 0x1d, 0x9b, 0xbc +.byte 0x03, 0xf9, 0x49, 0x05, 0xd8, 0x81, 0xdd, 0x05, 0xb4, 0x2a, 0xd6, 0x41, 0xe9, 0xac, 0x01, 0x76 +.byte 0x95, 0x0a, 0x0f, 0xd8, 0xdf, 0xd5, 0xbd, 0x12, 0x1f, 0x35, 0x2f, 0x28, 0x17, 0x6c, 0xd2, 0x98 +.byte 0xc1, 0xa8, 0x09, 0x64, 0x77, 0x6e, 0x47, 0x37, 0xba, 0xce, 0xac, 0x59, 0x5e, 0x68, 0x9d, 0x7f +.byte 0x72, 0xd6, 0x89, 0xc5, 0x06, 0x41, 0x29, 0x3e, 0x59, 0x3e, 0xdd, 0x26, 0xf5, 0x24, 0xc9, 0x11 +.byte 0xa7, 0x5a, 0xa3, 0x4c, 0x40, 0x1f, 0x46, 0xa1, 0x99, 0xb5, 0xa7, 0x3a, 0x51, 0x6e, 0x86, 0x3b +.byte 0x9e, 0x7d, 0x72, 0xa7, 0x12, 0x05, 0x78, 0x59, 0xed, 0x3e, 0x51, 0x78, 0x15, 0x0b, 0x03, 0x8f +.byte 0x8d, 0xd0, 0x2f, 0x05, 0xb2, 0x3e, 0x7b, 0x4a, 0x1c, 0x4b, 0x73, 0x05, 0x12, 0xfc, 0xc6, 0xea +.byte 0xe0, 0x50, 0x13, 0x7c, 0x43, 0x93, 0x74, 0xb3, 0xca, 0x74, 0xe7, 0x8e, 0x1f, 0x01, 0x08, 0xd0 +.byte 0x30, 0xd4, 0x5b, 0x71, 0x36, 0xb4, 0x07, 0xba, 0xc1, 0x30, 0x30, 0x5c, 0x48, 0xb7, 0x82, 0x3b +.byte 0x98, 0xa6, 0x7d, 0x60, 0x8a, 0xa2, 0xa3, 0x29, 0x82, 0xcc, 0xba, 0xbd, 0x83, 0x04, 0x1b, 0xa2 +.byte 0x83, 0x03, 0x41, 0xa1, 0xd6, 0x05, 0xf1, 0x1b, 0xc2, 0xb6, 0xf0, 0xa8, 0x7c, 0x86, 0x3b, 0x46 +.byte 0xa8, 0x48, 0x2a, 0x88, 0xdc, 0x76, 0x9a, 0x76, 0xbf, 0x1f, 0x6a, 0xa5, 0x3d, 0x19, 0x8f, 0xeb +.byte 0x38, 0xf3, 0x64, 0xde, 0xc8, 0x2b, 0x0d, 0x0a, 0x28, 0xff, 0xf7, 0xdb, 0xe2, 0x15, 0x42, 0xd4 +.byte 0x22, 0xd0, 0x27, 0x5d, 0xe1, 0x79, 0xfe, 0x18, 0xe7, 0x70, 0x88, 0xad, 0x4e, 0xe6, 0xd9, 0x8b +.byte 0x3a, 0xc6, 0xdd, 0x27, 0x51, 0x6e, 0xff, 0xbc, 0x64, 0xf5, 0x33, 0x43, 0x4f, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x52, 0x01, 0x26, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c +.byte 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2a, 0x30, 0x28 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41, 0x20, 0x32 +.byte 0x20, 0x45, 0x56, 0x20, 0x32, 0x30, 0x30, 0x39, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x99, 0xf1, 0x84, 0x34, 0x70, 0xba, 0x2f +.byte 0xb7, 0x30, 0xa0, 0x8e, 0xbd, 0x7c, 0x04, 0xcf, 0xbe, 0x62, 0xbc, 0x99, 0xfd, 0x82, 0x97, 0xd2 +.byte 0x7a, 0x0a, 0x67, 0x96, 0x38, 0x09, 0xf6, 0x10, 0x4e, 0x95, 0x22, 0x73, 0x99, 0x8d, 0xda, 0x15 +.byte 0x2d, 0xe7, 0x05, 0xfc, 0x19, 0x73, 0x22, 0xb7, 0x8e, 0x98, 0x00, 0xbc, 0x3c, 0x3d, 0xac, 0xa1 +.byte 0x6c, 0xfb, 0xd6, 0x79, 0x25, 0x4b, 0xad, 0xf0, 0xcc, 0x64, 0xda, 0x88, 0x3e, 0x29, 0xb8, 0x0f +.byte 0x09, 0xd3, 0x34, 0xdd, 0x33, 0xf5, 0x62, 0xd1, 0xe1, 0xcd, 0x19, 0xe9, 0xee, 0x18, 0x4f, 0x4c +.byte 0x58, 0xae, 0xe2, 0x1e, 0xd6, 0x0c, 0x5b, 0x15, 0x5a, 0xd8, 0x3a, 0xb8, 0xc4, 0x18, 0x64, 0x1e +.byte 0xe3, 0x33, 0xb2, 0xb5, 0x89, 0x77, 0x4e, 0x0c, 0xbf, 0xd9, 0x94, 0x6b, 0x13, 0x97, 0x6f, 0x12 +.byte 0xa3, 0xfe, 0x99, 0xa9, 0x04, 0xcc, 0x15, 0xec, 0x60, 0x68, 0x36, 0xed, 0x08, 0x7b, 0xb7, 0xf5 +.byte 0xbf, 0x93, 0xed, 0x66, 0x31, 0x83, 0x8c, 0xc6, 0x71, 0x34, 0x87, 0x4e, 0x17, 0xea, 0xaf, 0x8b +.byte 0x91, 0x8d, 0x1c, 0x56, 0x41, 0xae, 0x22, 0x37, 0x5e, 0x37, 0xf2, 0x1d, 0xd9, 0xd1, 0x2d, 0x0d +.byte 0x2f, 0x69, 0x51, 0xa7, 0xbe, 0x66, 0xa6, 0x8a, 0x3a, 0x2a, 0xbd, 0xc7, 0x1a, 0xb1, 0xe1, 0x14 +.byte 0xf0, 0xbe, 0x3a, 0x1d, 0xb9, 0xcf, 0x5b, 0xb1, 0x6a, 0xfe, 0xb4, 0xb1, 0x46, 0x20, 0xa2, 0xfb +.byte 0x1e, 0x3b, 0x70, 0xef, 0x93, 0x98, 0x7d, 0x8c, 0x73, 0x96, 0xf2, 0xc5, 0xef, 0x85, 0x70, 0xad +.byte 0x29, 0x26, 0xfc, 0x1e, 0x04, 0x3e, 0x1c, 0xa0, 0xd8, 0x0f, 0xcb, 0x52, 0x83, 0x62, 0x7c, 0xee +.byte 0x8b, 0x53, 0x95, 0x90, 0xa9, 0x57, 0xa2, 0xea, 0x61, 0x05, 0xd8, 0xf9, 0x4d, 0xc4, 0x27, 0xfa +.byte 0x6e, 0xad, 0xed, 0xf9, 0xd7, 0x51, 0xf7, 0x6b, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x52 +.byte 0x01, 0x26, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a +.byte 0x50, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0f, 0x53, 0x45, 0x43, 0x4f +.byte 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43 +.byte 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x43, 0x41, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xb3, 0xb3, 0xfe, 0x7f, 0xd3, 0x6d, 0xb1, 0xef, 0x16, 0x7c, 0x57 +.byte 0xa5, 0x0c, 0x6d, 0x76, 0x8a, 0x2f, 0x4b, 0xbf, 0x64, 0xfb, 0x4c, 0xee, 0x8a, 0xf0, 0xf3, 0x29 +.byte 0x7c, 0xf5, 0xff, 0xee, 0x2a, 0xe0, 0xe9, 0xe9, 0xba, 0x5b, 0x64, 0x22, 0x9a, 0x9a, 0x6f, 0x2c +.byte 0x3a, 0x26, 0x69, 0x51, 0x05, 0x99, 0x26, 0xdc, 0xd5, 0x1c, 0x6a, 0x71, 0xc6, 0x9a, 0x7d, 0x1e +.byte 0x9d, 0xdd, 0x7c, 0x6c, 0xc6, 0x8c, 0x67, 0x67, 0x4a, 0x3e, 0xf8, 0x71, 0xb0, 0x19, 0x27, 0xa9 +.byte 0x09, 0x0c, 0xa6, 0x95, 0xbf, 0x4b, 0x8c, 0x0c, 0xfa, 0x55, 0x98, 0x3b, 0xd8, 0xe8, 0x22, 0xa1 +.byte 0x4b, 0x71, 0x38, 0x79, 0xac, 0x97, 0x92, 0x69, 0xb3, 0x89, 0x7e, 0xea, 0x21, 0x68, 0x06, 0x98 +.byte 0x14, 0x96, 0x87, 0xd2, 0x61, 0x36, 0xbc, 0x6d, 0x27, 0x56, 0x9e, 0x57, 0xee, 0xc0, 0xc0, 0x56 +.byte 0xfd, 0x32, 0xcf, 0xa4, 0xd9, 0x8e, 0xc2, 0x23, 0xd7, 0x8d, 0xa8, 0xf3, 0xd8, 0x25, 0xac, 0x97 +.byte 0xe4, 0x70, 0x38, 0xf4, 0xb6, 0x3a, 0xb4, 0x9d, 0x3b, 0x97, 0x26, 0x43, 0xa3, 0xa1, 0xbc, 0x49 +.byte 0x59, 0x72, 0x4c, 0x23, 0x30, 0x87, 0x01, 0x58, 0xf6, 0x4e, 0xbe, 0x1c, 0x68, 0x56, 0x66, 0xaf +.byte 0xcd, 0x41, 0x5d, 0xc8, 0xb3, 0x4d, 0x2a, 0x55, 0x46, 0xab, 0x1f, 0xda, 0x1e, 0xe2, 0x40, 0x3d +.byte 0xdb, 0xcd, 0x7d, 0xb9, 0x92, 0x80, 0x9c, 0x37, 0xdd, 0x0c, 0x96, 0x64, 0x9d, 0xdc, 0x22, 0xf7 +.byte 0x64, 0x8b, 0xdf, 0x61, 0xde, 0x15, 0x94, 0x52, 0x15, 0xa0, 0x7d, 0x52, 0xc9, 0x4b, 0xa8, 0x21 +.byte 0xc9, 0xc6, 0xb1, 0xed, 0xcb, 0xc3, 0x95, 0x60, 0xd1, 0x0f, 0xf0, 0xab, 0x70, 0xf8, 0xdf, 0xcb +.byte 0x4d, 0x7e, 0xec, 0xd6, 0xfa, 0xab, 0xd9, 0xbd, 0x7f, 0x54, 0xf2, 0xa5, 0xe9, 0x79, 0xfa, 0xd9 +.byte 0xd6, 0x76, 0x24, 0x28, 0x73, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x52, 0x00, 0x5b, 0x30, 0x50 +.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x2d, 0x20, 0x52, 0x34, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e +.byte 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0xb8, 0xc6, 0x79, 0xd3, 0x8f +.byte 0x6c, 0x25, 0x0e, 0x9f, 0x2e, 0x39, 0x19, 0x1c, 0x03, 0xa4, 0xae, 0x9a, 0xe5, 0x39, 0x07, 0x09 +.byte 0x16, 0xca, 0x63, 0xb1, 0xb9, 0x86, 0xf8, 0x8a, 0x57, 0xc1, 0x57, 0xce, 0x42, 0xfa, 0x73, 0xa1 +.byte 0xf7, 0x65, 0x42, 0xff, 0x1e, 0xc1, 0x00, 0xb2, 0x6e, 0x73, 0x0e, 0xff, 0xc7, 0x21, 0xe5, 0x18 +.byte 0xa4, 0xaa, 0xd9, 0x71, 0x3f, 0xa8, 0xd4, 0xb9, 0xce, 0x8c, 0x1d, 0x00, 0x52, 0x00, 0x78, 0x30 +.byte 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x35, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 +.byte 0x6e, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05 +.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x47, 0x45, 0x0e, 0x96, 0xfb, 0x7d, 0x5d +.byte 0xbf, 0xe9, 0x39, 0xd1, 0x21, 0xf8, 0x9f, 0x0b, 0xb6, 0xd5, 0x7b, 0x1e, 0x92, 0x3a, 0x48, 0x59 +.byte 0x1c, 0xf0, 0x62, 0x31, 0x2d, 0xc0, 0x7a, 0x28, 0xfe, 0x1a, 0xa7, 0x5c, 0xb3, 0xb6, 0xcc, 0x97 +.byte 0xe7, 0x45, 0xd4, 0x58, 0xfa, 0xd1, 0x77, 0x6d, 0x43, 0xa2, 0xc0, 0x87, 0x65, 0x34, 0x0a, 0x1f +.byte 0x7a, 0xdd, 0xeb, 0x3c, 0x33, 0xa1, 0xc5, 0x9d, 0x4d, 0xa4, 0x6f, 0x41, 0x95, 0x38, 0x7f, 0xc9 +.byte 0x1e, 0x84, 0xeb, 0xd1, 0x9e, 0x49, 0x92, 0x87, 0x94, 0x87, 0x0c, 0x3a, 0x85, 0x4a, 0x66, 0x9f +.byte 0x9d, 0x59, 0x93, 0x4d, 0x97, 0x61, 0x06, 0x86, 0x4a, 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42, 0x30, 0x40 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64 +.byte 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f +.byte 0x6e, 0x20, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f, 0x6e +.byte 0x61, 0x6c, 0x20, 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36, 0x38 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0xca, 0x96, 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c, 0xda, 0xe0 +.byte 0xc3, 0x52, 0xd7, 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f, 0x6a, 0xb2 +.byte 0xca, 0x1c, 0x5d, 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20, 0x42, 0xe4 +.byte 0x8b, 0x0f, 0xe6, 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7, 0x32, 0x71 +.byte 0x38, 0xd9, 0x04, 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05, 0x5c, 0xe9 +.byte 0xbf, 0x94, 0x6f, 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb, 0xad, 0x37 +.byte 0x4a, 0x5c, 0xca, 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd, 0xa8, 0x50 +.byte 0xf4, 0xb1, 0xe7, 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69, 0x52, 0x02 +.byte 0xaa, 0x36, 0x98, 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37, 0x7f, 0xd7 +.byte 0x81, 0x2d, 0xe5, 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1, 0xd3, 0xf4 +.byte 0x40, 0xcf, 0x5e, 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7, 0x72, 0x1b +.byte 0x25, 0x6c, 0x93, 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23, 0x59, 0x5f +.byte 0x20, 0x05, 0x19, 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b, 0xb2, 0x92 +.byte 0x3c, 0x20, 0xcf, 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec, 0x1a, 0x86 +.byte 0x61, 0x33, 0x3e, 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f, 0xb9, 0x87 +.byte 0x26, 0x6f, 0x41, 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16, 0x1b, 0x19 +.byte 0x8f, 0xb2, 0xed, 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f, 0x3e, 0x38 +.byte 0x23, 0xc9, 0x2f, 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d, 0x3c, 0xaf +.byte 0x4f, 0xa4, 0xf3, 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57, 0x31, 0xb4 +.byte 0x9c, 0xc8, 0x90, 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1, 0x78, 0x96 +.byte 0x31, 0x1f, 0xba, 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20, 0x76, 0xd8 +.byte 0xdf, 0xfd, 0xab, 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68, 0x29, 0xa3 +.byte 0xe7, 0x8a, 0xb8, 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7, 0xc5, 0xe2 +.byte 0xd8, 0x9f, 0x8e, 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac, 0xee, 0x24 +.byte 0x10, 0xad, 0x2f, 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf, 0xbb, 0x01 +.byte 0xdb, 0xf4, 0x7f, 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4, 0x52, 0xca +.byte 0x6e, 0x97, 0xfb, 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28, 0xaa, 0x0d +.byte 0xd5, 0x45, 0xf3, 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e, 0x94, 0x64 +.byte 0xae, 0x7b, 0x0b, 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41, 0xd5, 0x3b +.byte 0x87, 0x0c, 0x6e, 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e, 0x41, 0xb6 +.byte 0x8f, 0x96, 0x1d, 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37, 0x06, 0x3b +.byte 0x80, 0x89, 0x45, 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8, 0x92, 0x30 +.byte 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x53, 0x01, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x1f, 0x4b, 0x72, 0x61, 0x6a, 0x6f, 0x77, 0x61, 0x20, 0x49, 0x7a, 0x62, 0x61 +.byte 0x20, 0x52, 0x6f, 0x7a, 0x6c, 0x69, 0x63, 0x7a, 0x65, 0x6e, 0x69, 0x6f, 0x77, 0x61, 0x20, 0x53 +.byte 0x2e, 0x41, 0x2e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x53, 0x5a +.byte 0x41, 0x46, 0x49, 0x52, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x32, 0x30, 0x82, 0x01 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7, 0xbc +.byte 0x3e, 0x50, 0xa8, 0x4b, 0xcd, 0x40, 0xb5, 0xce, 0x61, 0xe7, 0x96, 0xca, 0xb4, 0xa1, 0xda, 0x0c +.byte 0x22, 0xb0, 0xfa, 0xb5, 0x7b, 0x76, 0x00, 0x77, 0x8c, 0x0b, 0xcf, 0x7d, 0xa8, 0x86, 0xcc, 0x26 +.byte 0x51, 0xe4, 0x20, 0x3d, 0x85, 0x0c, 0xd6, 0x58, 0xe3, 0xe7, 0xf4, 0x2a, 0x18, 0x9d, 0xda, 0xd1 +.byte 0xae, 0x26, 0xee, 0xeb, 0x53, 0xdc, 0xf4, 0x90, 0xd6, 0x13, 0x4a, 0x0c, 0x90, 0x3c, 0xc3, 0xf4 +.byte 0xda, 0xd2, 0x8e, 0x0d, 0x92, 0x3a, 0xdc, 0xb1, 0xb1, 0xff, 0x38, 0xde, 0xc3, 0xba, 0x2d, 0x5f +.byte 0x80, 0xb9, 0x02, 0xbd, 0x4a, 0x9d, 0x1b, 0x0f, 0xb4, 0xc3, 0xc2, 0xc1, 0x67, 0x03, 0xdd, 0xdc +.byte 0x1b, 0x9c, 0x3d, 0xb3, 0xb0, 0xde, 0x00, 0x1e, 0xa8, 0x34, 0x47, 0xbb, 0x9a, 0xeb, 0xfe, 0x0b +.byte 0x14, 0xbd, 0x36, 0x84, 0xda, 0x0d, 0x20, 0xbf, 0xfa, 0x5b, 0xcb, 0xa9, 0x16, 0x20, 0xad, 0x39 +.byte 0x60, 0xee, 0x2f, 0x75, 0xb6, 0xe7, 0x97, 0x9c, 0xf9, 0x3e, 0xfd, 0x7e, 0x4d, 0x6f, 0x4d, 0x2f +.byte 0xef, 0x88, 0x0d, 0x6a, 0xfa, 0xdd, 0xf1, 0x3d, 0x6e, 0x20, 0xa5, 0xa0, 0x12, 0xb4, 0x4d, 0x70 +.byte 0xb9, 0xce, 0xd7, 0x72, 0x3b, 0x89, 0x93, 0xa7, 0x80, 0x84, 0x1c, 0x27, 0x49, 0x72, 0x49, 0xb5 +.byte 0xff, 0x3b, 0x95, 0x9e, 0xc1, 0xcc, 0xc8, 0x01, 0xec, 0xe8, 0x0e, 0x8a, 0x0a, 0x96, 0xe7, 0xb3 +.byte 0xa6, 0x87, 0xe5, 0xd6, 0xf9, 0x05, 0x2b, 0x0d, 0x97, 0x40, 0x70, 0x3c, 0xba, 0xac, 0x75, 0x5a +.byte 0x9c, 0xd5, 0x4d, 0x9d, 0x02, 0x0a, 0xd2, 0x4b, 0x9b, 0x66, 0x4b, 0x46, 0x07, 0x17, 0x65, 0xad +.byte 0x9f, 0x6c, 0x88, 0x00, 0xdc, 0x22, 0x89, 0xe0, 0xe1, 0x64, 0xd4, 0x67, 0xbc, 0x31, 0x79, 0x61 +.byte 0x3c, 0xbb, 0xca, 0x41, 0xcd, 0x5c, 0x6a, 0x00, 0xc8, 0x3c, 0x38, 0x8e, 0x58, 0xaf, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x09, 0x54, 0x41, 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1c, 0x30, 0x1a +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x54, 0x57, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb0, 0x05, 0xdb, 0xc8, 0xeb +.byte 0x8c, 0xc4, 0x6e, 0x8a, 0x21, 0xef, 0x8e, 0x4d, 0x9c, 0x71, 0x0a, 0x1f, 0x52, 0x70, 0xed, 0x6d +.byte 0x82, 0x9c, 0x97, 0xc5, 0xd7, 0x4c, 0x4e, 0x45, 0x49, 0xcb, 0x40, 0x42, 0xb5, 0x12, 0x34, 0x6c +.byte 0x19, 0xc2, 0x74, 0xa4, 0x31, 0x5f, 0x85, 0x02, 0x97, 0xec, 0x43, 0x33, 0x0a, 0x53, 0xd2, 0x9c +.byte 0x8c, 0x8e, 0xb7, 0xb8, 0x79, 0xdb, 0x2b, 0xd5, 0x6a, 0xf2, 0x8e, 0x66, 0xc4, 0xee, 0x2b, 0x01 +.byte 0x07, 0x92, 0xd4, 0xb3, 0xd0, 0x02, 0xdf, 0x50, 0xf6, 0x55, 0xaf, 0x66, 0x0e, 0xcb, 0xe0, 0x47 +.byte 0x60, 0x2f, 0x2b, 0x32, 0x39, 0x35, 0x52, 0x3a, 0x28, 0x83, 0xf8, 0x7b, 0x16, 0xc6, 0x18, 0xb8 +.byte 0x62, 0xd6, 0x47, 0x25, 0x91, 0xce, 0xf0, 0x19, 0x12, 0x4d, 0xad, 0x63, 0xf5, 0xd3, 0x3f, 0x75 +.byte 0x5f, 0x29, 0xf0, 0xa1, 0x30, 0x1c, 0x2a, 0xa0, 0x98, 0xa6, 0x15, 0xbd, 0xee, 0xfd, 0x19, 0x36 +.byte 0xf0, 0xe2, 0x91, 0x43, 0x8f, 0xfa, 0xca, 0xd6, 0x10, 0x27, 0x49, 0x4c, 0xef, 0xdd, 0xc1, 0xf1 +.byte 0x85, 0x70, 0x9b, 0xca, 0xea, 0xa8, 0x5a, 0x43, 0xfc, 0x6d, 0x86, 0x6f, 0x73, 0xe9, 0x37, 0x45 +.byte 0xa9, 0xf0, 0x36, 0xc7, 0xcc, 0x88, 0x75, 0x1e, 0xbb, 0x6c, 0x06, 0xff, 0x9b, 0x6b, 0x3e, 0x17 +.byte 0xec, 0x61, 0xaa, 0x71, 0x7c, 0xc6, 0x1d, 0xa2, 0xf7, 0x49, 0xe9, 0x15, 0xb5, 0x3c, 0xd6, 0xa1 +.byte 0x61, 0xf5, 0x11, 0xf7, 0x05, 0x6f, 0x1d, 0xfd, 0x11, 0xbe, 0xd0, 0x30, 0x07, 0xc2, 0x29, 0xb0 +.byte 0x09, 0x4e, 0x26, 0xdc, 0xe3, 0xa2, 0xa8, 0x91, 0x6a, 0x1f, 0xc2, 0x91, 0x45, 0x88, 0x5c, 0xe5 +.byte 0x98, 0xb8, 0x71, 0xa5, 0x15, 0x19, 0xc9, 0x7c, 0x75, 0x11, 0xcc, 0x70, 0x74, 0x4f, 0x2d, 0x9b +.byte 0x1d, 0x91, 0x44, 0xfd, 0x56, 0x28, 0xa0, 0xfe, 0xbb, 0x86, 0x6a, 0xc8, 0xfa, 0x5c, 0x0b, 0x58 +.byte 0xdc, 0xc6, 0x4b, 0x76, 0xc8, 0xab, 0x22, 0xd9, 0x73, 0x0f, 0xa5, 0xf4, 0x5a, 0x02, 0x89, 0x3f +.byte 0x4f, 0x9e, 0x22, 0x82, 0xee, 0xa2, 0x74, 0x53, 0x2a, 0x3d, 0x53, 0x27, 0x69, 0x1d, 0x6c, 0x8e +.byte 0x32, 0x2c, 0x64, 0x00, 0x26, 0x63, 0x61, 0x36, 0x4e, 0xa3, 0x46, 0xb7, 0x3f, 0x7d, 0xb3, 0x2d +.byte 0xac, 0x6d, 0x90, 0xa2, 0x95, 0xa2, 0xce, 0xcf, 0xda, 0x82, 0xe7, 0x07, 0x34, 0x19, 0x96, 0xe9 +.byte 0xb8, 0x21, 0xaa, 0x29, 0x7e, 0xa6, 0x38, 0xbe, 0x8e, 0x29, 0x4a, 0x21, 0x66, 0x79, 0x1f, 0xb3 +.byte 0xc3, 0xb5, 0x09, 0x67, 0xde, 0xd6, 0xd4, 0x07, 0x46, 0xf3, 0x2a, 0xda, 0xe6, 0x22, 0x37, 0x60 +.byte 0xcb, 0x81, 0xb6, 0x0f, 0xa0, 0x0f, 0xe9, 0xc8, 0x95, 0x7f, 0xbf, 0x55, 0x91, 0x05, 0x7a, 0xcf +.byte 0x3d, 0x15, 0xc0, 0x6f, 0xde, 0x09, 0x94, 0x01, 0x83, 0xd7, 0x34, 0x1b, 0xcc, 0x40, 0xa5, 0xf0 +.byte 0xb8, 0x9b, 0x67, 0xd5, 0x98, 0x91, 0x3b, 0xa7, 0x84, 0x78, 0x95, 0x26, 0xa4, 0x5a, 0x08, 0xf8 +.byte 0x2b, 0x74, 0xb4, 0x00, 0x04, 0x3c, 0xdf, 0xb8, 0x14, 0x8e, 0xe8, 0xdf, 0xa9, 0x8d, 0x6c, 0x67 +.byte 0x92, 0x33, 0x1d, 0xc0, 0xb7, 0xd2, 0xec, 0x92, 0xc8, 0xbe, 0x09, 0xbf, 0x2c, 0x29, 0x05, 0x6f +.byte 0x02, 0x6b, 0x9e, 0xef, 0xbc, 0xbf, 0x2a, 0xbc, 0x5b, 0xc0, 0x50, 0x8f, 0x41, 0x70, 0x71, 0x87 +.byte 0xb2, 0x4d, 0xb7, 0x04, 0xa9, 0x84, 0xa3, 0x32, 0xaf, 0xae, 0xee, 0x6b, 0x17, 0x8b, 0xb2, 0xb1 +.byte 0xfe, 0x6c, 0xe1, 0x90, 0x8c, 0x88, 0xa8, 0x97, 0x48, 0xce, 0xc8, 0x4d, 0xcb, 0xf3, 0x06, 0xcf +.byte 0x5f, 0x6a, 0x0a, 0x42, 0xb1, 0x1e, 0x1e, 0x77, 0x2f, 0x8e, 0xa0, 0xe6, 0x92, 0x0e, 0x06, 0xfc +.byte 0x05, 0x22, 0xd2, 0x26, 0xe1, 0x31, 0x51, 0x7d, 0x32, 0xdc, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x54, 0x02, 0x26, 0x30, 0x52, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x53, 0x4b, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x42, 0x72 +.byte 0x61, 0x74, 0x69, 0x73, 0x6c, 0x61, 0x76, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0a, 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x61, 0x2e, 0x73, 0x2e, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x41, 0x20, 0x44, 0x69, 0x73, 0x69, 0x67 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 +.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa2, 0xa3, 0xc4, 0x00, 0x09, 0xd6, 0x85 +.byte 0x5d, 0x2d, 0x6d, 0x14, 0xf6, 0xc2, 0xc3, 0x73, 0x9e, 0x35, 0xc2, 0x71, 0x55, 0x7e, 0x81, 0xfb +.byte 0xab, 0x46, 0x50, 0xe0, 0xc1, 0x7c, 0x49, 0x78, 0xe6, 0xab, 0x79, 0x58, 0x3c, 0xda, 0xff, 0x7c +.byte 0x1c, 0x9f, 0xd8, 0x97, 0x02, 0x78, 0x3e, 0x6b, 0x41, 0x04, 0xe9, 0x41, 0xbd, 0xbe, 0x03, 0x2c +.byte 0x45, 0xf6, 0x2f, 0x64, 0xd4, 0xab, 0x5d, 0xa3, 0x47, 0x3d, 0x64, 0x9b, 0xe9, 0x68, 0x9a, 0xc6 +.byte 0xcc, 0x1b, 0x3f, 0xba, 0xbe, 0xb2, 0x8b, 0x34, 0x02, 0x2e, 0x98, 0x55, 0x19, 0xfc, 0x8c, 0x6f +.byte 0xaa, 0x5f, 0xda, 0x4c, 0xce, 0x4d, 0x03, 0x21, 0xa3, 0xd8, 0xd2, 0x34, 0x93, 0x56, 0x96, 0xcb +.byte 0x4c, 0x0c, 0x00, 0x16, 0x3c, 0x5f, 0x1a, 0xcd, 0xc8, 0xc7, 0x6c, 0xa6, 0xad, 0xd3, 0x31, 0xa7 +.byte 0xbc, 0xe8, 0xe5, 0xe1, 0x66, 0xd6, 0xd2, 0xfb, 0x03, 0xb4, 0x41, 0x65, 0xc9, 0x10, 0xae, 0x0e +.byte 0x05, 0x63, 0xc6, 0x80, 0x6a, 0x69, 0x30, 0xfd, 0xd2, 0xee, 0x90, 0xef, 0x0d, 0x27, 0xdf, 0x9f +.byte 0x95, 0x73, 0xf4, 0xe1, 0x25, 0xda, 0x6c, 0x16, 0xde, 0x41, 0x38, 0x34, 0xea, 0x8b, 0xfc, 0xd1 +.byte 0xe8, 0x04, 0x14, 0x61, 0x2d, 0x41, 0x7e, 0xac, 0xc7, 0x77, 0x4e, 0xcb, 0x51, 0x54, 0xfb, 0x5e +.byte 0x92, 0x18, 0x1b, 0x04, 0x5a, 0x68, 0xc6, 0xc9, 0xc4, 0xfa, 0xb7, 0x13, 0xa0, 0x98, 0xb7, 0x11 +.byte 0x2b, 0xb7, 0xd6, 0x57, 0xcc, 0x7c, 0x9e, 0x17, 0xd1, 0xcb, 0x25, 0xfe, 0x86, 0x4e, 0x24, 0x2e +.byte 0x56, 0x0c, 0x78, 0x4d, 0x9e, 0x01, 0x12, 0xa6, 0x2b, 0xa7, 0x01, 0x65, 0x6e, 0x7c, 0x62, 0x1d +.byte 0x84, 0x84, 0xdf, 0xea, 0xc0, 0x6b, 0xb5, 0xa5, 0x2a, 0x95, 0x83, 0xc3, 0x53, 0x11, 0x0c, 0x73 +.byte 0x1d, 0x0b, 0xb2, 0x46, 0x90, 0xd1, 0x42, 0x3a, 0xce, 0x40, 0x6e, 0x95, 0xad, 0xff, 0xc6, 0x94 +.byte 0xad, 0x6e, 0x97, 0x84, 0x8e, 0x7d, 0x6f, 0x9e, 0x8a, 0x80, 0x0d, 0x49, 0x6d, 0x73, 0xe2, 0x7b +.byte 0x92, 0x1e, 0xc3, 0xf3, 0xc1, 0xf3, 0xeb, 0x2e, 0x05, 0x6f, 0xd9, 0x1b, 0xcf, 0x37, 0x76, 0x04 +.byte 0xc8, 0xb4, 0x5a, 0xe4, 0x17, 0xa7, 0xcb, 0xdd, 0x76, 0x1f, 0xd0, 0x19, 0x76, 0xe8, 0x2c, 0x05 +.byte 0xb3, 0xd6, 0x9c, 0x34, 0xd8, 0x96, 0xdc, 0x61, 0x87, 0x91, 0x05, 0xe4, 0x44, 0x08, 0x33, 0xc1 +.byte 0xda, 0xb9, 0x08, 0x65, 0xd4, 0xae, 0xb2, 0x36, 0x0d, 0xeb, 0xba, 0x38, 0xba, 0x0c, 0xe5, 0x9b +.byte 0x9e, 0xeb, 0x8d, 0x66, 0xdd, 0x99, 0xcf, 0xd6, 0x89, 0x41, 0xf6, 0x04, 0x92, 0x8a, 0x29, 0x29 +.byte 0x6d, 0x6b, 0x3a, 0x1c, 0xe7, 0x75, 0x7d, 0x02, 0x71, 0x0e, 0xf3, 0xc0, 0xe7, 0xbd, 0xcb, 0x19 +.byte 0xdd, 0x9d, 0x60, 0xb2, 0xc2, 0x66, 0x60, 0xb6, 0xb1, 0x04, 0xee, 0xc9, 0xe6, 0x86, 0xb9, 0x9a +.byte 0x66, 0x40, 0xa8, 0xe7, 0x11, 0xed, 0x81, 0x45, 0x03, 0x8b, 0xf6, 0x67, 0x59, 0xe8, 0xc1, 0x06 +.byte 0x11, 0xbd, 0xdd, 0xcf, 0x80, 0x02, 0x4f, 0x65, 0x40, 0x78, 0x5c, 0x47, 0x50, 0xc8, 0x9b, 0xe6 +.byte 0x1f, 0x81, 0x7b, 0xe4, 0x44, 0xa8, 0x5b, 0x85, 0x9a, 0xe2, 0xde, 0x5a, 0xd5, 0xc7, 0xf9, 0x3a +.byte 0x44, 0x66, 0x4b, 0xe4, 0x32, 0x54, 0x7c, 0xe4, 0x6c, 0x9c, 0xb3, 0x0e, 0x3d, 0x17, 0xa2, 0xb2 +.byte 0x34, 0x12, 0xd6, 0x7e, 0xb2, 0xa8, 0x49, 0xbb, 0xd1, 0x7a, 0x28, 0x40, 0xbe, 0xa2, 0x16, 0x1f +.byte 0xdf, 0xe4, 0x37, 0x1f, 0x11, 0x73, 0xfb, 0x90, 0x0a, 0x65, 0x43, 0xa2, 0x0d, 0x7c, 0xf8, 0x06 +.byte 0x01, 0x55, 0x33, 0x7d, 0xb0, 0x0d, 0xb8, 0xf4, 0xf5, 0xae, 0xa5, 0x42, 0x57, 0x7c, 0x36, 0x11 +.byte 0x8c, 0x7b, 0x5e, 0xc4, 0x03, 0x9d, 0x8c, 0x79, 0x9d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x58 +.byte 0x02, 0x26, 0x30, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43 +.byte 0x4e, 0x31, 0x30, 0x30, 0x2e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x27, 0x43, 0x68, 0x69, 0x6e +.byte 0x61, 0x20, 0x46, 0x69, 0x6e, 0x61, 0x6e, 0x63, 0x69, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0c, 0x43, 0x46 +.byte 0x43, 0x41, 0x20, 0x45, 0x56, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd7, 0x5d, 0x6b, 0xcd, 0x10 +.byte 0x3f, 0x1f, 0x05, 0x59, 0xd5, 0x05, 0x4d, 0x37, 0xb1, 0x0e, 0xec, 0x98, 0x2b, 0x8e, 0x15, 0x1d +.byte 0xfa, 0x93, 0x4b, 0x17, 0x82, 0x21, 0x71, 0x10, 0x52, 0xd7, 0x51, 0x64, 0x70, 0x16, 0xc2, 0x55 +.byte 0x69, 0x4d, 0x8e, 0x15, 0x6d, 0x9f, 0xbf, 0x0c, 0x1b, 0xc2, 0xe0, 0xa3, 0x67, 0xd6, 0x0c, 0xac +.byte 0xcf, 0x22, 0xae, 0xaf, 0x77, 0x54, 0x2a, 0x4b, 0x4c, 0x8a, 0x53, 0x52, 0x7a, 0xc3, 0xee, 0x2e +.byte 0xde, 0xb3, 0x71, 0x25, 0xc1, 0xe9, 0x5d, 0x3d, 0xee, 0xa1, 0x2f, 0xa3, 0xf7, 0x2a, 0x3c, 0xc9 +.byte 0x23, 0x1d, 0x6a, 0xab, 0x1d, 0xa1, 0xa7, 0xf1, 0xf3, 0xec, 0xa0, 0xd5, 0x44, 0xcf, 0x15, 0xcf +.byte 0x72, 0x2f, 0x1d, 0x63, 0x97, 0xe8, 0x99, 0xf9, 0xfd, 0x93, 0xa4, 0x54, 0x80, 0x4c, 0x52, 0xd4 +.byte 0x52, 0xab, 0x2e, 0x49, 0xdf, 0x90, 0xcd, 0xb8, 0x5f, 0xbe, 0x3f, 0xde, 0xa1, 0xca, 0x4d, 0x20 +.byte 0xd4, 0x25, 0xe8, 0x84, 0x29, 0x53, 0xb7, 0xb1, 0x88, 0x1f, 0xff, 0xfa, 0xda, 0x90, 0x9f, 0x0a +.byte 0xa9, 0x2d, 0x41, 0x3f, 0xb1, 0xf1, 0x18, 0x29, 0xee, 0x16, 0x59, 0x2c, 0x34, 0x49, 0x1a, 0xa8 +.byte 0x06, 0xd7, 0xa8, 0x88, 0xd2, 0x03, 0x72, 0x7a, 0x32, 0xe2, 0xea, 0x68, 0x4d, 0x6e, 0x2c, 0x96 +.byte 0x65, 0x7b, 0xca, 0x59, 0xfa, 0xf2, 0xe2, 0xdd, 0xee, 0x30, 0x2c, 0xfb, 0xcc, 0x46, 0xac, 0xc4 +.byte 0x63, 0xeb, 0x6f, 0x7f, 0x36, 0x2b, 0x34, 0x73, 0x12, 0x94, 0x7f, 0xdf, 0xcc, 0x26, 0x9e, 0xf1 +.byte 0x72, 0x5d, 0x50, 0x65, 0x59, 0x8f, 0x69, 0xb3, 0x87, 0x5e, 0x32, 0x6f, 0xc3, 0x18, 0x8a, 0xb5 +.byte 0x95, 0x8f, 0xb0, 0x7a, 0x37, 0xde, 0x5a, 0x45, 0x3b, 0xc7, 0x36, 0xe1, 0xef, 0x67, 0xd1, 0x39 +.byte 0xd3, 0x97, 0x5b, 0x73, 0x62, 0x19, 0x48, 0x2d, 0x87, 0x1c, 0x06, 0xfb, 0x74, 0x98, 0x20, 0x49 +.byte 0x73, 0xf0, 0x05, 0xd2, 0x1b, 0xb1, 0xa0, 0xa3, 0xb7, 0x1b, 0x70, 0xd3, 0x88, 0x69, 0xb9, 0x5a +.byte 0xd6, 0x38, 0xf4, 0x62, 0xdc, 0x25, 0x8b, 0x78, 0xbf, 0xf8, 0xe8, 0x7e, 0xb8, 0x5c, 0xc9, 0x95 +.byte 0x4f, 0x5f, 0xa7, 0x2d, 0xb9, 0x20, 0x6b, 0xcf, 0x6b, 0xdd, 0xf5, 0x0d, 0xf4, 0x82, 0xb7, 0xf4 +.byte 0xb2, 0x66, 0x2e, 0x10, 0x28, 0xf6, 0x97, 0x5a, 0x7b, 0x96, 0x16, 0x8f, 0x01, 0x19, 0x2d, 0x6c +.byte 0x6e, 0x7f, 0x39, 0x58, 0x06, 0x64, 0x83, 0x01, 0x83, 0x83, 0xc3, 0x4d, 0x92, 0xdd, 0x32, 0xc6 +.byte 0x87, 0xa4, 0x37, 0xe9, 0x16, 0xce, 0xaa, 0x2d, 0x68, 0xaf, 0x0a, 0x81, 0x65, 0x3a, 0x70, 0xc1 +.byte 0x9b, 0xad, 0x4d, 0x6d, 0x54, 0xca, 0x2a, 0x2d, 0x4b, 0x85, 0x1b, 0xb3, 0x80, 0xe6, 0x70, 0x45 +.byte 0x0d, 0x6b, 0x5e, 0x35, 0xf0, 0x7f, 0x3b, 0xb8, 0x9c, 0xe4, 0x04, 0x70, 0x89, 0x12, 0x25, 0x93 +.byte 0xda, 0x0a, 0x99, 0x22, 0x60, 0x6a, 0x63, 0x60, 0x4e, 0x76, 0x06, 0x98, 0x4e, 0xbd, 0x83, 0xad +.byte 0x1d, 0x58, 0x8a, 0x25, 0x85, 0xd2, 0xc7, 0x65, 0x1e, 0x2d, 0x8e, 0xc6, 0xdf, 0xb6, 0xc6, 0xe1 +.byte 0x7f, 0x8a, 0x04, 0x21, 0x15, 0x29, 0x74, 0xf0, 0x3e, 0x9c, 0x90, 0x9d, 0x0c, 0x2e, 0xf1, 0x8a +.byte 0x3e, 0x5a, 0xaa, 0x0c, 0x09, 0x1e, 0xc7, 0xd5, 0x3c, 0xa3, 0xed, 0x97, 0xc3, 0x1e, 0x34, 0xfa +.byte 0x38, 0xf9, 0x08, 0x0e, 0xe3, 0xc0, 0x5d, 0x2b, 0x83, 0xd1, 0x56, 0x6a, 0xc9, 0xb6, 0xa8, 0x54 +.byte 0x53, 0x2e, 0x78, 0x32, 0x67, 0x3d, 0x82, 0x7f, 0x74, 0xd0, 0xfb, 0xe1, 0xb6, 0x05, 0x60, 0xb9 +.byte 0x70, 0xdb, 0x8e, 0x0b, 0xf9, 0x13, 0x58, 0x6f, 0x71, 0x60, 0x10, 0x52, 0x10, 0xb9, 0xc1, 0x41 +.byte 0x09, 0xef, 0x72, 0x1f, 0x67, 0x31, 0x78, 0xff, 0x96, 0x05, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x59, 0x01, 0x26, 0x30, 0x57, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x10 +.byte 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xda, 0x0e +.byte 0xe6, 0x99, 0x8d, 0xce, 0xa3, 0xe3, 0x4f, 0x8a, 0x7e, 0xfb, 0xf1, 0x8b, 0x83, 0x25, 0x6b, 0xea +.byte 0x48, 0x1f, 0xf1, 0x2a, 0xb0, 0xb9, 0x95, 0x11, 0x04, 0xbd, 0xf0, 0x63, 0xd1, 0xe2, 0x67, 0x66 +.byte 0xcf, 0x1c, 0xdd, 0xcf, 0x1b, 0x48, 0x2b, 0xee, 0x8d, 0x89, 0x8e, 0x9a, 0xaf, 0x29, 0x80, 0x65 +.byte 0xab, 0xe9, 0xc7, 0x2d, 0x12, 0xcb, 0xab, 0x1c, 0x4c, 0x70, 0x07, 0xa1, 0x3d, 0x0a, 0x30, 0xcd +.byte 0x15, 0x8d, 0x4f, 0xf8, 0xdd, 0xd4, 0x8c, 0x50, 0x15, 0x1c, 0xef, 0x50, 0xee, 0xc4, 0x2e, 0xf7 +.byte 0xfc, 0xe9, 0x52, 0xf2, 0x91, 0x7d, 0xe0, 0x6d, 0xd5, 0x35, 0x30, 0x8e, 0x5e, 0x43, 0x73, 0xf2 +.byte 0x41, 0xe9, 0xd5, 0x6a, 0xe3, 0xb2, 0x89, 0x3a, 0x56, 0x39, 0x38, 0x6f, 0x06, 0x3c, 0x88, 0x69 +.byte 0x5b, 0x2a, 0x4d, 0xc5, 0xa7, 0x54, 0xb8, 0x6c, 0x89, 0xcc, 0x9b, 0xf9, 0x3c, 0xca, 0xe5, 0xfd +.byte 0x89, 0xf5, 0x12, 0x3c, 0x92, 0x78, 0x96, 0xd6, 0xdc, 0x74, 0x6e, 0x93, 0x44, 0x61, 0xd1, 0x8d +.byte 0xc7, 0x46, 0xb2, 0x75, 0x0e, 0x86, 0xe8, 0x19, 0x8a, 0xd5, 0x6d, 0x6c, 0xd5, 0x78, 0x16, 0x95 +.byte 0xa2, 0xe9, 0xc8, 0x0a, 0x38, 0xeb, 0xf2, 0x24, 0x13, 0x4f, 0x73, 0x54, 0x93, 0x13, 0x85, 0x3a +.byte 0x1b, 0xbc, 0x1e, 0x34, 0xb5, 0x8b, 0x05, 0x8c, 0xb9, 0x77, 0x8b, 0xb1, 0xdb, 0x1f, 0x20, 0x91 +.byte 0xab, 0x09, 0x53, 0x6e, 0x90, 0xce, 0x7b, 0x37, 0x74, 0xb9, 0x70, 0x47, 0x91, 0x22, 0x51, 0x63 +.byte 0x16, 0x79, 0xae, 0xb1, 0xae, 0x41, 0x26, 0x08, 0xc8, 0x19, 0x2b, 0xd1, 0x46, 0xaa, 0x48, 0xd6 +.byte 0x64, 0x2a, 0xd7, 0x83, 0x34, 0xff, 0x2c, 0x2a, 0xc1, 0x6c, 0x19, 0x43, 0x4a, 0x07, 0x85, 0xe7 +.byte 0xd3, 0x7c, 0xf6, 0x21, 0x68, 0xef, 0xea, 0xf2, 0x52, 0x9f, 0x7f, 0x93, 0x90, 0xcf, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x5a, 0x01, 0x26, 0x30, 0x58, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x22, 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2c, 0x20, 0x49 +.byte 0x6e, 0x63, 0x2e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x53, 0x65 +.byte 0x63, 0x75, 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x31 +.byte 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xfd, 0x77, 0xaa, 0xa5, 0x1c, 0x90, 0x05, 0x3b, 0xcb, 0x4c, 0x9b, 0x33, 0x8b, 0x5a +.byte 0x14, 0x45, 0xa4, 0xe7, 0x90, 0x16, 0xd1, 0xdf, 0x57, 0xd2, 0x21, 0x10, 0xa4, 0x17, 0xfd, 0xdf +.byte 0xac, 0xd6, 0x1f, 0xa7, 0xe4, 0xdb, 0x7c, 0xf7, 0xec, 0xdf, 0xb8, 0x03, 0xda, 0x94, 0x58, 0xfd +.byte 0x5d, 0x72, 0x7c, 0x8c, 0x3f, 0x5f, 0x01, 0x67, 0x74, 0x15, 0x96, 0xe3, 0x02, 0x3c, 0x87, 0xdb +.byte 0xae, 0xcb, 0x01, 0x8e, 0xc2, 0xf3, 0x66, 0xc6, 0x85, 0x45, 0xf4, 0x02, 0xc6, 0x3a, 0xb5, 0x62 +.byte 0xb2, 0xaf, 0xfa, 0x9c, 0xbf, 0xa4, 0xe6, 0xd4, 0x80, 0x30, 0x98, 0xf3, 0x0d, 0xb6, 0x93, 0x8f +.byte 0xa9, 0xd4, 0xd8, 0x36, 0xf2, 0xb0, 0xfc, 0x8a, 0xca, 0x2c, 0xa1, 0x15, 0x33, 0x95, 0x31, 0xda +.byte 0xc0, 0x1b, 0xf2, 0xee, 0x62, 0x99, 0x86, 0x63, 0x3f, 0xbf, 0xdd, 0x93, 0x2a, 0x83, 0xa8, 0x76 +.byte 0xb9, 0x13, 0x1f, 0xb7, 0xce, 0x4e, 0x42, 0x85, 0x8f, 0x22, 0xe7, 0x2e, 0x1a, 0xf2, 0x95, 0x09 +.byte 0xb2, 0x05, 0xb5, 0x44, 0x4e, 0x77, 0xa1, 0x20, 0xbd, 0xa9, 0xf2, 0x4e, 0x0a, 0x7d, 0x50, 0xad +.byte 0xf5, 0x05, 0x0d, 0x45, 0x4f, 0x46, 0x71, 0xfd, 0x28, 0x3e, 0x53, 0xfb, 0x04, 0xd8, 0x2d, 0xd7 +.byte 0x65, 0x1d, 0x4a, 0x1b, 0xfa, 0xcf, 0x3b, 0xb0, 0x31, 0x9a, 0x35, 0x6e, 0xc8, 0x8b, 0x06, 0xd3 +.byte 0x00, 0x91, 0xf2, 0x94, 0x08, 0x65, 0x4c, 0xb1, 0x34, 0x06, 0x00, 0x7a, 0x89, 0xe2, 0xf0, 0xc7 +.byte 0x03, 0x59, 0xcf, 0xd5, 0xd6, 0xe8, 0xa7, 0x32, 0xb3, 0xe6, 0x98, 0x40, 0x86, 0xc5, 0xcd, 0x27 +.byte 0x12, 0x8b, 0xcc, 0x7b, 0xce, 0xb7, 0x11, 0x3c, 0x62, 0x60, 0x07, 0x23, 0x3e, 0x2b, 0x40, 0x6e +.byte 0x94, 0x80, 0x09, 0x6d, 0xb6, 0xb3, 0x6f, 0x77, 0x6f, 0x35, 0x08, 0x50, 0xfb, 0x02, 0x87, 0xc5 +.byte 0x3e, 0x89, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5a, 0x02, 0x26, 0x30, 0x58, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4c, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x15, 0x53, 0x74, 0x61, 0x61, 0x74, 0x20, 0x64, 0x65, 0x72, 0x20, 0x4e +.byte 0x65, 0x64, 0x65, 0x72, 0x6c, 0x61, 0x6e, 0x64, 0x65, 0x6e, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x20, 0x53, 0x74, 0x61, 0x61, 0x74, 0x20, 0x64, 0x65, 0x72, 0x20, 0x4e +.byte 0x65, 0x64, 0x65, 0x72, 0x6c, 0x61, 0x6e, 0x64, 0x65, 0x6e, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xe3, 0xc7, 0x7e, 0x89, 0xf9, 0x24, 0x4b, 0x3a, 0xd2, 0x33 +.byte 0x83, 0x35, 0x2c, 0x69, 0xec, 0xdc, 0x09, 0xa4, 0xe3, 0x51, 0xa8, 0x25, 0x2b, 0x79, 0xb8, 0x08 +.byte 0x3d, 0xe0, 0x91, 0xba, 0x84, 0x85, 0xc6, 0x85, 0xa4, 0xca, 0xe6, 0xc9, 0x2e, 0x53, 0xa4, 0xc9 +.byte 0x24, 0x1e, 0xfd, 0x55, 0x66, 0x71, 0x5d, 0x2c, 0xc5, 0x60, 0x68, 0x04, 0xb7, 0xd9, 0xc2, 0x52 +.byte 0x26, 0x38, 0x88, 0xa4, 0xd6, 0x3b, 0x40, 0xa6, 0xc2, 0xcd, 0x3f, 0xcd, 0x98, 0x93, 0xb3, 0x54 +.byte 0x14, 0x58, 0x96, 0x55, 0xd5, 0x50, 0xfe, 0x86, 0xad, 0xa4, 0x63, 0x7f, 0x5c, 0x87, 0xf6, 0x8e +.byte 0xe6, 0x27, 0x92, 0x67, 0x17, 0x92, 0x02, 0x03, 0x2c, 0xdc, 0xd6, 0x66, 0x74, 0xed, 0xdd, 0x67 +.byte 0xff, 0xc1, 0x61, 0x8d, 0x63, 0x4f, 0x0f, 0x9b, 0x6d, 0x17, 0x30, 0x26, 0xef, 0xab, 0xd2, 0x1f +.byte 0x10, 0xa0, 0xf9, 0xc5, 0x7f, 0x16, 0x69, 0x81, 0x03, 0x47, 0xed, 0x1e, 0x68, 0x8d, 0x72, 0xa1 +.byte 0x4d, 0xb2, 0x26, 0xc6, 0xba, 0x6c, 0x5f, 0x6d, 0xd6, 0xaf, 0xd1, 0xb1, 0x13, 0x8e, 0xa9, 0xad +.byte 0xf3, 0x5e, 0x69, 0x75, 0x26, 0x18, 0x3e, 0x41, 0x2b, 0x21, 0x7f, 0xee, 0x8b, 0x5d, 0x07, 0x06 +.byte 0x9d, 0x43, 0xc4, 0x29, 0x0a, 0x2b, 0xfc, 0x2a, 0x3e, 0x86, 0xcb, 0x3c, 0x83, 0x3a, 0xf9, 0xc9 +.byte 0x0d, 0xda, 0xc5, 0x99, 0xe2, 0xbc, 0x78, 0x41, 0x33, 0x76, 0xe1, 0xbf, 0x2f, 0x5d, 0xe5, 0xa4 +.byte 0x98, 0x50, 0x0c, 0x15, 0xdd, 0xe0, 0xfa, 0x9c, 0x7f, 0x38, 0x68, 0xd0, 0xb2, 0xa6, 0x7a, 0xa7 +.byte 0xd1, 0x31, 0xbd, 0x7e, 0x8a, 0x58, 0x27, 0x43, 0xb3, 0xba, 0x33, 0x91, 0xd3, 0xa7, 0x98, 0x15 +.byte 0x5c, 0x9a, 0xe6, 0xd3, 0x0f, 0x75, 0xd9, 0xfc, 0x41, 0x98, 0x97, 0x3e, 0xaa, 0x25, 0xdb, 0x8f +.byte 0x92, 0x2e, 0xb0, 0x7b, 0x0c, 0x5f, 0xf1, 0x63, 0xa9, 0x37, 0xf9, 0x9b, 0x75, 0x69, 0x4c, 0x28 +.byte 0x26, 0x25, 0xda, 0xd5, 0xf2, 0x12, 0x70, 0x45, 0x55, 0xe3, 0xdf, 0x73, 0x5e, 0x37, 0xf5, 0x21 +.byte 0x6c, 0x90, 0x8e, 0x35, 0x5a, 0xc9, 0xd3, 0x23, 0xeb, 0xd3, 0xc0, 0xbe, 0x78, 0xac, 0x42, 0x28 +.byte 0x58, 0x66, 0xa5, 0x46, 0x6d, 0x70, 0x02, 0xd7, 0x10, 0xf9, 0x4b, 0x54, 0xfc, 0x5d, 0x86, 0x4a +.byte 0x87, 0xcf, 0x7f, 0xca, 0x45, 0xac, 0x11, 0x5a, 0xb5, 0x20, 0x51, 0x8d, 0x2f, 0x88, 0x47, 0x97 +.byte 0x39, 0xc0, 0xcf, 0xba, 0xc0, 0x42, 0x01, 0x40, 0x99, 0x48, 0x21, 0x0b, 0x6b, 0xa7, 0xd2, 0xfd +.byte 0x96, 0xd5, 0xd1, 0xbe, 0x46, 0x9d, 0x49, 0xe0, 0x0b, 0xa6, 0xa0, 0x22, 0x4e, 0x38, 0xd0, 0xc1 +.byte 0x3c, 0x30, 0xbc, 0x70, 0x8f, 0x2c, 0x75, 0xcc, 0xd0, 0xc5, 0x8c, 0x51, 0x3b, 0x3d, 0x94, 0x08 +.byte 0x64, 0x26, 0x61, 0x7d, 0xb9, 0xc3, 0x65, 0x8f, 0x14, 0x9c, 0x21, 0xd0, 0xaa, 0xfd, 0x17, 0x72 +.byte 0x03, 0x8f, 0xbd, 0x9b, 0x8c, 0xe6, 0x5e, 0x53, 0x9e, 0xb9, 0x9d, 0xef, 0x82, 0xbb, 0xe1, 0xbc +.byte 0xe2, 0x72, 0x41, 0x5b, 0x21, 0x94, 0xd3, 0x45, 0x37, 0x94, 0xd1, 0xdf, 0x09, 0x39, 0x5d, 0xe7 +.byte 0x23, 0xaa, 0x9a, 0x1d, 0xca, 0x6d, 0xa8, 0x0a, 0x86, 0x85, 0x8a, 0x82, 0xbe, 0x42, 0x07, 0xd6 +.byte 0xf2, 0x38, 0x82, 0x73, 0xda, 0x87, 0x5b, 0xe5, 0x3c, 0xd3, 0x9e, 0x3e, 0xa7, 0x3b, 0x9e, 0xf4 +.byte 0x03, 0xb3, 0xf9, 0xf1, 0x7d, 0x13, 0x74, 0x02, 0xff, 0xbb, 0xa1, 0xe5, 0xfa, 0x00, 0x79, 0x1c +.byte 0xa6, 0x66, 0x41, 0x88, 0x5c, 0x60, 0x57, 0xa6, 0x2e, 0x09, 0xc4, 0xba, 0xfd, 0x9a, 0xcf, 0xa7 +.byte 0x1f, 0x40, 0xc3, 0xbb, 0xcc, 0x5a, 0x0a, 0x55, 0x4b, 0x3b, 0x38, 0x76, 0x51, 0xb8, 0x63, 0x8b +.byte 0x84, 0x94, 0x16, 0xe6, 0x56, 0xf3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5a, 0x01, 0x26, 0x30 +.byte 0x58, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16 +.byte 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x28, 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72 +.byte 0x79, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbe, 0xb8, 0x15, 0x7b, 0xff, 0xd4 +.byte 0x7c, 0x7d, 0x67, 0xad, 0x83, 0x64, 0x7b, 0xc8, 0x42, 0x53, 0x2d, 0xdf, 0xf6, 0x84, 0x08, 0x20 +.byte 0x61, 0xd6, 0x01, 0x59, 0x6a, 0x9c, 0x44, 0x11, 0xaf, 0xef, 0x76, 0xfd, 0x95, 0x7e, 0xce, 0x61 +.byte 0x30, 0xbb, 0x7a, 0x83, 0x5f, 0x02, 0xbd, 0x01, 0x66, 0xca, 0xee, 0x15, 0x8d, 0x6f, 0xa1, 0x30 +.byte 0x9c, 0xbd, 0xa1, 0x85, 0x9e, 0x94, 0x3a, 0xf3, 0x56, 0x88, 0x00, 0x31, 0xcf, 0xd8, 0xee, 0x6a +.byte 0x96, 0x02, 0xd9, 0xed, 0x03, 0x8c, 0xfb, 0x75, 0x6d, 0xe7, 0xea, 0xb8, 0x55, 0x16, 0x05, 0x16 +.byte 0x9a, 0xf4, 0xe0, 0x5e, 0xb1, 0x88, 0xc0, 0x64, 0x85, 0x5c, 0x15, 0x4d, 0x88, 0xc7, 0xb7, 0xba +.byte 0xe0, 0x75, 0xe9, 0xad, 0x05, 0x3d, 0x9d, 0xc7, 0x89, 0x48, 0xe0, 0xbb, 0x28, 0xc8, 0x03, 0xe1 +.byte 0x30, 0x93, 0x64, 0x5e, 0x52, 0xc0, 0x59, 0x70, 0x22, 0x35, 0x57, 0x88, 0x8a, 0xf1, 0x95, 0x0a +.byte 0x83, 0xd7, 0xbc, 0x31, 0x73, 0x01, 0x34, 0xed, 0xef, 0x46, 0x71, 0xe0, 0x6b, 0x02, 0xa8, 0x35 +.byte 0x72, 0x6b, 0x97, 0x9b, 0x66, 0xe0, 0xcb, 0x1c, 0x79, 0x5f, 0xd8, 0x1a, 0x04, 0x68, 0x1e, 0x47 +.byte 0x02, 0xe6, 0x9d, 0x60, 0xe2, 0x36, 0x97, 0x01, 0xdf, 0xce, 0x35, 0x92, 0xdf, 0xbe, 0x67, 0xc7 +.byte 0x6d, 0x77, 0x59, 0x3b, 0x8f, 0x9d, 0xd6, 0x90, 0x15, 0x94, 0xbc, 0x42, 0x34, 0x10, 0xc1, 0x39 +.byte 0xf9, 0xb1, 0x27, 0x3e, 0x7e, 0xd6, 0x8a, 0x75, 0xc5, 0xb2, 0xaf, 0x96, 0xd3, 0xa2, 0xde, 0x9b +.byte 0xe4, 0x98, 0xbe, 0x7d, 0xe1, 0xe9, 0x81, 0xad, 0xb6, 0x6f, 0xfc, 0xd7, 0x0e, 0xda, 0xe0, 0x34 +.byte 0xb0, 0x0d, 0x1a, 0x77, 0xe7, 0xe3, 0x08, 0x98, 0xef, 0x58, 0xfa, 0x9c, 0x84, 0xb7, 0x36, 0xaf +.byte 0xc2, 0xdf, 0xac, 0xd2, 0xf4, 0x10, 0x06, 0x70, 0x71, 0x35, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x5c, 0x02, 0x26, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69 +.byte 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c +.byte 0x13, 0x30, 0x30, 0x30, 0x32, 0x20, 0x34, 0x38, 0x31, 0x34, 0x36, 0x33, 0x30, 0x38, 0x31, 0x30 +.byte 0x30, 0x30, 0x33, 0x36, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0xcd, 0x18, 0x39, 0x65, 0x1a, 0x59, 0xb1, 0xea, 0x64, 0x16, 0x0e, 0x8c, 0x94, 0x24, 0x95, 0x7c +.byte 0x83, 0xd3, 0xc5, 0x39, 0x26, 0xdc, 0x0c, 0xef, 0x16, 0x57, 0x8d, 0xd7, 0xd8, 0xac, 0xa3, 0x42 +.byte 0x7f, 0x82, 0xca, 0xed, 0xcd, 0x5b, 0xdb, 0x0e, 0xb7, 0x2d, 0xed, 0x45, 0x08, 0x17, 0xb2, 0xd9 +.byte 0xb3, 0xcb, 0xd6, 0x17, 0x52, 0x72, 0x28, 0xdb, 0x8e, 0x4e, 0x9e, 0x8a, 0xb6, 0x0b, 0xf9, 0x9e +.byte 0x84, 0x9a, 0x4d, 0x76, 0xde, 0x22, 0x29, 0x5c, 0xd2, 0xb3, 0xd2, 0x06, 0x3e, 0x30, 0x39, 0xa9 +.byte 0x74, 0xa3, 0x92, 0x56, 0x1c, 0xa1, 0x6f, 0x4c, 0x0a, 0x20, 0x6d, 0x9f, 0x23, 0x7a, 0xb4, 0xc6 +.byte 0xda, 0x2c, 0xe4, 0x1d, 0x2c, 0xdc, 0xb3, 0x28, 0xd0, 0x13, 0xf2, 0x4c, 0x4e, 0x02, 0x49, 0xa1 +.byte 0x54, 0x40, 0x9e, 0xe6, 0xe5, 0x05, 0xa0, 0x2d, 0x84, 0xc8, 0xff, 0x98, 0x6c, 0xd0, 0xeb, 0x8a +.byte 0x1a, 0x84, 0x08, 0x1e, 0xb7, 0x68, 0x23, 0xee, 0x23, 0xd5, 0x70, 0xce, 0x6d, 0x51, 0x69, 0x10 +.byte 0xee, 0xa1, 0x7a, 0xc2, 0xd1, 0x22, 0x31, 0xc2, 0x82, 0x85, 0xd2, 0xf2, 0x55, 0x76, 0x50, 0x7c +.byte 0x25, 0x7a, 0xc9, 0x84, 0x5c, 0x0b, 0xac, 0xdd, 0x42, 0x4e, 0x2b, 0xe7, 0x82, 0xa2, 0x24, 0x89 +.byte 0xcb, 0x90, 0xb2, 0xd0, 0xee, 0x23, 0xba, 0x66, 0x4c, 0xbb, 0x62, 0xa4, 0xf9, 0x53, 0x5a, 0x64 +.byte 0x7b, 0x7c, 0x98, 0xfa, 0xa3, 0x48, 0x9e, 0x0f, 0x95, 0xae, 0xa7, 0x18, 0xf4, 0x6a, 0xec, 0x2e +.byte 0x03, 0x45, 0xaf, 0xf0, 0x74, 0xf8, 0x2a, 0xcd, 0x7a, 0x5d, 0xd1, 0xbe, 0x44, 0x26, 0x32, 0x29 +.byte 0xf1, 0xf1, 0xf5, 0x6c, 0xcc, 0x7e, 0x02, 0x21, 0x0b, 0x9f, 0x6f, 0xa4, 0x3f, 0xbe, 0x9d, 0x53 +.byte 0xe2, 0xcf, 0x7d, 0xa9, 0x2c, 0x7c, 0x58, 0x1a, 0x97, 0xe1, 0x3d, 0x37, 0x37, 0x18, 0x66, 0x28 +.byte 0xd2, 0x40, 0xc5, 0x51, 0x8a, 0x8c, 0xc3, 0x2d, 0xce, 0x53, 0x88, 0x24, 0x58, 0x64, 0x30, 0x16 +.byte 0xc5, 0xaa, 0xe0, 0xd6, 0x0a, 0xa6, 0x40, 0xdf, 0x78, 0xf6, 0xf5, 0x04, 0x7c, 0x69, 0x13, 0x84 +.byte 0xbc, 0xd1, 0xd1, 0xa7, 0x06, 0xcf, 0x01, 0xf7, 0x68, 0xc0, 0xa8, 0x57, 0xbb, 0x3a, 0x61, 0xad +.byte 0x04, 0x8c, 0x93, 0xe3, 0xad, 0xfc, 0xf0, 0xdb, 0x44, 0x6d, 0x59, 0xdc, 0x49, 0x59, 0xae, 0xac +.byte 0x9a, 0x99, 0x36, 0x30, 0x41, 0x7b, 0x76, 0x33, 0x22, 0x87, 0xa3, 0xc2, 0x92, 0x86, 0x6e, 0xf9 +.byte 0x70, 0xee, 0xae, 0x87, 0x87, 0x95, 0x1b, 0xc4, 0x7a, 0xbd, 0x31, 0xf3, 0xd4, 0xd2, 0xe5, 0x99 +.byte 0xff, 0xbe, 0x48, 0xec, 0x75, 0xf5, 0x78, 0x16, 0x1d, 0xa6, 0x70, 0xc1, 0x7f, 0x3c, 0x1b, 0xa1 +.byte 0x92, 0xfb, 0xcf, 0xc8, 0x3c, 0xd6, 0xc5, 0x93, 0x0a, 0x8f, 0xf5, 0x55, 0x3a, 0x76, 0x95, 0xce +.byte 0x59, 0x98, 0x8a, 0x09, 0x95, 0x77, 0x32, 0x9a, 0x83, 0xba, 0x2c, 0x04, 0x3a, 0x97, 0xbd, 0xd4 +.byte 0x2f, 0xbe, 0xd7, 0x6c, 0x9b, 0xa2, 0xca, 0x7d, 0x6d, 0x26, 0xc9, 0x55, 0xd5, 0xcf, 0xc3, 0x79 +.byte 0x52, 0x08, 0x09, 0x99, 0x07, 0x24, 0x2d, 0x64, 0x25, 0x6b, 0xa6, 0x21, 0x69, 0x9b, 0x6a, 0xdd +.byte 0x74, 0x4d, 0x6b, 0x97, 0x7a, 0x41, 0xbd, 0xab, 0x17, 0xf9, 0x90, 0x17, 0x48, 0x8f, 0x36, 0xf9 +.byte 0x2d, 0xd5, 0xc5, 0xdb, 0xee, 0xaa, 0x85, 0x45, 0x41, 0xfa, 0xcd, 0x3a, 0x45, 0xb1, 0x68, 0xe6 +.byte 0x36, 0x4c, 0x9b, 0x90, 0x57, 0xec, 0x23, 0xb9, 0x87, 0x08, 0xc2, 0xc4, 0x09, 0xf1, 0x97, 0x86 +.byte 0x2a, 0x28, 0x4d, 0xe2, 0x74, 0xc0, 0xda, 0xc4, 0x8c, 0xdb, 0xdf, 0xe2, 0xa1, 0x17, 0x59, 0xce +.byte 0x24, 0x59, 0x74, 0x31, 0xda, 0x7f, 0xfd, 0x30, 0x6d, 0xd9, 0xdc, 0xe1, 0x6a, 0xe1, 0xfc, 0x5f +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5c, 0x02, 0x26, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0a, 0x43, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x6f, 0x6d, 0x69, 0x73, 0x31, 0x17, 0x30 +.byte 0x15, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0e, 0x30, 0x30, 0x30, 0x32, 0x20, 0x34, 0x33, 0x33 +.byte 0x39, 0x39, 0x38, 0x39, 0x30, 0x33, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x14, 0x43, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x6f, 0x6d, 0x69, 0x73, 0x20, 0x2d, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd4, 0xcc, 0x09, 0x0a, 0x2c, 0x3f, 0x92, 0xf6, 0x7f, 0x14 +.byte 0x9e, 0x0b, 0x9c, 0x9a, 0x6a, 0x1d, 0x40, 0x30, 0x64, 0xfd, 0xaa, 0xdf, 0x0e, 0x1e, 0x06, 0x5b +.byte 0x9f, 0x50, 0x85, 0xea, 0xcd, 0x8d, 0xab, 0x43, 0x67, 0xde, 0xb0, 0xfa, 0x7e, 0x80, 0x96, 0x9e +.byte 0x84, 0x78, 0x92, 0x48, 0xd6, 0xe3, 0x39, 0xee, 0xce, 0xe4, 0x59, 0x58, 0x97, 0xe5, 0x2e, 0x27 +.byte 0x98, 0xea, 0x93, 0xa8, 0x77, 0x9b, 0x4a, 0xf0, 0xef, 0x74, 0x80, 0x2d, 0xeb, 0x30, 0x1f, 0xb5 +.byte 0xd9, 0xc7, 0x80, 0x9c, 0x62, 0x27, 0x91, 0x88, 0xf0, 0x4a, 0x89, 0xdd, 0xdc, 0x88, 0xe6, 0x14 +.byte 0xf9, 0xd5, 0x03, 0x2f, 0xff, 0x95, 0xdb, 0xbd, 0x9f, 0xec, 0x2c, 0xfa, 0x14, 0x15, 0x59, 0x95 +.byte 0x0a, 0xc6, 0x47, 0x7c, 0x69, 0x18, 0xb9, 0xa7, 0x03, 0xf9, 0xca, 0x76, 0xa9, 0xcf, 0xc7, 0x6f +.byte 0xb4, 0x5e, 0x05, 0xfe, 0xee, 0xc1, 0x52, 0xb2, 0x75, 0x32, 0x87, 0xec, 0xed, 0x29, 0x66, 0x3b +.byte 0xf3, 0x4a, 0x16, 0x82, 0xf6, 0xd6, 0x9a, 0xdb, 0x72, 0x98, 0xe9, 0xde, 0xf0, 0xc5, 0x4c, 0xa5 +.byte 0xab, 0xb5, 0xea, 0x01, 0xe2, 0x8c, 0x2e, 0x64, 0x7f, 0x64, 0x6f, 0xfd, 0xa3, 0x25, 0x93, 0x8b +.byte 0xc8, 0xa2, 0x0e, 0x49, 0x8d, 0x34, 0xf0, 0x1f, 0xec, 0x58, 0x45, 0x2e, 0x34, 0xaa, 0x84, 0x50 +.byte 0xbd, 0xe7, 0xb2, 0x4a, 0x13, 0xb8, 0xb0, 0x0f, 0xae, 0x38, 0x5d, 0xb0, 0xa9, 0x1b, 0xe6, 0x73 +.byte 0xc9, 0x5a, 0xa1, 0xd9, 0x66, 0x40, 0xaa, 0xa9, 0x4d, 0xa6, 0x34, 0x02, 0xad, 0x84, 0x7e, 0xb2 +.byte 0x23, 0xc1, 0xfb, 0x2a, 0xc6, 0x67, 0xf4, 0x34, 0xb6, 0xb0, 0x95, 0x6a, 0x33, 0x4f, 0x71, 0x44 +.byte 0xb5, 0xad, 0xc0, 0x79, 0x33, 0x88, 0xe0, 0xbf, 0xed, 0xa3, 0xa0, 0x14, 0xb4, 0x9c, 0x09, 0xb0 +.byte 0x0a, 0xe3, 0x60, 0xbe, 0xf8, 0xf8, 0x66, 0x88, 0xcd, 0x5b, 0xf1, 0x77, 0x05, 0xe0, 0xb5, 0x73 +.byte 0x6e, 0xc1, 0x7d, 0x46, 0x2e, 0x8e, 0x4b, 0x27, 0xa6, 0xcd, 0x35, 0x0a, 0xfd, 0xe5, 0x4d, 0x7d +.byte 0xaa, 0x2a, 0xa3, 0x29, 0xc7, 0x5a, 0x68, 0x04, 0xe8, 0xe5, 0xd6, 0x93, 0xa4, 0x62, 0xc2, 0xc5 +.byte 0xe6, 0xf4, 0x4f, 0xc6, 0xf9, 0x9f, 0x1a, 0x8d, 0x82, 0x49, 0x19, 0x8a, 0xca, 0x59, 0x43, 0x3a +.byte 0xe8, 0x0d, 0x32, 0xc1, 0xf4, 0x4c, 0x13, 0x03, 0x6f, 0x6e, 0xa6, 0x3f, 0x91, 0x73, 0xcb, 0xca +.byte 0x73, 0x6f, 0x12, 0x20, 0x8b, 0xee, 0xc0, 0x82, 0x78, 0xde, 0x4b, 0x2e, 0xc2, 0x49, 0xc3, 0x1d +.byte 0xed, 0x16, 0xf6, 0x24, 0xf4, 0x27, 0x1b, 0x5c, 0x57, 0x31, 0xdc, 0x55, 0xee, 0xa8, 0x1e, 0x6f +.byte 0x6c, 0xac, 0xe2, 0x45, 0xcc, 0x57, 0x57, 0x8a, 0x75, 0x57, 0x19, 0xe0, 0xb5, 0x58, 0x99, 0x49 +.byte 0x36, 0x31, 0x3c, 0x33, 0x01, 0x6d, 0x16, 0x4a, 0xcd, 0xb8, 0x2a, 0x83, 0x84, 0x86, 0x9b, 0xf9 +.byte 0x60, 0xd2, 0x1f, 0x6d, 0x91, 0x03, 0xd3, 0x60, 0xa6, 0xd5, 0x3d, 0x9a, 0xdd, 0x77, 0x90, 0x3d +.byte 0x35, 0xa4, 0x9f, 0x0f, 0x5e, 0xf5, 0x52, 0x44, 0x69, 0xb9, 0xc0, 0xba, 0xdc, 0xcf, 0x7d, 0xdf +.byte 0x7c, 0xd9, 0xc4, 0xac, 0x86, 0x22, 0x32, 0xbc, 0x7b, 0x6b, 0x91, 0xef, 0x7a, 0xf8, 0x17, 0x68 +.byte 0xb0, 0xe2, 0x53, 0x55, 0x60, 0x2d, 0xaf, 0x3e, 0xc2, 0x83, 0xd8, 0xd9, 0x09, 0x2b, 0xf0, 0xc0 +.byte 0x64, 0xdb, 0x87, 0x8b, 0x91, 0xcc, 0x91, 0xeb, 0x04, 0xfd, 0x76, 0xb4, 0x95, 0x9a, 0xe6, 0x14 +.byte 0x06, 0x1b, 0xd5, 0x34, 0x1d, 0xbe, 0xd8, 0xff, 0x74, 0x1c, 0x53, 0x85, 0x99, 0xe0, 0x59, 0x52 +.byte 0x4a, 0x61, 0xed, 0x88, 0x9e, 0x6b, 0x49, 0x89, 0x46, 0x7e, 0x20, 0x5a, 0xd9, 0xe7, 0x4a, 0xe5 +.byte 0x6a, 0xee, 0xd2, 0x65, 0x11, 0x43, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5c, 0x01, 0x26, 0x30 +.byte 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x45, 0x31, 0x12 +.byte 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f +.byte 0x72, 0x65, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x43, 0x79, 0x62 +.byte 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x19, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x43, 0x79, 0x62, 0x65 +.byte 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x01, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xa3, 0x04, 0xbb, 0x22 +.byte 0xab, 0x98, 0x3d, 0x57, 0xe8, 0x26, 0x72, 0x9a, 0xb5, 0x79, 0xd4, 0x29, 0xe2, 0xe1, 0xe8, 0x95 +.byte 0x80, 0xb1, 0xb0, 0xe3, 0x5b, 0x8e, 0x2b, 0x29, 0x9a, 0x64, 0xdf, 0xa1, 0x5d, 0xed, 0xb0, 0x09 +.byte 0x05, 0x6d, 0xdb, 0x28, 0x2e, 0xce, 0x62, 0xa2, 0x62, 0xfe, 0xb4, 0x88, 0xda, 0x12, 0xeb, 0x38 +.byte 0xeb, 0x21, 0x9d, 0xc0, 0x41, 0x2b, 0x01, 0x52, 0x7b, 0x88, 0x77, 0xd3, 0x1c, 0x8f, 0xc7, 0xba +.byte 0xb9, 0x88, 0xb5, 0x6a, 0x09, 0xe7, 0x73, 0xe8, 0x11, 0x40, 0xa7, 0xd1, 0xcc, 0xca, 0x62, 0x8d +.byte 0x2d, 0xe5, 0x8f, 0x0b, 0xa6, 0x50, 0xd2, 0xa8, 0x50, 0xc3, 0x28, 0xea, 0xf5, 0xab, 0x25, 0x87 +.byte 0x8a, 0x9a, 0x96, 0x1c, 0xa9, 0x67, 0xb8, 0x3f, 0x0c, 0xd5, 0xf7, 0xf9, 0x52, 0x13, 0x2f, 0xc2 +.byte 0x1b, 0xd5, 0x70, 0x70, 0xf0, 0x8f, 0xc0, 0x12, 0xca, 0x06, 0xcb, 0x9a, 0xe1, 0xd9, 0xca, 0x33 +.byte 0x7a, 0x77, 0xd6, 0xf8, 0xec, 0xb9, 0xf1, 0x68, 0x44, 0x42, 0x48, 0x13, 0xd2, 0xc0, 0xc2, 0xa4 +.byte 0xae, 0x5e, 0x60, 0xfe, 0xb6, 0xa6, 0x05, 0xfc, 0xb4, 0xdd, 0x07, 0x59, 0x02, 0xd4, 0x59, 0x18 +.byte 0x98, 0x63, 0xf5, 0xa5, 0x63, 0xe0, 0x90, 0x0c, 0x7d, 0x5d, 0xb2, 0x06, 0x7a, 0xf3, 0x85, 0xea +.byte 0xeb, 0xd4, 0x03, 0xae, 0x5e, 0x84, 0x3e, 0x5f, 0xff, 0x15, 0xed, 0x69, 0xbc, 0xf9, 0x39, 0x36 +.byte 0x72, 0x75, 0xcf, 0x77, 0x52, 0x4d, 0xf3, 0xc9, 0x90, 0x2c, 0xb9, 0x3d, 0xe5, 0xc9, 0x23, 0x53 +.byte 0x3f, 0x1f, 0x24, 0x98, 0x21, 0x5c, 0x07, 0x99, 0x29, 0xbd, 0xc6, 0x3a, 0xec, 0xe7, 0x6e, 0x86 +.byte 0x3a, 0x6b, 0x97, 0x74, 0x63, 0x33, 0xbd, 0x68, 0x18, 0x31, 0xf0, 0x78, 0x8d, 0x76, 0xbf, 0xfc +.byte 0x9e, 0x8e, 0x5d, 0x2a, 0x86, 0xa7, 0x4d, 0x90, 0xdc, 0x27, 0x1a, 0x39, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x5c, 0x02, 0x26, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x4e, 0x4c, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x15, 0x53 +.byte 0x74, 0x61, 0x61, 0x74, 0x20, 0x64, 0x65, 0x72, 0x20, 0x4e, 0x65, 0x64, 0x65, 0x72, 0x6c, 0x61 +.byte 0x6e, 0x64, 0x65, 0x6e, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22, 0x53 +.byte 0x74, 0x61, 0x61, 0x74, 0x20, 0x64, 0x65, 0x72, 0x20, 0x4e, 0x65, 0x64, 0x65, 0x72, 0x6c, 0x61 +.byte 0x6e, 0x64, 0x65, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47 +.byte 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xc5, 0x59, 0xe7, 0x6f, 0x75, 0xaa, 0x3e, 0x4b, 0x9c, 0xb5, 0xb8, 0xac, 0x9e, 0x0b +.byte 0xe4, 0xf9, 0xd9, 0xca, 0xab, 0x5d, 0x8f, 0xb5, 0x39, 0x10, 0x82, 0xd7, 0xaf, 0x51, 0xe0, 0x3b +.byte 0xe1, 0x00, 0x48, 0x6a, 0xcf, 0xda, 0xe1, 0x06, 0x43, 0x11, 0x99, 0xaa, 0x14, 0x25, 0x12, 0xad +.byte 0x22, 0xe8, 0x00, 0x6d, 0x43, 0xc4, 0xa9, 0xb8, 0xe5, 0x1f, 0x89, 0x4b, 0x67, 0xbd, 0x61, 0x48 +.byte 0xef, 0xfd, 0xd2, 0xe0, 0x60, 0x88, 0xe5, 0xb9, 0x18, 0x60, 0x28, 0xc3, 0x77, 0x2b, 0xad, 0xb0 +.byte 0x37, 0xaa, 0x37, 0xde, 0x64, 0x59, 0x2a, 0x46, 0x57, 0xe4, 0x4b, 0xb9, 0xf8, 0x37, 0x7c, 0xd5 +.byte 0x36, 0xe7, 0x80, 0xc1, 0xb6, 0xf3, 0xd4, 0x67, 0x9b, 0x96, 0xe8, 0xce, 0xd7, 0xc6, 0x0a, 0x53 +.byte 0xd0, 0x6b, 0x49, 0x96, 0xf3, 0xa3, 0x0b, 0x05, 0x77, 0x48, 0xf7, 0x25, 0xe5, 0x70, 0xac, 0x30 +.byte 0x14, 0x20, 0x25, 0xe3, 0x7f, 0x75, 0x5a, 0xe5, 0x48, 0xf8, 0x4e, 0x7b, 0x03, 0x07, 0x04, 0xfa +.byte 0x82, 0x61, 0x87, 0x6e, 0xf0, 0x3b, 0xc4, 0xa4, 0xc7, 0xd0, 0xf5, 0x74, 0x3e, 0xa5, 0x5d, 0x1a +.byte 0x08, 0xf2, 0x9b, 0x25, 0xd2, 0xf6, 0xac, 0x04, 0x26, 0x3e, 0x55, 0x3a, 0x62, 0x28, 0xa5, 0x7b +.byte 0xb2, 0x30, 0xaf, 0xf8, 0x37, 0xc2, 0xd1, 0xba, 0xd6, 0x38, 0xfd, 0xf4, 0xef, 0x49, 0x30, 0x37 +.byte 0x99, 0x26, 0x21, 0x48, 0x85, 0x01, 0xa9, 0xe5, 0x16, 0xe7, 0xdc, 0x90, 0x55, 0xdf, 0x0f, 0xe8 +.byte 0x38, 0xcd, 0x99, 0x37, 0x21, 0x4f, 0x5d, 0xf5, 0x22, 0x6f, 0x6a, 0xc5, 0x12, 0x16, 0x60, 0x17 +.byte 0x55, 0xf2, 0x65, 0x66, 0xa6, 0xa7, 0x30, 0x91, 0x38, 0xc1, 0x38, 0x1d, 0x86, 0x04, 0x84, 0xba +.byte 0x1a, 0x25, 0x78, 0x5e, 0x9d, 0xaf, 0xcc, 0x50, 0x60, 0xd6, 0x13, 0x87, 0x52, 0xed, 0x63, 0x1f +.byte 0x6d, 0x65, 0x7d, 0xc2, 0x15, 0x18, 0x74, 0xca, 0xe1, 0x7e, 0x64, 0x29, 0x8c, 0x72, 0xd8, 0x16 +.byte 0x13, 0x7d, 0x0b, 0x49, 0x4a, 0xf1, 0x28, 0x1b, 0x20, 0x74, 0x6b, 0xc5, 0x3d, 0xdd, 0xb0, 0xaa +.byte 0x48, 0x09, 0x3d, 0x2e, 0x82, 0x94, 0xcd, 0x1a, 0x65, 0xd9, 0x2b, 0x88, 0x9a, 0x99, 0xbc, 0x18 +.byte 0x7e, 0x9f, 0xee, 0x7d, 0x66, 0x7c, 0x3e, 0xbd, 0x94, 0xb8, 0x81, 0xce, 0xcd, 0x98, 0x30, 0x78 +.byte 0xc1, 0x6f, 0x67, 0xd0, 0xbe, 0x5f, 0xe0, 0x68, 0xed, 0xde, 0xe2, 0xb1, 0xc9, 0x2c, 0x59, 0x78 +.byte 0x92, 0xaa, 0xdf, 0x2b, 0x60, 0x63, 0xf2, 0xe5, 0x5e, 0xb9, 0xe3, 0xca, 0xfa, 0x7f, 0x50, 0x86 +.byte 0x3e, 0xa2, 0x34, 0x18, 0x0c, 0x09, 0x68, 0x28, 0x11, 0x1c, 0xe4, 0xe1, 0xb9, 0x5c, 0x3e, 0x47 +.byte 0xba, 0x32, 0x3f, 0x18, 0xcc, 0x5b, 0x84, 0xf5, 0xf3, 0x6b, 0x74, 0xc4, 0x72, 0x74, 0xe1, 0xe3 +.byte 0x8b, 0xa0, 0x4a, 0xbd, 0x8d, 0x66, 0x2f, 0xea, 0xad, 0x35, 0xda, 0x20, 0xd3, 0x88, 0x82, 0x61 +.byte 0xf0, 0x12, 0x22, 0xb6, 0xbc, 0xd0, 0xd5, 0xa4, 0xec, 0xaf, 0x54, 0x88, 0x25, 0x24, 0x3c, 0xa7 +.byte 0x6d, 0xb1, 0x72, 0x29, 0x3f, 0x3e, 0x57, 0xa6, 0x7f, 0x55, 0xaf, 0x6e, 0x26, 0xc6, 0xfe, 0xe7 +.byte 0xcc, 0x40, 0x5c, 0x51, 0x44, 0x81, 0x0a, 0x78, 0xde, 0x4a, 0xce, 0x55, 0xbf, 0x1d, 0xd5, 0xd9 +.byte 0xb7, 0x56, 0xef, 0xf0, 0x76, 0xff, 0x0b, 0x79, 0xb5, 0xaf, 0xbd, 0xfb, 0xa9, 0x69, 0x91, 0x46 +.byte 0x97, 0x68, 0x80, 0x14, 0x36, 0x1d, 0xb3, 0x7f, 0xbb, 0x29, 0x98, 0x36, 0xa5, 0x20, 0xfa, 0x82 +.byte 0x60, 0x62, 0x33, 0xa4, 0xec, 0xd6, 0xba, 0x07, 0xa7, 0x6e, 0xc5, 0xcf, 0x14, 0xa6, 0xe7, 0xd6 +.byte 0x92, 0x34, 0xd8, 0x81, 0xf5, 0xfc, 0x1d, 0x5d, 0xaa, 0x5c, 0x1e, 0xf6, 0xa3, 0x4d, 0x3b, 0xb8 +.byte 0xf7, 0x39, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5c, 0x02, 0x26, 0x30, 0x5a, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4c, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x15, 0x53, 0x74, 0x61, 0x61, 0x74, 0x20, 0x64, 0x65, 0x72, 0x20, 0x4e +.byte 0x65, 0x64, 0x65, 0x72, 0x6c, 0x61, 0x6e, 0x64, 0x65, 0x6e, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x22, 0x53, 0x74, 0x61, 0x61, 0x74, 0x20, 0x64, 0x65, 0x72, 0x20, 0x4e +.byte 0x65, 0x64, 0x65, 0x72, 0x6c, 0x61, 0x6e, 0x64, 0x65, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbe, 0x32, 0xa2, 0x54, 0x0f, 0x70, 0xfb, 0x2c +.byte 0x5c, 0x59, 0xeb, 0x6c, 0xc4, 0xa4, 0x51, 0xe8, 0x85, 0x2a, 0xb3, 0xcc, 0x4a, 0x34, 0xf2, 0xb0 +.byte 0x5f, 0xf3, 0x0e, 0xc7, 0x1c, 0x3d, 0x53, 0x1e, 0x88, 0x08, 0x68, 0xd8, 0x6f, 0x3d, 0xad, 0xc2 +.byte 0x9e, 0xcc, 0x82, 0x67, 0x07, 0x27, 0x87, 0x68, 0x71, 0x3a, 0x9f, 0x75, 0x96, 0x22, 0x46, 0x05 +.byte 0xb0, 0xed, 0xad, 0xc7, 0x5b, 0x9e, 0x2a, 0xde, 0x9c, 0xfc, 0x3a, 0xc6, 0x95, 0xa7, 0xf5, 0x17 +.byte 0x67, 0x18, 0xe7, 0x2f, 0x49, 0x08, 0x0c, 0x5c, 0xcf, 0xe6, 0xcc, 0x34, 0xed, 0x78, 0xfb, 0x50 +.byte 0xb1, 0xdc, 0x6b, 0x32, 0xf0, 0xa2, 0xfe, 0xb6, 0x3c, 0xe4, 0xec, 0x5a, 0x97, 0xc7, 0x3f, 0x1e +.byte 0x70, 0x08, 0x30, 0xa0, 0xdc, 0xc5, 0xb3, 0x6d, 0x6f, 0xd0, 0x82, 0x72, 0x11, 0xab, 0xd2, 0x81 +.byte 0x68, 0x59, 0x82, 0x17, 0xb7, 0x78, 0x92, 0x60, 0xfa, 0xcc, 0xde, 0x3f, 0x84, 0xeb, 0x8d, 0x38 +.byte 0x33, 0x90, 0x0a, 0x72, 0x23, 0xfa, 0x35, 0xcc, 0x26, 0x71, 0x31, 0xd1, 0x72, 0x28, 0x92, 0xd9 +.byte 0x5b, 0x23, 0x6d, 0x66, 0xb5, 0x6d, 0x07, 0x42, 0xeb, 0xa6, 0x33, 0xce, 0x92, 0xdb, 0xc0, 0xf6 +.byte 0x6c, 0x63, 0x78, 0xcd, 0xca, 0x4e, 0x3d, 0xb5, 0xe5, 0x52, 0x9b, 0xf1, 0xbe, 0x3b, 0xe6, 0x54 +.byte 0x60, 0xb0, 0x66, 0x1e, 0x09, 0xab, 0x07, 0xfe, 0x54, 0x89, 0x11, 0x42, 0xd1, 0xf7, 0x24, 0xba +.byte 0x60, 0x78, 0x1a, 0x98, 0xf7, 0xc9, 0x11, 0xfd, 0x16, 0xc1, 0x35, 0x1a, 0x54, 0x75, 0xef, 0x43 +.byte 0xd3, 0xe5, 0xae, 0x4e, 0xce, 0xe7, 0x7b, 0xc3, 0xc6, 0x4e, 0x61, 0x51, 0x4b, 0xab, 0x9a, 0x45 +.byte 0x4b, 0xa1, 0x1f, 0x41, 0xbd, 0x48, 0x53, 0x15, 0x71, 0x64, 0x0b, 0x86, 0xb3, 0xe5, 0x2e, 0xbe +.byte 0xce, 0xa4, 0x1b, 0xc1, 0x29, 0x84, 0xa2, 0xb5, 0xcb, 0x08, 0x23, 0x76, 0x43, 0x22, 0x24, 0x1f +.byte 0x17, 0x04, 0xd4, 0x6e, 0x9c, 0xc6, 0xfc, 0x7f, 0x2b, 0x66, 0x1a, 0xec, 0x8a, 0xe5, 0xd6, 0xcf +.byte 0x4d, 0xf5, 0x63, 0x09, 0xb7, 0x15, 0x39, 0xd6, 0x7b, 0xac, 0xeb, 0xe3, 0x7c, 0xe9, 0x4e, 0xfc +.byte 0x75, 0x42, 0xc8, 0xed, 0x58, 0x95, 0x0c, 0x06, 0x42, 0xa2, 0x9c, 0xf7, 0xe4, 0x70, 0xb3, 0xdf +.byte 0x72, 0x6f, 0x5a, 0x37, 0x40, 0x89, 0xd8, 0x85, 0xa4, 0xd7, 0xf1, 0x0b, 0xde, 0x43, 0x19, 0xd4 +.byte 0x4a, 0x58, 0x2c, 0x8c, 0x8a, 0x39, 0x9e, 0xbf, 0x84, 0x87, 0xf1, 0x16, 0x3b, 0x36, 0x0c, 0xe9 +.byte 0xd3, 0xb4, 0xca, 0x6c, 0x19, 0x41, 0x52, 0x09, 0xa1, 0x1d, 0xb0, 0x6a, 0xbf, 0x82, 0xef, 0x70 +.byte 0x51, 0x21, 0x32, 0xdc, 0x05, 0x76, 0x8c, 0xcb, 0xf7, 0x64, 0xe4, 0x03, 0x50, 0xaf, 0x8c, 0x91 +.byte 0x67, 0xab, 0xc5, 0xf2, 0xee, 0x58, 0xd8, 0xde, 0xbe, 0xf7, 0xe7, 0x31, 0xcf, 0x6c, 0xc9, 0x3b +.byte 0x71, 0xc1, 0xd5, 0x88, 0xb5, 0x65, 0xbc, 0xc0, 0xe8, 0x17, 0x17, 0x07, 0x12, 0xb5, 0x5c, 0xd2 +.byte 0xab, 0x20, 0x93, 0xb4, 0xe6, 0x82, 0x83, 0x70, 0x36, 0xc5, 0xcd, 0xa3, 0x8d, 0xad, 0x8b, 0xec +.byte 0xa3, 0xc1, 0x43, 0x87, 0xe6, 0x43, 0xe2, 0x34, 0xbe, 0x95, 0x8b, 0x35, 0xed, 0x07, 0x39, 0xda +.byte 0xa8, 0x1d, 0x7a, 0x9f, 0x36, 0x9e, 0x12, 0xb0, 0x0c, 0x65, 0x12, 0x90, 0x15, 0x60, 0xd9, 0x26 +.byte 0x40, 0x44, 0xe3, 0x56, 0x60, 0xa5, 0x10, 0xd4, 0x6a, 0x3c, 0xfd, 0x41, 0xdc, 0x0e, 0x5a, 0x47 +.byte 0xb6, 0xef, 0x97, 0x61, 0x75, 0x4f, 0xd9, 0xfe, 0xc7, 0xb2, 0x1d, 0xd4, 0xed, 0x5d, 0x49, 0xb3 +.byte 0xa9, 0x6a, 0xcb, 0x66, 0x84, 0x13, 0xd5, 0x5c, 0xa0, 0xdc, 0xdf, 0x6e, 0x77, 0x06, 0xd1, 0x71 +.byte 0x75, 0xc8, 0x57, 0x6f, 0xaf, 0x0f, 0x77, 0x5b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5f, 0x01 +.byte 0x26, 0x30, 0x5d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50 +.byte 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d +.byte 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43 +.byte 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75 +.byte 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x32 +.byte 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01 +.byte 0x00, 0xd0, 0x15, 0x39, 0x52, 0xb1, 0x52, 0xb3, 0xba, 0xc5, 0x59, 0x82, 0xc4, 0x5d, 0x52, 0xae +.byte 0x3a, 0x43, 0x65, 0x80, 0x4b, 0xc7, 0xf2, 0x96, 0xbc, 0xdb, 0x36, 0x97, 0xd6, 0xa6, 0x64, 0x8c +.byte 0xa8, 0x5e, 0xf0, 0xe3, 0x0a, 0x1c, 0xf7, 0xdf, 0x97, 0x3d, 0x4b, 0xae, 0xf6, 0x5d, 0xec, 0x21 +.byte 0xb5, 0x41, 0xab, 0xcd, 0xb9, 0x7e, 0x76, 0x9f, 0xbe, 0xf9, 0x3e, 0x36, 0x34, 0xa0, 0x3b, 0xc1 +.byte 0xf6, 0x31, 0x11, 0x45, 0x74, 0x93, 0x3d, 0x57, 0x80, 0xc5, 0xf9, 0x89, 0x99, 0xca, 0xe5, 0xab +.byte 0x6a, 0xd4, 0xb5, 0xda, 0x41, 0x90, 0x10, 0xc1, 0xd6, 0xd6, 0x42, 0x89, 0xc2, 0xbf, 0xf4, 0x38 +.byte 0x12, 0x95, 0x4c, 0x54, 0x05, 0xf7, 0x36, 0xe4, 0x45, 0x83, 0x7b, 0x14, 0x65, 0xd6, 0xdc, 0x0c +.byte 0x4d, 0xd1, 0xde, 0x7e, 0x0c, 0xab, 0x3b, 0xc4, 0x15, 0xbe, 0x3a, 0x56, 0xa6, 0x5a, 0x6f, 0x76 +.byte 0x69, 0x52, 0xa9, 0x7a, 0xb9, 0xc8, 0xeb, 0x6a, 0x9a, 0x5d, 0x52, 0xd0, 0x2d, 0x0a, 0x6b, 0x35 +.byte 0x16, 0x09, 0x10, 0x84, 0xd0, 0x6a, 0xca, 0x3a, 0x06, 0x00, 0x37, 0x47, 0xe4, 0x7e, 0x57, 0x4f +.byte 0x3f, 0x8b, 0xeb, 0x67, 0xb8, 0x88, 0xaa, 0xc5, 0xbe, 0x53, 0x55, 0xb2, 0x91, 0xc4, 0x7d, 0xb9 +.byte 0xb0, 0x85, 0x19, 0x06, 0x78, 0x2e, 0xdb, 0x61, 0x1a, 0xfa, 0x85, 0xf5, 0x4a, 0x91, 0xa1, 0xe7 +.byte 0x16, 0xd5, 0x8e, 0xa2, 0x39, 0xdf, 0x94, 0xb8, 0x70, 0x1f, 0x28, 0x3f, 0x8b, 0xfc, 0x40, 0x5e +.byte 0x63, 0x83, 0x3c, 0x83, 0x2a, 0x1a, 0x99, 0x6b, 0xcf, 0xde, 0x59, 0x6a, 0x3b, 0xfc, 0x6f, 0x16 +.byte 0xd7, 0x1f, 0xfd, 0x4a, 0x10, 0xeb, 0x4e, 0x82, 0x16, 0x3a, 0xac, 0x27, 0x0c, 0x53, 0xf1, 0xad +.byte 0xd5, 0x24, 0xb0, 0x6b, 0x03, 0x50, 0xc1, 0x2d, 0x3c, 0x16, 0xdd, 0x44, 0x34, 0x27, 0x1a, 0x75 +.byte 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x60, 0x02, 0x26, 0x30, 0x5e, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75, 0x6e, 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c +.byte 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x2a +.byte 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x21, 0x65, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xe1, 0x25, 0x0f, 0xee, 0x8d +.byte 0xdb, 0x88, 0x33, 0x75, 0x67, 0xcd, 0xad, 0x1f, 0x7d, 0x3a, 0x4e, 0x6d, 0x9d, 0xd3, 0x2f, 0x14 +.byte 0xf3, 0x63, 0x74, 0xcb, 0x01, 0x21, 0x6a, 0x37, 0xea, 0x84, 0x50, 0x07, 0x4b, 0x26, 0x5b, 0x09 +.byte 0x43, 0x6c, 0x21, 0x9e, 0x6a, 0xc8, 0xd5, 0x03, 0xf5, 0x60, 0x69, 0x8f, 0xcc, 0xf0, 0x22, 0xe4 +.byte 0x1f, 0xe7, 0xf7, 0x6a, 0x22, 0x31, 0xb7, 0x2c, 0x15, 0xf2, 0xe0, 0xfe, 0x00, 0x6a, 0x43, 0xff +.byte 0x87, 0x65, 0xc6, 0xb5, 0x1a, 0xc1, 0xa7, 0x4c, 0x6d, 0x22, 0x70, 0x21, 0x8a, 0x31, 0xf2, 0x97 +.byte 0x74, 0x89, 0x09, 0x12, 0x26, 0x1c, 0x9e, 0xca, 0xd9, 0x12, 0xa2, 0x95, 0x3c, 0xda, 0xe9, 0x67 +.byte 0xbf, 0x08, 0xa0, 0x64, 0xe3, 0xd6, 0x42, 0xb7, 0x45, 0xef, 0x97, 0xf4, 0xf6, 0xf5, 0xd7, 0xb5 +.byte 0x4a, 0x15, 0x02, 0x58, 0x7d, 0x98, 0x58, 0x4b, 0x60, 0xbc, 0xcd, 0xd7, 0x0d, 0x9a, 0x13, 0x33 +.byte 0x53, 0xd1, 0x61, 0xf9, 0x7a, 0xd5, 0xd7, 0x78, 0xb3, 0x9a, 0x33, 0xf7, 0x00, 0x86, 0xce, 0x1d +.byte 0x4d, 0x94, 0x38, 0xaf, 0xa8, 0xec, 0x78, 0x51, 0x70, 0x8a, 0x5c, 0x10, 0x83, 0x51, 0x21, 0xf7 +.byte 0x11, 0x3d, 0x34, 0x86, 0x5e, 0xe5, 0x48, 0xcd, 0x97, 0x81, 0x82, 0x35, 0x4c, 0x19, 0xec, 0x65 +.byte 0xf6, 0x6b, 0xc5, 0x05, 0xa1, 0xee, 0x47, 0x13, 0xd6, 0xb3, 0x21, 0x27, 0x94, 0x10, 0x0a, 0xd9 +.byte 0x24, 0x3b, 0xba, 0xbe, 0x44, 0x13, 0x46, 0x30, 0x3f, 0x97, 0x3c, 0xd8, 0xd7, 0xd7, 0x6a, 0xee +.byte 0x3b, 0x38, 0xe3, 0x2b, 0xd4, 0x97, 0x0e, 0xb9, 0x1b, 0xe7, 0x07, 0x49, 0x7f, 0x37, 0x2a, 0xf9 +.byte 0x77, 0x78, 0xcf, 0x54, 0xed, 0x5b, 0x46, 0x9d, 0xa3, 0x80, 0x0e, 0x91, 0x43, 0xc1, 0xd6, 0x5b +.byte 0x5f, 0x14, 0xba, 0x9f, 0xa6, 0x8d, 0x24, 0x47, 0x40, 0x59, 0xbf, 0x72, 0x38, 0xb2, 0x36, 0x6c +.byte 0x37, 0xff, 0x99, 0xd1, 0x5d, 0x0e, 0x59, 0x0a, 0xab, 0x69, 0xf7, 0xc0, 0xb2, 0x04, 0x45, 0x7a +.byte 0x54, 0x00, 0xae, 0xbe, 0x53, 0xf6, 0xb5, 0xe7, 0xe1, 0xf8, 0x3c, 0xa3, 0x31, 0xd2, 0xa9, 0xfe +.byte 0x21, 0x52, 0x64, 0xc5, 0xa6, 0x67, 0xf0, 0x75, 0x07, 0x06, 0x94, 0x14, 0x81, 0x55, 0xc6, 0x27 +.byte 0xe4, 0x01, 0x8f, 0x17, 0xc1, 0x6a, 0x71, 0xd7, 0xbe, 0x4b, 0xfb, 0x94, 0x58, 0x7d, 0x7e, 0x11 +.byte 0x33, 0xb1, 0x42, 0xf7, 0x62, 0x6c, 0x18, 0xd6, 0xcf, 0x09, 0x68, 0x3e, 0x7f, 0x6c, 0xf6, 0x1e +.byte 0x8f, 0x62, 0xad, 0xa5, 0x63, 0xdb, 0x09, 0xa7, 0x1f, 0x22, 0x42, 0x41, 0x1e, 0x6f, 0x99, 0x8a +.byte 0x3e, 0xd7, 0xf9, 0x3f, 0x40, 0x7a, 0x79, 0xb0, 0xa5, 0x01, 0x92, 0xd2, 0x9d, 0x3d, 0x08, 0x15 +.byte 0xa5, 0x10, 0x01, 0x2d, 0xb3, 0x32, 0x76, 0xa8, 0x95, 0x0d, 0xb3, 0x7a, 0x9a, 0xfb, 0x07, 0x10 +.byte 0x78, 0x11, 0x6f, 0xe1, 0x8f, 0xc7, 0xba, 0x0f, 0x25, 0x1a, 0x74, 0x2a, 0xe5, 0x1c, 0x98, 0x41 +.byte 0x99, 0xdf, 0x21, 0x87, 0xe8, 0x95, 0x06, 0x6a, 0x0a, 0xb3, 0x6a, 0x47, 0x76, 0x65, 0xf6, 0x3a +.byte 0xcf, 0x8f, 0x62, 0x17, 0x19, 0x7b, 0x0a, 0x28, 0xcd, 0x1a, 0xd2, 0x83, 0x1e, 0x21, 0xc7, 0x2c +.byte 0xbf, 0xbe, 0xff, 0x61, 0x68, 0xb7, 0x67, 0x1b, 0xbb, 0x78, 0x4d, 0x8d, 0xce, 0x67, 0xe5, 0xe4 +.byte 0xc1, 0x8e, 0xb7, 0x23, 0x66, 0xe2, 0x9d, 0x90, 0x75, 0x34, 0x98, 0xa9, 0x36, 0x2b, 0x8a, 0x9a +.byte 0x94, 0xb9, 0x9d, 0xec, 0xcc, 0x8a, 0xb1, 0xf8, 0x25, 0x89, 0x5c, 0x5a, 0xb6, 0x2f, 0x8c, 0x1f +.byte 0x6d, 0x79, 0x24, 0xa7, 0x52, 0x68, 0xc3, 0x84, 0x35, 0xe2, 0x66, 0x8d, 0x63, 0x0e, 0x25, 0x4d +.byte 0xd5, 0x19, 0xb2, 0xe6, 0x79, 0x37, 0xa7, 0x22, 0x9d, 0x54, 0x31, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x61, 0x01, 0x26, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x54, 0x41 +.byte 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x0c, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x21, 0x54, 0x57, 0x43, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb0, 0x7e, 0x72, 0xb8, 0xa4, 0x03, 0x94, 0xe6, 0xa7, 0xde +.byte 0x09, 0x38, 0x91, 0x4a, 0x11, 0x40, 0x87, 0xa7, 0x7c, 0x59, 0x64, 0x14, 0x7b, 0xb5, 0x11, 0x10 +.byte 0xdd, 0xfe, 0xbf, 0xd5, 0xc0, 0xbb, 0x56, 0xe2, 0x85, 0x25, 0xf4, 0x35, 0x72, 0x0f, 0xf8, 0x53 +.byte 0xd0, 0x41, 0xe1, 0x44, 0x01, 0xc2, 0xb4, 0x1c, 0xc3, 0x31, 0x42, 0x16, 0x47, 0x85, 0x33, 0x22 +.byte 0x76, 0xb2, 0x0a, 0x6f, 0x0f, 0xe5, 0x25, 0x50, 0x4f, 0x85, 0x86, 0xbe, 0xbf, 0x98, 0x2e, 0x10 +.byte 0x67, 0x1e, 0xbe, 0x11, 0x05, 0x86, 0x05, 0x90, 0xc4, 0x59, 0xd0, 0x7c, 0x78, 0x10, 0xb0, 0x80 +.byte 0x5c, 0xb7, 0xe1, 0xc7, 0x2b, 0x75, 0xcb, 0x7c, 0x9f, 0xae, 0xb5, 0xd1, 0x9d, 0x23, 0x37, 0x63 +.byte 0xa7, 0xdc, 0x42, 0xa2, 0x2d, 0x92, 0x04, 0x1b, 0x50, 0xc1, 0x7b, 0xb8, 0x3e, 0x1b, 0xc9, 0x56 +.byte 0x04, 0x8b, 0x2f, 0x52, 0x9b, 0xad, 0xa9, 0x56, 0xe9, 0xc1, 0xff, 0xad, 0xa9, 0x58, 0x87, 0x30 +.byte 0xb6, 0x81, 0xf7, 0x97, 0x45, 0xfc, 0x19, 0x57, 0x3b, 0x2b, 0x6f, 0xe4, 0x47, 0xf4, 0x99, 0x45 +.byte 0xfe, 0x1d, 0xf1, 0xf8, 0x97, 0xa3, 0x88, 0x1d, 0x37, 0x1c, 0x5c, 0x8f, 0xe0, 0x76, 0x25, 0x9a +.byte 0x50, 0xf8, 0xa0, 0x54, 0xff, 0x44, 0x90, 0x76, 0x23, 0xd2, 0x32, 0xc6, 0xc3, 0xab, 0x06, 0xbf +.byte 0xfc, 0xfb, 0xbf, 0xf3, 0xad, 0x7d, 0x92, 0x62, 0x02, 0x5b, 0x29, 0xd3, 0x35, 0xa3, 0x93, 0x9a +.byte 0x43, 0x64, 0x60, 0x5d, 0xb2, 0xfa, 0x32, 0xff, 0x3b, 0x04, 0xaf, 0x4d, 0x40, 0x6a, 0xf9, 0xc7 +.byte 0xe3, 0xef, 0x23, 0xfd, 0x6b, 0xcb, 0xe5, 0x0f, 0x8b, 0x38, 0x0d, 0xee, 0x0a, 0xfc, 0xfe, 0x0f +.byte 0x98, 0x9f, 0x30, 0x31, 0xdd, 0x6c, 0x52, 0x65, 0xf9, 0x8b, 0x81, 0xbe, 0x22, 0xe1, 0x1c, 0x58 +.byte 0x03, 0xba, 0x91, 0x1b, 0x89, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x01, 0x26, 0x30 +.byte 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15 +.byte 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 +.byte 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10 +.byte 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d +.byte 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43 +.byte 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xe2, 0x3b, 0xe1, 0x11, 0x72, 0xde, 0xa8, 0xa4, 0xd3, 0xa3, 0x57, 0xaa, 0x50 +.byte 0xa2, 0x8f, 0x0b, 0x77, 0x90, 0xc9, 0xa2, 0xa5, 0xee, 0x12, 0xce, 0x96, 0x5b, 0x01, 0x09, 0x20 +.byte 0xcc, 0x01, 0x93, 0xa7, 0x4e, 0x30, 0xb7, 0x53, 0xf7, 0x43, 0xc4, 0x69, 0x00, 0x57, 0x9d, 0xe2 +.byte 0x8d, 0x22, 0xdd, 0x87, 0x06, 0x40, 0x00, 0x81, 0x09, 0xce, 0xce, 0x1b, 0x83, 0xbf, 0xdf, 0xcd +.byte 0x3b, 0x71, 0x46, 0xe2, 0xd6, 0x66, 0xc7, 0x05, 0xb3, 0x76, 0x27, 0x16, 0x8f, 0x7b, 0x9e, 0x1e +.byte 0x95, 0x7d, 0xee, 0xb7, 0x48, 0xa3, 0x08, 0xda, 0xd6, 0xaf, 0x7a, 0x0c, 0x39, 0x06, 0x65, 0x7f +.byte 0x4a, 0x5d, 0x1f, 0xbc, 0x17, 0xf8, 0xab, 0xbe, 0xee, 0x28, 0xd7, 0x74, 0x7f, 0x7a, 0x78, 0x99 +.byte 0x59, 0x85, 0x68, 0x6e, 0x5c, 0x23, 0x32, 0x4b, 0xbf, 0x4e, 0xc0, 0xe8, 0x5a, 0x6d, 0xe3, 0x70 +.byte 0xbf, 0x77, 0x10, 0xbf, 0xfc, 0x01, 0xf6, 0x85, 0xd9, 0xa8, 0x44, 0x10, 0x58, 0x32, 0xa9, 0x75 +.byte 0x18, 0xd5, 0xd1, 0xa2, 0xbe, 0x47, 0xe2, 0x27, 0x6a, 0xf4, 0x9a, 0x33, 0xf8, 0x49, 0x08, 0x60 +.byte 0x8b, 0xd4, 0x5f, 0xb4, 0x3a, 0x84, 0xbf, 0xa1, 0xaa, 0x4a, 0x4c, 0x7d, 0x3e, 0xcf, 0x4f, 0x5f +.byte 0x6c, 0x76, 0x5e, 0xa0, 0x4b, 0x37, 0x91, 0x9e, 0xdc, 0x22, 0xe6, 0x6d, 0xce, 0x14, 0x1a, 0x8e +.byte 0x6a, 0xcb, 0xfe, 0xcd, 0xb3, 0x14, 0x64, 0x17, 0xc7, 0x5b, 0x29, 0x9e, 0x32, 0xbf, 0xf2, 0xee +.byte 0xfa, 0xd3, 0x0b, 0x42, 0xd4, 0xab, 0xb7, 0x41, 0x32, 0xda, 0x0c, 0xd4, 0xef, 0xf8, 0x81, 0xd5 +.byte 0xbb, 0x8d, 0x58, 0x3f, 0xb5, 0x1b, 0xe8, 0x49, 0x28, 0xa2, 0x70, 0xda, 0x31, 0x04, 0xdd, 0xf7 +.byte 0xb2, 0x16, 0xf2, 0x4c, 0x0a, 0x4e, 0x07, 0xa8, 0xed, 0x4a, 0x3d, 0x5e, 0xb5, 0x7f, 0xa3, 0x90 +.byte 0xc3, 0xaf, 0x27, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x01, 0x26, 0x30, 0x61, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49 +.byte 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77 +.byte 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30 +.byte 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74 +.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x32, 0x30 +.byte 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00 +.byte 0xbb, 0x37, 0xcd, 0x34, 0xdc, 0x7b, 0x6b, 0xc9, 0xb2, 0x68, 0x90, 0xad, 0x4a, 0x75, 0xff, 0x46 +.byte 0xba, 0x21, 0x0a, 0x08, 0x8d, 0xf5, 0x19, 0x54, 0xc9, 0xfb, 0x88, 0xdb, 0xf3, 0xae, 0xf2, 0x3a +.byte 0x89, 0x91, 0x3c, 0x7a, 0xe6, 0xab, 0x06, 0x1a, 0x6b, 0xcf, 0xac, 0x2d, 0xe8, 0x5e, 0x09, 0x24 +.byte 0x44, 0xba, 0x62, 0x9a, 0x7e, 0xd6, 0xa3, 0xa8, 0x7e, 0xe0, 0x54, 0x75, 0x20, 0x05, 0xac, 0x50 +.byte 0xb7, 0x9c, 0x63, 0x1a, 0x6c, 0x30, 0xdc, 0xda, 0x1f, 0x19, 0xb1, 0xd7, 0x1e, 0xde, 0xfd, 0xd7 +.byte 0xe0, 0xcb, 0x94, 0x83, 0x37, 0xae, 0xec, 0x1f, 0x43, 0x4e, 0xdd, 0x7b, 0x2c, 0xd2, 0xbd, 0x2e +.byte 0xa5, 0x2f, 0xe4, 0xa9, 0xb8, 0xad, 0x3a, 0xd4, 0x99, 0xa4, 0xb6, 0x25, 0xe9, 0x9b, 0x6b, 0x00 +.byte 0x60, 0x92, 0x60, 0xff, 0x4f, 0x21, 0x49, 0x18, 0xf7, 0x67, 0x90, 0xab, 0x61, 0x06, 0x9c, 0x8f +.byte 0xf2, 0xba, 0xe9, 0xb4, 0xe9, 0x92, 0x32, 0x6b, 0xb5, 0xf3, 0x57, 0xe8, 0x5d, 0x1b, 0xcd, 0x8c +.byte 0x1d, 0xab, 0x95, 0x04, 0x95, 0x49, 0xf3, 0x35, 0x2d, 0x96, 0xe3, 0x49, 0x6d, 0xdd, 0x77, 0xe3 +.byte 0xfb, 0x49, 0x4b, 0xb4, 0xac, 0x55, 0x07, 0xa9, 0x8f, 0x95, 0xb3, 0xb4, 0x23, 0xbb, 0x4c, 0x6d +.byte 0x45, 0xf0, 0xf6, 0xa9, 0xb2, 0x95, 0x30, 0xb4, 0xfd, 0x4c, 0x55, 0x8c, 0x27, 0x4a, 0x57, 0x14 +.byte 0x7c, 0x82, 0x9d, 0xcd, 0x73, 0x92, 0xd3, 0x16, 0x4a, 0x06, 0x0c, 0x8c, 0x50, 0xd1, 0x8f, 0x1e +.byte 0x09, 0xbe, 0x17, 0xa1, 0xe6, 0x21, 0xca, 0xfd, 0x83, 0xe5, 0x10, 0xbc, 0x83, 0xa5, 0x0a, 0xc4 +.byte 0x67, 0x28, 0xf6, 0x73, 0x14, 0x14, 0x3d, 0x46, 0x76, 0xc3, 0x87, 0x14, 0x89, 0x21, 0x34, 0x4d +.byte 0xaf, 0x0f, 0x45, 0x0c, 0xa6, 0x49, 0xa1, 0xba, 0xbb, 0x9c, 0xc5, 0xb1, 0x33, 0x83, 0x29, 0x85 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x00, 0x78, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31 +.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69 +.byte 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10 +.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 +.byte 0x03, 0x62, 0x00, 0x04, 0xdd, 0xa7, 0xd9, 0xbb, 0x8a, 0xb8, 0x0b, 0xfb, 0x0b, 0x7f, 0x21, 0xd2 +.byte 0xf0, 0xbe, 0xbe, 0x73, 0xf3, 0x33, 0x5d, 0x1a, 0xbc, 0x34, 0xea, 0xde, 0xc6, 0x9b, 0xbc, 0xd0 +.byte 0x95, 0xf6, 0xf0, 0xcc, 0xd0, 0x0b, 0xba, 0x61, 0x5b, 0x51, 0x46, 0x7e, 0x9e, 0x2d, 0x9f, 0xee +.byte 0x8e, 0x63, 0x0c, 0x17, 0xec, 0x07, 0x70, 0xf5, 0xcf, 0x84, 0x2e, 0x40, 0x83, 0x9c, 0xe8, 0x3f +.byte 0x41, 0x6d, 0x3b, 0xad, 0xd3, 0xa4, 0x14, 0x59, 0x36, 0x78, 0x9d, 0x03, 0x43, 0xee, 0x10, 0x13 +.byte 0x6c, 0x72, 0xde, 0xae, 0x88, 0xa7, 0xa1, 0x6b, 0xb5, 0x43, 0xce, 0x67, 0xdc, 0x23, 0xff, 0x03 +.byte 0x1c, 0xa3, 0xe2, 0x3e, 0x00, 0x64, 0x02, 0x26, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x29, 0x47, 0x55, 0x41, 0x4e, 0x47, 0x20, 0x44, 0x4f, 0x4e, 0x47, 0x20, 0x43, 0x45, 0x52 +.byte 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49 +.byte 0x54, 0x59, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x47, 0x44, 0x43, 0x41, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x41, 0x55, 0x54, 0x48, 0x20, 0x52, 0x35, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd9, 0xa3, 0x16 +.byte 0xf0, 0xc8, 0x74, 0x74, 0x77, 0x9b, 0xef, 0x33, 0x0d, 0x3b, 0x06, 0x7e, 0x55, 0xfc, 0xb5, 0x60 +.byte 0x8f, 0x76, 0x86, 0x12, 0x42, 0x7d, 0x56, 0x66, 0x3e, 0x88, 0x82, 0xed, 0x72, 0x63, 0x0e, 0x9e +.byte 0x8b, 0xdd, 0x34, 0x2c, 0x02, 0x51, 0x51, 0xc3, 0x19, 0xfd, 0x59, 0x54, 0x84, 0xc9, 0xf1, 0x6b +.byte 0xb3, 0x4c, 0xb0, 0xe9, 0xe8, 0x46, 0x5d, 0x38, 0xc6, 0xa2, 0xa7, 0x2e, 0x11, 0x57, 0xba, 0x82 +.byte 0x15, 0xa2, 0x9c, 0x8f, 0x6d, 0xb0, 0x99, 0x4a, 0x0a, 0xf2, 0xeb, 0x89, 0x70, 0x63, 0x4e, 0x79 +.byte 0xc4, 0xb7, 0x5b, 0xbd, 0xa2, 0x5d, 0xb1, 0xf2, 0x41, 0x02, 0x2b, 0xad, 0xa9, 0x3a, 0xa3, 0xec +.byte 0x79, 0x0a, 0xec, 0x5f, 0x3a, 0xe3, 0xfd, 0xef, 0x80, 0x3c, 0xad, 0x34, 0x9b, 0x1a, 0xab, 0x88 +.byte 0x26, 0x7b, 0x56, 0xa2, 0x82, 0x86, 0x1f, 0xeb, 0x35, 0x89, 0x83, 0x7f, 0x5f, 0xae, 0x29, 0x4e +.byte 0x3d, 0xb6, 0x6e, 0xec, 0xae, 0xc1, 0xf0, 0x27, 0x9b, 0xae, 0xe3, 0xf4, 0xec, 0xef, 0xae, 0x7f +.byte 0xf7, 0x86, 0x3d, 0x72, 0x7a, 0xeb, 0xa5, 0xfb, 0x59, 0x4e, 0xa7, 0xeb, 0x95, 0x8c, 0x22, 0x39 +.byte 0x79, 0xe1, 0x2d, 0x08, 0x8f, 0xcc, 0xbc, 0x91, 0xb8, 0x41, 0xf7, 0x14, 0xc1, 0x23, 0xa9, 0xc3 +.byte 0xad, 0x9a, 0x45, 0x44, 0xb3, 0xb2, 0xd7, 0x2c, 0xcd, 0xc6, 0x29, 0xe2, 0x50, 0x10, 0xae, 0x5c +.byte 0xcb, 0x82, 0x8e, 0x17, 0x18, 0x36, 0x7d, 0x97, 0xe6, 0x88, 0x9a, 0xb0, 0x4d, 0x34, 0x09, 0xf4 +.byte 0x2c, 0xb9, 0x5a, 0x66, 0x2a, 0xb0, 0x17, 0x9b, 0x9e, 0x1e, 0x76, 0x9d, 0x4a, 0x66, 0x31, 0x41 +.byte 0xdf, 0x3f, 0xfb, 0xc5, 0x06, 0xef, 0x1b, 0xb6, 0x7e, 0x1a, 0x46, 0x36, 0xf7, 0x64, 0x63, 0x3b +.byte 0xe3, 0x39, 0x18, 0x23, 0xe7, 0x67, 0x75, 0x14, 0xd5, 0x75, 0x57, 0x92, 0x37, 0xbd, 0xbe, 0x6a +.byte 0x1b, 0x26, 0x50, 0xf2, 0x36, 0x26, 0x06, 0x90, 0xc5, 0x70, 0x01, 0x64, 0x6d, 0x76, 0x66, 0xe1 +.byte 0x91, 0xdb, 0x6e, 0x07, 0xc0, 0x61, 0x80, 0x2e, 0xb2, 0x2e, 0x2f, 0x8c, 0x70, 0xa7, 0xd1, 0x3b +.byte 0x3c, 0xb3, 0x91, 0xe4, 0x6e, 0xb6, 0xc4, 0x3b, 0x70, 0xf2, 0x6c, 0x92, 0x97, 0x09, 0xcd, 0x47 +.byte 0x7d, 0x18, 0xc0, 0xf3, 0xbb, 0x9e, 0x0f, 0xd6, 0x8b, 0xae, 0x07, 0xb6, 0x5a, 0x0f, 0xce, 0x0b +.byte 0x0c, 0x47, 0xa7, 0xe5, 0x3e, 0xb8, 0xbd, 0x7d, 0xc7, 0x9b, 0x35, 0xa0, 0x61, 0x97, 0x3a, 0x41 +.byte 0x75, 0x17, 0xcc, 0x2b, 0x96, 0x77, 0x2a, 0x92, 0x21, 0x1e, 0xd9, 0x95, 0x76, 0x20, 0x67, 0x68 +.byte 0xcf, 0x0d, 0xbd, 0xdf, 0xd6, 0x1f, 0x09, 0x6a, 0x9a, 0xe2, 0xcc, 0x73, 0x71, 0xa4, 0x2f, 0x7d +.byte 0x12, 0x80, 0xb7, 0x53, 0x30, 0x46, 0x5e, 0x4b, 0x54, 0x99, 0x0f, 0x67, 0xc9, 0xa5, 0xc8, 0xf2 +.byte 0x20, 0xc1, 0x82, 0xec, 0x9d, 0x11, 0xdf, 0xc2, 0x02, 0xfb, 0x1a, 0x3b, 0xd1, 0xed, 0x20, 0x9a +.byte 0xef, 0x65, 0x64, 0x92, 0x10, 0x0d, 0x2a, 0xe2, 0xde, 0x70, 0xf1, 0x18, 0x67, 0x82, 0x8c, 0x61 +.byte 0xde, 0xb8, 0xbc, 0xd1, 0x2f, 0x9c, 0xfb, 0x0f, 0xd0, 0x2b, 0xed, 0x1b, 0x76, 0xb9, 0xe4, 0x39 +.byte 0x55, 0xf8, 0xf8, 0xa1, 0x1d, 0xb8, 0xaa, 0x80, 0x00, 0x4c, 0x82, 0xe7, 0xb2, 0x7f, 0x09, 0xb8 +.byte 0xbc, 0x30, 0xa0, 0x2f, 0x0d, 0xf5, 0x52, 0x9e, 0x8e, 0xf7, 0x92, 0xb3, 0x0a, 0x00, 0x1d, 0x00 +.byte 0x54, 0x97, 0x06, 0xe0, 0xb1, 0x07, 0xd9, 0xc7, 0x0f, 0x5c, 0x65, 0x7d, 0x3c, 0x6d, 0x59, 0x57 +.byte 0xe4, 0xed, 0xa5, 0x8d, 0xe9, 0x40, 0x53, 0x9f, 0x15, 0x4b, 0xa0, 0x71, 0xf6, 0x1a, 0x21, 0xe3 +.byte 0xda, 0x70, 0x06, 0x21, 0x58, 0x14, 0x87, 0x85, 0x77, 0x79, 0xaa, 0x82, 0x79, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x64, 0x02, 0x26, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c +.byte 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63 +.byte 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x18, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x65, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x34, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbf, 0xe6, 0x90, 0x73, 0x68 +.byte 0xde, 0xbb, 0xe4, 0x5d, 0x4a, 0x3c, 0x30, 0x22, 0x30, 0x69, 0x33, 0xec, 0xc2, 0xa7, 0x25, 0x2e +.byte 0xc9, 0x21, 0x3d, 0xf2, 0x8a, 0xd8, 0x59, 0xc2, 0xe1, 0x29, 0xa7, 0x3d, 0x58, 0xab, 0x76, 0x9a +.byte 0xcd, 0xae, 0x7b, 0x1b, 0x84, 0x0d, 0xc4, 0x30, 0x1f, 0xf3, 0x1b, 0xa4, 0x38, 0x16, 0xeb, 0x56 +.byte 0xc6, 0x97, 0x6d, 0x1d, 0xab, 0xb2, 0x79, 0xf2, 0xca, 0x11, 0xd2, 0xe4, 0x5f, 0xd6, 0x05, 0x3c +.byte 0x52, 0x0f, 0x52, 0x1f, 0xc6, 0x9e, 0x15, 0xa5, 0x7e, 0xbe, 0x9f, 0xa9, 0x57, 0x16, 0x59, 0x55 +.byte 0x72, 0xaf, 0x68, 0x93, 0x70, 0xc2, 0xb2, 0xba, 0x75, 0x99, 0x6a, 0x73, 0x32, 0x94, 0xd1, 0x10 +.byte 0x44, 0x10, 0x2e, 0xdf, 0x82, 0xf3, 0x07, 0x84, 0xe6, 0x74, 0x3b, 0x6d, 0x71, 0xe2, 0x2d, 0x0c +.byte 0x1b, 0xee, 0x20, 0xd5, 0xc9, 0x20, 0x1d, 0x63, 0x29, 0x2d, 0xce, 0xec, 0x5e, 0x4e, 0xc8, 0x93 +.byte 0xf8, 0x21, 0x61, 0x9b, 0x34, 0xeb, 0x05, 0xc6, 0x5e, 0xec, 0x5b, 0x1a, 0xbc, 0xeb, 0xc9, 0xcf +.byte 0xcd, 0xac, 0x34, 0x40, 0x5f, 0xb1, 0x7a, 0x66, 0xee, 0x77, 0xc8, 0x48, 0xa8, 0x66, 0x57, 0x57 +.byte 0x9f, 0x54, 0x58, 0x8e, 0x0c, 0x2b, 0xb7, 0x4f, 0xa7, 0x30, 0xd9, 0x56, 0xee, 0xca, 0x7b, 0x5d +.byte 0xe3, 0xad, 0xc9, 0x4f, 0x5e, 0xe5, 0x35, 0xe7, 0x31, 0xcb, 0xda, 0x93, 0x5e, 0xdc, 0x8e, 0x8f +.byte 0x80, 0xda, 0xb6, 0x91, 0x98, 0x40, 0x90, 0x79, 0xc3, 0x78, 0xc7, 0xb6, 0xb1, 0xc4, 0xb5, 0x6a +.byte 0x18, 0x38, 0x03, 0x10, 0x8d, 0xd8, 0xd4, 0x37, 0xa4, 0x2e, 0x05, 0x7d, 0x88, 0xf5, 0x82, 0x3e +.byte 0x10, 0x91, 0x70, 0xab, 0x55, 0x82, 0x41, 0x32, 0xd7, 0xdb, 0x04, 0x73, 0x2a, 0x6e, 0x91, 0x01 +.byte 0x7c, 0x21, 0x4c, 0xd4, 0xbc, 0xae, 0x1b, 0x03, 0x75, 0x5d, 0x78, 0x66, 0xd9, 0x3a, 0x31, 0x44 +.byte 0x9a, 0x33, 0x40, 0xbf, 0x08, 0xd7, 0x5a, 0x49, 0xa4, 0xc2, 0xe6, 0xa9, 0xa0, 0x67, 0xdd, 0xa4 +.byte 0x27, 0xbc, 0xa1, 0x4f, 0x39, 0xb5, 0x11, 0x58, 0x17, 0xf7, 0x24, 0x5c, 0x46, 0x8f, 0x64, 0xf7 +.byte 0xc1, 0x69, 0x88, 0x76, 0x98, 0x76, 0x3d, 0x59, 0x5d, 0x42, 0x76, 0x87, 0x89, 0x97, 0x69, 0x7a +.byte 0x48, 0xf0, 0xe0, 0xa2, 0x12, 0x1b, 0x66, 0x9a, 0x74, 0xca, 0xde, 0x4b, 0x1e, 0xe7, 0x0e, 0x63 +.byte 0xae, 0xe6, 0xd4, 0xef, 0x92, 0x92, 0x3a, 0x9e, 0x3d, 0xdc, 0x00, 0xe4, 0x45, 0x25, 0x89, 0xb6 +.byte 0x9a, 0x44, 0x19, 0x2b, 0x7e, 0xc0, 0x94, 0xb4, 0xd2, 0x61, 0x6d, 0xeb, 0x33, 0xd9, 0xc5, 0xdf +.byte 0x4b, 0x04, 0x00, 0xcc, 0x7d, 0x1c, 0x95, 0xc3, 0x8f, 0xf7, 0x21, 0xb2, 0xb2, 0x11, 0xb7, 0xbb +.byte 0x7f, 0xf2, 0xd5, 0x8c, 0x70, 0x2c, 0x41, 0x60, 0xaa, 0xb1, 0x63, 0x18, 0x44, 0x95, 0x1a, 0x76 +.byte 0x62, 0x7e, 0xf6, 0x80, 0xb0, 0xfb, 0xe8, 0x64, 0xa6, 0x33, 0xd1, 0x89, 0x07, 0xe1, 0xbd, 0xb7 +.byte 0xe6, 0x43, 0xa4, 0x18, 0xb8, 0xa6, 0x77, 0x01, 0xe1, 0x0f, 0x94, 0x0c, 0x21, 0x1d, 0xb2, 0x54 +.byte 0x29, 0x25, 0x89, 0x6c, 0xe5, 0x0e, 0x52, 0x51, 0x47, 0x74, 0xbe, 0x26, 0xac, 0xb6, 0x41, 0x75 +.byte 0xde, 0x7a, 0xac, 0x5f, 0x8d, 0x3f, 0xc9, 0xbc, 0xd3, 0x41, 0x11, 0x12, 0x5b, 0xe5, 0x10, 0x50 +.byte 0xeb, 0x31, 0xc5, 0xca, 0x72, 0x16, 0x22, 0x09, 0xdf, 0x7c, 0x4c, 0x75, 0x3f, 0x63, 0xec, 0x21 +.byte 0x5f, 0xc4, 0x20, 0x51, 0x6b, 0x6f, 0xb1, 0xab, 0x86, 0x8b, 0x4f, 0xc2, 0xd6, 0x45, 0x5f, 0x9d +.byte 0x20, 0xfc, 0xa1, 0x1e, 0xc5, 0xc0, 0x8f, 0xa2, 0xb1, 0x7e, 0x0a, 0x26, 0x99, 0xf5, 0xe4, 0x69 +.byte 0x2f, 0x98, 0x1d, 0x2d, 0xf5, 0xd9, 0xa9, 0xb2, 0x1d, 0xe5, 0x1b, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x64, 0x01, 0x26, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x4e, 0x65 +.byte 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x53, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20 +.byte 0x4c, 0x2e, 0x4c, 0x2e, 0x43, 0x2e, 0x31, 0x30, 0x30, 0x2e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x27, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x53, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f +.byte 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe4, 0xbc, 0x7e, 0x92, 0x30, 0x6d, 0xc6 +.byte 0xd8, 0x8e, 0x2b, 0x0b, 0xbc, 0x46, 0xce, 0xe0, 0x27, 0x96, 0xde, 0xde, 0xf9, 0xfa, 0x12, 0xd3 +.byte 0x3c, 0x33, 0x73, 0xb3, 0x04, 0x2f, 0xbc, 0x71, 0x8c, 0xe5, 0x9f, 0xb6, 0x22, 0x60, 0x3e, 0x5f +.byte 0x5d, 0xce, 0x09, 0xff, 0x82, 0x0c, 0x1b, 0x9a, 0x51, 0x50, 0x1a, 0x26, 0x89, 0xdd, 0xd5, 0x61 +.byte 0x5d, 0x19, 0xdc, 0x12, 0x0f, 0x2d, 0x0a, 0xa2, 0x43, 0x5d, 0x17, 0xd0, 0x34, 0x92, 0x20, 0xea +.byte 0x73, 0xcf, 0x38, 0x2c, 0x06, 0x26, 0x09, 0x7a, 0x72, 0xf7, 0xfa, 0x50, 0x32, 0xf8, 0xc2, 0x93 +.byte 0xd3, 0x69, 0xa2, 0x23, 0xce, 0x41, 0xb1, 0xcc, 0xe4, 0xd5, 0x1f, 0x36, 0xd1, 0x8a, 0x3a, 0xf8 +.byte 0x8c, 0x63, 0xe2, 0x14, 0x59, 0x69, 0xed, 0x0d, 0xd3, 0x7f, 0x6b, 0xe8, 0xb8, 0x03, 0xe5, 0x4f +.byte 0x6a, 0xe5, 0x98, 0x63, 0x69, 0x48, 0x05, 0xbe, 0x2e, 0xff, 0x33, 0xb6, 0xe9, 0x97, 0x59, 0x69 +.byte 0xf8, 0x67, 0x19, 0xae, 0x93, 0x61, 0x96, 0x44, 0x15, 0xd3, 0x72, 0xb0, 0x3f, 0xbc, 0x6a, 0x7d +.byte 0xec, 0x48, 0x7f, 0x8d, 0xc3, 0xab, 0xaa, 0x71, 0x2b, 0x53, 0x69, 0x41, 0x53, 0x34, 0xb5, 0xb0 +.byte 0xb9, 0xc5, 0x06, 0x0a, 0xc4, 0xb0, 0x45, 0xf5, 0x41, 0x5d, 0x6e, 0x89, 0x45, 0x7b, 0x3d, 0x3b +.byte 0x26, 0x8c, 0x74, 0xc2, 0xe5, 0xd2, 0xd1, 0x7d, 0xb2, 0x11, 0xd4, 0xfb, 0x58, 0x32, 0x22, 0x9a +.byte 0x80, 0xc9, 0xdc, 0xfd, 0x0c, 0xe9, 0x7f, 0x5e, 0x03, 0x97, 0xce, 0x3b, 0x00, 0x14, 0x87, 0x27 +.byte 0x70, 0x38, 0xa9, 0x8e, 0x6e, 0xb3, 0x27, 0x76, 0x98, 0x51, 0xe0, 0x05, 0xe3, 0x21, 0xab, 0x1a +.byte 0xd5, 0x85, 0x22, 0x3c, 0x29, 0xb5, 0x9a, 0x16, 0xc5, 0x80, 0xa8, 0xf4, 0xbb, 0x6b, 0x30, 0x8f +.byte 0x2f, 0x46, 0x02, 0xa2, 0xb1, 0x0c, 0x22, 0xe0, 0xd3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x65 +.byte 0x01, 0x24, 0x30, 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x68, 0x65, 0x20 +.byte 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2c, 0x20 +.byte 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x28, 0x47 +.byte 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20 +.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30 +.byte 0x82, 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xde, 0x9d, 0xd7, 0xea, 0x57, 0x18, 0x49, 0xa1 +.byte 0x5b, 0xeb, 0xd7, 0x5f, 0x48, 0x86, 0xea, 0xbe, 0xdd, 0xff, 0xe4, 0xef, 0x67, 0x1c, 0xf4, 0x65 +.byte 0x68, 0xb3, 0x57, 0x71, 0xa0, 0x5e, 0x77, 0xbb, 0xed, 0x9b, 0x49, 0xe9, 0x70, 0x80, 0x3d, 0x56 +.byte 0x18, 0x63, 0x08, 0x6f, 0xda, 0xf2, 0xcc, 0xd0, 0x3f, 0x7f, 0x02, 0x54, 0x22, 0x54, 0x10, 0xd8 +.byte 0xb2, 0x81, 0xd4, 0xc0, 0x75, 0x3d, 0x4b, 0x7f, 0xc7, 0x77, 0xc3, 0x3e, 0x78, 0xab, 0x1a, 0x03 +.byte 0xb5, 0x20, 0x6b, 0x2f, 0x6a, 0x2b, 0xb1, 0xc5, 0x88, 0x7e, 0xc4, 0xbb, 0x1e, 0xb0, 0xc1, 0xd8 +.byte 0x45, 0x27, 0x6f, 0xaa, 0x37, 0x58, 0xf7, 0x87, 0x26, 0xd7, 0xd8, 0x2d, 0xf6, 0xa9, 0x17, 0xb7 +.byte 0x1f, 0x72, 0x36, 0x4e, 0xa6, 0x17, 0x3f, 0x65, 0x98, 0x92, 0xdb, 0x2a, 0x6e, 0x5d, 0xa2, 0xfe +.byte 0x88, 0xe0, 0x0b, 0xde, 0x7f, 0xe5, 0x8d, 0x15, 0xe1, 0xeb, 0xcb, 0x3a, 0xd5, 0xe2, 0x12, 0xa2 +.byte 0x13, 0x2d, 0xd8, 0x8e, 0xaf, 0x5f, 0x12, 0x3d, 0xa0, 0x08, 0x05, 0x08, 0xb6, 0x5c, 0xa5, 0x65 +.byte 0x38, 0x04, 0x45, 0x99, 0x1e, 0xa3, 0x60, 0x60, 0x74, 0xc5, 0x41, 0xa5, 0x72, 0x62, 0x1b, 0x62 +.byte 0xc5, 0x1f, 0x6f, 0x5f, 0x1a, 0x42, 0xbe, 0x02, 0x51, 0x65, 0xa8, 0xae, 0x23, 0x18, 0x6a, 0xfc +.byte 0x78, 0x03, 0xa9, 0x4d, 0x7f, 0x80, 0xc3, 0xfa, 0xab, 0x5a, 0xfc, 0xa1, 0x40, 0xa4, 0xca, 0x19 +.byte 0x16, 0xfe, 0xb2, 0xc8, 0xef, 0x5e, 0x73, 0x0d, 0xee, 0x77, 0xbd, 0x9a, 0xf6, 0x79, 0x98, 0xbc +.byte 0xb1, 0x07, 0x67, 0xa2, 0x15, 0x0d, 0xdd, 0xa0, 0x58, 0xc6, 0x44, 0x7b, 0x0a, 0x3e, 0x62, 0x28 +.byte 0x5f, 0xba, 0x41, 0x07, 0x53, 0x58, 0xcf, 0x11, 0x7e, 0x38, 0x74, 0xc5, 0xf8, 0xff, 0xb5, 0x69 +.byte 0x90, 0x8f, 0x84, 0x74, 0xea, 0x97, 0x1b, 0xaf, 0x02, 0x01, 0x03, 0x00, 0x67, 0x01, 0x26, 0x30 +.byte 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15 +.byte 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 +.byte 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10 +.byte 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d +.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43 +.byte 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xad, 0x0e, 0x15, 0xce, 0xe4, 0x43, 0x80, 0x5c, 0xb1 +.byte 0x87, 0xf3, 0xb7, 0x60, 0xf9, 0x71, 0x12, 0xa5, 0xae, 0xdc, 0x26, 0x94, 0x88, 0xaa, 0xf4, 0xce +.byte 0xf5, 0x20, 0x39, 0x28, 0x58, 0x60, 0x0c, 0xf8, 0x80, 0xda, 0xa9, 0x15, 0x95, 0x32, 0x61, 0x3c +.byte 0xb5, 0xb1, 0x28, 0x84, 0x8a, 0x8a, 0xdc, 0x9f, 0x0a, 0x0c, 0x83, 0x17, 0x7a, 0x8f, 0x90, 0xac +.byte 0x8a, 0xe7, 0x79, 0x53, 0x5c, 0x31, 0x84, 0x2a, 0xf6, 0x0f, 0x98, 0x32, 0x36, 0x76, 0xcc, 0xde +.byte 0xdd, 0x3c, 0xa8, 0xa2, 0xef, 0x6a, 0xfb, 0x21, 0xf2, 0x52, 0x61, 0xdf, 0x9f, 0x20, 0xd7, 0x1f +.byte 0xe2, 0xb1, 0xd9, 0xfe, 0x18, 0x64, 0xd2, 0x12, 0x5b, 0x5f, 0xf9, 0x58, 0x18, 0x35, 0xbc, 0x47 +.byte 0xcd, 0xa1, 0x36, 0xf9, 0x6b, 0x7f, 0xd4, 0xb0, 0x38, 0x3e, 0xc1, 0x1b, 0xc3, 0x8c, 0x33, 0xd9 +.byte 0xd8, 0x2f, 0x18, 0xfe, 0x28, 0x0f, 0xb3, 0xa7, 0x83, 0xd6, 0xc3, 0x6e, 0x44, 0xc0, 0x61, 0x35 +.byte 0x96, 0x16, 0xfe, 0x59, 0x9c, 0x8b, 0x76, 0x6d, 0xd7, 0xf1, 0xa2, 0x4b, 0x0d, 0x2b, 0xff, 0x0b +.byte 0x72, 0xda, 0x9e, 0x60, 0xd0, 0x8e, 0x90, 0x35, 0xc6, 0x78, 0x55, 0x87, 0x20, 0xa1, 0xcf, 0xe5 +.byte 0x6d, 0x0a, 0xc8, 0x49, 0x7c, 0x31, 0x98, 0x33, 0x6c, 0x22, 0xe9, 0x87, 0xd0, 0x32, 0x5a, 0xa2 +.byte 0xba, 0x13, 0x82, 0x11, 0xed, 0x39, 0x17, 0x9d, 0x99, 0x3a, 0x72, 0xa1, 0xe6, 0xfa, 0xa4, 0xd9 +.byte 0xd5, 0x17, 0x31, 0x75, 0xae, 0x85, 0x7d, 0x22, 0xae, 0x3f, 0x01, 0x46, 0x86, 0xf6, 0x28, 0x79 +.byte 0xc8, 0xb1, 0xda, 0xe4, 0x57, 0x17, 0xc4, 0x7e, 0x1c, 0x0e, 0xb0, 0xb4, 0x92, 0xa6, 0x56, 0xb3 +.byte 0xbd, 0xb2, 0x97, 0xed, 0xaa, 0xa7, 0xf0, 0xb7, 0xc5, 0xa8, 0x3f, 0x95, 0x16, 0xd0, 0xff, 0xa1 +.byte 0x96, 0xeb, 0x08, 0x5f, 0x18, 0x77, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x67, 0x01, 0x26 +.byte 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 +.byte 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f +.byte 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 +.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd9, 0xe7, 0x28, 0x2f, 0x52, 0x3f, 0x36, 0x72 +.byte 0x49, 0x88, 0x93, 0x34, 0xf3, 0xf8, 0x6a, 0x1e, 0x31, 0x54, 0x80, 0x9f, 0xad, 0x54, 0x41, 0xb5 +.byte 0x47, 0xdf, 0x96, 0xa8, 0xd4, 0xaf, 0x80, 0x2d, 0xb9, 0x0a, 0xcf, 0x75, 0xfd, 0x89, 0xa5, 0x7d +.byte 0x24, 0xfa, 0xe3, 0x22, 0x0c, 0x2b, 0xbc, 0x95, 0x17, 0x0b, 0x33, 0xbf, 0x19, 0x4d, 0x41, 0x06 +.byte 0x90, 0x00, 0xbd, 0x0c, 0x4d, 0x10, 0xfe, 0x07, 0xb5, 0xe7, 0x1c, 0x6e, 0x22, 0x55, 0x31, 0x65 +.byte 0x97, 0xbd, 0xd3, 0x17, 0xd2, 0x1e, 0x62, 0xf3, 0xdb, 0xea, 0x6c, 0x50, 0x8c, 0x3f, 0x84, 0x0c +.byte 0x96, 0xcf, 0xb7, 0xcb, 0x03, 0xe0, 0xca, 0x6d, 0xa1, 0x14, 0x4c, 0x1b, 0x89, 0xdd, 0xed, 0x00 +.byte 0xb0, 0x52, 0x7c, 0xaf, 0x91, 0x6c, 0xb1, 0x38, 0x13, 0xd1, 0xe9, 0x12, 0x08, 0xc0, 0x00, 0xb0 +.byte 0x1c, 0x2b, 0x11, 0xda, 0x77, 0x70, 0x36, 0x9b, 0xae, 0xce, 0x79, 0x87, 0xdc, 0x82, 0x70, 0xe6 +.byte 0x09, 0x74, 0x70, 0x55, 0x69, 0xaf, 0xa3, 0x68, 0x9f, 0xbf, 0xdd, 0xb6, 0x79, 0xb3, 0xf2, 0x9d +.byte 0x70, 0x29, 0x55, 0xf4, 0xab, 0xff, 0x95, 0x61, 0xf3, 0xc9, 0x40, 0x6f, 0x1d, 0xd1, 0xbe, 0x93 +.byte 0xbb, 0xd3, 0x88, 0x2a, 0xbb, 0x9d, 0xbf, 0x72, 0x5a, 0x56, 0x71, 0x3b, 0x3f, 0xd4, 0xf3, 0xd1 +.byte 0x0a, 0xfe, 0x28, 0xef, 0xa3, 0xee, 0xd9, 0x99, 0xaf, 0x03, 0xd3, 0x8f, 0x60, 0xb7, 0xf2, 0x92 +.byte 0xa1, 0xb1, 0xbd, 0x89, 0x89, 0x1f, 0x30, 0xcd, 0xc3, 0xa6, 0x2e, 0x62, 0x33, 0xae, 0x16, 0x02 +.byte 0x77, 0x44, 0x5a, 0xe7, 0x81, 0x0a, 0x3c, 0xa7, 0x44, 0x2e, 0x79, 0xb8, 0x3f, 0x04, 0xbc, 0x5c +.byte 0xa0, 0x87, 0xe1, 0x1b, 0xaf, 0x51, 0x8e, 0xcd, 0xec, 0x2c, 0xfa, 0xf8, 0xfe, 0x6d, 0xf0, 0x3a +.byte 0x7c, 0xaa, 0x8b, 0xe4, 0x67, 0x95, 0x31, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x67, 0x00 +.byte 0x78, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43 +.byte 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63 +.byte 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67 +.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86 +.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04 +.byte 0x19, 0xe7, 0xbc, 0xac, 0x44, 0x65, 0xed, 0xcd, 0xb8, 0x3f, 0x58, 0xfb, 0x8d, 0xb1, 0x57, 0xa9 +.byte 0x44, 0x2d, 0x05, 0x15, 0xf2, 0xef, 0x0b, 0xff, 0x10, 0x74, 0x9f, 0xb5, 0x62, 0x52, 0x5f, 0x66 +.byte 0x7e, 0x1f, 0xe5, 0xdc, 0x1b, 0x45, 0x79, 0x0b, 0xcc, 0xc6, 0x53, 0x0a, 0x9d, 0x8d, 0x5d, 0x02 +.byte 0xd9, 0xa9, 0x59, 0xde, 0x02, 0x5a, 0xf6, 0x95, 0x2a, 0x0e, 0x8d, 0x38, 0x4a, 0x8a, 0x49, 0xc6 +.byte 0xbc, 0xc6, 0x03, 0x38, 0x07, 0x5f, 0x55, 0xda, 0x7e, 0x09, 0x6e, 0xe2, 0x7f, 0x5e, 0xd0, 0x45 +.byte 0x20, 0x0f, 0x59, 0x76, 0x10, 0xd6, 0xa0, 0x24, 0xf0, 0x2d, 0xde, 0x36, 0xf2, 0x6c, 0x29, 0x39 +.byte 0x00, 0x6a, 0x01, 0x24, 0x30, 0x68, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74 +.byte 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f +.byte 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x43 +.byte 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82 +.byte 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7 +.byte 0x32, 0xc8, 0xfe, 0xe9, 0x71, 0xa6, 0x04, 0x85, 0xad, 0x0c, 0x11, 0x64, 0xdf, 0xce, 0x4d, 0xef +.byte 0xc8, 0x03, 0x18, 0x87, 0x3f, 0xa1, 0xab, 0xfb, 0x3c, 0xa6, 0x9f, 0xf0, 0xc3, 0xa1, 0xda, 0xd4 +.byte 0xd8, 0x6e, 0x2b, 0x53, 0x90, 0xfb, 0x24, 0xa4, 0x3e, 0x84, 0xf0, 0x9e, 0xe8, 0x5f, 0xec, 0xe5 +.byte 0x27, 0x44, 0xf5, 0x28, 0xa6, 0x3f, 0x7b, 0xde, 0xe0, 0x2a, 0xf0, 0xc8, 0xaf, 0x53, 0x2f, 0x9e +.byte 0xca, 0x05, 0x01, 0x93, 0x1e, 0x8f, 0x66, 0x1c, 0x39, 0xa7, 0x4d, 0xfa, 0x5a, 0xb6, 0x73, 0x04 +.byte 0x25, 0x66, 0xeb, 0x77, 0x7f, 0xe7, 0x59, 0xc6, 0x4a, 0x99, 0x25, 0x14, 0x54, 0xeb, 0x26, 0xc7 +.byte 0xf3, 0x7f, 0x19, 0xd5, 0x30, 0x70, 0x8f, 0xaf, 0xb0, 0x46, 0x2a, 0xff, 0xad, 0xeb, 0x29, 0xed +.byte 0xd7, 0x9f, 0xaa, 0x04, 0x87, 0xa3, 0xd4, 0xf9, 0x89, 0xa5, 0x34, 0x5f, 0xdb, 0x43, 0x91, 0x82 +.byte 0x36, 0xd9, 0x66, 0x3c, 0xb1, 0xb8, 0xb9, 0x82, 0xfd, 0x9c, 0x3a, 0x3e, 0x10, 0xc8, 0x3b, 0xef +.byte 0x06, 0x65, 0x66, 0x7a, 0x9b, 0x19, 0x18, 0x3d, 0xff, 0x71, 0x51, 0x3c, 0x30, 0x2e, 0x5f, 0xbe +.byte 0x3d, 0x77, 0x73, 0xb2, 0x5d, 0x06, 0x6c, 0xc3, 0x23, 0x56, 0x9a, 0x2b, 0x85, 0x26, 0x92, 0x1c +.byte 0xa7, 0x02, 0xb3, 0xe4, 0x3f, 0x0d, 0xaf, 0x08, 0x79, 0x82, 0xb8, 0x36, 0x3d, 0xea, 0x9c, 0xd3 +.byte 0x35, 0xb3, 0xbc, 0x69, 0xca, 0xf5, 0xcc, 0x9d, 0xe8, 0xfd, 0x64, 0x8d, 0x17, 0x80, 0x33, 0x6e +.byte 0x5e, 0x4a, 0x5d, 0x99, 0xc9, 0x1e, 0x87, 0xb4, 0x9d, 0x1a, 0xc0, 0xd5, 0x6e, 0x13, 0x35, 0x23 +.byte 0x5e, 0xdf, 0x9b, 0x5f, 0x3d, 0xef, 0xd6, 0xf7, 0x76, 0xc2, 0xea, 0x3e, 0xbb, 0x78, 0x0d, 0x1c +.byte 0x42, 0x67, 0x6b, 0x04, 0xd8, 0xf8, 0xd6, 0xda, 0x6f, 0x8b, 0xf2, 0x44, 0xa0, 0x01, 0xab, 0x02 +.byte 0x01, 0x03, 0x00, 0x6d, 0x02, 0x26, 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x49, 0x54, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x05 +.byte 0x4d, 0x69, 0x6c, 0x61, 0x6e, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a +.byte 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x53, 0x2e, 0x70, 0x2e, 0x41, 0x2e, 0x2f, 0x30 +.byte 0x33, 0x33, 0x35, 0x38, 0x35, 0x32, 0x30, 0x39, 0x36, 0x37, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xa7, 0xc6, 0xc4, 0xa5, 0x29, 0xa4, 0x2c, 0xef, 0xe5, 0x18, 0xc5, 0xb0 +.byte 0x50, 0xa3, 0x6f, 0x51, 0x3b, 0x9f, 0x0a, 0x5a, 0xc9, 0xc2, 0x48, 0x38, 0x0a, 0xc2, 0x1c, 0xa0 +.byte 0x18, 0x7f, 0x91, 0xb5, 0x87, 0xb9, 0x40, 0x3f, 0xdd, 0x1d, 0x68, 0x1f, 0x08, 0x83, 0xd5, 0x2d +.byte 0x1e, 0x88, 0xa0, 0xf8, 0x8f, 0x56, 0x8f, 0x6d, 0x99, 0x02, 0x92, 0x90, 0x16, 0xd5, 0x5f, 0x08 +.byte 0x6c, 0x89, 0xd7, 0xe1, 0xac, 0xbc, 0x20, 0xc2, 0xb1, 0xe0, 0x83, 0x51, 0x8a, 0x69, 0x4d, 0x00 +.byte 0x96, 0x5a, 0x6f, 0x2f, 0xc0, 0x44, 0x7e, 0xa3, 0x0e, 0xe4, 0x91, 0xcd, 0x58, 0xee, 0xdc, 0xfb +.byte 0xc7, 0x1e, 0x45, 0x47, 0xdd, 0x27, 0xb9, 0x08, 0x01, 0x9f, 0xa6, 0x21, 0x1d, 0xf5, 0x41, 0x2d +.byte 0x2f, 0x4c, 0xfd, 0x28, 0xad, 0xe0, 0x8a, 0xad, 0x22, 0xb4, 0x56, 0x65, 0x8e, 0x86, 0x54, 0x8f +.byte 0x93, 0x43, 0x29, 0xde, 0x39, 0x46, 0x78, 0xa3, 0x30, 0x23, 0xba, 0xcd, 0xf0, 0x7d, 0x13, 0x57 +.byte 0xc0, 0x5d, 0xd2, 0x83, 0x6b, 0x48, 0x4c, 0xc4, 0xab, 0x9f, 0x80, 0x5a, 0x5b, 0x3a, 0xbd, 0xc9 +.byte 0xa7, 0x22, 0x3f, 0x80, 0x27, 0x33, 0x5b, 0x0e, 0xb7, 0x8a, 0x0c, 0x5d, 0x07, 0x37, 0x08, 0xcb +.byte 0x6c, 0xd2, 0x7a, 0x47, 0x22, 0x44, 0x35, 0xc5, 0xcc, 0xcc, 0x2e, 0x8e, 0xdd, 0x2a, 0xed, 0xb7 +.byte 0x7d, 0x66, 0x0d, 0x5f, 0x61, 0x51, 0x22, 0x55, 0x1b, 0xe3, 0x46, 0xe3, 0xe3, 0x3d, 0xd0, 0x35 +.byte 0x62, 0x9a, 0xdb, 0xaf, 0x14, 0xc8, 0x5b, 0xa1, 0xcc, 0x89, 0x1b, 0xe1, 0x30, 0x26, 0xfc, 0xa0 +.byte 0x9b, 0x1f, 0x81, 0xa7, 0x47, 0x1f, 0x04, 0xeb, 0xa3, 0x39, 0x92, 0x06, 0x9f, 0x99, 0xd3, 0xbf +.byte 0xd3, 0xea, 0x4f, 0x50, 0x9c, 0x19, 0xfe, 0x96, 0x87, 0x1e, 0x3c, 0x65, 0xf6, 0xa3, 0x18, 0x24 +.byte 0x83, 0x86, 0x10, 0xe7, 0x54, 0x3e, 0xa8, 0x3a, 0x76, 0x24, 0x4f, 0x81, 0x21, 0xc5, 0xe3, 0x0f +.byte 0x02, 0xf8, 0x93, 0x94, 0x47, 0x20, 0xbb, 0xfe, 0xd4, 0x0e, 0xd3, 0x68, 0xb9, 0xdd, 0xc4, 0x7a +.byte 0x84, 0x82, 0xe3, 0x53, 0x54, 0x79, 0xdd, 0xdb, 0x9c, 0xd2, 0xf2, 0x07, 0x9b, 0x2e, 0xb6, 0xbc +.byte 0x3e, 0xed, 0x85, 0x6d, 0xef, 0x25, 0x11, 0xf2, 0x97, 0x1a, 0x42, 0x61, 0xf7, 0x4a, 0x97, 0xe8 +.byte 0x8b, 0xb1, 0x10, 0x07, 0xfa, 0x65, 0x81, 0xb2, 0xa2, 0x39, 0xcf, 0xf7, 0x3c, 0xff, 0x18, 0xfb +.byte 0xc6, 0xf1, 0x5a, 0x8b, 0x59, 0xe2, 0x02, 0xac, 0x7b, 0x92, 0xd0, 0x4e, 0x14, 0x4f, 0x59, 0x45 +.byte 0xf6, 0x0c, 0x5e, 0x28, 0x5f, 0xb0, 0xe8, 0x3f, 0x45, 0xcf, 0xcf, 0xaf, 0x9b, 0x6f, 0xfb, 0x84 +.byte 0xd3, 0x77, 0x5a, 0x95, 0x6f, 0xac, 0x94, 0x84, 0x9e, 0xee, 0xbc, 0xc0, 0x4a, 0x8f, 0x4a, 0x93 +.byte 0xf8, 0x44, 0x21, 0xe2, 0x31, 0x45, 0x61, 0x50, 0x4e, 0x10, 0xd8, 0xe3, 0x35, 0x7c, 0x4c, 0x19 +.byte 0xb4, 0xde, 0x05, 0xbf, 0xa3, 0x06, 0x9f, 0xc8, 0xb5, 0xcd, 0xe4, 0x1f, 0xd7, 0x17, 0x06, 0x0d +.byte 0x7a, 0x95, 0x74, 0x55, 0x0d, 0x68, 0x1a, 0xfc, 0x10, 0x1b, 0x62, 0x64, 0x9d, 0x6d, 0xe0, 0x95 +.byte 0xa0, 0xc3, 0x94, 0x07, 0x57, 0x0d, 0x14, 0xe6, 0xbd, 0x05, 0xfb, 0xb8, 0x9f, 0xe6, 0xdf, 0x8b +.byte 0xe2, 0xc6, 0xe7, 0x7e, 0x96, 0xf6, 0x53, 0xc5, 0x80, 0x34, 0x50, 0x28, 0x58, 0xf0, 0x12, 0x50 +.byte 0x71, 0x17, 0x30, 0xba, 0xe6, 0x78, 0x63, 0xbc, 0xf4, 0xb2, 0xad, 0x9b, 0x2b, 0xb2, 0xfe, 0xe1 +.byte 0x39, 0x8c, 0x5e, 0xba, 0x0b, 0x20, 0x94, 0xde, 0x7b, 0x83, 0xb8, 0xff, 0xe3, 0x56, 0x8d, 0xb7 +.byte 0x11, 0xe9, 0x3b, 0x8c, 0xf2, 0xb1, 0xc1, 0x5d, 0x9d, 0xa4, 0x0b, 0x4c, 0x2b, 0xd9, 0xb2, 0x18 +.byte 0xf5, 0xb5, 0x9f, 0x4b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6e, 0x01, 0x26, 0x30, 0x6c, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20 +.byte 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77 +.byte 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x2b +.byte 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 +.byte 0x74, 0x20, 0x48, 0x69, 0x67, 0x68, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65 +.byte 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc6, 0xcc, 0xe5, 0x73 +.byte 0xe6, 0xfb, 0xd4, 0xbb, 0xe5, 0x2d, 0x2d, 0x32, 0xa6, 0xdf, 0xe5, 0x81, 0x3f, 0xc9, 0xcd, 0x25 +.byte 0x49, 0xb6, 0x71, 0x2a, 0xc3, 0xd5, 0x94, 0x34, 0x67, 0xa2, 0x0a, 0x1c, 0xb0, 0x5f, 0x69, 0xa6 +.byte 0x40, 0xb1, 0xc4, 0xb7, 0xb2, 0x8f, 0xd0, 0x98, 0xa4, 0xa9, 0x41, 0x59, 0x3a, 0xd3, 0xdc, 0x94 +.byte 0xd6, 0x3c, 0xdb, 0x74, 0x38, 0xa4, 0x4a, 0xcc, 0x4d, 0x25, 0x82, 0xf7, 0x4a, 0xa5, 0x53, 0x12 +.byte 0x38, 0xee, 0xf3, 0x49, 0x6d, 0x71, 0x91, 0x7e, 0x63, 0xb6, 0xab, 0xa6, 0x5f, 0xc3, 0xa4, 0x84 +.byte 0xf8, 0x4f, 0x62, 0x51, 0xbe, 0xf8, 0xc5, 0xec, 0xdb, 0x38, 0x92, 0xe3, 0x06, 0xe5, 0x08, 0x91 +.byte 0x0c, 0xc4, 0x28, 0x41, 0x55, 0xfb, 0xcb, 0x5a, 0x89, 0x15, 0x7e, 0x71, 0xe8, 0x35, 0xbf, 0x4d +.byte 0x72, 0x09, 0x3d, 0xbe, 0x3a, 0x38, 0x50, 0x5b, 0x77, 0x31, 0x1b, 0x8d, 0xb3, 0xc7, 0x24, 0x45 +.byte 0x9a, 0xa7, 0xac, 0x6d, 0x00, 0x14, 0x5a, 0x04, 0xb7, 0xba, 0x13, 0xeb, 0x51, 0x0a, 0x98, 0x41 +.byte 0x41, 0x22, 0x4e, 0x65, 0x61, 0x87, 0x81, 0x41, 0x50, 0xa6, 0x79, 0x5c, 0x89, 0xde, 0x19, 0x4a +.byte 0x57, 0xd5, 0x2e, 0xe6, 0x5d, 0x1c, 0x53, 0x2c, 0x7e, 0x98, 0xcd, 0x1a, 0x06, 0x16, 0xa4, 0x68 +.byte 0x73, 0xd0, 0x34, 0x04, 0x13, 0x5c, 0xa1, 0x71, 0xd3, 0x5a, 0x7c, 0x55, 0xdb, 0x5e, 0x64, 0xe1 +.byte 0x37, 0x87, 0x30, 0x56, 0x04, 0xe5, 0x11, 0xb4, 0x29, 0x80, 0x12, 0xf1, 0x79, 0x39, 0x88, 0xa2 +.byte 0x02, 0x11, 0x7c, 0x27, 0x66, 0xb7, 0x88, 0xb7, 0x78, 0xf2, 0xca, 0x0a, 0xa8, 0x38, 0xab, 0x0a +.byte 0x64, 0xc2, 0xbf, 0x66, 0x5d, 0x95, 0x84, 0xc1, 0xa1, 0x25, 0x1e, 0x87, 0x5d, 0x1a, 0x50, 0x0b +.byte 0x20, 0x12, 0xcc, 0x41, 0xbb, 0x6e, 0x0b, 0x51, 0x38, 0xb8, 0x4b, 0xcb, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x6f, 0x01, 0x26, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07, 0x57 +.byte 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65, 0x4b +.byte 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47 +.byte 0x42, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xd8, 0x17, 0xb7, 0x1c, 0x4a, 0x24, 0x2a, 0xd6, 0x97, 0xb1, 0xca +.byte 0xe2, 0x1e, 0xfb, 0x7d, 0x38, 0xef, 0x98, 0xf5, 0xb2, 0x39, 0x98, 0x4e, 0x27, 0xb8, 0x11, 0x5d +.byte 0x7b, 0xd2, 0x25, 0x94, 0x88, 0x82, 0x15, 0x26, 0x6a, 0x1b, 0x31, 0xbb, 0xa8, 0x5b, 0x21, 0x21 +.byte 0x2b, 0xd8, 0x0f, 0x4e, 0x9f, 0x5a, 0xf1, 0xb1, 0x5a, 0xe4, 0x79, 0xd6, 0x32, 0x23, 0x2b, 0xe1 +.byte 0x53, 0xcc, 0x99, 0x45, 0x5c, 0x7b, 0x4f, 0xad, 0xbc, 0xbf, 0x87, 0x4a, 0x0b, 0x4b, 0x97, 0x5a +.byte 0xa8, 0xf6, 0x48, 0xec, 0x7d, 0x7b, 0x0d, 0xcd, 0x21, 0x06, 0xdf, 0x9e, 0x15, 0xfd, 0x41, 0x8a +.byte 0x48, 0xb7, 0x20, 0xf4, 0xa1, 0x7a, 0x1b, 0x57, 0xd4, 0x5d, 0x50, 0xff, 0xba, 0x67, 0xd8, 0x23 +.byte 0x99, 0x1f, 0xc8, 0x3f, 0xe3, 0xde, 0xff, 0x6f, 0x5b, 0x77, 0xb1, 0x6b, 0x6e, 0xb8, 0xc9, 0x64 +.byte 0xf7, 0xe1, 0xca, 0x41, 0x46, 0x0e, 0x29, 0x71, 0xd0, 0xb9, 0x23, 0xfc, 0xc9, 0x81, 0x5f, 0x4e +.byte 0xf7, 0x6f, 0xdf, 0xbf, 0x84, 0xad, 0x73, 0x64, 0xbb, 0xb7, 0x42, 0x8e, 0x69, 0xf6, 0xd4, 0x76 +.byte 0x1d, 0x7e, 0x9d, 0xa7, 0xb8, 0x57, 0x8a, 0x51, 0x67, 0x72, 0xd7, 0xd4, 0xa8, 0xb8, 0x95, 0x54 +.byte 0x40, 0x73, 0x03, 0xf6, 0xea, 0xf4, 0xeb, 0xfe, 0x28, 0x42, 0x77, 0x3f, 0x9d, 0x23, 0x1b, 0xb2 +.byte 0xb6, 0x3d, 0x80, 0x14, 0x07, 0x4c, 0x2e, 0x4f, 0xf7, 0xd5, 0x0a, 0x16, 0x0d, 0xbd, 0x66, 0x43 +.byte 0x37, 0x7e, 0x23, 0x43, 0x79, 0xc3, 0x40, 0x86, 0xf5, 0x4c, 0x29, 0xda, 0x8e, 0x9a, 0xad, 0x0d +.byte 0xa5, 0x04, 0x87, 0x88, 0x1e, 0x85, 0xe3, 0xe9, 0x53, 0xd5, 0x9b, 0xc8, 0x8b, 0x03, 0x63, 0x78 +.byte 0xeb, 0xe0, 0x19, 0x4a, 0x6e, 0xbb, 0x2f, 0x6b, 0x33, 0x64, 0x58, 0x93, 0xad, 0x69, 0xbf, 0x8f +.byte 0x1b, 0xef, 0x82, 0x48, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6f, 0x00, 0x78, 0x30, 0x6d +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31 +.byte 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20 +.byte 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72 +.byte 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49 +.byte 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x43, 0x20, 0x43, 0x41, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0x4c, 0xe9, 0x50, 0xc0, 0xc6, 0x0f, 0x72, 0x18, 0xbc, 0xd8, 0xf1 +.byte 0xba, 0xb3, 0x89, 0xe2, 0x79, 0x4a, 0xa3, 0x16, 0xa7, 0x6b, 0x54, 0x24, 0xdb, 0x51, 0xff, 0xea +.byte 0xf4, 0x09, 0x24, 0xc3, 0x0b, 0x22, 0x9f, 0xcb, 0x6a, 0x27, 0x82, 0x81, 0x0d, 0xd2, 0xc0, 0xaf +.byte 0x31, 0xe4, 0x74, 0x82, 0x6e, 0xca, 0x25, 0xd9, 0x8c, 0x75, 0x9d, 0xf1, 0xdb, 0xd0, 0x9a, 0xa2 +.byte 0x4b, 0x21, 0x7e, 0x16, 0xa7, 0x63, 0x90, 0xd2, 0x39, 0xd4, 0xb1, 0x87, 0x78, 0x5f, 0x18, 0x96 +.byte 0x0f, 0x50, 0x1b, 0x35, 0x37, 0x0f, 0x6a, 0xc6, 0xdc, 0xd9, 0x13, 0x4d, 0xa4, 0x8e, 0x90, 0x37 +.byte 0xe6, 0xbd, 0x5b, 0x31, 0x91, 0x00, 0x71, 0x01, 0x26, 0x30, 0x6f, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x53, 0x45, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0b, 0x41, 0x64, 0x64, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x41, 0x42, 0x31, 0x26 +.byte 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1d, 0x41, 0x64, 0x64, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x20, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x20, 0x54, 0x54, 0x50, 0x20, 0x4e +.byte 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x19, 0x41, 0x64, 0x64, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e +.byte 0x61, 0x6c, 0x20, 0x43, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 +.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7, 0xf7, 0x1a, 0x33, 0xe6 +.byte 0xf2, 0x00, 0x04, 0x2d, 0x39, 0xe0, 0x4e, 0x5b, 0xed, 0x1f, 0xbc, 0x6c, 0x0f, 0xcd, 0xb5, 0xfa +.byte 0x23, 0xb6, 0xce, 0xde, 0x9b, 0x11, 0x33, 0x97, 0xa4, 0x29, 0x4c, 0x7d, 0x93, 0x9f, 0xbd, 0x4a +.byte 0xbc, 0x93, 0xed, 0x03, 0x1a, 0xe3, 0x8f, 0xcf, 0xe5, 0x6d, 0x50, 0x5a, 0xd6, 0x97, 0x29, 0x94 +.byte 0x5a, 0x80, 0xb0, 0x49, 0x7a, 0xdb, 0x2e, 0x95, 0xfd, 0xb8, 0xca, 0xbf, 0x37, 0x38, 0x2d, 0x1e +.byte 0x3e, 0x91, 0x41, 0xad, 0x70, 0x56, 0xc7, 0xf0, 0x4f, 0x3f, 0xe8, 0x32, 0x9e, 0x74, 0xca, 0xc8 +.byte 0x90, 0x54, 0xe9, 0xc6, 0x5f, 0x0f, 0x78, 0x9d, 0x9a, 0x40, 0x3c, 0x0e, 0xac, 0x61, 0xaa, 0x5e +.byte 0x14, 0x8f, 0x9e, 0x87, 0xa1, 0x6a, 0x50, 0xdc, 0xd7, 0x9a, 0x4e, 0xaf, 0x05, 0xb3, 0xa6, 0x71 +.byte 0x94, 0x9c, 0x71, 0xb3, 0x50, 0x60, 0x0a, 0xc7, 0x13, 0x9d, 0x38, 0x07, 0x86, 0x02, 0xa8, 0xe9 +.byte 0xa8, 0x69, 0x26, 0x18, 0x90, 0xab, 0x4c, 0xb0, 0x4f, 0x23, 0xab, 0x3a, 0x4f, 0x84, 0xd8, 0xdf +.byte 0xce, 0x9f, 0xe1, 0x69, 0x6f, 0xbb, 0xd7, 0x42, 0xd7, 0x6b, 0x44, 0xe4, 0xc7, 0xad, 0xee, 0x6d +.byte 0x41, 0x5f, 0x72, 0x5a, 0x71, 0x08, 0x37, 0xb3, 0x79, 0x65, 0xa4, 0x59, 0xa0, 0x94, 0x37, 0xf7 +.byte 0x00, 0x2f, 0x0d, 0xc2, 0x92, 0x72, 0xda, 0xd0, 0x38, 0x72, 0xdb, 0x14, 0xa8, 0x45, 0xc4, 0x5d +.byte 0x2a, 0x7d, 0xb7, 0xb4, 0xd6, 0xc4, 0xee, 0xac, 0xcd, 0x13, 0x44, 0xb7, 0xc9, 0x2b, 0xdd, 0x43 +.byte 0x00, 0x25, 0xfa, 0x61, 0xb9, 0x69, 0x6a, 0x58, 0x23, 0x11, 0xb7, 0xa7, 0x33, 0x8f, 0x56, 0x75 +.byte 0x59, 0xf5, 0xcd, 0x29, 0xd7, 0x46, 0xb7, 0x0a, 0x2b, 0x65, 0xb6, 0xd3, 0x42, 0x6f, 0x15, 0xb2 +.byte 0xb8, 0x7b, 0xfb, 0xef, 0xe9, 0x5d, 0x53, 0xd5, 0x34, 0x5a, 0x27, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x73, 0x01, 0x26, 0x30, 0x71, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x44, 0x45, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x13, 0x44, 0x65 +.byte 0x75, 0x74, 0x73, 0x63, 0x68, 0x65, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x41 +.byte 0x47, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x16, 0x54, 0x2d, 0x54, 0x65 +.byte 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74 +.byte 0x65, 0x72, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1a, 0x44, 0x65, 0x75 +.byte 0x74, 0x73, 0x63, 0x68, 0x65, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 +.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xab, 0x0b, 0xa3, 0x35, 0xe0, 0x8b, 0x29, 0x14 +.byte 0xb1, 0x14, 0x85, 0xaf, 0x3c, 0x10, 0xe4, 0x39, 0x6f, 0x35, 0x5d, 0x4a, 0xae, 0xdd, 0xea, 0x61 +.byte 0x8d, 0x95, 0x49, 0xf4, 0x6f, 0x64, 0xa3, 0x1a, 0x60, 0x66, 0xa4, 0xa9, 0x40, 0x22, 0x84, 0xd9 +.byte 0xd4, 0xa5, 0xe5, 0x78, 0x93, 0x0e, 0x68, 0x01, 0xad, 0xb9, 0x4d, 0x5c, 0x3a, 0xce, 0xd3, 0xb8 +.byte 0xa8, 0x42, 0x40, 0xdf, 0xcf, 0xa3, 0xba, 0x82, 0x59, 0x6a, 0x92, 0x1b, 0xac, 0x1c, 0x9a, 0xda +.byte 0x08, 0x2b, 0x25, 0x27, 0xf9, 0x69, 0x23, 0x47, 0xf1, 0xe0, 0xeb, 0x2c, 0x7a, 0x9b, 0xf5, 0x13 +.byte 0x02, 0xd0, 0x7e, 0x34, 0x7c, 0xc2, 0x9e, 0x3c, 0x00, 0x59, 0xab, 0xf5, 0xda, 0x0c, 0xf5, 0x32 +.byte 0x3c, 0x2b, 0xac, 0x50, 0xda, 0xd6, 0xc3, 0xde, 0x83, 0x94, 0xca, 0xa8, 0x0c, 0x99, 0x32, 0x0e +.byte 0x08, 0x48, 0x56, 0x5b, 0x6a, 0xfb, 0xda, 0xe1, 0x58, 0x58, 0x01, 0x49, 0x5f, 0x72, 0x41, 0x3c +.byte 0x15, 0x06, 0x01, 0x8e, 0x5d, 0xad, 0xaa, 0xb8, 0x93, 0xb4, 0xcd, 0x9e, 0xeb, 0xa7, 0xe8, 0x6a +.byte 0x2d, 0x52, 0x34, 0xdb, 0x3a, 0xef, 0x5c, 0x75, 0x51, 0xda, 0xdb, 0xf3, 0x31, 0xf9, 0xee, 0x71 +.byte 0x98, 0x32, 0xc4, 0x54, 0x15, 0x44, 0x0c, 0xf9, 0x9b, 0x55, 0xed, 0xad, 0xdf, 0x18, 0x08, 0xa0 +.byte 0xa3, 0x86, 0x8a, 0x49, 0xee, 0x53, 0x05, 0x8f, 0x19, 0x4c, 0xd5, 0xde, 0x58, 0x79, 0x9b, 0xd2 +.byte 0x6a, 0x1c, 0x42, 0xab, 0xc5, 0xd5, 0xa7, 0xcf, 0x68, 0x0f, 0x96, 0xe4, 0xe1, 0x61, 0x98, 0x76 +.byte 0x61, 0xc8, 0x91, 0x7c, 0xd6, 0x3e, 0x00, 0xe2, 0x91, 0x50, 0x87, 0xe1, 0x9d, 0x0a, 0xe6, 0xad +.byte 0x97, 0xd2, 0x1d, 0xc6, 0x3a, 0x7d, 0xcb, 0xbc, 0xda, 0x03, 0x34, 0xd5, 0x8e, 0x5b, 0x01, 0xf5 +.byte 0x6a, 0x07, 0xb7, 0x16, 0xb6, 0x6e, 0x4a, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x77, 0x01 +.byte 0x26, 0x30, 0x75, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x45 +.byte 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x19, 0x41, 0x53, 0x20, 0x53, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x74, 0x73, 0x65, 0x65, 0x72, 0x69, 0x6d, 0x69, 0x73, 0x6b, 0x65 +.byte 0x73, 0x6b, 0x75, 0x73, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1f, 0x45 +.byte 0x45, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x43, 0x65, 0x6e, 0x74, 0x72, 0x65, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x18 +.byte 0x30, 0x16, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x09, 0x01, 0x16, 0x09, 0x70 +.byte 0x6b, 0x69, 0x40, 0x73, 0x6b, 0x2e, 0x65, 0x65, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc8, 0x20, 0xc0, 0xec, 0xe0, 0xc5, 0x4b +.byte 0xab, 0x07, 0x78, 0x95, 0xf3, 0x44, 0xee, 0xfb, 0x0b, 0x0c, 0xff, 0x74, 0x8e, 0x61, 0xbb, 0xb1 +.byte 0x62, 0xea, 0x23, 0xd8, 0xab, 0xa1, 0x65, 0x32, 0x7a, 0xeb, 0x8e, 0x17, 0x4f, 0x96, 0xd8, 0x0a +.byte 0x7b, 0x91, 0xa2, 0x63, 0x6c, 0xc7, 0x8c, 0x4c, 0x2e, 0x79, 0xbf, 0xa9, 0x05, 0xfc, 0x69, 0x5c +.byte 0x95, 0x8d, 0x62, 0xf9, 0xb9, 0x70, 0xed, 0xc3, 0x51, 0x7d, 0xd0, 0x93, 0xe6, 0x6c, 0xeb, 0x30 +.byte 0x4b, 0xe1, 0xbc, 0x7d, 0xbf, 0x52, 0x9b, 0xce, 0x6e, 0x7b, 0x65, 0xf2, 0x38, 0xb1, 0xc0, 0xa2 +.byte 0x32, 0xef, 0x62, 0xb2, 0x68, 0xe0, 0x61, 0x53, 0xc1, 0x36, 0x95, 0xff, 0xec, 0x94, 0xba, 0x36 +.byte 0xae, 0x9c, 0x1c, 0xa7, 0x32, 0x0f, 0xe5, 0x7c, 0xb4, 0xc6, 0x6f, 0x74, 0xfd, 0x7b, 0x18, 0xe8 +.byte 0xac, 0x57, 0xed, 0x06, 0x20, 0x4b, 0x32, 0x30, 0x58, 0x5b, 0xfd, 0xcd, 0xa8, 0xe6, 0xa1, 0xfc +.byte 0x70, 0xbc, 0x8e, 0x92, 0x73, 0xdb, 0x97, 0xa7, 0x7c, 0x21, 0xae, 0x3d, 0xc1, 0xf5, 0x48, 0x87 +.byte 0x6c, 0x27, 0xbd, 0x9f, 0x25, 0x74, 0x81, 0x55, 0xb0, 0xf7, 0x75, 0xf6, 0x3d, 0xa4, 0x64, 0x6b +.byte 0xd6, 0x4f, 0xe7, 0xce, 0x40, 0xad, 0x0f, 0xdd, 0x32, 0xd3, 0xbc, 0x8a, 0x12, 0x53, 0x98, 0xc9 +.byte 0x89, 0xfb, 0x10, 0x1d, 0x4d, 0x7e, 0xcd, 0x7e, 0x1f, 0x56, 0x0d, 0x21, 0x70, 0x85, 0xf6, 0x20 +.byte 0x83, 0x1f, 0xf6, 0xba, 0x1f, 0x04, 0x8f, 0xea, 0x77, 0x88, 0x35, 0xc4, 0xff, 0xea, 0x4e, 0xa1 +.byte 0x8b, 0x4d, 0x3f, 0x63, 0x1b, 0x44, 0xc3, 0x44, 0xd4, 0x25, 0x76, 0xca, 0xb7, 0x8d, 0xd7, 0x1e +.byte 0x4a, 0x66, 0x64, 0xcd, 0x5c, 0xc5, 0x9c, 0x83, 0xe1, 0xc2, 0x08, 0x88, 0x9a, 0xec, 0x4e, 0xa3 +.byte 0xf1, 0x3e, 0x1c, 0x2c, 0xd9, 0x6c, 0x1d, 0xa1, 0x4b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x7d +.byte 0x01, 0x26, 0x30, 0x7b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47 +.byte 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x12, 0x47, 0x72, 0x65, 0x61 +.byte 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10 +.byte 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64 +.byte 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x43, 0x6f, 0x6d, 0x6f, 0x64 +.byte 0x6f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x21, 0x30, 0x1f +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x18, 0x41, 0x41, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x30 +.byte 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00 +.byte 0xbe, 0x40, 0x9d, 0xf4, 0x6e, 0xe1, 0xea, 0x76, 0x87, 0x1c, 0x4d, 0x45, 0x44, 0x8e, 0xbe, 0x46 +.byte 0xc8, 0x83, 0x06, 0x9d, 0xc1, 0x2a, 0xfe, 0x18, 0x1f, 0x8e, 0xe4, 0x02, 0xfa, 0xf3, 0xab, 0x5d +.byte 0x50, 0x8a, 0x16, 0x31, 0x0b, 0x9a, 0x06, 0xd0, 0xc5, 0x70, 0x22, 0xcd, 0x49, 0x2d, 0x54, 0x63 +.byte 0xcc, 0xb6, 0x6e, 0x68, 0x46, 0x0b, 0x53, 0xea, 0xcb, 0x4c, 0x24, 0xc0, 0xbc, 0x72, 0x4e, 0xea +.byte 0xf1, 0x15, 0xae, 0xf4, 0x54, 0x9a, 0x12, 0x0a, 0xc3, 0x7a, 0xb2, 0x33, 0x60, 0xe2, 0xda, 0x89 +.byte 0x55, 0xf3, 0x22, 0x58, 0xf3, 0xde, 0xdc, 0xcf, 0xef, 0x83, 0x86, 0xa2, 0x8c, 0x94, 0x4f, 0x9f +.byte 0x68, 0xf2, 0x98, 0x90, 0x46, 0x84, 0x27, 0xc7, 0x76, 0xbf, 0xe3, 0xcc, 0x35, 0x2c, 0x8b, 0x5e +.byte 0x07, 0x64, 0x65, 0x82, 0xc0, 0x48, 0xb0, 0xa8, 0x91, 0xf9, 0x61, 0x9f, 0x76, 0x20, 0x50, 0xa8 +.byte 0x91, 0xc7, 0x66, 0xb5, 0xeb, 0x78, 0x62, 0x03, 0x56, 0xf0, 0x8a, 0x1a, 0x13, 0xea, 0x31, 0xa3 +.byte 0x1e, 0xa0, 0x99, 0xfd, 0x38, 0xf6, 0xf6, 0x27, 0x32, 0x58, 0x6f, 0x07, 0xf5, 0x6b, 0xb8, 0xfb +.byte 0x14, 0x2b, 0xaf, 0xb7, 0xaa, 0xcc, 0xd6, 0x63, 0x5f, 0x73, 0x8c, 0xda, 0x05, 0x99, 0xa8, 0x38 +.byte 0xa8, 0xcb, 0x17, 0x78, 0x36, 0x51, 0xac, 0xe9, 0x9e, 0xf4, 0x78, 0x3a, 0x8d, 0xcf, 0x0f, 0xd9 +.byte 0x42, 0xe2, 0x98, 0x0c, 0xab, 0x2f, 0x9f, 0x0e, 0x01, 0xde, 0xef, 0x9f, 0x99, 0x49, 0xf1, 0x2d +.byte 0xdf, 0xac, 0x74, 0x4d, 0x1b, 0x98, 0xb5, 0x47, 0xc5, 0xe5, 0x29, 0xd1, 0xf9, 0x90, 0x18, 0xc7 +.byte 0x62, 0x9c, 0xbe, 0x83, 0xc7, 0x26, 0x7b, 0x3e, 0x8a, 0x25, 0xc7, 0xc0, 0xdd, 0x9d, 0xe6, 0x35 +.byte 0x68, 0x10, 0x20, 0x9d, 0x8f, 0xd8, 0xde, 0xd2, 0xc3, 0x84, 0x9c, 0x0d, 0x5e, 0xe8, 0x2f, 0xc9 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x7e, 0x00, 0x78, 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04 +.byte 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53 +.byte 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 +.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x45 +.byte 0x6e, 0xa9, 0x50, 0xc4, 0xa6, 0x23, 0x36, 0x9e, 0x5f, 0x28, 0x8d, 0x17, 0xcb, 0x96, 0x22, 0x64 +.byte 0x3f, 0xdc, 0x7a, 0x8e, 0x1d, 0xcc, 0x08, 0xb3, 0xa2, 0x71, 0x24, 0xba, 0x8e, 0x49, 0xb9, 0x04 +.byte 0x1b, 0x47, 0x96, 0x58, 0xab, 0x2d, 0x95, 0xc8, 0xed, 0x9e, 0x08, 0x35, 0xc8, 0x27, 0xeb, 0x89 +.byte 0x8c, 0x53, 0x58, 0xeb, 0x62, 0x8a, 0xfe, 0xf0, 0x5b, 0x0f, 0x6b, 0x31, 0x52, 0x63, 0x41, 0x3b +.byte 0x89, 0xcd, 0xec, 0xec, 0xb6, 0x8d, 0x19, 0xd3, 0x34, 0x07, 0xdc, 0xbb, 0xc6, 0x06, 0x7f, 0xc2 +.byte 0x45, 0x95, 0xec, 0xcb, 0x7f, 0xa8, 0x23, 0xe0, 0x09, 0xe9, 0x81, 0xfa, 0xf3, 0x47, 0xd3, 0x00 +.byte 0x7e, 0x02, 0x26, 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78 +.byte 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75 +.byte 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53 +.byte 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31 +.byte 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x53 +.byte 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xf9, 0x0f, 0xdd, 0xa3, 0x2b, 0x7d, 0xcb, 0xd0, 0x2a, 0xfe, 0xec, 0x67, 0x85, 0xa6 +.byte 0xe7, 0x2e, 0x1b, 0xba, 0x77, 0xe1, 0xe3, 0xf5, 0xaf, 0xa4, 0xec, 0xfa, 0x4a, 0x5d, 0x91, 0xc4 +.byte 0x57, 0x47, 0x6b, 0x18, 0x77, 0x6b, 0x76, 0xf2, 0xfd, 0x93, 0xe4, 0x3d, 0x0f, 0xc2, 0x16, 0x9e +.byte 0x0b, 0x66, 0xc3, 0x56, 0x94, 0x9e, 0x17, 0x83, 0x85, 0xce, 0x56, 0xef, 0xf2, 0x16, 0xfd, 0x00 +.byte 0x62, 0xf5, 0x22, 0x09, 0x54, 0xe8, 0x65, 0x17, 0x4e, 0x41, 0xb9, 0xe0, 0x4f, 0x46, 0x97, 0xaa +.byte 0x1b, 0xc8, 0xb8, 0x6e, 0x62, 0x5e, 0x69, 0xb1, 0x5f, 0xdb, 0x2a, 0x02, 0x7e, 0xfc, 0x6c, 0xca +.byte 0xf3, 0x41, 0xd8, 0xed, 0xd0, 0xe8, 0xfc, 0x3f, 0x61, 0x48, 0xed, 0xb0, 0x03, 0x14, 0x1d, 0x10 +.byte 0x0e, 0x4b, 0x19, 0xe0, 0xbb, 0x4e, 0xec, 0x86, 0x65, 0xff, 0x36, 0xf3, 0x5e, 0x67, 0x02, 0x0b +.byte 0x9d, 0x86, 0x55, 0x61, 0xfd, 0x7a, 0x38, 0xed, 0xfe, 0xe2, 0x19, 0x00, 0xb7, 0x6f, 0xa1, 0x50 +.byte 0x62, 0x75, 0x74, 0x3c, 0xa0, 0xfa, 0xc8, 0x25, 0x92, 0xb4, 0x6e, 0x7a, 0x22, 0xc7, 0xf8, 0x1e +.byte 0xa1, 0xe3, 0xb2, 0xdd, 0x91, 0x31, 0xab, 0x2b, 0x1d, 0x04, 0xff, 0xa5, 0x4a, 0x04, 0x37, 0xe9 +.byte 0x85, 0xa4, 0x33, 0x2b, 0xfd, 0xe2, 0xd6, 0x55, 0x34, 0x7c, 0x19, 0xa4, 0x4a, 0x68, 0xc7, 0xb2 +.byte 0xa8, 0xd3, 0xb7, 0xca, 0xa1, 0x93, 0x88, 0xeb, 0xc1, 0x97, 0xbc, 0x8c, 0xf9, 0x1d, 0xd9, 0x22 +.byte 0x84, 0x24, 0x74, 0xc7, 0x04, 0x3d, 0x6a, 0xa9, 0x29, 0x93, 0xcc, 0xeb, 0xb8, 0x5b, 0xe1, 0xfe +.byte 0x5f, 0x25, 0xaa, 0x34, 0x58, 0xc8, 0xc1, 0x23, 0x54, 0x9d, 0x1b, 0x98, 0x11, 0xc3, 0x38, 0x9c +.byte 0x7e, 0x3d, 0x86, 0x6c, 0xa5, 0x0f, 0x40, 0x86, 0x7c, 0x02, 0xf4, 0x5c, 0x02, 0x4f, 0x28, 0xcb +.byte 0xae, 0x71, 0x9f, 0x0f, 0x3a, 0xc8, 0x33, 0xfe, 0x11, 0x25, 0x35, 0xea, 0xfc, 0xba, 0xc5, 0x60 +.byte 0x3d, 0xd9, 0x7c, 0x18, 0xd5, 0xb2, 0xa9, 0xd3, 0x75, 0x78, 0x03, 0x72, 0x22, 0xca, 0x3a, 0xc3 +.byte 0x1f, 0xef, 0x2c, 0xe5, 0x2e, 0xa9, 0xfa, 0x9e, 0x2c, 0xb6, 0x51, 0x46, 0xfd, 0xaf, 0x03, 0xd6 +.byte 0xea, 0x60, 0x68, 0xea, 0x85, 0x16, 0x36, 0x6b, 0x85, 0xe9, 0x1e, 0xc0, 0xb3, 0xdd, 0xc4, 0x24 +.byte 0xdc, 0x80, 0x2a, 0x81, 0x41, 0x6d, 0x94, 0x3e, 0xc8, 0xe0, 0xc9, 0x81, 0x41, 0x00, 0x9e, 0x5e +.byte 0xbf, 0x7f, 0xc5, 0x08, 0x98, 0xa2, 0x18, 0x2c, 0x42, 0x40, 0xb3, 0xf9, 0x6f, 0x38, 0x27, 0x4b +.byte 0x4e, 0x80, 0xf4, 0x3d, 0x81, 0x47, 0xe0, 0x88, 0x7c, 0xea, 0x1c, 0xce, 0xb5, 0x75, 0x5c, 0x51 +.byte 0x2e, 0x1c, 0x2b, 0x7f, 0x1a, 0x72, 0x28, 0xe7, 0x00, 0xb5, 0xd1, 0x74, 0xc6, 0xd7, 0xe4, 0x9f +.byte 0xad, 0x07, 0x93, 0xb6, 0x53, 0x35, 0x35, 0xfc, 0x37, 0xe4, 0xc3, 0xf6, 0x5d, 0x16, 0xbe, 0x21 +.byte 0x73, 0xde, 0x92, 0x0a, 0xf8, 0xa0, 0x63, 0x6a, 0xbc, 0x96, 0x92, 0x6a, 0x3e, 0xf8, 0xbc, 0x65 +.byte 0x55, 0x9b, 0xde, 0xf5, 0x0d, 0x89, 0x26, 0x04, 0xfc, 0x25, 0x1a, 0xa6, 0x25, 0x69, 0xcb, 0xc2 +.byte 0x6d, 0xca, 0x7c, 0xe2, 0x59, 0x5f, 0x97, 0xac, 0xeb, 0xef, 0x2e, 0xc8, 0xbc, 0xd7, 0x1b, 0x59 +.byte 0x3c, 0x2b, 0xcc, 0xf2, 0x19, 0xc8, 0x93, 0x6b, 0x27, 0x63, 0x19, 0xcf, 0xfc, 0xe9, 0x26, 0xf8 +.byte 0xca, 0x71, 0x9b, 0x7f, 0x93, 0xfe, 0x34, 0x67, 0x84, 0x4e, 0x99, 0xeb, 0xfc, 0xb3, 0x78, 0x09 +.byte 0x33, 0x70, 0xba, 0x66, 0xa6, 0x76, 0xed, 0x1b, 0x73, 0xeb, 0x1a, 0xa5, 0x0d, 0xc4, 0x22, 0x13 +.byte 0x20, 0x94, 0x56, 0x0a, 0x4e, 0x2c, 0x6c, 0x4e, 0xb1, 0xfd, 0xcf, 0x9c, 0x09, 0xba, 0xa2, 0x33 +.byte 0xed, 0x87, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x80, 0x01, 0x26, 0x30, 0x7e, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63 +.byte 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27 +.byte 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20 +.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x19, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64 +.byte 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe3, 0xfb, 0x7d, 0xa3 +.byte 0x72, 0xba, 0xc2, 0xf0, 0xc9, 0x14, 0x87, 0xf5, 0x6b, 0x01, 0x4e, 0xe1, 0x6e, 0x40, 0x07, 0xba +.byte 0x6d, 0x27, 0x5d, 0x7f, 0xf7, 0x5b, 0x2d, 0xb3, 0x5a, 0xc7, 0x51, 0x5f, 0xab, 0xa4, 0x32, 0xa6 +.byte 0x61, 0x87, 0xb6, 0x6e, 0x0f, 0x86, 0xd2, 0x30, 0x02, 0x97, 0xf8, 0xd7, 0x69, 0x57, 0xa1, 0x18 +.byte 0x39, 0x5d, 0x6a, 0x64, 0x79, 0xc6, 0x01, 0x59, 0xac, 0x3c, 0x31, 0x4a, 0x38, 0x7c, 0xd2, 0x04 +.byte 0xd2, 0x4b, 0x28, 0xe8, 0x20, 0x5f, 0x3b, 0x07, 0xa2, 0xcc, 0x4d, 0x73, 0xdb, 0xf3, 0xae, 0x4f +.byte 0xc7, 0x56, 0xd5, 0x5a, 0xa7, 0x96, 0x89, 0xfa, 0xf3, 0xab, 0x68, 0xd4, 0x23, 0x86, 0x59, 0x27 +.byte 0xcf, 0x09, 0x27, 0xbc, 0xac, 0x6e, 0x72, 0x83, 0x1c, 0x30, 0x72, 0xdf, 0xe0, 0xa2, 0xe9, 0xd2 +.byte 0xe1, 0x74, 0x75, 0x19, 0xbd, 0x2a, 0x9e, 0x7b, 0x15, 0x54, 0x04, 0x1b, 0xd7, 0x43, 0x39, 0xad +.byte 0x55, 0x28, 0xc5, 0xe2, 0x1a, 0xbb, 0xf4, 0xc0, 0xe4, 0xae, 0x38, 0x49, 0x33, 0xcc, 0x76, 0x85 +.byte 0x9f, 0x39, 0x45, 0xd2, 0xa4, 0x9e, 0xf2, 0x12, 0x8c, 0x51, 0xf8, 0x7c, 0xe4, 0x2d, 0x7f, 0xf5 +.byte 0xac, 0x5f, 0xeb, 0x16, 0x9f, 0xb1, 0x2d, 0xd1, 0xba, 0xcc, 0x91, 0x42, 0x77, 0x4c, 0x25, 0xc9 +.byte 0x90, 0x38, 0x6f, 0xdb, 0xf0, 0xcc, 0xfb, 0x8e, 0x1e, 0x97, 0x59, 0x3e, 0xd5, 0x60, 0x4e, 0xe6 +.byte 0x05, 0x28, 0xed, 0x49, 0x79, 0x13, 0x4b, 0xba, 0x48, 0xdb, 0x2f, 0xf9, 0x72, 0xd3, 0x39, 0xca +.byte 0xfe, 0x1f, 0xd8, 0x34, 0x72, 0xf5, 0xb4, 0x40, 0xcf, 0x31, 0x01, 0xc3, 0xec, 0xde, 0x11, 0x2d +.byte 0x17, 0x5d, 0x1f, 0xb8, 0x50, 0xd1, 0x5e, 0x19, 0xa7, 0x69, 0xde, 0x07, 0x33, 0x28, 0xca, 0x50 +.byte 0x95, 0xf9, 0xa7, 0x54, 0xcb, 0x54, 0x86, 0x50, 0x45, 0xa9, 0xf9, 0x49, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x81, 0x01, 0x26, 0x30, 0x7f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51 +.byte 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31 +.byte 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x25, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbf, 0x61, 0xb5, 0x95, 0x53, 0xba, 0x57, 0xfc, 0xfa +.byte 0xf2, 0x67, 0x0b, 0x3a, 0x1a, 0xdf, 0x11, 0x80, 0x64, 0x95, 0xb4, 0xd1, 0xbc, 0xcd, 0x7a, 0xcf +.byte 0xf6, 0x29, 0x96, 0x2e, 0x24, 0x54, 0x40, 0x24, 0x38, 0xf7, 0x1a, 0x85, 0xdc, 0x58, 0x4c, 0xcb +.byte 0xa4, 0x27, 0x42, 0x97, 0xd0, 0x9f, 0x83, 0x8a, 0xc3, 0xe4, 0x06, 0x03, 0x5b, 0x00, 0xa5, 0x51 +.byte 0x1e, 0x70, 0x04, 0x74, 0xe2, 0xc1, 0xd4, 0x3a, 0xab, 0xd7, 0xad, 0x3b, 0x07, 0x18, 0x05, 0x8e +.byte 0xfd, 0x83, 0xac, 0xea, 0x66, 0xd9, 0x18, 0x1b, 0x68, 0x8a, 0xf5, 0x57, 0x1a, 0x98, 0xba, 0xf5 +.byte 0xed, 0x76, 0x3d, 0x7c, 0xd9, 0xde, 0x94, 0x6a, 0x3b, 0x4b, 0x17, 0xc1, 0xd5, 0x8f, 0xbd, 0x65 +.byte 0x38, 0x3a, 0x95, 0xd0, 0x3d, 0x55, 0x36, 0x4e, 0xdf, 0x79, 0x57, 0x31, 0x2a, 0x1e, 0xd8, 0x59 +.byte 0x65, 0x49, 0x58, 0x20, 0x98, 0x7e, 0xab, 0x5f, 0x7e, 0x9f, 0xe9, 0xd6, 0x4d, 0xec, 0x83, 0x74 +.byte 0xa9, 0xc7, 0x6c, 0xd8, 0xee, 0x29, 0x4a, 0x85, 0x2a, 0x06, 0x14, 0xf9, 0x54, 0xe6, 0xd3, 0xda +.byte 0x65, 0x07, 0x8b, 0x63, 0x37, 0x12, 0xd7, 0xd0, 0xec, 0xc3, 0x7b, 0x20, 0x41, 0x44, 0xa3, 0xed +.byte 0xcb, 0xa0, 0x17, 0xe1, 0x71, 0x65, 0xce, 0x1d, 0x66, 0x31, 0xf7, 0x76, 0x01, 0x19, 0xc8, 0x7d +.byte 0x03, 0x58, 0xb6, 0x95, 0x49, 0x1d, 0xa6, 0x12, 0x26, 0xe8, 0xc6, 0x0c, 0x76, 0xe0, 0xe3, 0x66 +.byte 0xcb, 0xea, 0x5d, 0xa6, 0x26, 0xee, 0xe5, 0xcc, 0x5f, 0xbd, 0x67, 0xa7, 0x01, 0x27, 0x0e, 0xa2 +.byte 0xca, 0x54, 0xc5, 0xb1, 0x7a, 0x95, 0x1d, 0x71, 0x1e, 0x4a, 0x29, 0x8a, 0x03, 0xdc, 0x6a, 0x45 +.byte 0xc1, 0xa4, 0x19, 0x5e, 0x6f, 0x36, 0xcd, 0xc3, 0xa2, 0xb0, 0xb7, 0xfe, 0x5c, 0x38, 0xe2, 0x52 +.byte 0xbc, 0xf8, 0x44, 0x43, 0xe6, 0x90, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x81, 0x00, 0x78 +.byte 0x30, 0x7f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31 +.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f +.byte 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20 +.byte 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x34, 0x30, 0x32, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2b, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x45, 0x43 +.byte 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05 +.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xaa, 0x12, 0x47, 0x90, 0x98, 0x1b, 0xfb +.byte 0xef, 0xc3, 0x40, 0x07, 0x83, 0x20, 0x4e, 0xf1, 0x30, 0x82, 0xa2, 0x06, 0xd1, 0xf2, 0x92, 0x86 +.byte 0x61, 0xf2, 0xf6, 0x21, 0x68, 0xca, 0x00, 0xc4, 0xc7, 0xea, 0x43, 0x00, 0x54, 0x86, 0xdc, 0xfd +.byte 0x1f, 0xdf, 0x00, 0xb8, 0x41, 0x62, 0x5c, 0xdc, 0x70, 0x16, 0x32, 0xde, 0x1f, 0x99, 0xd4, 0xcc +.byte 0xc5, 0x07, 0xc8, 0x08, 0x1f, 0x61, 0x16, 0x07, 0x51, 0x3d, 0x7d, 0x5c, 0x07, 0x53, 0xe3, 0x35 +.byte 0x38, 0x8c, 0xdf, 0xcd, 0x9f, 0xd9, 0x2e, 0x0d, 0x4a, 0xb6, 0x19, 0x2e, 0x5a, 0x70, 0x5a, 0x06 +.byte 0xed, 0xbe, 0xf0, 0xa1, 0xb0, 0xca, 0xd0, 0x09, 0x29, 0x00, 0x83, 0x02, 0x26, 0x30, 0x81, 0x80 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30 +.byte 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20 +.byte 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41 +.byte 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74 +.byte 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x1b, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41, 0x20, 0x32 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0xbd, 0xf9, 0x78, 0xf8, 0xe6, 0xd5, 0x80, 0x0c, 0x64, 0x9d, 0x86, 0x1b, 0x96, 0x64, 0x67 +.byte 0x3f, 0x22, 0x3a, 0x1e, 0x75, 0x01, 0x7d, 0xef, 0xfb, 0x5c, 0x67, 0x8c, 0xc9, 0xcc, 0x5c, 0x6b +.byte 0xa9, 0x91, 0xe6, 0xb9, 0x42, 0xe5, 0x20, 0x4b, 0x9b, 0xda, 0x9b, 0x7b, 0xb9, 0x99, 0x5d, 0xd9 +.byte 0x9b, 0x80, 0x4b, 0xd7, 0x84, 0x40, 0x2b, 0x27, 0xd3, 0xe8, 0xba, 0x30, 0xbb, 0x3e, 0x09, 0x1a +.byte 0xa7, 0x49, 0x95, 0xef, 0x2b, 0x40, 0x24, 0xc2, 0x97, 0xc7, 0xa7, 0xee, 0x9b, 0x25, 0xef, 0xa8 +.byte 0x0a, 0x00, 0x97, 0x85, 0x5a, 0xaa, 0x9d, 0xdc, 0x29, 0xc9, 0xe2, 0x35, 0x07, 0xeb, 0x70, 0x4d +.byte 0x4a, 0xd6, 0xc1, 0xb3, 0x56, 0xb8, 0xa1, 0x41, 0x38, 0x9b, 0xd1, 0xfb, 0x31, 0x7f, 0x8f, 0xe0 +.byte 0x5f, 0xe1, 0xb1, 0x3f, 0x0f, 0x8e, 0x16, 0x49, 0x60, 0xd7, 0x06, 0x8d, 0x18, 0xf9, 0xaa, 0x26 +.byte 0x10, 0xab, 0x2a, 0xd3, 0xd0, 0xd1, 0x67, 0x8d, 0x1b, 0x46, 0xbe, 0x47, 0x30, 0xd5, 0x2e, 0x72 +.byte 0xd1, 0xc5, 0x63, 0xda, 0xe7, 0x63, 0x79, 0x44, 0x7e, 0x4b, 0x63, 0x24, 0x89, 0x86, 0x2e, 0x34 +.byte 0x3f, 0x29, 0x4c, 0x52, 0x8b, 0x2a, 0xa7, 0xc0, 0xe2, 0x91, 0x28, 0x89, 0xb9, 0xc0, 0x5b, 0xf9 +.byte 0x1d, 0xd9, 0xe7, 0x27, 0xad, 0xff, 0x9a, 0x02, 0x97, 0xc1, 0xc6, 0x50, 0x92, 0x9b, 0x02, 0x2c +.byte 0xbd, 0xa9, 0xb9, 0x34, 0x59, 0x0a, 0xbf, 0x84, 0x4a, 0xff, 0xdf, 0xfe, 0xb3, 0x9f, 0xeb, 0xd9 +.byte 0x9e, 0xe0, 0x98, 0x23, 0xec, 0xa6, 0x6b, 0x77, 0x16, 0x2a, 0xdb, 0xcc, 0xad, 0x3b, 0x1c, 0xa4 +.byte 0x87, 0xdc, 0x46, 0x73, 0x5e, 0x19, 0x62, 0x68, 0x45, 0x57, 0xe4, 0x90, 0x82, 0x42, 0xbb, 0x42 +.byte 0xd6, 0xf0, 0x61, 0xe0, 0xc1, 0xa3, 0x3d, 0x66, 0xa3, 0x5d, 0xf4, 0x18, 0xee, 0x88, 0xc9, 0x8d +.byte 0x17, 0x45, 0x29, 0x99, 0x32, 0x75, 0x02, 0x31, 0xee, 0x29, 0x26, 0xc8, 0x6b, 0x02, 0xe6, 0xb5 +.byte 0x62, 0x45, 0x7f, 0x37, 0x15, 0x5a, 0x23, 0x68, 0x89, 0xd4, 0x3e, 0xde, 0x4e, 0x27, 0xb0, 0xf0 +.byte 0x40, 0x0c, 0xbc, 0x4d, 0x17, 0xcb, 0x4d, 0xa2, 0xb3, 0x1e, 0xd0, 0x06, 0x5a, 0xdd, 0xf6, 0x93 +.byte 0xcf, 0x57, 0x75, 0x99, 0xf5, 0xfa, 0x86, 0x1a, 0x67, 0x78, 0xb3, 0xbf, 0x96, 0xfe, 0x34, 0xdc +.byte 0xbd, 0xe7, 0x52, 0x56, 0xe5, 0xb3, 0xe5, 0x75, 0x7b, 0xd7, 0x41, 0x91, 0x05, 0xdc, 0x5d, 0x69 +.byte 0xe3, 0x95, 0x0d, 0x43, 0xb9, 0xfc, 0x83, 0x96, 0x39, 0x95, 0x7b, 0x6c, 0x80, 0x5a, 0x4f, 0x13 +.byte 0x72, 0xc6, 0xd7, 0x7d, 0x29, 0x7a, 0x44, 0xba, 0x52, 0xa4, 0x2a, 0xd5, 0x41, 0x46, 0x09, 0x20 +.byte 0xfe, 0x22, 0xa0, 0xb6, 0x5b, 0x30, 0x8d, 0xbc, 0x89, 0x0c, 0xd5, 0xd7, 0x70, 0xf8, 0x87, 0x52 +.byte 0xfd, 0xda, 0xef, 0xac, 0x51, 0x2e, 0x07, 0xb3, 0x4e, 0xfe, 0xd0, 0x09, 0xda, 0x70, 0xef, 0x98 +.byte 0xfa, 0x56, 0xe6, 0x6d, 0xdb, 0xb5, 0x57, 0x4b, 0xdc, 0xe5, 0x2c, 0x25, 0x15, 0xc8, 0x9e, 0x2e +.byte 0x78, 0x4e, 0xf8, 0xda, 0x9c, 0x9e, 0x86, 0x2c, 0xca, 0x57, 0xf3, 0x1a, 0xe5, 0xc8, 0x92, 0x8b +.byte 0x1a, 0x82, 0x96, 0x7a, 0xc3, 0xbc, 0x50, 0x12, 0x69, 0xd8, 0x0e, 0x5a, 0x46, 0x8b, 0x3a, 0xeb +.byte 0x26, 0xfa, 0x23, 0xc9, 0xb6, 0xb0, 0x81, 0xbe, 0x42, 0x00, 0xa4, 0xf8, 0xd6, 0xfe, 0x30, 0x2e +.byte 0xc7, 0xd2, 0x46, 0xf6, 0xe5, 0x8e, 0x75, 0xfd, 0xf2, 0xcc, 0xb9, 0xd0, 0x87, 0x5b, 0xcc, 0x06 +.byte 0x10, 0x60, 0xbb, 0x83, 0x35, 0xb7, 0x5e, 0x67, 0xde, 0x47, 0xec, 0x99, 0x48, 0xf1, 0xa4, 0xa1 +.byte 0x15, 0xfe, 0xad, 0x8c, 0x62, 0x8e, 0x39, 0x55, 0x4f, 0x39, 0x16, 0xb9, 0xb1, 0x63, 0x9d, 0xff +.byte 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x84, 0x01, 0x26, 0x30, 0x81, 0x81, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03 +.byte 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e +.byte 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07 +.byte 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69 +.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e +.byte 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0 +.byte 0x40, 0x8b, 0x8b, 0x72, 0xe3, 0x91, 0x1b, 0xf7, 0x51, 0xc1, 0x1b, 0x54, 0x04, 0x98, 0xd3, 0xa9 +.byte 0xbf, 0xc1, 0xe6, 0x8a, 0x5d, 0x3b, 0x87, 0xfb, 0xbb, 0x88, 0xce, 0x0d, 0xe3, 0x2f, 0x3f, 0x06 +.byte 0x96, 0xf0, 0xa2, 0x29, 0x50, 0x99, 0xae, 0xdb, 0x3b, 0xa1, 0x57, 0xb0, 0x74, 0x51, 0x71, 0xcd +.byte 0xed, 0x42, 0x91, 0x4d, 0x41, 0xfe, 0xa9, 0xc8, 0xd8, 0x6a, 0x86, 0x77, 0x44, 0xbb, 0x59, 0x66 +.byte 0x97, 0x50, 0x5e, 0xb4, 0xd4, 0x2c, 0x70, 0x44, 0xcf, 0xda, 0x37, 0x95, 0x42, 0x69, 0x3c, 0x30 +.byte 0xc4, 0x71, 0xb3, 0x52, 0xf0, 0x21, 0x4d, 0xa1, 0xd8, 0xba, 0x39, 0x7c, 0x1c, 0x9e, 0xa3, 0x24 +.byte 0x9d, 0xf2, 0x83, 0x16, 0x98, 0xaa, 0x16, 0x7c, 0x43, 0x9b, 0x15, 0x5b, 0xb7, 0xae, 0x34, 0x91 +.byte 0xfe, 0xd4, 0x62, 0x26, 0x18, 0x46, 0x9a, 0x3f, 0xeb, 0xc1, 0xf9, 0xf1, 0x90, 0x57, 0xeb, 0xac +.byte 0x7a, 0x0d, 0x8b, 0xdb, 0x72, 0x30, 0x6a, 0x66, 0xd5, 0xe0, 0x46, 0xa3, 0x70, 0xdc, 0x68, 0xd9 +.byte 0xff, 0x04, 0x48, 0x89, 0x77, 0xde, 0xb5, 0xe9, 0xfb, 0x67, 0x6d, 0x41, 0xe9, 0xbc, 0x39, 0xbd +.byte 0x32, 0xd9, 0x62, 0x02, 0xf1, 0xb1, 0xa8, 0x3d, 0x6e, 0x37, 0x9c, 0xe2, 0x2f, 0xe2, 0xd3, 0xa2 +.byte 0x26, 0x8b, 0xc6, 0xb8, 0x55, 0x43, 0x88, 0xe1, 0x23, 0x3e, 0xa5, 0xd2, 0x24, 0x39, 0x6a, 0x47 +.byte 0xab, 0x00, 0xd4, 0xa1, 0xb3, 0xa9, 0x25, 0xfe, 0x0d, 0x3f, 0xa7, 0x1d, 0xba, 0xd3, 0x51, 0xc1 +.byte 0x0b, 0xa4, 0xda, 0xac, 0x38, 0xef, 0x55, 0x50, 0x24, 0x05, 0x65, 0x46, 0x93, 0x34, 0x4f, 0x2d +.byte 0x8d, 0xad, 0xc6, 0xd4, 0x21, 0x19, 0xd2, 0x8e, 0xca, 0x05, 0x61, 0x71, 0x07, 0x73, 0x47, 0xe5 +.byte 0x8a, 0x19, 0x12, 0xbd, 0x04, 0x4d, 0xce, 0x4e, 0x9c, 0xa5, 0x48, 0xac, 0xbb, 0x26, 0xf7, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74 +.byte 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73 +.byte 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16 +.byte 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x30, 0x82, 0x01 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xaa, 0x5f +.byte 0xda, 0x1b, 0x5f, 0xe8, 0x73, 0x91, 0xe5, 0xda, 0x5c, 0xf4, 0xa2, 0xe6, 0x47, 0xe5, 0xf3, 0x68 +.byte 0x55, 0x60, 0x05, 0x1d, 0x02, 0xa4, 0xb3, 0x9b, 0x59, 0xf3, 0x1e, 0x8a, 0xaf, 0x34, 0xad, 0xfc +.byte 0x0d, 0xc2, 0xd9, 0x48, 0x19, 0xee, 0x69, 0x8f, 0xc9, 0x20, 0xfc, 0x21, 0xaa, 0x07, 0x19, 0xed +.byte 0xb0, 0x5c, 0xac, 0x65, 0xc7, 0x5f, 0xed, 0x02, 0x7c, 0x7b, 0x7c, 0x2d, 0x1b, 0xd6, 0xba, 0xb9 +.byte 0x80, 0xc2, 0x18, 0x82, 0x16, 0x84, 0xfa, 0x66, 0xb0, 0x08, 0xc6, 0x54, 0x23, 0x81, 0xe4, 0xcd +.byte 0xb9, 0x49, 0x3f, 0xf6, 0x4f, 0x6e, 0x37, 0x48, 0x28, 0x38, 0x0f, 0xc5, 0xbe, 0xe7, 0x68, 0x70 +.byte 0xfd, 0x39, 0x97, 0x4d, 0xd2, 0xc7, 0x98, 0x91, 0x50, 0xaa, 0xc4, 0x44, 0xb3, 0x23, 0x7d, 0x39 +.byte 0x47, 0xe9, 0x52, 0x62, 0xd6, 0x12, 0x93, 0x5e, 0xb7, 0x31, 0x96, 0x42, 0x05, 0xfb, 0x76, 0xa7 +.byte 0x1e, 0xa3, 0xf5, 0xc2, 0xfc, 0xe9, 0x7a, 0xc5, 0x6c, 0xa9, 0x71, 0x4f, 0xea, 0xcb, 0x78, 0xbc +.byte 0x60, 0xaf, 0xc7, 0xde, 0xf4, 0xd9, 0xcb, 0xbe, 0x7e, 0x33, 0xa5, 0x6e, 0x94, 0x83, 0xf0, 0x34 +.byte 0xfa, 0x21, 0xab, 0xea, 0x8e, 0x72, 0xa0, 0x3f, 0xa4, 0xde, 0x30, 0x5b, 0xef, 0x86, 0x4d, 0x6a +.byte 0x95, 0x5b, 0x43, 0x44, 0xa8, 0x10, 0x15, 0x1c, 0xe5, 0x01, 0x57, 0xc5, 0x98, 0xf1, 0xe6, 0x06 +.byte 0x28, 0x91, 0xaa, 0x20, 0xc5, 0xb7, 0x53, 0x26, 0x51, 0x43, 0xb2, 0x0b, 0x11, 0x95, 0x58, 0xe1 +.byte 0xc0, 0x0f, 0x76, 0xd9, 0xc0, 0x8d, 0x7c, 0x81, 0xf3, 0x72, 0x70, 0x9e, 0x6f, 0xfe, 0x1a, 0x8e +.byte 0xd9, 0x5f, 0x35, 0xc6, 0xb2, 0x6f, 0x34, 0x7c, 0xbe, 0x48, 0x4f, 0xe2, 0x5a, 0x39, 0xd7, 0xd8 +.byte 0x9d, 0x78, 0x9e, 0x9f, 0x86, 0x3e, 0x03, 0x5e, 0x19, 0x8b, 0x44, 0xa2, 0xd5, 0xc7, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65 +.byte 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20 +.byte 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54 +.byte 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43 +.byte 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c +.byte 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x30, 0x82, 0x01, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbd, 0x75, 0x93 +.byte 0xf0, 0x62, 0x22, 0x6f, 0x24, 0xae, 0xe0, 0x7a, 0x76, 0xac, 0x7d, 0xbd, 0xd9, 0x24, 0xd5, 0xb8 +.byte 0xb7, 0xfc, 0xcd, 0xf0, 0x42, 0xe0, 0xeb, 0x78, 0x88, 0x56, 0x5e, 0x9b, 0x9a, 0x54, 0x1d, 0x4d +.byte 0x0c, 0x8a, 0xf6, 0xd3, 0xcf, 0x70, 0xf4, 0x52, 0xb5, 0xd8, 0x93, 0x04, 0xe3, 0x46, 0x86, 0x71 +.byte 0x41, 0x4a, 0x2b, 0xf0, 0x2a, 0x2c, 0x55, 0x03, 0xd6, 0x48, 0xc3, 0xe0, 0x39, 0x38, 0xed, 0xf2 +.byte 0x5c, 0x3c, 0x3f, 0x44, 0xbc, 0x93, 0x3d, 0x61, 0xab, 0x4e, 0xcd, 0x0d, 0xbe, 0xf0, 0x20, 0x27 +.byte 0x58, 0x0e, 0x44, 0x7f, 0x04, 0x1a, 0x87, 0xa5, 0xd7, 0x96, 0x14, 0x36, 0x90, 0xd0, 0x49, 0x7b +.byte 0xa1, 0x75, 0xfb, 0x1a, 0x6b, 0x73, 0xb1, 0xf8, 0xce, 0xa9, 0x09, 0x2c, 0xf2, 0x53, 0xd5, 0xc3 +.byte 0x14, 0x44, 0xb8, 0x86, 0xa5, 0xf6, 0x8b, 0x2b, 0x39, 0xda, 0xa3, 0x33, 0x54, 0xd9, 0xfa, 0x72 +.byte 0x1a, 0xf7, 0x22, 0x15, 0x1c, 0x88, 0x91, 0x6b, 0x7f, 0x66, 0xe5, 0xc3, 0x6a, 0x80, 0xb0, 0x24 +.byte 0xf3, 0xdf, 0x86, 0x45, 0x88, 0xfd, 0x19, 0x7f, 0x75, 0x87, 0x1f, 0x1f, 0xb1, 0x1b, 0x0a, 0x73 +.byte 0x24, 0x5b, 0xb9, 0x65, 0xe0, 0x2c, 0x54, 0xc8, 0x60, 0xd3, 0x66, 0x17, 0x3f, 0xe1, 0xcc, 0x54 +.byte 0x33, 0x73, 0x91, 0x02, 0x3a, 0xa6, 0x7f, 0x7b, 0x76, 0x39, 0xa2, 0x1f, 0x96, 0xb6, 0x38, 0xae +.byte 0xb5, 0xc8, 0x93, 0x74, 0x1d, 0x9e, 0xb9, 0xb4, 0xe5, 0x60, 0x9d, 0x2f, 0x56, 0xd1, 0xe0, 0xeb +.byte 0x5e, 0x5b, 0x4c, 0x12, 0x70, 0x0c, 0x6c, 0x44, 0x20, 0xab, 0x11, 0xd8, 0xf4, 0x19, 0xf6, 0xd2 +.byte 0x9c, 0x52, 0x37, 0xe7, 0xfa, 0xb6, 0xc2, 0x31, 0x3b, 0x4a, 0xd4, 0x14, 0x99, 0xad, 0xc7, 0x1a +.byte 0xf5, 0x5d, 0x5f, 0xfa, 0x07, 0xb8, 0x7c, 0x0d, 0x1f, 0xd6, 0x83, 0x1e, 0xb3, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c +.byte 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64 +.byte 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x4d, 0x69, 0x63, 0x72 +.byte 0x6f, 0x73, 0x65, 0x63, 0x20, 0x65, 0x2d, 0x53, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x30, 0x39, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x09, 0x01, 0x16, 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40 +.byte 0x65, 0x2d, 0x73, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x2e, 0x68, 0x75, 0x30, 0x82, 0x01, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe9, 0xf8, 0x8f, 0xf3 +.byte 0x63, 0xad, 0xda, 0x86, 0xd8, 0xa7, 0xe0, 0x42, 0xfb, 0xcf, 0x91, 0xde, 0xa6, 0x26, 0xf8, 0x99 +.byte 0xa5, 0x63, 0x70, 0xad, 0x9b, 0xae, 0xca, 0x33, 0x40, 0x7d, 0x6d, 0x96, 0x6e, 0xa1, 0x0e, 0x44 +.byte 0xee, 0xe1, 0x13, 0x9d, 0x94, 0x42, 0x52, 0x9a, 0xbd, 0x75, 0x85, 0x74, 0x2c, 0xa8, 0x0e, 0x1d +.byte 0x93, 0xb6, 0x18, 0xb7, 0x8c, 0x2c, 0xa8, 0xcf, 0xfb, 0x5c, 0x71, 0xb9, 0xda, 0xec, 0xfe, 0xe8 +.byte 0x7e, 0x8f, 0xe4, 0x2f, 0x1d, 0xb2, 0xa8, 0x75, 0x87, 0xd8, 0xb7, 0xa1, 0xe5, 0x3b, 0xcf, 0x99 +.byte 0x4a, 0x46, 0xd0, 0x83, 0x19, 0x7d, 0xc0, 0xa1, 0x12, 0x1c, 0x95, 0x6d, 0x4a, 0xf4, 0xd8, 0xc7 +.byte 0xa5, 0x4d, 0x33, 0x2e, 0x85, 0x39, 0x40, 0x75, 0x7e, 0x14, 0x7c, 0x80, 0x12, 0x98, 0x50, 0xc7 +.byte 0x41, 0x67, 0xb8, 0xa0, 0x80, 0x61, 0x54, 0xa6, 0x6c, 0x4e, 0x1f, 0xe0, 0x9d, 0x0e, 0x07, 0xe9 +.byte 0xc9, 0xba, 0x33, 0xe7, 0xfe, 0xc0, 0x55, 0x28, 0x2c, 0x02, 0x80, 0xa7, 0x19, 0xf5, 0x9e, 0xdc +.byte 0x55, 0x53, 0x03, 0x97, 0x7b, 0x07, 0x48, 0xff, 0x99, 0xfb, 0x37, 0x8a, 0x24, 0xc4, 0x59, 0xcc +.byte 0x50, 0x10, 0x63, 0x8e, 0xaa, 0xa9, 0x1a, 0xb0, 0x84, 0x1a, 0x86, 0xf9, 0x5f, 0xbb, 0xb1, 0x50 +.byte 0x6e, 0xa4, 0xd1, 0x0a, 0xcc, 0xd5, 0x71, 0x7e, 0x1f, 0xa7, 0x1b, 0x7c, 0xf5, 0x53, 0x6e, 0x22 +.byte 0x5f, 0xcb, 0x2b, 0xe6, 0xd4, 0x7c, 0x5d, 0xae, 0xd6, 0xc2, 0xc6, 0x4c, 0xe5, 0x05, 0x01, 0xd9 +.byte 0xed, 0x57, 0xfc, 0xc1, 0x23, 0x79, 0xfc, 0xfa, 0xc8, 0x24, 0x83, 0x95, 0xf3, 0xb5, 0x6a, 0x51 +.byte 0x01, 0xd0, 0x77, 0xd6, 0xe9, 0x12, 0xa1, 0xf9, 0x1a, 0x83, 0xfb, 0x82, 0x1b, 0xb9, 0xb0, 0x97 +.byte 0xf4, 0x76, 0x06, 0x33, 0x43, 0x49, 0xa0, 0xff, 0x0b, 0xb5, 0xfa, 0xb5, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x85, 0x02, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05 +.byte 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07 +.byte 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2e, 0x53, 0x53, 0x4c, 0x2e +.byte 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x8f, 0x36, 0x65, 0x40, 0xe1 +.byte 0xd6, 0x4d, 0xc0, 0xd7, 0xb4, 0xe9, 0x46, 0xda, 0x6b, 0xea, 0x33, 0x47, 0xcd, 0x4c, 0xf9, 0x7d +.byte 0x7d, 0xbe, 0xbd, 0x2d, 0x3d, 0xf0, 0xdb, 0x78, 0xe1, 0x86, 0xa5, 0xd9, 0xba, 0x09, 0x57, 0x68 +.byte 0xed, 0x57, 0x3e, 0xa0, 0xd0, 0x08, 0x41, 0x83, 0xe7, 0x28, 0x41, 0x24, 0x1f, 0xe3, 0x72, 0x15 +.byte 0xd0, 0x01, 0x1a, 0xfb, 0x5e, 0x70, 0x23, 0xb2, 0xcb, 0x9f, 0x39, 0xe3, 0xcf, 0xc5, 0x4e, 0xc6 +.byte 0x92, 0x6d, 0x26, 0xc6, 0x7b, 0xbb, 0xb3, 0xda, 0x27, 0x9d, 0x0a, 0x86, 0xe9, 0x81, 0x37, 0x05 +.byte 0xfe, 0xf0, 0x71, 0x71, 0xec, 0xc3, 0x1c, 0xe9, 0x63, 0xa2, 0x17, 0x14, 0x9d, 0xef, 0x1b, 0x67 +.byte 0xd3, 0x85, 0x55, 0x02, 0x02, 0xd6, 0x49, 0xc9, 0xcc, 0x5a, 0xe1, 0xb1, 0xf7, 0x6f, 0x32, 0x9f +.byte 0xc9, 0xd4, 0x3b, 0x88, 0x41, 0xa8, 0x9c, 0xbd, 0xcb, 0xab, 0xdb, 0x6d, 0x7b, 0x09, 0x1f, 0xa2 +.byte 0x4c, 0x72, 0x90, 0xda, 0x2b, 0x08, 0xfc, 0xcf, 0x3c, 0x54, 0xce, 0x67, 0x0f, 0xa8, 0xcf, 0x5d +.byte 0x96, 0x19, 0x0b, 0xc4, 0xe3, 0x72, 0xeb, 0xad, 0xd1, 0x7d, 0x1d, 0x27, 0xef, 0x92, 0xeb, 0x10 +.byte 0xbf, 0x5b, 0xeb, 0x3b, 0xaf, 0xcf, 0x80, 0xdd, 0xc1, 0xd2, 0x96, 0x04, 0x5b, 0x7a, 0x7e, 0xa4 +.byte 0xa9, 0x3c, 0x38, 0x76, 0xa4, 0x62, 0x8e, 0xa0, 0x39, 0x5e, 0xea, 0x77, 0xcf, 0x5d, 0x00, 0x59 +.byte 0x8f, 0x66, 0x2c, 0x3e, 0x07, 0xa2, 0xa3, 0x05, 0x26, 0x11, 0x69, 0x97, 0xea, 0x85, 0xb7, 0x0f +.byte 0x96, 0x0b, 0x4b, 0xc8, 0x40, 0xe1, 0x50, 0xba, 0x2e, 0x8a, 0xcb, 0xf7, 0x0f, 0x9a, 0x22, 0xe7 +.byte 0x7f, 0x9a, 0x37, 0x13, 0xcd, 0xf2, 0x4d, 0x13, 0x6b, 0x21, 0xd1, 0xc0, 0xcc, 0x22, 0xf2, 0xa1 +.byte 0x46, 0xf6, 0x44, 0x69, 0x9c, 0xca, 0x61, 0x35, 0x07, 0x00, 0x6f, 0xd6, 0x61, 0x08, 0x11, 0xea +.byte 0xba, 0xb8, 0xf6, 0xe9, 0xb3, 0x60, 0xe5, 0x4d, 0xb9, 0xec, 0x9f, 0x14, 0x66, 0xc9, 0x57, 0x58 +.byte 0xdb, 0xcd, 0x87, 0x69, 0xf8, 0x8a, 0x86, 0x12, 0x03, 0x47, 0xbf, 0x66, 0x13, 0x76, 0xac, 0x77 +.byte 0x7d, 0x34, 0x24, 0x85, 0x83, 0xcd, 0xd7, 0xaa, 0x9c, 0x90, 0x1a, 0x9f, 0x21, 0x2c, 0x7f, 0x78 +.byte 0xb7, 0x64, 0xb8, 0xd8, 0xe8, 0xa6, 0xf4, 0x78, 0xb3, 0x55, 0xcb, 0x84, 0xd2, 0x32, 0xc4, 0x78 +.byte 0xae, 0xa3, 0x8f, 0x61, 0xdd, 0xce, 0x08, 0x53, 0xad, 0xec, 0x88, 0xfc, 0x15, 0xe4, 0x9a, 0x0d +.byte 0xe6, 0x9f, 0x1a, 0x77, 0xce, 0x4c, 0x8f, 0xb8, 0x14, 0x15, 0x3d, 0x62, 0x9c, 0x86, 0x38, 0x06 +.byte 0x00, 0x66, 0x12, 0xe4, 0x59, 0x76, 0x5a, 0x53, 0xc0, 0x02, 0x98, 0xa2, 0x10, 0x2b, 0x68, 0x44 +.byte 0x7b, 0x8e, 0x79, 0xce, 0x33, 0x4a, 0x76, 0xaa, 0x5b, 0x81, 0x16, 0x1b, 0xb5, 0x8a, 0xd8, 0xd0 +.byte 0x00, 0x7b, 0x5e, 0x62, 0xb4, 0x09, 0xd6, 0x86, 0x63, 0x0e, 0xa6, 0x05, 0x95, 0x49, 0xba, 0x28 +.byte 0x8b, 0x88, 0x93, 0xb2, 0x34, 0x1c, 0xd8, 0xa4, 0x55, 0x6e, 0xb7, 0x1c, 0xd0, 0xde, 0x99, 0x55 +.byte 0x3b, 0x23, 0xf4, 0x22, 0xe0, 0xf9, 0x29, 0x66, 0x26, 0xec, 0x20, 0x50, 0x77, 0xdb, 0x4a, 0x0b +.byte 0x8f, 0xbe, 0xe5, 0x02, 0x60, 0x70, 0x41, 0x5e, 0xd4, 0xae, 0x50, 0x39, 0x22, 0x14, 0x26, 0xcb +.byte 0xb2, 0x3b, 0x73, 0x74, 0x55, 0x47, 0x07, 0x79, 0x81, 0x39, 0xa8, 0x30, 0x13, 0x44, 0xe5, 0x04 +.byte 0x8a, 0xae, 0x96, 0x13, 0x25, 0x42, 0x0f, 0xb9, 0x53, 0xc4, 0x9b, 0xfc, 0xcd, 0xe4, 0x1c, 0xde +.byte 0x3c, 0xfa, 0xab, 0xd6, 0x06, 0x4a, 0x1f, 0x67, 0xa6, 0x98, 0x30, 0x1c, 0xdd, 0x2c, 0xdb, 0xdc +.byte 0x18, 0x95, 0x57, 0x66, 0xc6, 0xff, 0x5c, 0x8b, 0x56, 0xf5, 0x77, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x15, 0x77 +.byte 0x77, 0x77, 0x2e, 0x78, 0x72, 0x61, 0x6d, 0x70, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79 +.byte 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x58 +.byte 0x52, 0x61, 0x6d, 0x70, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x53, 0x65 +.byte 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x24, 0x58, 0x52, 0x61, 0x6d, 0x70, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x98, 0x24, 0x1e, 0xbd, 0x15, 0xb4 +.byte 0xba, 0xdf, 0xc7, 0x8c, 0xa5, 0x27, 0xb6, 0x38, 0x0b, 0x69, 0xf3, 0xb6, 0x4e, 0xa8, 0x2c, 0x2e +.byte 0x21, 0x1d, 0x5c, 0x44, 0xdf, 0x21, 0x5d, 0x7e, 0x23, 0x74, 0xfe, 0x5e, 0x7e, 0xb4, 0x4a, 0xb7 +.byte 0xa6, 0xad, 0x1f, 0xae, 0xe0, 0x06, 0x16, 0xe2, 0x9b, 0x5b, 0xd9, 0x67, 0x74, 0x6b, 0x5d, 0x80 +.byte 0x8f, 0x29, 0x9d, 0x86, 0x1b, 0xd9, 0x9c, 0x0d, 0x98, 0x6d, 0x76, 0x10, 0x28, 0x58, 0xe4, 0x65 +.byte 0xb0, 0x7f, 0x4a, 0x98, 0x79, 0x9f, 0xe0, 0xc3, 0x31, 0x7e, 0x80, 0x2b, 0xb5, 0x8c, 0xc0, 0x40 +.byte 0x3b, 0x11, 0x86, 0xd0, 0xcb, 0xa2, 0x86, 0x36, 0x60, 0xa4, 0xd5, 0x30, 0x82, 0x6d, 0xd9, 0x6e +.byte 0xd0, 0x0f, 0x12, 0x04, 0x33, 0x97, 0x5f, 0x4f, 0x61, 0x5a, 0xf0, 0xe4, 0xf9, 0x91, 0xab, 0xe7 +.byte 0x1d, 0x3b, 0xbc, 0xe8, 0xcf, 0xf4, 0x6b, 0x2d, 0x34, 0x7c, 0xe2, 0x48, 0x61, 0x1c, 0x8e, 0xf3 +.byte 0x61, 0x44, 0xcc, 0x6f, 0xa0, 0x4a, 0xa9, 0x94, 0xb0, 0x4d, 0xda, 0xe7, 0xa9, 0x34, 0x7a, 0x72 +.byte 0x38, 0xa8, 0x41, 0xcc, 0x3c, 0x94, 0x11, 0x7d, 0xeb, 0xc8, 0xa6, 0x8c, 0xb7, 0x86, 0xcb, 0xca +.byte 0x33, 0x3b, 0xd9, 0x3d, 0x37, 0x8b, 0xfb, 0x7a, 0x3e, 0x86, 0x2c, 0xe7, 0x73, 0xd7, 0x0a, 0x57 +.byte 0xac, 0x64, 0x9b, 0x19, 0xeb, 0xf4, 0x0f, 0x04, 0x08, 0x8a, 0xac, 0x03, 0x17, 0x19, 0x64, 0xf4 +.byte 0x5a, 0x25, 0x22, 0x8d, 0x34, 0x2c, 0xb2, 0xf6, 0x68, 0x1d, 0x12, 0x6d, 0xd3, 0x8a, 0x1e, 0x14 +.byte 0xda, 0xc4, 0x8f, 0xa6, 0xe2, 0x23, 0x85, 0xd5, 0x7a, 0x0d, 0xbd, 0x6a, 0xe0, 0xe9, 0xec, 0xec +.byte 0x17, 0xbb, 0x42, 0x1b, 0x67, 0xaa, 0x25, 0xed, 0x45, 0x83, 0x21, 0xfc, 0xc1, 0xc9, 0x7c, 0xd5 +.byte 0x62, 0x3e, 0xfa, 0xf2, 0xc5, 0x2d, 0xd3, 0xfd, 0xd4, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x86, 0x01, 0x26, 0x30, 0x81, 0x83, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72 +.byte 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a +.byte 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x11, 0x47, 0x6f, 0x44, 0x61, 0x64, 0x64, 0x79, 0x2e, 0x63, 0x6f, 0x6d +.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbf, 0x71, 0x62, 0x08, 0xf1, 0xfa +.byte 0x59, 0x34, 0xf7, 0x1b, 0xc9, 0x18, 0xa3, 0xf7, 0x80, 0x49, 0x58, 0xe9, 0x22, 0x83, 0x13, 0xa6 +.byte 0xc5, 0x20, 0x43, 0x01, 0x3b, 0x84, 0xf1, 0xe6, 0x85, 0x49, 0x9f, 0x27, 0xea, 0xf6, 0x84, 0x1b +.byte 0x4e, 0xa0, 0xb4, 0xdb, 0x70, 0x98, 0xc7, 0x32, 0x01, 0xb1, 0x05, 0x3e, 0x07, 0x4e, 0xee, 0xf4 +.byte 0xfa, 0x4f, 0x2f, 0x59, 0x30, 0x22, 0xe7, 0xab, 0x19, 0x56, 0x6b, 0xe2, 0x80, 0x07, 0xfc, 0xf3 +.byte 0x16, 0x75, 0x80, 0x39, 0x51, 0x7b, 0xe5, 0xf9, 0x35, 0xb6, 0x74, 0x4e, 0xa9, 0x8d, 0x82, 0x13 +.byte 0xe4, 0xb6, 0x3f, 0xa9, 0x03, 0x83, 0xfa, 0xa2, 0xbe, 0x8a, 0x15, 0x6a, 0x7f, 0xde, 0x0b, 0xc3 +.byte 0xb6, 0x19, 0x14, 0x05, 0xca, 0xea, 0xc3, 0xa8, 0x04, 0x94, 0x3b, 0x46, 0x7c, 0x32, 0x0d, 0xf3 +.byte 0x00, 0x66, 0x22, 0xc8, 0x8d, 0x69, 0x6d, 0x36, 0x8c, 0x11, 0x18, 0xb7, 0xd3, 0xb2, 0x1c, 0x60 +.byte 0xb4, 0x38, 0xfa, 0x02, 0x8c, 0xce, 0xd3, 0xdd, 0x46, 0x07, 0xde, 0x0a, 0x3e, 0xeb, 0x5d, 0x7c +.byte 0xc8, 0x7c, 0xfb, 0xb0, 0x2b, 0x53, 0xa4, 0x92, 0x62, 0x69, 0x51, 0x25, 0x05, 0x61, 0x1a, 0x44 +.byte 0x81, 0x8c, 0x2c, 0xa9, 0x43, 0x96, 0x23, 0xdf, 0xac, 0x3a, 0x81, 0x9a, 0x0e, 0x29, 0xc5, 0x1c +.byte 0xa9, 0xe9, 0x5d, 0x1e, 0xb6, 0x9e, 0x9e, 0x30, 0x0a, 0x39, 0xce, 0xf1, 0x88, 0x80, 0xfb, 0x4b +.byte 0x5d, 0xcc, 0x32, 0xec, 0x85, 0x62, 0x43, 0x25, 0x34, 0x02, 0x56, 0x27, 0x01, 0x91, 0xb4, 0x3b +.byte 0x70, 0x2a, 0x3f, 0x6e, 0xb1, 0xe8, 0x9c, 0x88, 0x01, 0x7d, 0x9f, 0xd4, 0xf9, 0xdb, 0x53, 0x6d +.byte 0x60, 0x9d, 0xbf, 0x2c, 0xe7, 0x58, 0xab, 0xb8, 0x5f, 0x46, 0xfc, 0xce, 0xc4, 0x1b, 0x03, 0x3c +.byte 0x09, 0xeb, 0x49, 0x31, 0x5c, 0x69, 0x46, 0xb3, 0xe0, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x87, 0x00, 0x78, 0x30, 0x81, 0x84, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x74, 0x68 +.byte 0x61, 0x77, 0x74, 0x65, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x38, 0x30, 0x36, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x2f, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x37, 0x20, 0x74, 0x68 +.byte 0x61, 0x77, 0x74, 0x65, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x46, 0x6f, 0x72 +.byte 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20 +.byte 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x74 +.byte 0x68, 0x61, 0x77, 0x74, 0x65, 0x20, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07 +.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62 +.byte 0x00, 0x04, 0xa2, 0xd5, 0x9c, 0x82, 0x7b, 0x95, 0x9d, 0xf1, 0x52, 0x78, 0x87, 0xfe, 0x8a, 0x16 +.byte 0xbf, 0x05, 0xe6, 0xdf, 0xa3, 0x02, 0x4f, 0x0d, 0x07, 0xc6, 0x00, 0x51, 0xba, 0x0c, 0x02, 0x52 +.byte 0x2d, 0x22, 0xa4, 0x42, 0x39, 0xc4, 0xfe, 0x8f, 0xea, 0xc9, 0xc1, 0xbe, 0xd4, 0x4d, 0xff, 0x9f +.byte 0x7a, 0x9e, 0xe2, 0xb1, 0x7c, 0x9a, 0xad, 0xa7, 0x86, 0x09, 0x73, 0x87, 0xd1, 0xe7, 0x9a, 0xe3 +.byte 0x7a, 0xa5, 0xaa, 0x6e, 0xfb, 0xba, 0xb3, 0x70, 0xc0, 0x67, 0x88, 0xa2, 0x35, 0xd4, 0xa3, 0x9a +.byte 0xb1, 0xfd, 0xad, 0xc2, 0xef, 0x31, 0xfa, 0xa8, 0xb9, 0xf3, 0xfb, 0x08, 0xc6, 0x91, 0xd1, 0xfb +.byte 0x29, 0x95, 0x00, 0x88, 0x00, 0x78, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13 +.byte 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73 +.byte 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61 +.byte 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11 +.byte 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65 +.byte 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f +.byte 0x44, 0x4f, 0x20, 0x45, 0x43, 0x43, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76 +.byte 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04 +.byte 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x03, 0x47, 0x7b, 0x2f, 0x75, 0xc9, 0x82, 0x15, 0x85, 0xfb +.byte 0x75, 0xe4, 0x91, 0x16, 0xd4, 0xab, 0x62, 0x99, 0xf5, 0x3e, 0x52, 0x0b, 0x06, 0xce, 0x41, 0x00 +.byte 0x7f, 0x97, 0xe1, 0x0a, 0x24, 0x3c, 0x1d, 0x01, 0x04, 0xee, 0x3d, 0xd2, 0x8d, 0x09, 0x97, 0x0c +.byte 0xe0, 0x75, 0xe4, 0xfa, 0xfb, 0x77, 0x8a, 0x2a, 0xf5, 0x03, 0x60, 0x4b, 0x36, 0x8b, 0x16, 0x23 +.byte 0x16, 0xad, 0x09, 0x71, 0xf4, 0x4a, 0xf4, 0x28, 0x50, 0xb4, 0xfe, 0x88, 0x1c, 0x6e, 0x3f, 0x6c +.byte 0x2f, 0x2f, 0x09, 0x59, 0x5b, 0xa5, 0x5b, 0x0b, 0x33, 0x99, 0xe2, 0xc3, 0x3d, 0x89, 0xf9, 0x6a +.byte 0x2c, 0xef, 0xb2, 0xd3, 0x06, 0xe9, 0x00, 0x88, 0x02, 0x26, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03 +.byte 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e +.byte 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07 +.byte 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69 +.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22 +.byte 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x52, 0x53, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0x91, 0xe8, 0x54, 0x92, 0xd2, 0x0a, 0x56, 0xb1, 0xac, 0x0d, 0x24, 0xdd, 0xc5 +.byte 0xcf, 0x44, 0x67, 0x74, 0x99, 0x2b, 0x37, 0xa3, 0x7d, 0x23, 0x70, 0x00, 0x71, 0xbc, 0x53, 0xdf +.byte 0xc4, 0xfa, 0x2a, 0x12, 0x8f, 0x4b, 0x7f, 0x10, 0x56, 0xbd, 0x9f, 0x70, 0x72, 0xb7, 0x61, 0x7f +.byte 0xc9, 0x4b, 0x0f, 0x17, 0xa7, 0x3d, 0xe3, 0xb0, 0x04, 0x61, 0xee, 0xff, 0x11, 0x97, 0xc7, 0xf4 +.byte 0x86, 0x3e, 0x0a, 0xfa, 0x3e, 0x5c, 0xf9, 0x93, 0xe6, 0x34, 0x7a, 0xd9, 0x14, 0x6b, 0xe7, 0x9c +.byte 0xb3, 0x85, 0xa0, 0x82, 0x7a, 0x76, 0xaf, 0x71, 0x90, 0xd7, 0xec, 0xfd, 0x0d, 0xfa, 0x9c, 0x6c +.byte 0xfa, 0xdf, 0xb0, 0x82, 0xf4, 0x14, 0x7e, 0xf9, 0xbe, 0xc4, 0xa6, 0x2f, 0x4f, 0x7f, 0x99, 0x7f +.byte 0xb5, 0xfc, 0x67, 0x43, 0x72, 0xbd, 0x0c, 0x00, 0xd6, 0x89, 0xeb, 0x6b, 0x2c, 0xd3, 0xed, 0x8f +.byte 0x98, 0x1c, 0x14, 0xab, 0x7e, 0xe5, 0xe3, 0x6e, 0xfc, 0xd8, 0xa8, 0xe4, 0x92, 0x24, 0xda, 0x43 +.byte 0x6b, 0x62, 0xb8, 0x55, 0xfd, 0xea, 0xc1, 0xbc, 0x6c, 0xb6, 0x8b, 0xf3, 0x0e, 0x8d, 0x9a, 0xe4 +.byte 0x9b, 0x6c, 0x69, 0x99, 0xf8, 0x78, 0x48, 0x30, 0x45, 0xd5, 0xad, 0xe1, 0x0d, 0x3c, 0x45, 0x60 +.byte 0xfc, 0x32, 0x96, 0x51, 0x27, 0xbc, 0x67, 0xc3, 0xca, 0x2e, 0xb6, 0x6b, 0xea, 0x46, 0xc7, 0xc7 +.byte 0x20, 0xa0, 0xb1, 0x1f, 0x65, 0xde, 0x48, 0x08, 0xba, 0xa4, 0x4e, 0xa9, 0xf2, 0x83, 0x46, 0x37 +.byte 0x84, 0xeb, 0xe8, 0xcc, 0x81, 0x48, 0x43, 0x67, 0x4e, 0x72, 0x2a, 0x9b, 0x5c, 0xbd, 0x4c, 0x1b +.byte 0x28, 0x8a, 0x5c, 0x22, 0x7b, 0xb4, 0xab, 0x98, 0xd9, 0xee, 0xe0, 0x51, 0x83, 0xc3, 0x09, 0x46 +.byte 0x4e, 0x6d, 0x3e, 0x99, 0xfa, 0x95, 0x17, 0xda, 0x7c, 0x33, 0x57, 0x41, 0x3c, 0x8d, 0x51, 0xed +.byte 0x0b, 0xb6, 0x5c, 0xaf, 0x2c, 0x63, 0x1a, 0xdf, 0x57, 0xc8, 0x3f, 0xbc, 0xe9, 0x5d, 0xc4, 0x9b +.byte 0xaf, 0x45, 0x99, 0xe2, 0xa3, 0x5a, 0x24, 0xb4, 0xba, 0xa9, 0x56, 0x3d, 0xcf, 0x6f, 0xaa, 0xff +.byte 0x49, 0x58, 0xbe, 0xf0, 0xa8, 0xff, 0xf4, 0xb8, 0xad, 0xe9, 0x37, 0xfb, 0xba, 0xb8, 0xf4, 0x0b +.byte 0x3a, 0xf9, 0xe8, 0x43, 0x42, 0x1e, 0x89, 0xd8, 0x84, 0xcb, 0x13, 0xf1, 0xd9, 0xbb, 0xe1, 0x89 +.byte 0x60, 0xb8, 0x8c, 0x28, 0x56, 0xac, 0x14, 0x1d, 0x9c, 0x0a, 0xe7, 0x71, 0xeb, 0xcf, 0x0e, 0xdd +.byte 0x3d, 0xa9, 0x96, 0xa1, 0x48, 0xbd, 0x3c, 0xf7, 0xaf, 0xb5, 0x0d, 0x22, 0x4c, 0xc0, 0x11, 0x81 +.byte 0xec, 0x56, 0x3b, 0xf6, 0xd3, 0xa2, 0xe2, 0x5b, 0xb7, 0xb2, 0x04, 0x22, 0x52, 0x95, 0x80, 0x93 +.byte 0x69, 0xe8, 0x8e, 0x4c, 0x65, 0xf1, 0x91, 0x03, 0x2d, 0x70, 0x74, 0x02, 0xea, 0x8b, 0x67, 0x15 +.byte 0x29, 0x69, 0x52, 0x02, 0xbb, 0xd7, 0xdf, 0x50, 0x6a, 0x55, 0x46, 0xbf, 0xa0, 0xa3, 0x28, 0x61 +.byte 0x7f, 0x70, 0xd0, 0xc3, 0xa2, 0xaa, 0x2c, 0x21, 0xaa, 0x47, 0xce, 0x28, 0x9c, 0x06, 0x45, 0x76 +.byte 0xbf, 0x82, 0x18, 0x27, 0xb4, 0xd5, 0xae, 0xb4, 0xcb, 0x50, 0xe6, 0x6b, 0xf4, 0x4c, 0x86, 0x71 +.byte 0x30, 0xe9, 0xa6, 0xdf, 0x16, 0x86, 0xe0, 0xd8, 0xff, 0x40, 0xdd, 0xfb, 0xd0, 0x42, 0x88, 0x7f +.byte 0xa3, 0x33, 0x3a, 0x2e, 0x5c, 0x1e, 0x41, 0x11, 0x81, 0x63, 0xce, 0x18, 0x71, 0x6b, 0x2b, 0xec +.byte 0xa6, 0x8a, 0xb7, 0x31, 0x5c, 0x3a, 0x6a, 0x47, 0xe0, 0xc3, 0x79, 0x59, 0xd6, 0x20, 0x1a, 0xaf +.byte 0xf2, 0x6a, 0x98, 0xaa, 0x72, 0xbc, 0x57, 0x4a, 0xd2, 0x4b, 0x9d, 0xbb, 0x10, 0xfc, 0xb0, 0x4c +.byte 0x41, 0xe5, 0xed, 0x1d, 0x3d, 0x5e, 0x28, 0x9d, 0x9c, 0xcc, 0xbf, 0xb3, 0x51, 0xda, 0xa7, 0x47 +.byte 0xe5, 0x84, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x8b, 0x00, 0x78, 0x30, 0x81, 0x88, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65 +.byte 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73 +.byte 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20 +.byte 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20 +.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 +.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x1a +.byte 0xac, 0x54, 0x5a, 0xa9, 0xf9, 0x68, 0x23, 0xe7, 0x7a, 0xd5, 0x24, 0x6f, 0x53, 0xc6, 0x5a, 0xd8 +.byte 0x4b, 0xab, 0xc6, 0xd5, 0xb6, 0xd1, 0xe6, 0x73, 0x71, 0xae, 0xdd, 0x9c, 0xd6, 0x0c, 0x61, 0xfd +.byte 0xdb, 0xa0, 0x89, 0x03, 0xb8, 0x05, 0x14, 0xec, 0x57, 0xce, 0xee, 0x5d, 0x3f, 0xe2, 0x21, 0xb3 +.byte 0xce, 0xf7, 0xd4, 0x8a, 0x79, 0xe0, 0xa3, 0x83, 0x7e, 0x2d, 0x97, 0xd0, 0x61, 0xc4, 0xf1, 0x99 +.byte 0xdc, 0x25, 0x91, 0x63, 0xab, 0x7f, 0x30, 0xa3, 0xb4, 0x70, 0xe2, 0xc7, 0xa1, 0x33, 0x9c, 0xf3 +.byte 0xbf, 0x2e, 0x5c, 0x53, 0xb1, 0x5f, 0xb3, 0x7d, 0x32, 0x7f, 0x8a, 0x34, 0xe3, 0x79, 0x79, 0x00 +.byte 0x8b, 0x02, 0x26, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65 +.byte 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e +.byte 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45 +.byte 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e +.byte 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x80 +.byte 0x12, 0x65, 0x17, 0x36, 0x0e, 0xc3, 0xdb, 0x08, 0xb3, 0xd0, 0xac, 0x57, 0x0d, 0x76, 0xed, 0xcd +.byte 0x27, 0xd3, 0x4c, 0xad, 0x50, 0x83, 0x61, 0xe2, 0xaa, 0x20, 0x4d, 0x09, 0x2d, 0x64, 0x09, 0xdc +.byte 0xce, 0x89, 0x9f, 0xcc, 0x3d, 0xa9, 0xec, 0xf6, 0xcf, 0xc1, 0xdc, 0xf1, 0xd3, 0xb1, 0xd6, 0x7b +.byte 0x37, 0x28, 0x11, 0x2b, 0x47, 0xda, 0x39, 0xc6, 0xbc, 0x3a, 0x19, 0xb4, 0x5f, 0xa6, 0xbd, 0x7d +.byte 0x9d, 0xa3, 0x63, 0x42, 0xb6, 0x76, 0xf2, 0xa9, 0x3b, 0x2b, 0x91, 0xf8, 0xe2, 0x6f, 0xd0, 0xec +.byte 0x16, 0x20, 0x90, 0x09, 0x3e, 0xe2, 0xe8, 0x74, 0xc9, 0x18, 0xb4, 0x91, 0xd4, 0x62, 0x64, 0xdb +.byte 0x7f, 0xa3, 0x06, 0xf1, 0x88, 0x18, 0x6a, 0x90, 0x22, 0x3c, 0xbc, 0xfe, 0x13, 0xf0, 0x87, 0x14 +.byte 0x7b, 0xf6, 0xe4, 0x1f, 0x8e, 0xd4, 0xe4, 0x51, 0xc6, 0x11, 0x67, 0x46, 0x08, 0x51, 0xcb, 0x86 +.byte 0x14, 0x54, 0x3f, 0xbc, 0x33, 0xfe, 0x7e, 0x6c, 0x9c, 0xff, 0x16, 0x9d, 0x18, 0xbd, 0x51, 0x8e +.byte 0x35, 0xa6, 0xa7, 0x66, 0xc8, 0x72, 0x67, 0xdb, 0x21, 0x66, 0xb1, 0xd4, 0x9b, 0x78, 0x03, 0xc0 +.byte 0x50, 0x3a, 0xe8, 0xcc, 0xf0, 0xdc, 0xbc, 0x9e, 0x4c, 0xfe, 0xaf, 0x05, 0x96, 0x35, 0x1f, 0x57 +.byte 0x5a, 0xb7, 0xff, 0xce, 0xf9, 0x3d, 0xb7, 0x2c, 0xb6, 0xf6, 0x54, 0xdd, 0xc8, 0xe7, 0x12, 0x3a +.byte 0x4d, 0xae, 0x4c, 0x8a, 0xb7, 0x5c, 0x9a, 0xb4, 0xb7, 0x20, 0x3d, 0xca, 0x7f, 0x22, 0x34, 0xae +.byte 0x7e, 0x3b, 0x68, 0x66, 0x01, 0x44, 0xe7, 0x01, 0x4e, 0x46, 0x53, 0x9b, 0x33, 0x60, 0xf7, 0x94 +.byte 0xbe, 0x53, 0x37, 0x90, 0x73, 0x43, 0xf3, 0x32, 0xc3, 0x53, 0xef, 0xdb, 0xaa, 0xfe, 0x74, 0x4e +.byte 0x69, 0xc7, 0x6b, 0x8c, 0x60, 0x93, 0xde, 0xc4, 0xc7, 0x0c, 0xdf, 0xe1, 0x32, 0xae, 0xcc, 0x93 +.byte 0x3b, 0x51, 0x78, 0x95, 0x67, 0x8b, 0xee, 0x3d, 0x56, 0xfe, 0x0c, 0xd0, 0x69, 0x0f, 0x1b, 0x0f +.byte 0xf3, 0x25, 0x26, 0x6b, 0x33, 0x6d, 0xf7, 0x6e, 0x47, 0xfa, 0x73, 0x43, 0xe5, 0x7e, 0x0e, 0xa5 +.byte 0x66, 0xb1, 0x29, 0x7c, 0x32, 0x84, 0x63, 0x55, 0x89, 0xc4, 0x0d, 0xc1, 0x93, 0x54, 0x30, 0x19 +.byte 0x13, 0xac, 0xd3, 0x7d, 0x37, 0xa7, 0xeb, 0x5d, 0x3a, 0x6c, 0x35, 0x5c, 0xdb, 0x41, 0xd7, 0x12 +.byte 0xda, 0xa9, 0x49, 0x0b, 0xdf, 0xd8, 0x80, 0x8a, 0x09, 0x93, 0x62, 0x8e, 0xb5, 0x66, 0xcf, 0x25 +.byte 0x88, 0xcd, 0x84, 0xb8, 0xb1, 0x3f, 0xa4, 0x39, 0x0f, 0xd9, 0x02, 0x9e, 0xeb, 0x12, 0x4c, 0x95 +.byte 0x7c, 0xf3, 0x6b, 0x05, 0xa9, 0x5e, 0x16, 0x83, 0xcc, 0xb8, 0x67, 0xe2, 0xe8, 0x13, 0x9d, 0xcc +.byte 0x5b, 0x82, 0xd3, 0x4c, 0xb3, 0xed, 0x5b, 0xff, 0xde, 0xe5, 0x73, 0xac, 0x23, 0x3b, 0x2d, 0x00 +.byte 0xbf, 0x35, 0x55, 0x74, 0x09, 0x49, 0xd8, 0x49, 0x58, 0x1a, 0x7f, 0x92, 0x36, 0xe6, 0x51, 0x92 +.byte 0x0e, 0xf3, 0x26, 0x7d, 0x1c, 0x4d, 0x17, 0xbc, 0xc9, 0xec, 0x43, 0x26, 0xd0, 0xbf, 0x41, 0x5f +.byte 0x40, 0xa9, 0x44, 0x44, 0xf4, 0x99, 0xe7, 0x57, 0x87, 0x9e, 0x50, 0x1f, 0x57, 0x54, 0xa8, 0x3e +.byte 0xfd, 0x74, 0x63, 0x2f, 0xb1, 0x50, 0x65, 0x09, 0xe6, 0x58, 0x42, 0x2e, 0x43, 0x1a, 0x4c, 0xb4 +.byte 0xf0, 0x25, 0x47, 0x59, 0xfa, 0x04, 0x1e, 0x93, 0xd4, 0x26, 0x46, 0x4a, 0x50, 0x81, 0xb2, 0xde +.byte 0xbe, 0x78, 0xb7, 0xfc, 0x67, 0x15, 0xe1, 0xc9, 0x57, 0x84, 0x1e, 0x0f, 0x63, 0xd6, 0xe9, 0x62 +.byte 0xba, 0xd6, 0x5f, 0x55, 0x2e, 0xea, 0x5c, 0xc6, 0x28, 0x08, 0x04, 0x25, 0x39, 0xb8, 0x0e, 0x2b +.byte 0xa9, 0xf2, 0x4c, 0x97, 0x1c, 0x07, 0x3f, 0x0d, 0x52, 0xf5, 0xed, 0xef, 0x2f, 0x82, 0x0f, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x8d, 0x01, 0x26, 0x30, 0x81, 0x8a, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x12, 0x43, 0x6f, 0x70, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x28 +.byte 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x35, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65 +.byte 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x47, 0x41, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcb, 0x4f, 0xb3, 0x00, 0x9b, 0x3d, 0x36, 0xdd, 0xf9, 0xd1 +.byte 0x49, 0x6a, 0x6b, 0x10, 0x49, 0x1f, 0xec, 0xd8, 0x2b, 0xb2, 0xc6, 0xf8, 0x32, 0x81, 0x29, 0x43 +.byte 0x95, 0x4c, 0x9a, 0x19, 0x23, 0x21, 0x15, 0x45, 0xde, 0xe3, 0xc8, 0x1c, 0x51, 0x55, 0x5b, 0xae +.byte 0x93, 0xe8, 0x37, 0xff, 0x2b, 0x6b, 0xe9, 0xd4, 0xea, 0xbe, 0x2a, 0xdd, 0xa8, 0x51, 0x2b, 0xd7 +.byte 0x66, 0xc3, 0x61, 0x5c, 0x60, 0x02, 0xc8, 0xf5, 0xce, 0x72, 0x7b, 0x3b, 0xb8, 0xf2, 0x4e, 0x65 +.byte 0x08, 0x9a, 0xcd, 0xa4, 0x6a, 0x19, 0xc1, 0x01, 0xbb, 0x73, 0xa6, 0xd7, 0xf6, 0xc3, 0xdd, 0xcd +.byte 0xbc, 0xa4, 0x8b, 0xb5, 0x99, 0x61, 0xb8, 0x01, 0xa2, 0xa3, 0xd4, 0x4d, 0xd4, 0x05, 0x3d, 0x91 +.byte 0xad, 0xf8, 0xb4, 0x08, 0x71, 0x64, 0xaf, 0x70, 0xf1, 0x1c, 0x6b, 0x7e, 0xf6, 0xc3, 0x77, 0x9d +.byte 0x24, 0x73, 0x7b, 0xe4, 0x0c, 0x8c, 0xe1, 0xd9, 0x36, 0xe1, 0x99, 0x8b, 0x05, 0x99, 0x0b, 0xed +.byte 0x45, 0x31, 0x09, 0xca, 0xc2, 0x00, 0xdb, 0xf7, 0x72, 0xa0, 0x96, 0xaa, 0x95, 0x87, 0xd0, 0x8e +.byte 0xc7, 0xb6, 0x61, 0x73, 0x0d, 0x76, 0x66, 0x8c, 0xdc, 0x1b, 0xb4, 0x63, 0xa2, 0x9f, 0x7f, 0x93 +.byte 0x13, 0x30, 0xf1, 0xa1, 0x27, 0xdb, 0xd9, 0xff, 0x2c, 0x55, 0x88, 0x91, 0xa0, 0xe0, 0x4f, 0x07 +.byte 0xb0, 0x28, 0x56, 0x8c, 0x18, 0x1b, 0x97, 0x44, 0x8e, 0x89, 0xdd, 0xe0, 0x17, 0x6e, 0xe7, 0x2a +.byte 0xef, 0x8f, 0x39, 0x0a, 0x31, 0x84, 0x82, 0xd8, 0x40, 0x14, 0x49, 0x2e, 0x7a, 0x41, 0xe4, 0xa7 +.byte 0xfe, 0xe3, 0x64, 0xcc, 0xc1, 0x59, 0x71, 0x4b, 0x2c, 0x21, 0xa7, 0x5b, 0x7d, 0xe0, 0x1d, 0xd1 +.byte 0x2e, 0x81, 0x9b, 0xc3, 0xd8, 0x68, 0xf7, 0xbd, 0x96, 0x1b, 0xac, 0x70, 0xb1, 0x16, 0x14, 0x0b +.byte 0xdb, 0x60, 0xb9, 0x26, 0x01, 0x05, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x92, 0x01, 0x26, 0x30 +.byte 0x81, 0x8f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e +.byte 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74 +.byte 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e +.byte 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30 +.byte 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c +.byte 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47 +.byte 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xbd, 0xed, 0xc1, 0x03, 0xfc, 0xf6, 0x8f, 0xfc, 0x02, 0xb1, 0x6f, 0x5b, 0x9f, 0x48 +.byte 0xd9, 0x9d, 0x79, 0xe2, 0xa2, 0xb7, 0x03, 0x61, 0x56, 0x18, 0xc3, 0x47, 0xb6, 0xd7, 0xca, 0x3d +.byte 0x35, 0x2e, 0x89, 0x43, 0xf7, 0xa1, 0x69, 0x9b, 0xde, 0x8a, 0x1a, 0xfd, 0x13, 0x20, 0x9c, 0xb4 +.byte 0x49, 0x77, 0x32, 0x29, 0x56, 0xfd, 0xb9, 0xec, 0x8c, 0xdd, 0x22, 0xfa, 0x72, 0xdc, 0x27, 0x61 +.byte 0x97, 0xee, 0xf6, 0x5a, 0x84, 0xec, 0x6e, 0x19, 0xb9, 0x89, 0x2c, 0xdc, 0x84, 0x5b, 0xd5, 0x74 +.byte 0xfb, 0x6b, 0x5f, 0xc5, 0x89, 0xa5, 0x10, 0x52, 0x89, 0x46, 0x55, 0xf4, 0xb8, 0x75, 0x1c, 0xe6 +.byte 0x7f, 0xe4, 0x54, 0xae, 0x4b, 0xf8, 0x55, 0x72, 0x57, 0x02, 0x19, 0xf8, 0x17, 0x71, 0x59, 0xeb +.byte 0x1e, 0x28, 0x07, 0x74, 0xc5, 0x9d, 0x48, 0xbe, 0x6c, 0xb4, 0xf4, 0xa4, 0xb0, 0xf3, 0x64, 0x37 +.byte 0x79, 0x92, 0xc0, 0xec, 0x46, 0x5e, 0x7f, 0xe1, 0x6d, 0x53, 0x4c, 0x62, 0xaf, 0xcd, 0x1f, 0x0b +.byte 0x63, 0xbb, 0x3a, 0x9d, 0xfb, 0xfc, 0x79, 0x00, 0x98, 0x61, 0x74, 0xcf, 0x26, 0x82, 0x40, 0x63 +.byte 0xf3, 0xb2, 0x72, 0x6a, 0x19, 0x0d, 0x99, 0xca, 0xd4, 0x0e, 0x75, 0xcc, 0x37, 0xfb, 0x8b, 0x89 +.byte 0xc1, 0x59, 0xf1, 0x62, 0x7f, 0x5f, 0xb3, 0x5f, 0x65, 0x30, 0xf8, 0xa7, 0xb7, 0x4d, 0x76, 0x5a +.byte 0x1e, 0x76, 0x5e, 0x34, 0xc0, 0xe8, 0x96, 0x56, 0x99, 0x8a, 0xb3, 0xf0, 0x7f, 0xa4, 0xcd, 0xbd +.byte 0xdc, 0x32, 0x31, 0x7c, 0x91, 0xcf, 0xe0, 0x5f, 0x11, 0xf8, 0x6b, 0xaa, 0x49, 0x5c, 0xd1, 0x99 +.byte 0x94, 0xd1, 0xa2, 0xe3, 0x63, 0x5b, 0x09, 0x76, 0xb5, 0x56, 0x62, 0xe1, 0x4b, 0x74, 0x1d, 0x96 +.byte 0xd4, 0x26, 0xd4, 0x08, 0x04, 0x59, 0xd0, 0x98, 0x0e, 0x0e, 0xe6, 0xde, 0xfc, 0xc3, 0xec, 0x1f +.byte 0x90, 0xf1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x98, 0x01, 0x26, 0x30, 0x81, 0x95, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x44, 0x30, 0x42, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41 +.byte 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65 +.byte 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e +.byte 0x73, 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74 +.byte 0x79, 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x37, 0x48, 0x65, 0x6c, 0x6c +.byte 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e +.byte 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69 +.byte 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32 +.byte 0x30, 0x31, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xa9, 0x53, 0x00, 0xe3, 0x2e, 0xa6, 0xf6, 0x8e, 0xfa, 0x60, 0xd8, 0x2d +.byte 0x95, 0x3e, 0xf8, 0x2c, 0x2a, 0x54, 0x4e, 0xcd, 0xb9, 0x84, 0x61, 0x94, 0x58, 0x4f, 0x8f, 0x3d +.byte 0x8b, 0xe4, 0x43, 0xf3, 0x75, 0x89, 0x8d, 0x51, 0xe4, 0xc3, 0x37, 0xd2, 0x8a, 0x88, 0x4d, 0x79 +.byte 0x1e, 0xb7, 0x12, 0xdd, 0x43, 0x78, 0x4a, 0x8a, 0x92, 0xe6, 0xd7, 0x48, 0xd5, 0x0f, 0xa4, 0x3a +.byte 0x29, 0x44, 0x35, 0xb8, 0x07, 0xf6, 0x68, 0x1d, 0x55, 0xcd, 0x38, 0x51, 0xf0, 0x8c, 0x24, 0x31 +.byte 0x85, 0xaf, 0x83, 0xc9, 0x7d, 0xe9, 0x77, 0xaf, 0xed, 0x1a, 0x7b, 0x9d, 0x17, 0xf9, 0xb3, 0x9d +.byte 0x38, 0x50, 0x0f, 0xa6, 0x5a, 0x79, 0x91, 0x80, 0xaf, 0x37, 0xae, 0xa6, 0xd3, 0x31, 0xfb, 0xb5 +.byte 0x26, 0x09, 0x9d, 0x3c, 0x5a, 0xef, 0x51, 0xc5, 0x2b, 0xdf, 0x96, 0x5d, 0xeb, 0x32, 0x1e, 0x02 +.byte 0xda, 0x70, 0x49, 0xec, 0x6e, 0x0c, 0xc8, 0x9a, 0x37, 0x8d, 0xf7, 0xf1, 0x36, 0x60, 0x4b, 0x26 +.byte 0x2c, 0x82, 0x9e, 0xd0, 0x78, 0xf3, 0x0d, 0x0f, 0x63, 0xa4, 0x51, 0x30, 0xe1, 0xf9, 0x2b, 0x27 +.byte 0x12, 0x07, 0xd8, 0xea, 0xbd, 0x18, 0x62, 0x98, 0xb0, 0x59, 0x37, 0x7d, 0xbe, 0xee, 0xf3, 0x20 +.byte 0x51, 0x42, 0x5a, 0x83, 0xef, 0x93, 0xba, 0x69, 0x15, 0xf1, 0x62, 0x9d, 0x9f, 0x99, 0x39, 0x82 +.byte 0xa1, 0xb7, 0x74, 0x2e, 0x8b, 0xd4, 0xc5, 0x0b, 0x7b, 0x2f, 0xf0, 0xc8, 0x0a, 0xda, 0x3d, 0x79 +.byte 0x0a, 0x9a, 0x93, 0x1c, 0xa5, 0x28, 0x72, 0x73, 0x91, 0x43, 0x9a, 0xa7, 0xd1, 0x4d, 0x85, 0x84 +.byte 0xb9, 0xa9, 0x74, 0x8f, 0x14, 0x40, 0xc7, 0xdc, 0xde, 0xac, 0x41, 0x64, 0x6c, 0xb4, 0x19, 0x9b +.byte 0x02, 0x63, 0x6d, 0x24, 0x64, 0x8f, 0x44, 0xb2, 0x25, 0xea, 0xce, 0x5d, 0x74, 0x0c, 0x63, 0x32 +.byte 0x5c, 0x8d, 0x87, 0xe5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x9b, 0x01, 0x26, 0x30, 0x81, 0x98 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31 +.byte 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73 +.byte 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53 +.byte 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c +.byte 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3b, 0x30, 0x39, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x32, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20 +.byte 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd5, 0x0c, 0x3a, 0xc4, 0x2a, 0xf9, 0x4e +.byte 0xe2, 0xf5, 0xbe, 0x19, 0x97, 0x5f, 0x8e, 0x88, 0x53, 0xb1, 0x1f, 0x3f, 0xcb, 0xcf, 0x9f, 0x20 +.byte 0x13, 0x6d, 0x29, 0x3a, 0xc8, 0x0f, 0x7d, 0x3c, 0xf7, 0x6b, 0x76, 0x38, 0x63, 0xd9, 0x36, 0x60 +.byte 0xa8, 0x9b, 0x5e, 0x5c, 0x00, 0x80, 0xb2, 0x2f, 0x59, 0x7f, 0xf6, 0x87, 0xf9, 0x25, 0x43, 0x86 +.byte 0xe7, 0x69, 0x1b, 0x52, 0x9a, 0x90, 0xe1, 0x71, 0xe3, 0xd8, 0x2d, 0x0d, 0x4e, 0x6f, 0xf6, 0xc8 +.byte 0x49, 0xd9, 0xb6, 0xf3, 0x1a, 0x56, 0xae, 0x2b, 0xb6, 0x74, 0x14, 0xeb, 0xcf, 0xfb, 0x26, 0xe3 +.byte 0x1a, 0xba, 0x1d, 0x96, 0x2e, 0x6a, 0x3b, 0x58, 0x94, 0x89, 0x47, 0x56, 0xff, 0x25, 0xa0, 0x93 +.byte 0x70, 0x53, 0x83, 0xda, 0x84, 0x74, 0x14, 0xc3, 0x67, 0x9e, 0x04, 0x68, 0x3a, 0xdf, 0x8e, 0x40 +.byte 0x5a, 0x1d, 0x4a, 0x4e, 0xcf, 0x43, 0x91, 0x3b, 0xe7, 0x56, 0xd6, 0x00, 0x70, 0xcb, 0x52, 0xee +.byte 0x7b, 0x7d, 0xae, 0x3a, 0xe7, 0xbc, 0x31, 0xf9, 0x45, 0xf6, 0xc2, 0x60, 0xcf, 0x13, 0x59, 0x02 +.byte 0x2b, 0x80, 0xcc, 0x34, 0x47, 0xdf, 0xb9, 0xde, 0x90, 0x65, 0x6d, 0x02, 0xcf, 0x2c, 0x91, 0xa6 +.byte 0xa6, 0xe7, 0xde, 0x85, 0x18, 0x49, 0x7c, 0x66, 0x4e, 0xa3, 0x3a, 0x6d, 0xa9, 0xb5, 0xee, 0x34 +.byte 0x2e, 0xba, 0x0d, 0x03, 0xb8, 0x33, 0xdf, 0x47, 0xeb, 0xb1, 0x6b, 0x8d, 0x25, 0xd9, 0x9b, 0xce +.byte 0x81, 0xd1, 0x45, 0x46, 0x32, 0x96, 0x70, 0x87, 0xde, 0x02, 0x0e, 0x49, 0x43, 0x85, 0xb6, 0x6c +.byte 0x73, 0xbb, 0x64, 0xea, 0x61, 0x41, 0xac, 0xc9, 0xd4, 0x54, 0xdf, 0x87, 0x2f, 0xc7, 0x22, 0xb2 +.byte 0x26, 0xcc, 0x9f, 0x59, 0x54, 0x68, 0x9f, 0xfc, 0xbe, 0x2a, 0x2f, 0xc4, 0x55, 0x1c, 0x75, 0x40 +.byte 0x60, 0x17, 0x85, 0x02, 0x55, 0x39, 0x8b, 0x7f, 0x05, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x9b +.byte 0x00, 0x78, 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x47, 0x65, 0x6f +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x37, 0x20, 0x47, 0x65 +.byte 0x6f, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x46, 0x6f +.byte 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65 +.byte 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d +.byte 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0x15, 0xb1, 0xe8, 0xfd, 0x03, 0x15, 0x43, 0xe5, 0xac, 0xeb, 0x87 +.byte 0x37, 0x11, 0x62, 0xef, 0xd2, 0x83, 0x36, 0x52, 0x7d, 0x45, 0x57, 0x0b, 0x4a, 0x8d, 0x7b, 0x54 +.byte 0x3b, 0x3a, 0x6e, 0x5f, 0x15, 0x02, 0xc0, 0x50, 0xa6, 0xcf, 0x25, 0x2f, 0x7d, 0xca, 0x48, 0xb8 +.byte 0xc7, 0x50, 0x63, 0x1c, 0x2a, 0x21, 0x08, 0x7c, 0x9a, 0x36, 0xd8, 0x0b, 0xfe, 0xd1, 0x26, 0xc5 +.byte 0x58, 0x31, 0x30, 0x28, 0x25, 0xf3, 0x5d, 0x5d, 0xa3, 0xb8, 0xb6, 0xa5, 0xb4, 0x92, 0xed, 0x6c +.byte 0x2c, 0x9f, 0xeb, 0xdd, 0x43, 0x89, 0xa2, 0x3c, 0x4b, 0x48, 0x91, 0x1d, 0x50, 0xec, 0x26, 0xdf +.byte 0xd6, 0x60, 0x2e, 0xbd, 0x21, 0x00, 0x9b, 0x01, 0x26, 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x0d, 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20 +.byte 0x32, 0x30, 0x30, 0x38, 0x20, 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x36, 0x30, 0x34 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x47, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20 +.byte 0x2d, 0x20, 0x47, 0x33, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xdc, 0xe2, 0x5e, 0x62, 0x58, 0x1d, 0x33, 0x57, 0x39, 0x32, 0x33 +.byte 0xfa, 0xeb, 0xcb, 0x87, 0x8c, 0xa7, 0xd4, 0x4a, 0xdd, 0x06, 0x88, 0xea, 0x64, 0x8e, 0x31, 0x98 +.byte 0xa5, 0x38, 0x90, 0x1e, 0x98, 0xcf, 0x2e, 0x63, 0x2b, 0xf0, 0x46, 0xbc, 0x44, 0xb2, 0x89, 0xa1 +.byte 0xc0, 0x28, 0x0c, 0x49, 0x70, 0x21, 0x95, 0x9f, 0x64, 0xc0, 0xa6, 0x93, 0x12, 0x02, 0x65, 0x26 +.byte 0x86, 0xc6, 0xa5, 0x89, 0xf0, 0xfa, 0xd7, 0x84, 0xa0, 0x70, 0xaf, 0x4f, 0x1a, 0x97, 0x3f, 0x06 +.byte 0x44, 0xd5, 0xc9, 0xeb, 0x72, 0x10, 0x7d, 0xe4, 0x31, 0x28, 0xfb, 0x1c, 0x61, 0xe6, 0x28, 0x07 +.byte 0x44, 0x73, 0x92, 0x22, 0x69, 0xa7, 0x03, 0x88, 0x6c, 0x9d, 0x63, 0xc8, 0x52, 0xda, 0x98, 0x27 +.byte 0xe7, 0x08, 0x4c, 0x70, 0x3e, 0xb4, 0xc9, 0x12, 0xc1, 0xc5, 0x67, 0x83, 0x5d, 0x33, 0xf3, 0x03 +.byte 0x11, 0xec, 0x6a, 0xd0, 0x53, 0xe2, 0xd1, 0xba, 0x36, 0x60, 0x94, 0x80, 0xbb, 0x61, 0x63, 0x6c +.byte 0x5b, 0x17, 0x7e, 0xdf, 0x40, 0x94, 0x1e, 0xab, 0x0d, 0xc2, 0x21, 0x28, 0x70, 0x88, 0xff, 0xd6 +.byte 0x26, 0x6c, 0x6c, 0x60, 0x04, 0x25, 0x4e, 0x55, 0x7e, 0x7d, 0xef, 0xbf, 0x94, 0x48, 0xde, 0xb7 +.byte 0x1d, 0xdd, 0x70, 0x8d, 0x05, 0x5f, 0x88, 0xa5, 0x9b, 0xf2, 0xc2, 0xee, 0xea, 0xd1, 0x40, 0x41 +.byte 0x6d, 0x62, 0x38, 0x1d, 0x56, 0x06, 0xc5, 0x03, 0x47, 0x51, 0x20, 0x19, 0xfc, 0x7b, 0x10, 0x0b +.byte 0x0e, 0x62, 0xae, 0x76, 0x55, 0xbf, 0x5f, 0x77, 0xbe, 0x3e, 0x49, 0x01, 0x53, 0x3d, 0x98, 0x25 +.byte 0x03, 0x76, 0x24, 0x5a, 0x1d, 0xb4, 0xdb, 0x89, 0xea, 0x79, 0xe5, 0xb6, 0xb3, 0x3b, 0x3f, 0xba +.byte 0x4c, 0x28, 0x41, 0x7f, 0x06, 0xac, 0x6a, 0x8e, 0xc1, 0xd0, 0xf6, 0x05, 0x1d, 0x7d, 0xe6, 0x42 +.byte 0x86, 0xe3, 0xa5, 0xd5, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x9f, 0x01, 0x26, 0x30, 0x81 +.byte 0x9c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x41, 0x31, 0x0f +.byte 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x06, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, 0x31 +.byte 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x0b, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61 +.byte 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1b +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73 +.byte 0x20, 0x53, 0x2e, 0x20, 0x64, 0x65, 0x20, 0x52, 0x2e, 0x4c, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x1e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0e, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72, 0x20, 0x45, 0x43, 0x41, 0x2d, 0x31, 0x30, 0x82, 0x01 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcf, 0x8f +.byte 0xe0, 0x11, 0xb5, 0x9f, 0xa8, 0x76, 0x76, 0xdb, 0xdf, 0x0f, 0x54, 0xef, 0x73, 0x63, 0x29, 0x82 +.byte 0xad, 0x47, 0xc6, 0xa3, 0x6b, 0xed, 0xfe, 0x5f, 0x33, 0xf8, 0x43, 0x51, 0xe9, 0x1a, 0x33, 0x91 +.byte 0x31, 0x17, 0xa0, 0x74, 0xc4, 0xd4, 0xa7, 0x01, 0xe6, 0xb2, 0x92, 0x3e, 0x6a, 0x9d, 0xed, 0x0e +.byte 0xf9, 0x74, 0x98, 0x40, 0xd3, 0x3f, 0x03, 0x80, 0x06, 0x82, 0x40, 0xe8, 0xb1, 0xe2, 0xa7, 0x51 +.byte 0xa7, 0x1d, 0x83, 0x26, 0x6b, 0xab, 0xde, 0xfa, 0x17, 0x91, 0x2b, 0xd8, 0xc6, 0xac, 0x1e, 0xb1 +.byte 0x9e, 0x19, 0x01, 0xd5, 0x97, 0xa6, 0xea, 0x0d, 0xb7, 0xc4, 0x55, 0x1f, 0x27, 0x7c, 0xd2, 0x08 +.byte 0xd5, 0x76, 0x1f, 0x29, 0x15, 0x87, 0x40, 0x39, 0xdd, 0x38, 0x45, 0x11, 0x75, 0xd0, 0x9a, 0xa7 +.byte 0x34, 0xe0, 0xbf, 0xcd, 0xc8, 0x52, 0x1d, 0xb9, 0x47, 0x7e, 0x0d, 0xb8, 0xbb, 0xc6, 0x0c, 0xf6 +.byte 0x73, 0x57, 0x16, 0x5a, 0x7e, 0x43, 0x91, 0x1f, 0x55, 0x3a, 0xc6, 0x6d, 0x44, 0x04, 0xaa, 0x9c +.byte 0xa9, 0x9c, 0xa7, 0x4c, 0x89, 0x17, 0x83, 0xae, 0xa3, 0x04, 0x5e, 0x52, 0x80, 0x8b, 0x1e, 0x12 +.byte 0x25, 0x11, 0x19, 0xd7, 0x0c, 0x7d, 0x7d, 0x31, 0x44, 0x41, 0xea, 0xdb, 0xaf, 0xb0, 0x1c, 0xef +.byte 0x81, 0xd0, 0x2c, 0xc5, 0x9a, 0x21, 0x9b, 0x3d, 0xed, 0x42, 0x3b, 0x50, 0x26, 0xf2, 0xec, 0xce +.byte 0x71, 0x61, 0x06, 0x62, 0x21, 0x54, 0x4e, 0x7f, 0xc1, 0x9d, 0x3e, 0x7f, 0x20, 0x8c, 0x80, 0xcb +.byte 0x2a, 0xd8, 0x97, 0x62, 0xc8, 0x83, 0x33, 0x91, 0x7d, 0xb0, 0xa2, 0x5a, 0x0f, 0x57, 0xe8, 0x3b +.byte 0xcc, 0xf2, 0x25, 0xb2, 0xd4, 0x7c, 0x2f, 0xec, 0x4d, 0xc6, 0xa1, 0x3a, 0x15, 0x7a, 0xe7, 0xb6 +.byte 0x5d, 0x35, 0xf5, 0xf6, 0x48, 0x4a, 0x36, 0x45, 0x66, 0xd4, 0xba, 0x98, 0x58, 0xc1, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0xa7, 0x01, 0x26, 0x30, 0x81, 0xa4, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x41, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x08 +.byte 0x0c, 0x06, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x0c, 0x0b, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x24 +.byte 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f +.byte 0x72, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x20, 0x64, 0x65, 0x20 +.byte 0x52, 0x2e, 0x4c, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x1e, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 +.byte 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x1f, 0x30 +.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x65, 0x72, 0x74, 0x20, 0x43, 0x41, 0x2d, 0x31, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbf +.byte 0x8e, 0xb7, 0x95, 0xe2, 0xc2, 0x26, 0x12, 0x6b, 0x33, 0x19, 0xc7, 0x40, 0x58, 0x0a, 0xab, 0x59 +.byte 0xaa, 0x8d, 0x00, 0xa3, 0xfc, 0x80, 0xc7, 0x50, 0x7b, 0x8e, 0xd4, 0x20, 0x26, 0xba, 0x32, 0x12 +.byte 0xd8, 0x23, 0x54, 0x49, 0x25, 0x10, 0x22, 0x98, 0x9d, 0x46, 0xd2, 0xc1, 0xc9, 0x9e, 0x4e, 0x1b +.byte 0x2e, 0x2c, 0x0e, 0x38, 0xf3, 0x1a, 0x25, 0x68, 0x1c, 0xa6, 0x5a, 0x05, 0xe6, 0x1e, 0x8b, 0x48 +.byte 0xbf, 0x98, 0x96, 0x74, 0x3e, 0x69, 0xca, 0xe9, 0xb5, 0x78, 0xa5, 0x06, 0xbc, 0xd5, 0x00, 0x5e +.byte 0x09, 0x0a, 0xf2, 0x27, 0x7a, 0x52, 0xfc, 0x2d, 0xd5, 0xb1, 0xea, 0xb4, 0x89, 0x61, 0x24, 0xf3 +.byte 0x1a, 0x13, 0xdb, 0xa9, 0xcf, 0x52, 0xed, 0x0c, 0x24, 0xba, 0xb9, 0x9e, 0xec, 0x7e, 0x00, 0x74 +.byte 0xfa, 0x93, 0xad, 0x6c, 0x29, 0x92, 0xae, 0x51, 0xb4, 0xbb, 0xd3, 0x57, 0xbf, 0xb3, 0xf3, 0xa8 +.byte 0x8d, 0x9c, 0xf4, 0x24, 0x4b, 0x2a, 0xd6, 0x99, 0x9e, 0xf4, 0x9e, 0xfe, 0xc0, 0x7e, 0x42, 0x3a +.byte 0xe7, 0x0b, 0x95, 0x53, 0xda, 0xb7, 0x68, 0x0e, 0x90, 0x4c, 0xfb, 0x70, 0x3f, 0x8f, 0x4a, 0x2c +.byte 0x94, 0xf3, 0x26, 0xdd, 0x63, 0x69, 0xa9, 0x94, 0xd8, 0x10, 0x4e, 0xc5, 0x47, 0x08, 0x90, 0x99 +.byte 0x1b, 0x17, 0x4d, 0xb9, 0x6c, 0x6e, 0xef, 0x60, 0x95, 0x11, 0x8e, 0x21, 0x80, 0xb5, 0xbd, 0xa0 +.byte 0x73, 0xd8, 0xd0, 0xb2, 0x77, 0xc4, 0x45, 0xea, 0x5a, 0x26, 0xfb, 0x66, 0x76, 0x76, 0xf8, 0x06 +.byte 0x1f, 0x61, 0x6d, 0x0f, 0x55, 0xc5, 0x83, 0xb7, 0x10, 0x56, 0x72, 0x06, 0x07, 0xa5, 0xf3, 0xb1 +.byte 0x1a, 0x03, 0x05, 0x64, 0x0e, 0x9d, 0x5a, 0x8a, 0xd6, 0x86, 0x70, 0x1b, 0x24, 0xde, 0xfe, 0x28 +.byte 0x8a, 0x2b, 0xd0, 0x6a, 0xb0, 0xfc, 0x7a, 0xa2, 0xdc, 0xb2, 0x79, 0x0e, 0x8b, 0x65, 0x0f, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0xa7, 0x02, 0x26, 0x30, 0x81, 0xa4, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x41, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04 +.byte 0x08, 0x0c, 0x06, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x0c, 0x0b, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31 +.byte 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43 +.byte 0x6f, 0x72, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x20, 0x64, 0x65 +.byte 0x20, 0x52, 0x2e, 0x4c, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x1e +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x1f +.byte 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f +.byte 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x65, 0x72, 0x74, 0x20, 0x43, 0x41, 0x2d, 0x32, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0xa7, 0x20, 0x6e, 0xc2, 0x2a, 0xa2, 0x62, 0x24, 0x95, 0x90, 0x76, 0xc8, 0x38, 0x7e, 0x80, 0xd2 +.byte 0xab, 0xc1, 0x9b, 0x65, 0x05, 0x94, 0xf4, 0xc1, 0x0a, 0x10, 0xd5, 0x02, 0xac, 0xed, 0x9f, 0x93 +.byte 0xc7, 0x87, 0xc8, 0xb0, 0x27, 0x2b, 0x42, 0x0c, 0x3d, 0x0a, 0x3e, 0x41, 0x5a, 0x9e, 0x75, 0xdd +.byte 0x8d, 0xca, 0xe0, 0x9b, 0xec, 0x68, 0x32, 0xa4, 0x69, 0x92, 0x68, 0x8c, 0x0b, 0x81, 0x0e, 0x56 +.byte 0xa0, 0x3e, 0x1a, 0xdd, 0x2c, 0x25, 0x14, 0x82, 0x2f, 0x97, 0xd3, 0x64, 0x46, 0xf4, 0x54, 0xa9 +.byte 0xdc, 0x3a, 0x54, 0x2d, 0x31, 0x2b, 0x99, 0x82, 0xf2, 0xd9, 0x2a, 0xd7, 0xef, 0x71, 0x00, 0xb8 +.byte 0x31, 0xa4, 0xbe, 0x7a, 0x24, 0x07, 0xc3, 0x42, 0x20, 0xf2, 0x8a, 0xd4, 0x92, 0x04, 0x1b, 0x65 +.byte 0x56, 0x4c, 0x6c, 0xd4, 0xfb, 0xb6, 0x61, 0x5a, 0x47, 0x23, 0xb4, 0xd8, 0x69, 0xb4, 0xb7, 0x3a +.byte 0xd0, 0x74, 0x3c, 0x0c, 0x75, 0xa1, 0x8c, 0x4e, 0x76, 0xa1, 0xe9, 0xdb, 0x2a, 0xa5, 0x3b, 0xfa +.byte 0xce, 0xb0, 0xff, 0x7e, 0x6a, 0x28, 0xfd, 0x27, 0x1c, 0xc8, 0xb1, 0xe9, 0x29, 0xf1, 0x57, 0x6e +.byte 0x64, 0xb4, 0xd0, 0xc1, 0x15, 0x6d, 0x0e, 0xbe, 0x2e, 0x0e, 0x46, 0xc8, 0x5e, 0xf4, 0x51, 0xfe +.byte 0xef, 0x0e, 0x63, 0x3a, 0x3b, 0x71, 0xba, 0xcf, 0x6f, 0x59, 0xca, 0x0c, 0xe3, 0x9b, 0x5d, 0x49 +.byte 0xb8, 0x4c, 0xe2, 0x57, 0xb1, 0x98, 0x8a, 0x42, 0x57, 0x9c, 0x76, 0xef, 0xef, 0xbd, 0xd1, 0x68 +.byte 0xa8, 0xd2, 0xf4, 0x09, 0xbb, 0x77, 0x35, 0xbe, 0x25, 0x82, 0x08, 0xc4, 0x16, 0x2c, 0x44, 0x20 +.byte 0x56, 0xa9, 0x44, 0x11, 0x77, 0xef, 0x5d, 0xb4, 0x1d, 0xaa, 0x5e, 0x6b, 0x3e, 0x8b, 0x32, 0xf6 +.byte 0x07, 0x2f, 0x57, 0x04, 0x92, 0xca, 0xf5, 0xfe, 0x9d, 0xc2, 0xe9, 0xe8, 0xb3, 0x8e, 0x4c, 0x4b +.byte 0x02, 0x31, 0xd9, 0xe4, 0x3c, 0x48, 0x82, 0x27, 0xf7, 0x18, 0x82, 0x76, 0x48, 0x3a, 0x71, 0xb1 +.byte 0x13, 0xa1, 0x39, 0xd5, 0x2e, 0xc5, 0x34, 0xc2, 0x1d, 0x62, 0x85, 0xdf, 0x03, 0xfe, 0x4d, 0xf4 +.byte 0xaf, 0x3d, 0xdf, 0x5c, 0x5b, 0x8d, 0xfa, 0x70, 0xe1, 0xa5, 0x7e, 0x27, 0xc7, 0x86, 0x2e, 0x6a +.byte 0x8f, 0x12, 0xc6, 0x84, 0x5e, 0x43, 0x51, 0x50, 0x9c, 0x19, 0x9b, 0x78, 0xe6, 0xfc, 0xf6, 0xed +.byte 0x47, 0x7e, 0x7b, 0x3d, 0x66, 0xef, 0x13, 0x13, 0x88, 0x5f, 0x3c, 0xa1, 0x63, 0xfb, 0xf9, 0xac +.byte 0x87, 0x35, 0x9f, 0xf3, 0x82, 0x9e, 0xa4, 0x3f, 0x0a, 0x9c, 0x31, 0x69, 0x8b, 0x99, 0xa4, 0x88 +.byte 0x4a, 0x8e, 0x6e, 0x66, 0x4d, 0xef, 0x16, 0xc4, 0x0f, 0x79, 0x28, 0x21, 0x60, 0x0d, 0x85, 0x16 +.byte 0x7d, 0xd7, 0x54, 0x38, 0xf1, 0x92, 0x56, 0xfd, 0xb5, 0x33, 0x4c, 0x83, 0xdc, 0xd7, 0x10, 0x9f +.byte 0x4b, 0xfd, 0xc6, 0xf8, 0x42, 0xbd, 0xba, 0x7c, 0x73, 0x02, 0xe0, 0xff, 0x7d, 0xcd, 0x5b, 0xe1 +.byte 0xd4, 0xac, 0x61, 0x7b, 0x57, 0xd5, 0x4a, 0x7b, 0x5b, 0xd4, 0x85, 0x58, 0x27, 0x5d, 0xbf, 0xf8 +.byte 0x2b, 0x60, 0xac, 0xa0, 0x26, 0xae, 0x14, 0x21, 0x27, 0xc6, 0x77, 0x9a, 0x33, 0x80, 0x3c, 0x5e +.byte 0x46, 0x3f, 0xf7, 0xc3, 0xb1, 0xa3, 0x86, 0x33, 0xc6, 0xe8, 0x5e, 0x0d, 0xb9, 0x35, 0x2c, 0xaa +.byte 0x46, 0xc1, 0x85, 0x02, 0x75, 0x80, 0xa0, 0xeb, 0x24, 0xfb, 0x15, 0xaa, 0xe4, 0x67, 0x7f, 0x6e +.byte 0x77, 0x3f, 0xf4, 0x04, 0x8a, 0x2f, 0x7c, 0x7b, 0xe3, 0x17, 0x61, 0xf0, 0xdd, 0x09, 0xa9, 0x20 +.byte 0xc8, 0xbe, 0x09, 0xa4, 0xd0, 0x7e, 0x44, 0xc3, 0xb2, 0x30, 0x4a, 0x38, 0xaa, 0xa9, 0xec, 0x18 +.byte 0x9a, 0x07, 0x82, 0x2b, 0xdb, 0xb8, 0x9c, 0x18, 0xad, 0xda, 0xe0, 0x46, 0x17, 0xac, 0xcf, 0x5d +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xa9, 0x02, 0x26, 0x30, 0x81, 0xa6, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63 +.byte 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61 +.byte 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x37, 0x48, 0x65, 0x6c, 0x6c, 0x65 +.byte 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64 +.byte 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74 +.byte 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30 +.byte 0x31, 0x35, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xc2, 0xf8, 0xa9, 0x3f, 0x1b, 0x89, 0xfc, 0x3c, 0x3c, 0x04, 0x5d, 0x3d, 0x90 +.byte 0x36, 0xb0, 0x91, 0x3a, 0x79, 0x3c, 0x66, 0x5a, 0xef, 0x6d, 0x39, 0x01, 0x49, 0x1a, 0xb4, 0xb7 +.byte 0xcf, 0x7f, 0x4d, 0x23, 0x53, 0xb7, 0x90, 0x00, 0xe3, 0x13, 0x2a, 0x28, 0xa6, 0x31, 0xf1, 0x91 +.byte 0x00, 0xe3, 0x28, 0xec, 0xae, 0x21, 0x41, 0xce, 0x1f, 0xda, 0xfd, 0x7d, 0x12, 0x5b, 0x01, 0x83 +.byte 0x0f, 0xb9, 0xb0, 0x5f, 0x99, 0xe1, 0xf2, 0x12, 0x83, 0x80, 0x4d, 0x06, 0x3e, 0xdf, 0xac, 0xaf +.byte 0xe7, 0xa1, 0x88, 0x6b, 0x31, 0xaf, 0xf0, 0x8b, 0xd0, 0x18, 0x33, 0xb8, 0xdb, 0x45, 0x6a, 0x34 +.byte 0xf4, 0x02, 0x80, 0x24, 0x28, 0x0a, 0x02, 0x15, 0x95, 0x5e, 0x76, 0x2a, 0x0d, 0x99, 0x3a, 0x14 +.byte 0x5b, 0xf6, 0xcb, 0xcb, 0x53, 0xbc, 0x13, 0x4d, 0x01, 0x88, 0x37, 0x94, 0x25, 0x1b, 0x42, 0xbc +.byte 0x22, 0xd8, 0x8e, 0xa3, 0x96, 0x5e, 0x3a, 0xd9, 0x32, 0xdb, 0x3e, 0xe8, 0xf0, 0x10, 0x65, 0xed +.byte 0x74, 0xe1, 0x2f, 0xa7, 0x7c, 0xaf, 0x27, 0x34, 0xbb, 0x29, 0x7d, 0x9b, 0xb6, 0xcf, 0x09, 0xc8 +.byte 0xe5, 0xd3, 0x0a, 0xfc, 0x88, 0x65, 0x65, 0x74, 0x0a, 0xdc, 0x73, 0x1c, 0x5c, 0xcd, 0x40, 0xb1 +.byte 0x1c, 0xd4, 0xb6, 0x84, 0x8c, 0x4c, 0x50, 0xcf, 0x68, 0x8e, 0xa8, 0x59, 0xae, 0xc2, 0x27, 0x4e +.byte 0x82, 0xa2, 0x35, 0xdd, 0x14, 0xf4, 0x1f, 0xff, 0xb2, 0x77, 0xd5, 0x87, 0x2f, 0xaa, 0x6e, 0x7d +.byte 0x24, 0x27, 0xe7, 0xc6, 0xcb, 0x26, 0xe6, 0xe5, 0xfe, 0x67, 0x07, 0x63, 0xd8, 0x45, 0x0d, 0xdd +.byte 0x3a, 0x59, 0x65, 0x39, 0x58, 0x7a, 0x92, 0x99, 0x72, 0x3d, 0x9c, 0x84, 0x5e, 0x88, 0x21, 0xb8 +.byte 0xd5, 0xf4, 0x2c, 0xfc, 0xd9, 0x70, 0x52, 0x4f, 0x78, 0xb8, 0xbd, 0x3c, 0x2b, 0x8b, 0x95, 0x98 +.byte 0xf5, 0xb3, 0xd1, 0x68, 0xcf, 0x20, 0x14, 0x7e, 0x4c, 0x5c, 0x5f, 0xe7, 0x8b, 0xe5, 0xf5, 0x35 +.byte 0x81, 0x19, 0x37, 0xd7, 0x11, 0x08, 0xb7, 0x66, 0xbe, 0xd3, 0x4a, 0xce, 0x83, 0x57, 0x00, 0x3a +.byte 0xc3, 0x81, 0xf8, 0x17, 0xcb, 0x92, 0x36, 0x5d, 0xd1, 0xa3, 0xd8, 0x75, 0x1b, 0xe1, 0x8b, 0x27 +.byte 0xea, 0x7a, 0x48, 0x41, 0xfd, 0x45, 0x19, 0x06, 0xad, 0x27, 0x99, 0x4e, 0xc1, 0x70, 0x47, 0xdd +.byte 0xb5, 0x9f, 0x81, 0x53, 0x12, 0xe5, 0xb1, 0x8c, 0x48, 0x5d, 0x31, 0x43, 0x17, 0xe3, 0x8c, 0xc6 +.byte 0x7a, 0x63, 0x96, 0x4b, 0x29, 0x30, 0x4e, 0x84, 0x4e, 0x62, 0x19, 0x5e, 0x3c, 0xce, 0x97, 0x90 +.byte 0xa5, 0x7f, 0x01, 0xeb, 0x9d, 0xe0, 0xf8, 0x8b, 0x89, 0xdd, 0x25, 0x98, 0x3d, 0x92, 0xb6, 0x7e +.byte 0xef, 0xd9, 0xf1, 0x51, 0x51, 0x7d, 0x2d, 0x26, 0xc8, 0x69, 0x59, 0x61, 0xe0, 0xac, 0x6a, 0xb8 +.byte 0x2a, 0x36, 0x11, 0x04, 0x7a, 0x50, 0xbd, 0x32, 0x84, 0xbe, 0x2f, 0xdc, 0x72, 0xd5, 0xd7, 0x1d +.byte 0x16, 0x47, 0xe4, 0x47, 0x66, 0x20, 0x3f, 0xf4, 0x96, 0xc5, 0xaf, 0x8e, 0x01, 0x7a, 0xa5, 0x0f +.byte 0x7a, 0x64, 0xf5, 0x0d, 0x18, 0x87, 0xd9, 0xae, 0x88, 0xd5, 0xfa, 0x84, 0xc1, 0x3a, 0xc0, 0x69 +.byte 0x28, 0x2d, 0xf2, 0x0d, 0x68, 0x51, 0xaa, 0xe3, 0xa5, 0x77, 0xc6, 0xa4, 0x90, 0x0e, 0xa1, 0x37 +.byte 0x8b, 0x31, 0x23, 0x47, 0xc1, 0x09, 0x08, 0xeb, 0x6e, 0xf7, 0x78, 0x9b, 0xd7, 0x82, 0xfc, 0x84 +.byte 0x20, 0x99, 0x49, 0x19, 0xb6, 0x12, 0x46, 0xb1, 0xfb, 0x45, 0x55, 0x16, 0xa9, 0xa3, 0x65, 0xac +.byte 0x9c, 0x07, 0x0f, 0xea, 0x6b, 0xdc, 0x1f, 0x2e, 0x06, 0x72, 0xec, 0x86, 0x88, 0x12, 0xe4, 0x2d +.byte 0xdb, 0x5f, 0x05, 0x2f, 0xe4, 0xf0, 0x03, 0xd3, 0x26, 0x33, 0xe7, 0x80, 0xc2, 0xcd, 0x42, 0xa1 +.byte 0x17, 0x34, 0x0b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xaa, 0x01, 0x26, 0x30, 0x81, 0xa7, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f +.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31 +.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63 +.byte 0x6b, 0x20, 0x4b, 0x66, 0x74, 0x2e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c +.byte 0x2e, 0x54, 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e, 0x79, 0x6b +.byte 0x69, 0x61, 0x64, 0xc3, 0xb3, 0x6b, 0x20, 0x28, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x29, 0x31 +.byte 0x35, 0x30, 0x33, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63 +.byte 0x6b, 0x20, 0x41, 0x72, 0x61, 0x6e, 0x79, 0x20, 0x28, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x47 +.byte 0x6f, 0x6c, 0x64, 0x29, 0x20, 0x46, 0xc5, 0x91, 0x74, 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad +.byte 0x74, 0x76, 0xc3, 0xa1, 0x6e, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc4, 0x24, 0x5e, 0x73, 0xbe, 0x4b, 0x6d, 0x14, 0xc3 +.byte 0xa1, 0xf4, 0xe3, 0x97, 0x90, 0x6e, 0xd2, 0x30, 0x45, 0x1e, 0x3c, 0xee, 0x67, 0xd9, 0x64, 0xe0 +.byte 0x1a, 0x8a, 0x7f, 0xca, 0x30, 0xca, 0x83, 0xe3, 0x20, 0xc1, 0xe3, 0xf4, 0x3a, 0xd3, 0x94, 0x5f +.byte 0x1a, 0x7c, 0x5b, 0x6d, 0xbf, 0x30, 0x4f, 0x84, 0x27, 0xf6, 0x9f, 0x1f, 0x49, 0xbc, 0xc6, 0x99 +.byte 0x0a, 0x90, 0xf2, 0x0f, 0xf5, 0x7f, 0x43, 0x84, 0x37, 0x63, 0x51, 0x8b, 0x7a, 0xa5, 0x70, 0xfc +.byte 0x7a, 0x58, 0xcd, 0x8e, 0x9b, 0xed, 0xc3, 0x46, 0x6c, 0x84, 0x70, 0x5d, 0xda, 0xf3, 0x01, 0x90 +.byte 0x23, 0xfc, 0x4e, 0x30, 0xa9, 0x7e, 0xe1, 0x27, 0x63, 0xe7, 0xed, 0x64, 0x3c, 0xa0, 0xb8, 0xc9 +.byte 0x33, 0x63, 0xfe, 0x16, 0x90, 0xff, 0xb0, 0xb8, 0xfd, 0xd7, 0xa8, 0xc0, 0xc0, 0x94, 0x43, 0x0b +.byte 0xb6, 0xd5, 0x59, 0xa6, 0x9e, 0x56, 0xd0, 0x24, 0x1f, 0x70, 0x79, 0xaf, 0xdb, 0x39, 0x54, 0x0d +.byte 0x65, 0x75, 0xd9, 0x15, 0x41, 0x94, 0x01, 0xaf, 0x5e, 0xec, 0xf6, 0x8d, 0xf1, 0xff, 0xad, 0x64 +.byte 0xfe, 0x20, 0x9a, 0xd7, 0x5c, 0xeb, 0xfe, 0xa6, 0x1f, 0x08, 0x64, 0xa3, 0x8b, 0x76, 0x55, 0xad +.byte 0x1e, 0x3b, 0x28, 0x60, 0x2e, 0x87, 0x25, 0xe8, 0xaa, 0xaf, 0x1f, 0xc6, 0x64, 0x46, 0x20, 0xb7 +.byte 0x70, 0x7f, 0x3c, 0xde, 0x48, 0xdb, 0x96, 0x53, 0xb7, 0x39, 0x77, 0xe4, 0x1a, 0xe2, 0xc7, 0x16 +.byte 0x84, 0x76, 0x97, 0x5b, 0x2f, 0xbb, 0x19, 0x15, 0x85, 0xf8, 0x69, 0x85, 0xf5, 0x99, 0xa7, 0xa9 +.byte 0xf2, 0x34, 0xa7, 0xa9, 0xb6, 0xa6, 0x03, 0xfc, 0x6f, 0x86, 0x3d, 0x54, 0x7c, 0x76, 0x04, 0x9b +.byte 0x6b, 0xf9, 0x40, 0x5d, 0x00, 0x34, 0xc7, 0x2e, 0x99, 0x75, 0x9d, 0xe5, 0x88, 0x03, 0xaa, 0x4d +.byte 0xf8, 0x03, 0xd2, 0x42, 0x76, 0xc0, 0x1b, 0x02, 0x03, 0x00, 0xa8, 0x8b, 0x00, 0xac, 0x01, 0x26 +.byte 0x30, 0x81, 0xa9, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x74, 0x68, 0x61, 0x77, 0x74 +.byte 0x65, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x1f, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x44, 0x69, 0x76, 0x69, 0x73, 0x69, 0x6f +.byte 0x6e, 0x31, 0x38, 0x30, 0x36, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x2f, 0x28, 0x63, 0x29, 0x20 +.byte 0x32, 0x30, 0x30, 0x36, 0x20, 0x74, 0x68, 0x61, 0x77, 0x74, 0x65, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x20, 0x2d, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a +.byte 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x1f, 0x30, 0x1d, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x16, 0x74, 0x68, 0x61, 0x77, 0x74, 0x65, 0x20, 0x50, 0x72, 0x69 +.byte 0x6d, 0x61, 0x72, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xac, 0xa0, 0xf0 +.byte 0xfb, 0x80, 0x59, 0xd4, 0x9c, 0xc7, 0xa4, 0xcf, 0x9d, 0xa1, 0x59, 0x73, 0x09, 0x10, 0x45, 0x0c +.byte 0x0d, 0x2c, 0x6e, 0x68, 0xf1, 0x6c, 0x5b, 0x48, 0x68, 0x49, 0x59, 0x37, 0xfc, 0x0b, 0x33, 0x19 +.byte 0xc2, 0x77, 0x7f, 0xcc, 0x10, 0x2d, 0x95, 0x34, 0x1c, 0xe6, 0xeb, 0x4d, 0x09, 0xa7, 0x1c, 0xd2 +.byte 0xb8, 0xc9, 0x97, 0x36, 0x02, 0xb7, 0x89, 0xd4, 0x24, 0x5f, 0x06, 0xc0, 0xcc, 0x44, 0x94, 0x94 +.byte 0x8d, 0x02, 0x62, 0x6f, 0xeb, 0x5a, 0xdd, 0x11, 0x8d, 0x28, 0x9a, 0x5c, 0x84, 0x90, 0x10, 0x7a +.byte 0x0d, 0xbd, 0x74, 0x66, 0x2f, 0x6a, 0x38, 0xa0, 0xe2, 0xd5, 0x54, 0x44, 0xeb, 0x1d, 0x07, 0x9f +.byte 0x07, 0xba, 0x6f, 0xee, 0xe9, 0xfd, 0x4e, 0x0b, 0x29, 0xf5, 0x3e, 0x84, 0xa0, 0x01, 0xf1, 0x9c +.byte 0xab, 0xf8, 0x1c, 0x7e, 0x89, 0xa4, 0xe8, 0xa1, 0xd8, 0x71, 0x65, 0x0d, 0xa3, 0x51, 0x7b, 0xee +.byte 0xbc, 0xd2, 0x22, 0x60, 0x0d, 0xb9, 0x5b, 0x9d, 0xdf, 0xba, 0xfc, 0x51, 0x5b, 0x0b, 0xaf, 0x98 +.byte 0xb2, 0xe9, 0x2e, 0xe9, 0x04, 0xe8, 0x62, 0x87, 0xde, 0x2b, 0xc8, 0xd7, 0x4e, 0xc1, 0x4c, 0x64 +.byte 0x1e, 0xdd, 0xcf, 0x87, 0x58, 0xba, 0x4a, 0x4f, 0xca, 0x68, 0x07, 0x1d, 0x1c, 0x9d, 0x4a, 0xc6 +.byte 0xd5, 0x2f, 0x91, 0xcc, 0x7c, 0x71, 0x72, 0x1c, 0xc5, 0xc0, 0x67, 0xeb, 0x32, 0xfd, 0xc9, 0x92 +.byte 0x5c, 0x94, 0xda, 0x85, 0xc0, 0x9b, 0xbf, 0x53, 0x7d, 0x2b, 0x09, 0xf4, 0x8c, 0x9d, 0x91, 0x1f +.byte 0x97, 0x6a, 0x52, 0xcb, 0xde, 0x09, 0x36, 0xa4, 0x77, 0xd8, 0x7b, 0x87, 0x50, 0x44, 0xd5, 0x3e +.byte 0x6e, 0x29, 0x69, 0xfb, 0x39, 0x49, 0x26, 0x1e, 0x09, 0xa5, 0x80, 0x7b, 0x40, 0x2d, 0xeb, 0xe8 +.byte 0x27, 0x85, 0xc9, 0xfe, 0x61, 0xfd, 0x7e, 0xe6, 0x7c, 0x97, 0x1d, 0xd5, 0x9d, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0xad, 0x00, 0x78, 0x30, 0x81, 0xaa, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13 +.byte 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65 +.byte 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68 +.byte 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x44, 0x30 +.byte 0x42, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63 +.byte 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65 +.byte 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x73, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32 +.byte 0x30, 0x31, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01 +.byte 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x92, 0xa0, 0x41, 0xe8, 0x4b +.byte 0x82, 0x84, 0x5c, 0xe2, 0xf8, 0x31, 0x11, 0x99, 0x86, 0x64, 0x4e, 0x09, 0x25, 0x2f, 0x9d, 0x41 +.byte 0x2f, 0x0a, 0xae, 0x35, 0x4f, 0x74, 0x95, 0xb2, 0x51, 0x64, 0x6b, 0x8d, 0x6b, 0xe6, 0x3f, 0x70 +.byte 0x95, 0xf0, 0x05, 0x44, 0x47, 0xa6, 0x72, 0x38, 0x50, 0x76, 0x95, 0x02, 0x5a, 0x8e, 0xae, 0x28 +.byte 0x9e, 0xf9, 0x2d, 0x4e, 0x99, 0xef, 0x2c, 0x48, 0x6f, 0x4c, 0x25, 0x29, 0xe8, 0xd1, 0x71, 0x5b +.byte 0xdf, 0x1d, 0xc1, 0x75, 0x37, 0xb4, 0xd7, 0xfa, 0x7b, 0x7a, 0x42, 0x9c, 0x6a, 0x0a, 0x56, 0x5a +.byte 0x7c, 0x69, 0x0b, 0xaa, 0x80, 0x09, 0x24, 0x6c, 0x7e, 0xc1, 0x46, 0x00, 0xaf, 0x02, 0x26, 0x30 +.byte 0x81, 0xac, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x55, 0x31 +.byte 0x43, 0x30, 0x41, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x3a, 0x4d, 0x61, 0x64, 0x72, 0x69, 0x64 +.byte 0x20, 0x28, 0x73, 0x65, 0x65, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x61, 0x64 +.byte 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x61, 0x74, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x63, 0x61, 0x6d +.byte 0x65, 0x72, 0x66, 0x69, 0x72, 0x6d, 0x61, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x64, 0x64, 0x72 +.byte 0x65, 0x73, 0x73, 0x29, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x05, 0x13, 0x09, 0x41 +.byte 0x38, 0x32, 0x37, 0x34, 0x33, 0x32, 0x38, 0x37, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x12, 0x41, 0x43, 0x20, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x66, 0x69, 0x72, 0x6d, 0x61 +.byte 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x43, 0x68, 0x61, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x69 +.byte 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x2d, 0x20, 0x32, 0x30, 0x30, 0x38, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc0 +.byte 0xdf, 0x56, 0xd3, 0xe4, 0x3a, 0x9b, 0x76, 0x45, 0xb4, 0x13, 0xdb, 0xff, 0xc1, 0xb6, 0x19, 0x8b +.byte 0x37, 0x41, 0x18, 0x95, 0x52, 0x47, 0xeb, 0x17, 0x9d, 0x29, 0x88, 0x8e, 0x35, 0x6c, 0x06, 0x32 +.byte 0x2e, 0x47, 0x62, 0xf3, 0x49, 0x04, 0xbf, 0x7d, 0x44, 0x36, 0xb1, 0x71, 0xcc, 0xbd, 0x5a, 0x09 +.byte 0x73, 0xd5, 0xd9, 0x85, 0x44, 0xff, 0x91, 0x57, 0x25, 0xdf, 0x5e, 0x36, 0x8e, 0x70, 0xd1, 0x5c +.byte 0x71, 0x43, 0x1d, 0xd9, 0xda, 0xef, 0x5c, 0xd2, 0xfb, 0x1b, 0xbd, 0x3a, 0xb5, 0xcb, 0xad, 0xa3 +.byte 0xcc, 0x44, 0xa7, 0x0d, 0xae, 0x21, 0x15, 0x3f, 0xb9, 0x7a, 0x5b, 0x92, 0x75, 0xd8, 0xa4, 0x12 +.byte 0x38, 0x89, 0x19, 0x8a, 0xb7, 0x80, 0xd2, 0xe2, 0x32, 0x6f, 0x56, 0x9c, 0x91, 0xd6, 0x88, 0x10 +.byte 0x0b, 0xb3, 0x74, 0x64, 0x92, 0x74, 0x60, 0xf3, 0xf6, 0xcf, 0x18, 0x4f, 0x60, 0xb2, 0x23, 0xd0 +.byte 0xc7, 0x3b, 0xce, 0x61, 0x4b, 0x99, 0x8f, 0xc2, 0x0c, 0xd0, 0x40, 0xb2, 0x98, 0xdc, 0x0d, 0xa8 +.byte 0x4e, 0xa3, 0xb9, 0x0a, 0xae, 0x60, 0xa0, 0xad, 0x45, 0x52, 0x63, 0xba, 0x66, 0xbd, 0x68, 0xe0 +.byte 0xf9, 0xbe, 0x1a, 0xa8, 0x81, 0xbb, 0x1e, 0x41, 0x78, 0x75, 0xd3, 0xc1, 0xfe, 0x00, 0x55, 0xb0 +.byte 0x87, 0x54, 0xe8, 0x27, 0x90, 0x35, 0x1d, 0x4c, 0x33, 0xad, 0x97, 0xfc, 0x97, 0x2e, 0x98, 0x84 +.byte 0xbf, 0x2c, 0xc9, 0xa3, 0xbf, 0xd1, 0x98, 0x11, 0x14, 0xed, 0x63, 0xf8, 0xca, 0x98, 0x88, 0x58 +.byte 0x17, 0x99, 0xed, 0x45, 0x03, 0x97, 0x7e, 0x3c, 0x86, 0x1e, 0x88, 0x8c, 0xbe, 0xf2, 0x91, 0x84 +.byte 0x8f, 0x65, 0x34, 0xd8, 0x00, 0x4c, 0x7d, 0xb7, 0x31, 0x17, 0x5a, 0x29, 0x7a, 0x0a, 0x18, 0x24 +.byte 0x30, 0xa3, 0x37, 0xb5, 0x7a, 0xa9, 0x01, 0x7d, 0x26, 0xd6, 0xf9, 0x0e, 0x8e, 0x59, 0xf1, 0xfd +.byte 0x1b, 0x33, 0xb5, 0x29, 0x3b, 0x17, 0x3b, 0x41, 0xb6, 0x21, 0xdd, 0xd4, 0xc0, 0x3d, 0xa5, 0x9f +.byte 0x9f, 0x1f, 0x43, 0x50, 0xc9, 0xbb, 0xbc, 0x6c, 0x7a, 0x97, 0x98, 0xee, 0xcd, 0x8c, 0x1f, 0xfb +.byte 0x9c, 0x51, 0xae, 0x8b, 0x70, 0xbd, 0x27, 0x9f, 0x71, 0xc0, 0x6b, 0xac, 0x7d, 0x90, 0x66, 0xe8 +.byte 0xd7, 0x5d, 0x3a, 0x0d, 0xb0, 0xd5, 0xc2, 0x8d, 0xd5, 0xc8, 0x9d, 0x9d, 0xc1, 0x6d, 0xd0, 0xd0 +.byte 0xbf, 0x51, 0xe4, 0xe3, 0xf8, 0xc3, 0x38, 0x36, 0xae, 0xd6, 0xa7, 0x75, 0xe6, 0xaf, 0x84, 0x43 +.byte 0x5d, 0x93, 0x92, 0x0c, 0x6a, 0x07, 0xde, 0x3b, 0x1d, 0x98, 0x22, 0xd6, 0xac, 0xc1, 0x35, 0xdb +.byte 0xa3, 0xa0, 0x25, 0xff, 0x72, 0xb5, 0x76, 0x1d, 0xde, 0x6d, 0xe9, 0x2c, 0x66, 0x2c, 0x52, 0x84 +.byte 0xd0, 0x45, 0x92, 0xce, 0x1c, 0xe5, 0xe5, 0x33, 0x1d, 0xdc, 0x07, 0x53, 0x54, 0xa3, 0xaa, 0x82 +.byte 0x3b, 0x9a, 0x37, 0x2f, 0xdc, 0xdd, 0xa0, 0x64, 0xe9, 0xe6, 0xdd, 0xbd, 0xae, 0xfc, 0x64, 0x85 +.byte 0x1d, 0x3c, 0xa7, 0xc9, 0x06, 0xde, 0x84, 0xff, 0x6b, 0xe8, 0x6b, 0x1a, 0x3c, 0xc5, 0xa2, 0xb3 +.byte 0x42, 0xfb, 0x8b, 0x09, 0x3e, 0x5f, 0x08, 0x52, 0xc7, 0x62, 0xc4, 0xd4, 0x05, 0x71, 0xbf, 0xc4 +.byte 0x64, 0xe4, 0xf8, 0xa1, 0x83, 0xe8, 0x3e, 0x12, 0x9b, 0xa8, 0x1e, 0xd4, 0x36, 0x4d, 0x2f, 0x71 +.byte 0xf6, 0x8d, 0x28, 0xf6, 0x83, 0xa9, 0x13, 0xd2, 0x61, 0xc1, 0x91, 0xbb, 0x48, 0xc0, 0x34, 0x8f +.byte 0x41, 0x8c, 0x4b, 0x4c, 0xdb, 0x69, 0x12, 0xff, 0x50, 0x94, 0x9c, 0x20, 0x83, 0x59, 0x73, 0xed +.byte 0x7c, 0xa1, 0xf2, 0xf1, 0xfd, 0xdd, 0xf7, 0x49, 0xd3, 0x43, 0x58, 0xa0, 0x56, 0x63, 0xca, 0x3d +.byte 0x3d, 0xe5, 0x35, 0x56, 0x59, 0xe9, 0x0e, 0xca, 0x20, 0xcc, 0x2b, 0x4b, 0x93, 0x29, 0x0f, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0xb1, 0x02, 0x26, 0x30, 0x81, 0xae, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x55, 0x31, 0x43, 0x30, 0x41, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x13, 0x3a, 0x4d, 0x61, 0x64, 0x72, 0x69, 0x64, 0x20, 0x28, 0x73, 0x65, 0x65, 0x20, 0x63 +.byte 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x20, 0x61 +.byte 0x74, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x63, 0x61, 0x6d, 0x65, 0x72, 0x66, 0x69, 0x72, 0x6d, 0x61 +.byte 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x29, 0x31, 0x12, 0x30 +.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x05, 0x13, 0x09, 0x41, 0x38, 0x32, 0x37, 0x34, 0x33, 0x32, 0x38 +.byte 0x37, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x12, 0x41, 0x43, 0x20, 0x43 +.byte 0x61, 0x6d, 0x65, 0x72, 0x66, 0x69, 0x72, 0x6d, 0x61, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x29 +.byte 0x30, 0x27, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x20, 0x43, 0x68, 0x61, 0x6d, 0x62, 0x65, 0x72 +.byte 0x73, 0x20, 0x6f, 0x66, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x65, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x2d, 0x20, 0x32, 0x30, 0x30, 0x38, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xaf, 0x00, 0xcb, 0x70, 0x37, 0x2b +.byte 0x80, 0x5a, 0x4a, 0x3a, 0x6c, 0x78, 0x94, 0x7d, 0xa3, 0x7f, 0x1a, 0x1f, 0xf6, 0x35, 0xd5, 0xbd +.byte 0xdb, 0xcb, 0x0d, 0x44, 0x72, 0x3e, 0x26, 0xb2, 0x90, 0x52, 0xba, 0x63, 0x3b, 0x28, 0x58, 0x6f +.byte 0xa5, 0xb3, 0x6d, 0x94, 0xa6, 0xf3, 0xdd, 0x64, 0x0c, 0x55, 0xf6, 0xf6, 0xe7, 0xf2, 0x22, 0x22 +.byte 0x80, 0x5e, 0xe1, 0x62, 0xc6, 0xb6, 0x29, 0xe1, 0x81, 0x6c, 0xf2, 0xbf, 0xe5, 0x7d, 0x32, 0x6a +.byte 0x54, 0xa0, 0x32, 0x19, 0x59, 0xfe, 0x1f, 0x8b, 0xd7, 0x3d, 0x60, 0x86, 0x85, 0x24, 0x6f, 0xe3 +.byte 0x11, 0xb3, 0x77, 0x3e, 0x20, 0x96, 0x35, 0x21, 0x6b, 0xb3, 0x08, 0xd9, 0x70, 0x2e, 0x64, 0xf7 +.byte 0x84, 0x92, 0x53, 0xd6, 0x0e, 0xb0, 0x90, 0x8a, 0x8a, 0xe3, 0x87, 0x8d, 0x06, 0xd3, 0xbd, 0x90 +.byte 0x0e, 0xe2, 0x99, 0xa1, 0x1b, 0x86, 0x0e, 0xda, 0x9a, 0x0a, 0xbb, 0x0b, 0x61, 0x50, 0x06, 0x52 +.byte 0xf1, 0x9e, 0x7f, 0x76, 0xec, 0xcb, 0x0f, 0xd0, 0x1e, 0x0d, 0xcf, 0x99, 0x30, 0x3d, 0x1c, 0xc4 +.byte 0x45, 0x10, 0x58, 0xac, 0xd6, 0xd3, 0xe8, 0xd7, 0xe5, 0xea, 0xc5, 0x01, 0x07, 0x77, 0xd6, 0x51 +.byte 0xe6, 0x03, 0x7f, 0x8a, 0x48, 0xa5, 0x4d, 0x68, 0x75, 0xb9, 0xe9, 0xbc, 0x9e, 0x4e, 0x19, 0x71 +.byte 0xf5, 0x32, 0x4b, 0x9c, 0x6d, 0x60, 0x19, 0x0b, 0xfb, 0xcc, 0x9d, 0x75, 0xdc, 0xbf, 0x26, 0xcd +.byte 0x8f, 0x93, 0x78, 0x39, 0x79, 0x73, 0x5e, 0x25, 0x0e, 0xca, 0x5c, 0xeb, 0x77, 0x12, 0x07, 0xcb +.byte 0x64, 0x41, 0x47, 0x72, 0x93, 0xab, 0x50, 0xc3, 0xeb, 0x09, 0x76, 0x64, 0x34, 0xd2, 0x39, 0xb7 +.byte 0x76, 0x11, 0x09, 0x0d, 0x76, 0x45, 0xc4, 0xa9, 0xae, 0x3d, 0x6a, 0xaf, 0xb5, 0x7d, 0x65, 0x2f +.byte 0x94, 0x58, 0x10, 0xec, 0x5c, 0x7c, 0xaf, 0x7e, 0xe2, 0xb6, 0x18, 0xd9, 0xd0, 0x9b, 0x4e, 0x5a +.byte 0x49, 0xdf, 0xa9, 0x66, 0x0b, 0xcc, 0x3c, 0xc6, 0x78, 0x7c, 0xa7, 0x9c, 0x1d, 0xe3, 0xce, 0x8e +.byte 0x53, 0xbe, 0x05, 0xde, 0x60, 0x0f, 0x6b, 0xe5, 0x1a, 0xdb, 0x3f, 0xe3, 0xe1, 0x21, 0xc9, 0x29 +.byte 0xc1, 0xf1, 0xeb, 0x07, 0x9c, 0x52, 0x1b, 0x01, 0x44, 0x51, 0x3c, 0x7b, 0x25, 0xd7, 0xc4, 0xe5 +.byte 0x52, 0x54, 0x5d, 0x25, 0x07, 0xca, 0x16, 0x20, 0xb8, 0xad, 0xe4, 0x41, 0xee, 0x7a, 0x08, 0xfe +.byte 0x99, 0x6f, 0x83, 0xa6, 0x91, 0x02, 0xb0, 0x6c, 0x36, 0x55, 0x6a, 0xe7, 0x7d, 0xf5, 0x96, 0xe6 +.byte 0xca, 0x81, 0xd6, 0x97, 0xf1, 0x94, 0x83, 0xe9, 0xed, 0xb0, 0xb1, 0x6b, 0x12, 0x69, 0x1e, 0xac +.byte 0xfb, 0x5d, 0xa9, 0xc5, 0x98, 0xe9, 0xb4, 0x5b, 0x58, 0x7a, 0xbe, 0x3d, 0xa2, 0x44, 0x3a, 0x63 +.byte 0x59, 0xd4, 0x0b, 0x25, 0xde, 0x1b, 0x4f, 0xbd, 0xe5, 0x01, 0x9e, 0xcd, 0xd2, 0x29, 0xd5, 0x9f +.byte 0x17, 0x19, 0x0a, 0x6f, 0xbf, 0x0c, 0x90, 0xd3, 0x09, 0x5f, 0xd9, 0xe3, 0x8a, 0x35, 0xcc, 0x79 +.byte 0x5a, 0x4d, 0x19, 0x37, 0x92, 0xb7, 0xc4, 0xc1, 0xad, 0xaf, 0xf4, 0x79, 0x24, 0x9a, 0xb2, 0x01 +.byte 0x0b, 0xb1, 0xaf, 0x5c, 0x96, 0xf3, 0x80, 0x32, 0xfb, 0x5c, 0x3d, 0x98, 0xf1, 0xa0, 0x3f, 0x4a +.byte 0xde, 0xbe, 0xaf, 0x94, 0x2e, 0xd9, 0x55, 0x9a, 0x17, 0x6e, 0x60, 0x9d, 0x63, 0x6c, 0xb8, 0x63 +.byte 0xc9, 0xae, 0x81, 0x5c, 0x18, 0x35, 0xe0, 0x90, 0xbb, 0xbe, 0x3c, 0x4f, 0x37, 0x22, 0xb9, 0x7e +.byte 0xeb, 0xcf, 0x9e, 0x77, 0x21, 0xa6, 0x3d, 0x38, 0x81, 0xfb, 0x48, 0xda, 0x31, 0x3d, 0x2b, 0xe3 +.byte 0x89, 0xf5, 0xd0, 0xb5, 0xbd, 0x7e, 0xe0, 0x50, 0xc4, 0x12, 0x89, 0xb3, 0x23, 0x9a, 0x10, 0x31 +.byte 0x85, 0xdb, 0xae, 0x6f, 0xef, 0x38, 0x33, 0x18, 0x76, 0x11, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0xb1, 0x01, 0x26, 0x30, 0x81, 0xae, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x74, 0x68 +.byte 0x61, 0x77, 0x74, 0x65, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x44, 0x69, 0x76, 0x69 +.byte 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x38, 0x30, 0x36, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x2f, 0x28 +.byte 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x38, 0x20, 0x74, 0x68, 0x61, 0x77, 0x74, 0x65, 0x2c, 0x20 +.byte 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x24 +.byte 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x74, 0x68, 0x61, 0x77, 0x74, 0x65, 0x20 +.byte 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20 +.byte 0x2d, 0x20, 0x47, 0x33, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xb2, 0xbf, 0x27, 0x2c, 0xfb, 0xdb, 0xd8, 0x5b, 0xdd, 0x78, 0x7b +.byte 0x1b, 0x9e, 0x77, 0x66, 0x81, 0xcb, 0x3e, 0xbc, 0x7c, 0xae, 0xf3, 0xa6, 0x27, 0x9a, 0x34, 0xa3 +.byte 0x68, 0x31, 0x71, 0x38, 0x33, 0x62, 0xe4, 0xf3, 0x71, 0x66, 0x79, 0xb1, 0xa9, 0x65, 0xa3, 0xa5 +.byte 0x8b, 0xd5, 0x8f, 0x60, 0x2d, 0x3f, 0x42, 0xcc, 0xaa, 0x6b, 0x32, 0xc0, 0x23, 0xcb, 0x2c, 0x41 +.byte 0xdd, 0xe4, 0xdf, 0xfc, 0x61, 0x9c, 0xe2, 0x73, 0xb2, 0x22, 0x95, 0x11, 0x43, 0x18, 0x5f, 0xc4 +.byte 0xb6, 0x1f, 0x57, 0x6c, 0x0a, 0x05, 0x58, 0x22, 0xc8, 0x36, 0x4c, 0x3a, 0x7c, 0xa5, 0xd1, 0xcf +.byte 0x86, 0xaf, 0x88, 0xa7, 0x44, 0x02, 0x13, 0x74, 0x71, 0x73, 0x0a, 0x42, 0x59, 0x02, 0xf8, 0x1b +.byte 0x14, 0x6b, 0x42, 0xdf, 0x6f, 0x5f, 0xba, 0x6b, 0x82, 0xa2, 0x9d, 0x5b, 0xe7, 0x4a, 0xbd, 0x1e +.byte 0x01, 0x72, 0xdb, 0x4b, 0x74, 0xe8, 0x3b, 0x7f, 0x7f, 0x7d, 0x1f, 0x04, 0xb4, 0x26, 0x9b, 0xe0 +.byte 0xb4, 0x5a, 0xac, 0x47, 0x3d, 0x55, 0xb8, 0xd7, 0xb0, 0x26, 0x52, 0x28, 0x01, 0x31, 0x40, 0x66 +.byte 0xd8, 0xd9, 0x24, 0xbd, 0xf6, 0x2a, 0xd8, 0xec, 0x21, 0x49, 0x5c, 0x9b, 0xf6, 0x7a, 0xe9, 0x7f +.byte 0x55, 0x35, 0x7e, 0x96, 0x6b, 0x8d, 0x93, 0x93, 0x27, 0xcb, 0x92, 0xbb, 0xea, 0xac, 0x40, 0xc0 +.byte 0x9f, 0xc2, 0xf8, 0x80, 0xcf, 0x5d, 0xf4, 0x5a, 0xdc, 0xce, 0x74, 0x86, 0xa6, 0x3e, 0x6c, 0x0b +.byte 0x53, 0xca, 0xbd, 0x92, 0xce, 0x19, 0x06, 0x72, 0xe6, 0x0c, 0x5c, 0x38, 0x69, 0xc7, 0x04, 0xd6 +.byte 0xbc, 0x6c, 0xce, 0x5b, 0xf6, 0xf7, 0x68, 0x9c, 0xdc, 0x25, 0x15, 0x48, 0x88, 0xa1, 0xe9, 0xa9 +.byte 0xf8, 0x98, 0x9c, 0xe0, 0xf3, 0xd5, 0x31, 0x28, 0x61, 0x11, 0x6c, 0x67, 0x96, 0x8d, 0x39, 0x99 +.byte 0xcb, 0xc2, 0x45, 0x24, 0x39, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xb3, 0x01, 0x26, 0x30, 0x81 +.byte 0xb0, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16 +.byte 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x30, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74 +.byte 0x2f, 0x43, 0x50, 0x53, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x6f, 0x72 +.byte 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63 +.byte 0x65, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x16, 0x28, 0x63, 0x29, 0x20 +.byte 0x32, 0x30, 0x30, 0x36, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x24, 0x45, 0x6e, 0x74 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74 +.byte 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xb6, 0x95, 0xb6, 0x43, 0x42, 0xfa, 0xc6, 0x6d, 0x2a, 0x6f, 0x48, 0xdf, 0x94, 0x4c +.byte 0x39, 0x57, 0x05, 0xee, 0xc3, 0x79, 0x11, 0x41, 0x68, 0x36, 0xed, 0xec, 0xfe, 0x9a, 0x01, 0x8f +.byte 0xa1, 0x38, 0x28, 0xfc, 0xf7, 0x10, 0x46, 0x66, 0x2e, 0x4d, 0x1e, 0x1a, 0xb1, 0x1a, 0x4e, 0xc6 +.byte 0xd1, 0xc0, 0x95, 0x88, 0xb0, 0xc9, 0xff, 0x31, 0x8b, 0x33, 0x03, 0xdb, 0xb7, 0x83, 0x7b, 0x3e +.byte 0x20, 0x84, 0x5e, 0xed, 0xb2, 0x56, 0x28, 0xa7, 0xf8, 0xe0, 0xb9, 0x40, 0x71, 0x37, 0xc5, 0xcb +.byte 0x47, 0x0e, 0x97, 0x2a, 0x68, 0xc0, 0x22, 0x95, 0x62, 0x15, 0xdb, 0x47, 0xd9, 0xf5, 0xd0, 0x2b +.byte 0xff, 0x82, 0x4b, 0xc9, 0xad, 0x3e, 0xde, 0x4c, 0xdb, 0x90, 0x80, 0x50, 0x3f, 0x09, 0x8a, 0x84 +.byte 0x00, 0xec, 0x30, 0x0a, 0x3d, 0x18, 0xcd, 0xfb, 0xfd, 0x2a, 0x59, 0x9a, 0x23, 0x95, 0x17, 0x2c +.byte 0x45, 0x9e, 0x1f, 0x6e, 0x43, 0x79, 0x6d, 0x0c, 0x5c, 0x98, 0xfe, 0x48, 0xa7, 0xc5, 0x23, 0x47 +.byte 0x5c, 0x5e, 0xfd, 0x6e, 0xe7, 0x1e, 0xb4, 0xf6, 0x68, 0x45, 0xd1, 0x86, 0x83, 0x5b, 0xa2, 0x8a +.byte 0x8d, 0xb1, 0xe3, 0x29, 0x80, 0xfe, 0x25, 0x71, 0x88, 0xad, 0xbe, 0xbc, 0x8f, 0xac, 0x52, 0x96 +.byte 0x4b, 0xaa, 0x51, 0x8d, 0xe4, 0x13, 0x31, 0x19, 0xe8, 0x4e, 0x4d, 0x9f, 0xdb, 0xac, 0xb3, 0x6a +.byte 0xd5, 0xbc, 0x39, 0x54, 0x71, 0xca, 0x7a, 0x7a, 0x7f, 0x90, 0xdd, 0x7d, 0x1d, 0x80, 0xd9, 0x81 +.byte 0xbb, 0x59, 0x26, 0xc2, 0x11, 0xfe, 0xe6, 0x93, 0xe2, 0xf7, 0x80, 0xe4, 0x65, 0xfb, 0x34, 0x37 +.byte 0x0e, 0x29, 0x80, 0x70, 0x4d, 0xaf, 0x38, 0x86, 0x2e, 0x9e, 0x7f, 0x57, 0xaf, 0x9e, 0x17, 0xae +.byte 0xeb, 0x1c, 0xcb, 0x28, 0x21, 0x5f, 0xb6, 0x1c, 0xd8, 0xe7, 0xa2, 0x04, 0x22, 0xf9, 0xd3, 0xda +.byte 0xd8, 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xb5, 0x02, 0x26, 0x30, 0x81, 0xb2, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x0c, 0x06, 0x41, 0x6e, 0x6b, 0x61, 0x72, 0x61, 0x31, 0x40, 0x30, 0x3e +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x37, 0x45, 0x2d, 0x54, 0x75, 0xc4, 0x9f, 0x72, 0x61, 0x20 +.byte 0x45, 0x42, 0x47, 0x20, 0x42, 0x69, 0x6c, 0x69, 0xc5, 0x9f, 0x69, 0x6d, 0x20, 0x54, 0x65, 0x6b +.byte 0x6e, 0x6f, 0x6c, 0x6f, 0x6a, 0x69, 0x6c, 0x65, 0x72, 0x69, 0x20, 0x76, 0x65, 0x20, 0x48, 0x69 +.byte 0x7a, 0x6d, 0x65, 0x74, 0x6c, 0x65, 0x72, 0x69, 0x20, 0x41, 0x2e, 0xc5, 0x9e, 0x2e, 0x31, 0x26 +.byte 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x1d, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61 +.byte 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d +.byte 0x65, 0x72, 0x6b, 0x65, 0x7a, 0x69, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x1f, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0xe2, 0xf5, 0x3f, 0x93, 0x05, 0x51, 0x1e, 0x85, 0x62, 0x54, 0x5e, 0x7a, 0x0b, 0xf5, 0x18 +.byte 0x07, 0x83, 0xae, 0x7e, 0xaf, 0x7c, 0xf7, 0xd4, 0x8a, 0x6b, 0xa5, 0x63, 0x43, 0x39, 0xb9, 0x4b +.byte 0xf7, 0xc3, 0xc6, 0x64, 0x89, 0x3d, 0x94, 0x2e, 0x54, 0x80, 0x52, 0x39, 0x39, 0x07, 0x4b, 0x4b +.byte 0xdd, 0x85, 0x07, 0x76, 0x87, 0xcc, 0xbf, 0x2f, 0x95, 0x4c, 0xcc, 0x7d, 0xa7, 0x3d, 0xbc, 0x47 +.byte 0x0f, 0x98, 0x70, 0xf8, 0x8c, 0x85, 0x1e, 0x74, 0x8e, 0x92, 0x6d, 0x1b, 0x40, 0xd1, 0x99, 0x0d +.byte 0xbb, 0x75, 0x6e, 0xc8, 0xa9, 0x6b, 0x9a, 0xc0, 0x84, 0x31, 0xaf, 0xca, 0x43, 0xcb, 0xeb, 0x2b +.byte 0x34, 0xe8, 0x8f, 0x97, 0x6b, 0x01, 0x9b, 0xd5, 0x0e, 0x4a, 0x08, 0xaa, 0x5b, 0x92, 0x74, 0x85 +.byte 0x43, 0xd3, 0x80, 0xae, 0xa1, 0x88, 0x5b, 0xae, 0xb3, 0xea, 0x5e, 0xcb, 0x16, 0x9a, 0x77, 0x44 +.byte 0xc8, 0xa1, 0xf6, 0x54, 0x68, 0xce, 0xde, 0x8f, 0x97, 0x2b, 0xba, 0x5b, 0x40, 0x02, 0x0c, 0x64 +.byte 0x17, 0xc0, 0xb5, 0x93, 0xcd, 0xe1, 0xf1, 0x13, 0x66, 0xce, 0x0c, 0x79, 0xef, 0xd1, 0x91, 0x28 +.byte 0xab, 0x5f, 0xa0, 0x12, 0x52, 0x30, 0x73, 0x19, 0x8e, 0x8f, 0xe1, 0x8c, 0x07, 0xa2, 0xc3, 0xbb +.byte 0x4a, 0xf0, 0xea, 0x1f, 0x15, 0xa8, 0xee, 0x25, 0xcc, 0xa4, 0x46, 0xf8, 0x1b, 0x22, 0xef, 0xb3 +.byte 0x0e, 0x43, 0xba, 0x2c, 0x24, 0xb8, 0xc5, 0x2c, 0x5c, 0xd4, 0x1c, 0xf8, 0x5d, 0x64, 0xbd, 0xc3 +.byte 0x93, 0x5e, 0x28, 0xa7, 0x3f, 0x27, 0xf1, 0x8e, 0x1e, 0xd3, 0x2a, 0x50, 0x05, 0xa3, 0x55, 0xd9 +.byte 0xcb, 0xe7, 0x39, 0x53, 0xc0, 0x98, 0x9e, 0x8c, 0x54, 0x62, 0x8b, 0x26, 0xb0, 0xf7, 0x7d, 0x8d +.byte 0x7c, 0xe4, 0xc6, 0x9e, 0x66, 0x42, 0x55, 0x82, 0x47, 0xe7, 0xb2, 0x58, 0x8d, 0x66, 0xf7, 0x07 +.byte 0x7c, 0x2e, 0x36, 0xe6, 0x50, 0x1c, 0x3f, 0xdb, 0x43, 0x24, 0xc5, 0xbf, 0x86, 0x47, 0x79, 0xb3 +.byte 0x79, 0x1c, 0xf7, 0x5a, 0xf4, 0x13, 0xec, 0x6c, 0xf8, 0x3f, 0xe2, 0x59, 0x1f, 0x95, 0xee, 0x42 +.byte 0x3e, 0xb9, 0xad, 0xa8, 0x32, 0x85, 0x49, 0x97, 0x46, 0xfe, 0x4b, 0x31, 0x8f, 0x5a, 0xcb, 0xad +.byte 0x74, 0x47, 0x1f, 0xe9, 0x91, 0xb7, 0xdf, 0x28, 0x04, 0x22, 0xa0, 0xd4, 0x0f, 0x5d, 0xe2, 0x79 +.byte 0x4f, 0xea, 0x6c, 0x85, 0x86, 0xbd, 0xa8, 0xa6, 0xce, 0xe4, 0xfa, 0xc3, 0xe1, 0xb3, 0xae, 0xde +.byte 0x3c, 0x51, 0xee, 0xcb, 0x13, 0x7c, 0x01, 0x7f, 0x84, 0x0e, 0x5d, 0x51, 0x94, 0x9e, 0x13, 0x0c +.byte 0xb6, 0x2e, 0xa5, 0x4c, 0xf9, 0x39, 0x70, 0x36, 0x6f, 0x96, 0xca, 0x2e, 0x0c, 0x44, 0x55, 0xc5 +.byte 0xca, 0xfa, 0x5d, 0x02, 0xa3, 0xdf, 0xd6, 0x64, 0x8c, 0x5a, 0xb3, 0x01, 0x0a, 0xa9, 0xb5, 0x0a +.byte 0x47, 0x17, 0xff, 0xef, 0x91, 0x40, 0x2a, 0x8e, 0xa1, 0x46, 0x3a, 0x31, 0x98, 0xe5, 0x11, 0xfc +.byte 0xcc, 0xbb, 0x49, 0x56, 0x8a, 0xfc, 0xb9, 0xd0, 0x61, 0x9a, 0x6f, 0x65, 0x6c, 0xe6, 0xc3, 0xcb +.byte 0x3e, 0x75, 0x49, 0xfe, 0x8f, 0xa7, 0xe2, 0x89, 0xc5, 0x67, 0xd7, 0x9d, 0x46, 0x13, 0x4e, 0x31 +.byte 0x76, 0x3b, 0x24, 0xb3, 0x9e, 0x11, 0x65, 0x86, 0xab, 0x7f, 0xef, 0x1d, 0xd4, 0xf8, 0xbc, 0xe7 +.byte 0xac, 0x5a, 0x5c, 0xb7, 0x5a, 0x47, 0x5c, 0x55, 0xce, 0x55, 0xb4, 0x22, 0x71, 0x5b, 0x5b, 0x0b +.byte 0xf0, 0xcf, 0xdc, 0xa0, 0x61, 0x64, 0xea, 0xa9, 0xd7, 0x68, 0x0a, 0x63, 0xa7, 0xe0, 0x0d, 0x3f +.byte 0xa0, 0xaf, 0xd3, 0xaa, 0xd2, 0x7e, 0xef, 0x51, 0xa0, 0xe6, 0x51, 0x2b, 0x55, 0x92, 0x15, 0x17 +.byte 0x53, 0xcb, 0xb7, 0x66, 0x0e, 0x66, 0x4c, 0xf8, 0xf9, 0x75, 0x4c, 0x90, 0xe7, 0x12, 0x70, 0xc7 +.byte 0x45, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xb7, 0x01, 0x26, 0x30, 0x81, 0xb4, 0x31, 0x14, 0x30 +.byte 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e +.byte 0x6e, 0x65, 0x74, 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x14, 0x37, 0x77, 0x77 +.byte 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50 +.byte 0x53, 0x5f, 0x32, 0x30, 0x34, 0x38, 0x20, 0x69, 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x20, 0x62 +.byte 0x79, 0x20, 0x72, 0x65, 0x66, 0x2e, 0x20, 0x28, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x20, 0x6c +.byte 0x69, 0x61, 0x62, 0x2e, 0x29, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1c +.byte 0x28, 0x63, 0x29, 0x20, 0x31, 0x39, 0x39, 0x39, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x2e, 0x6e, 0x65, 0x74, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x33, 0x30, 0x31 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e +.byte 0x65, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x28, 0x32, 0x30, 0x34, 0x38 +.byte 0x29, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xad, 0x4d, 0x4b, 0xa9, 0x12, 0x86, 0xb2, 0xea, 0xa3, 0x20, 0x07, 0x15, 0x16, 0x64 +.byte 0x2a, 0x2b, 0x4b, 0xd1, 0xbf, 0x0b, 0x4a, 0x4d, 0x8e, 0xed, 0x80, 0x76, 0xa5, 0x67, 0xb7, 0x78 +.byte 0x40, 0xc0, 0x73, 0x42, 0xc8, 0x68, 0xc0, 0xdb, 0x53, 0x2b, 0xdd, 0x5e, 0xb8, 0x76, 0x98, 0x35 +.byte 0x93, 0x8b, 0x1a, 0x9d, 0x7c, 0x13, 0x3a, 0x0e, 0x1f, 0x5b, 0xb7, 0x1e, 0xcf, 0xe5, 0x24, 0x14 +.byte 0x1e, 0xb1, 0x81, 0xa9, 0x8d, 0x7d, 0xb8, 0xcc, 0x6b, 0x4b, 0x03, 0xf1, 0x02, 0x0c, 0xdc, 0xab +.byte 0xa5, 0x40, 0x24, 0x00, 0x7f, 0x74, 0x94, 0xa1, 0x9d, 0x08, 0x29, 0xb3, 0x88, 0x0b, 0xf5, 0x87 +.byte 0x77, 0x9d, 0x55, 0xcd, 0xe4, 0xc3, 0x7e, 0xd7, 0x6a, 0x64, 0xab, 0x85, 0x14, 0x86, 0x95, 0x5b +.byte 0x97, 0x32, 0x50, 0x6f, 0x3d, 0xc8, 0xba, 0x66, 0x0c, 0xe3, 0xfc, 0xbd, 0xb8, 0x49, 0xc1, 0x76 +.byte 0x89, 0x49, 0x19, 0xfd, 0xc0, 0xa8, 0xbd, 0x89, 0xa3, 0x67, 0x2f, 0xc6, 0x9f, 0xbc, 0x71, 0x19 +.byte 0x60, 0xb8, 0x2d, 0xe9, 0x2c, 0xc9, 0x90, 0x76, 0x66, 0x7b, 0x94, 0xe2, 0xaf, 0x78, 0xd6, 0x65 +.byte 0x53, 0x5d, 0x3c, 0xd6, 0x9c, 0xb2, 0xcf, 0x29, 0x03, 0xf9, 0x2f, 0xa4, 0x50, 0xb2, 0xd4, 0x48 +.byte 0xce, 0x05, 0x32, 0x55, 0x8a, 0xfd, 0xb2, 0x64, 0x4c, 0x0e, 0xe4, 0x98, 0x07, 0x75, 0xdb, 0x7f +.byte 0xdf, 0xb9, 0x08, 0x55, 0x60, 0x85, 0x30, 0x29, 0xf9, 0x7b, 0x48, 0xa4, 0x69, 0x86, 0xe3, 0x35 +.byte 0x3f, 0x1e, 0x86, 0x5d, 0x7a, 0x7a, 0x15, 0xbd, 0xef, 0x00, 0x8e, 0x15, 0x22, 0x54, 0x17, 0x00 +.byte 0x90, 0x26, 0x93, 0xbc, 0x0e, 0x49, 0x68, 0x91, 0xbf, 0xf8, 0x47, 0xd3, 0x9d, 0x95, 0x42, 0xc1 +.byte 0x0e, 0x4d, 0xdf, 0x6f, 0x26, 0xcf, 0xc3, 0x18, 0x21, 0x62, 0x66, 0x43, 0x70, 0xd6, 0xd5, 0xc0 +.byte 0x07, 0xe1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xc0, 0x01, 0x26, 0x30, 0x81, 0xbd, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0e, 0x56, 0x65, 0x72, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x2c, 0x20 +.byte 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x16, 0x56 +.byte 0x65, 0x72, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4e, 0x65 +.byte 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x31 +.byte 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x38, 0x20, 0x56, 0x65, 0x72, 0x69, 0x53, 0x69, 0x67 +.byte 0x6e, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x61, 0x75 +.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c +.byte 0x79, 0x31, 0x38, 0x30, 0x36, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2f, 0x56, 0x65, 0x72, 0x69 +.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x55, 0x6e, 0x69, 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc7, 0x61, 0x37, 0x5e +.byte 0xb1, 0x01, 0x34, 0xdb, 0x62, 0xd7, 0x15, 0x9b, 0xff, 0x58, 0x5a, 0x8c, 0x23, 0x23, 0xd6, 0x60 +.byte 0x8e, 0x91, 0xd7, 0x90, 0x98, 0x83, 0x7a, 0xe6, 0x58, 0x19, 0x38, 0x8c, 0xc5, 0xf6, 0xe5, 0x64 +.byte 0x85, 0xb4, 0xa2, 0x71, 0xfb, 0xed, 0xbd, 0xb9, 0xda, 0xcd, 0x4d, 0x00, 0xb4, 0xc8, 0x2d, 0x73 +.byte 0xa5, 0xc7, 0x69, 0x71, 0x95, 0x1f, 0x39, 0x3c, 0xb2, 0x44, 0x07, 0x9c, 0xe8, 0x0e, 0xfa, 0x4d +.byte 0x4a, 0xc4, 0x21, 0xdf, 0x29, 0x61, 0x8f, 0x32, 0x22, 0x61, 0x82, 0xc5, 0x87, 0x1f, 0x6e, 0x8c +.byte 0x7c, 0x5f, 0x16, 0x20, 0x51, 0x44, 0xd1, 0x70, 0x4f, 0x57, 0xea, 0xe3, 0x1c, 0xe3, 0xcc, 0x79 +.byte 0xee, 0x58, 0xd8, 0x0e, 0xc2, 0xb3, 0x45, 0x93, 0xc0, 0x2c, 0xe7, 0x9a, 0x17, 0x2b, 0x7b, 0x00 +.byte 0x37, 0x7a, 0x41, 0x33, 0x78, 0xe1, 0x33, 0xe2, 0xf3, 0x10, 0x1a, 0x7f, 0x87, 0x2c, 0xbe, 0xf6 +.byte 0xf5, 0xf7, 0x42, 0xe2, 0xe5, 0xbf, 0x87, 0x62, 0x89, 0x5f, 0x00, 0x4b, 0xdf, 0xc5, 0xdd, 0xe4 +.byte 0x75, 0x44, 0x32, 0x41, 0x3a, 0x1e, 0x71, 0x6e, 0x69, 0xcb, 0x0b, 0x75, 0x46, 0x08, 0xd1, 0xca +.byte 0xd2, 0x2b, 0x95, 0xd0, 0xcf, 0xfb, 0xb9, 0x40, 0x6b, 0x64, 0x8c, 0x57, 0x4d, 0xfc, 0x13, 0x11 +.byte 0x79, 0x84, 0xed, 0x5e, 0x54, 0xf6, 0x34, 0x9f, 0x08, 0x01, 0xf3, 0x10, 0x25, 0x06, 0x17, 0x4a +.byte 0xda, 0xf1, 0x1d, 0x7a, 0x66, 0x6b, 0x98, 0x60, 0x66, 0xa4, 0xd9, 0xef, 0xd2, 0x2e, 0x82, 0xf1 +.byte 0xf0, 0xef, 0x09, 0xea, 0x44, 0xc9, 0x15, 0x6a, 0xe2, 0x03, 0x6e, 0x33, 0xd3, 0xac, 0x9f, 0x55 +.byte 0x00, 0xc7, 0xf6, 0x08, 0x6a, 0x94, 0xb9, 0x5f, 0xdc, 0xe0, 0x33, 0xf1, 0x84, 0x60, 0xf9, 0x5b +.byte 0x27, 0x11, 0xb4, 0xfc, 0x16, 0xf2, 0xbb, 0x56, 0x6a, 0x80, 0x25, 0x8d, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0xc1, 0x01, 0x26, 0x30, 0x81, 0xbe, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d +.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30 +.byte 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e +.byte 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61 +.byte 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x39, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e +.byte 0x6c, 0x79, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x45, 0x6e, 0x74 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74 +.byte 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xba, 0x84, 0xb6, 0x72, 0xdb, 0x9e, 0x0c, 0x6b, 0xe2 +.byte 0x99, 0xe9, 0x30, 0x01, 0xa7, 0x76, 0xea, 0x32, 0xb8, 0x95, 0x41, 0x1a, 0xc9, 0xda, 0x61, 0x4e +.byte 0x58, 0x72, 0xcf, 0xfe, 0xf6, 0x82, 0x79, 0xbf, 0x73, 0x61, 0x06, 0x0a, 0xa5, 0x27, 0xd8, 0xb3 +.byte 0x5f, 0xd3, 0x45, 0x4e, 0x1c, 0x72, 0xd6, 0x4e, 0x32, 0xf2, 0x72, 0x8a, 0x0f, 0xf7, 0x83, 0x19 +.byte 0xd0, 0x6a, 0x80, 0x80, 0x00, 0x45, 0x1e, 0xb0, 0xc7, 0xe7, 0x9a, 0xbf, 0x12, 0x57, 0x27, 0x1c +.byte 0xa3, 0x68, 0x2f, 0x0a, 0x87, 0xbd, 0x6a, 0x6b, 0x0e, 0x5e, 0x65, 0xf3, 0x1c, 0x77, 0xd5, 0xd4 +.byte 0x85, 0x8d, 0x70, 0x21, 0xb4, 0xb3, 0x32, 0xe7, 0x8b, 0xa2, 0xd5, 0x86, 0x39, 0x02, 0xb1, 0xb8 +.byte 0xd2, 0x47, 0xce, 0xe4, 0xc9, 0x49, 0xc4, 0x3b, 0xa7, 0xde, 0xfb, 0x54, 0x7d, 0x57, 0xbe, 0xf0 +.byte 0xe8, 0x6e, 0xc2, 0x79, 0xb2, 0x3a, 0x0b, 0x55, 0xe2, 0x50, 0x98, 0x16, 0x32, 0x13, 0x5c, 0x2f +.byte 0x78, 0x56, 0xc1, 0xc2, 0x94, 0xb3, 0xf2, 0x5a, 0xe4, 0x27, 0x9a, 0x9f, 0x24, 0xd7, 0xc6, 0xec +.byte 0xd0, 0x9b, 0x25, 0x82, 0xe3, 0xcc, 0xc2, 0xc4, 0x45, 0xc5, 0x8c, 0x97, 0x7a, 0x06, 0x6b, 0x2a +.byte 0x11, 0x9f, 0xa9, 0x0a, 0x6e, 0x48, 0x3b, 0x6f, 0xdb, 0xd4, 0x11, 0x19, 0x42, 0xf7, 0x8f, 0x07 +.byte 0xbf, 0xf5, 0x53, 0x5f, 0x9c, 0x3e, 0xf4, 0x17, 0x2c, 0xe6, 0x69, 0xac, 0x4e, 0x32, 0x4c, 0x62 +.byte 0x77, 0xea, 0xb7, 0xe8, 0xe5, 0xbb, 0x34, 0xbc, 0x19, 0x8b, 0xae, 0x9c, 0x51, 0xe7, 0xb7, 0x7e +.byte 0xb5, 0x53, 0xb1, 0x33, 0x22, 0xe5, 0x6d, 0xcf, 0x70, 0x3c, 0x1a, 0xfa, 0xe2, 0x9b, 0x67, 0xb6 +.byte 0x83, 0xf4, 0x8d, 0xa5, 0xaf, 0x62, 0x4c, 0x4d, 0xe0, 0x58, 0xac, 0x64, 0x34, 0x12, 0x03, 0xf8 +.byte 0xb6, 0x8d, 0x94, 0x63, 0x24, 0xa4, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xc2, 0x00, 0x78 +.byte 0x30, 0x81, 0xbf, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72 +.byte 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29 +.byte 0x20, 0x32, 0x30, 0x31, 0x32, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49 +.byte 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x33, 0x30 +.byte 0x31, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x45 +.byte 0x43, 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x84, 0x13, 0xc9, 0xd0, 0xba, 0x6d +.byte 0x41, 0x7b, 0xe2, 0x6c, 0xd0, 0xeb, 0x55, 0x5f, 0x66, 0x02, 0x1a, 0x24, 0xf4, 0x5b, 0x89, 0x69 +.byte 0x47, 0xe3, 0xb8, 0xc2, 0x7d, 0xf1, 0xf2, 0x02, 0xc5, 0x9f, 0xa0, 0xf6, 0x5b, 0xd5, 0x8b, 0x06 +.byte 0x19, 0x86, 0x4f, 0x53, 0x10, 0x6d, 0x07, 0x24, 0x27, 0xa1, 0xa0, 0xf8, 0xd5, 0x47, 0x19, 0x61 +.byte 0x4c, 0x7d, 0xca, 0x93, 0x27, 0xea, 0x74, 0x0c, 0xef, 0x6f, 0x96, 0x09, 0xfe, 0x63, 0xec, 0x70 +.byte 0x5d, 0x36, 0xad, 0x67, 0x77, 0xae, 0xc9, 0x9d, 0x7c, 0x55, 0x44, 0x3a, 0xa2, 0x63, 0x51, 0x1f +.byte 0xf5, 0xe3, 0x62, 0xd4, 0xa9, 0x47, 0x07, 0x3e, 0xcc, 0x20, 0x00, 0xcd, 0x01, 0x26, 0x30, 0x81 +.byte 0xca, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17 +.byte 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0e, 0x56, 0x65, 0x72, 0x69, 0x53, 0x69, 0x67 +.byte 0x6e, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x16, 0x56, 0x65, 0x72, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x31, 0x28, 0x63, 0x29, 0x20, 0x31, 0x39, 0x39, 0x39, 0x20, 0x56, 0x65, 0x72, 0x69 +.byte 0x53, 0x69, 0x67, 0x6e, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x46, 0x6f, 0x72 +.byte 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20 +.byte 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x45, 0x30, 0x43, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x3c, 0x56 +.byte 0x65, 0x72, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20 +.byte 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x33, 0x30, 0x82, 0x01, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcb, 0xba, 0x9c, 0x52 +.byte 0xfc, 0x78, 0x1f, 0x1a, 0x1e, 0x6f, 0x1b, 0x37, 0x73, 0xbd, 0xf8, 0xc9, 0x6b, 0x94, 0x12, 0x30 +.byte 0x4f, 0xf0, 0x36, 0x47, 0xf5, 0xd0, 0x91, 0x0a, 0xf5, 0x17, 0xc8, 0xa5, 0x61, 0xc1, 0x16, 0x40 +.byte 0x4d, 0xfb, 0x8a, 0x61, 0x90, 0xe5, 0x76, 0x20, 0xc1, 0x11, 0x06, 0x7d, 0xab, 0x2c, 0x6e, 0xa6 +.byte 0xf5, 0x11, 0x41, 0x8e, 0xfa, 0x2d, 0xad, 0x2a, 0x61, 0x59, 0xa4, 0x67, 0x26, 0x4c, 0xd0, 0xe8 +.byte 0xbc, 0x52, 0x5b, 0x70, 0x20, 0x04, 0x58, 0xd1, 0x7a, 0xc9, 0xa4, 0x69, 0xbc, 0x83, 0x17, 0x64 +.byte 0xad, 0x05, 0x8b, 0xbc, 0xd0, 0x58, 0xce, 0x8d, 0x8c, 0xf5, 0xeb, 0xf0, 0x42, 0x49, 0x0b, 0x9d +.byte 0x97, 0x27, 0x67, 0x32, 0x6e, 0xe1, 0xae, 0x93, 0x15, 0x1c, 0x70, 0xbc, 0x20, 0x4d, 0x2f, 0x18 +.byte 0xde, 0x92, 0x88, 0xe8, 0x6c, 0x85, 0x57, 0x11, 0x1a, 0xe9, 0x7e, 0xe3, 0x26, 0x11, 0x54, 0xa2 +.byte 0x45, 0x96, 0x55, 0x83, 0xca, 0x30, 0x89, 0xe8, 0xdc, 0xd8, 0xa3, 0xed, 0x2a, 0x80, 0x3f, 0x7f +.byte 0x79, 0x65, 0x57, 0x3e, 0x15, 0x20, 0x66, 0x08, 0x2f, 0x95, 0x93, 0xbf, 0xaa, 0x47, 0x2f, 0xa8 +.byte 0x46, 0x97, 0xf0, 0x12, 0xe2, 0xfe, 0xc2, 0x0a, 0x2b, 0x51, 0xe6, 0x76, 0xe6, 0xb7, 0x46, 0xb7 +.byte 0xe2, 0x0d, 0xa6, 0xcc, 0xa8, 0xc3, 0x4c, 0x59, 0x55, 0x89, 0xe6, 0xe8, 0x53, 0x5c, 0x1c, 0xea +.byte 0x9d, 0xf0, 0x62, 0x16, 0x0b, 0xa7, 0xc9, 0x5f, 0x0c, 0xf0, 0xde, 0xc2, 0x76, 0xce, 0xaf, 0xf7 +.byte 0x6a, 0xf2, 0xfa, 0x41, 0xa6, 0xa2, 0x33, 0x14, 0xc9, 0xe5, 0x7a, 0x63, 0xd3, 0x9e, 0x62, 0x37 +.byte 0xd5, 0x85, 0x65, 0x9e, 0x0e, 0xe6, 0x53, 0x24, 0x74, 0x1b, 0x5e, 0x1d, 0x12, 0x53, 0x5b, 0xc7 +.byte 0x2c, 0xe7, 0x83, 0x49, 0x3b, 0x15, 0xae, 0x8a, 0x68, 0xb9, 0x57, 0x97, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0xcd, 0x01, 0x26, 0x30, 0x81, 0xca, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0e +.byte 0x56, 0x65, 0x72, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x1f +.byte 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x16, 0x56, 0x65, 0x72, 0x69, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31 +.byte 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x31, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30 +.byte 0x30, 0x36, 0x20, 0x56, 0x65, 0x72, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x20, 0x2d, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a +.byte 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x45, 0x30, 0x43, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x3c, 0x56, 0x65, 0x72, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x43 +.byte 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x50, 0x72 +.byte 0x69, 0x6d, 0x61, 0x72, 0x79, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20 +.byte 0x47, 0x35, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xaf, 0x24, 0x08, 0x08, 0x29, 0x7a, 0x35, 0x9e, 0x60, 0x0c, 0xaa, 0xe7, 0x4b +.byte 0x3b, 0x4e, 0xdc, 0x7c, 0xbc, 0x3c, 0x45, 0x1c, 0xbb, 0x2b, 0xe0, 0xfe, 0x29, 0x02, 0xf9, 0x57 +.byte 0x08, 0xa3, 0x64, 0x85, 0x15, 0x27, 0xf5, 0xf1, 0xad, 0xc8, 0x31, 0x89, 0x5d, 0x22, 0xe8, 0x2a +.byte 0xaa, 0xa6, 0x42, 0xb3, 0x8f, 0xf8, 0xb9, 0x55, 0xb7, 0xb1, 0xb7, 0x4b, 0xb3, 0xfe, 0x8f, 0x7e +.byte 0x07, 0x57, 0xec, 0xef, 0x43, 0xdb, 0x66, 0x62, 0x15, 0x61, 0xcf, 0x60, 0x0d, 0xa4, 0xd8, 0xde +.byte 0xf8, 0xe0, 0xc3, 0x62, 0x08, 0x3d, 0x54, 0x13, 0xeb, 0x49, 0xca, 0x59, 0x54, 0x85, 0x26, 0xe5 +.byte 0x2b, 0x8f, 0x1b, 0x9f, 0xeb, 0xf5, 0xa1, 0x91, 0xc2, 0x33, 0x49, 0xd8, 0x43, 0x63, 0x6a, 0x52 +.byte 0x4b, 0xd2, 0x8f, 0xe8, 0x70, 0x51, 0x4d, 0xd1, 0x89, 0x69, 0x7b, 0xc7, 0x70, 0xf6, 0xb3, 0xdc +.byte 0x12, 0x74, 0xdb, 0x7b, 0x5d, 0x4b, 0x56, 0xd3, 0x96, 0xbf, 0x15, 0x77, 0xa1, 0xb0, 0xf4, 0xa2 +.byte 0x25, 0xf2, 0xaf, 0x1c, 0x92, 0x67, 0x18, 0xe5, 0xf4, 0x06, 0x04, 0xef, 0x90, 0xb9, 0xe4, 0x00 +.byte 0xe4, 0xdd, 0x3a, 0xb5, 0x19, 0xff, 0x02, 0xba, 0xf4, 0x3c, 0xee, 0xe0, 0x8b, 0xeb, 0x37, 0x8b +.byte 0xec, 0xf4, 0xd7, 0xac, 0xf2, 0xf6, 0xf0, 0x3d, 0xaf, 0xdd, 0x75, 0x91, 0x33, 0x19, 0x1d, 0x1c +.byte 0x40, 0xcb, 0x74, 0x24, 0x19, 0x21, 0x93, 0xd9, 0x14, 0xfe, 0xac, 0x2a, 0x52, 0xc7, 0x8f, 0xd5 +.byte 0x04, 0x49, 0xe4, 0x8d, 0x63, 0x47, 0x88, 0x3c, 0x69, 0x83, 0xcb, 0xfe, 0x47, 0xbd, 0x2b, 0x7e +.byte 0x4f, 0xc5, 0x95, 0xae, 0x0e, 0x9d, 0xd4, 0xd1, 0x43, 0xc0, 0x67, 0x73, 0xe3, 0x14, 0x08, 0x7e +.byte 0xe5, 0x3f, 0x9f, 0x73, 0xb8, 0x33, 0x0a, 0xcf, 0x5d, 0x3f, 0x34, 0x87, 0x96, 0x8a, 0xee, 0x53 +.byte 0xe8, 0x25, 0x15, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xcd, 0x00, 0x78, 0x30, 0x81, 0xca, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0e, 0x56, 0x65, 0x72, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x2c +.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x16 +.byte 0x56, 0x65, 0x72, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4e +.byte 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x31, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x37, 0x20, 0x56, 0x65, 0x72, 0x69, 0x53, 0x69 +.byte 0x67, 0x6e, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x61 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e +.byte 0x6c, 0x79, 0x31, 0x45, 0x30, 0x43, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x3c, 0x56, 0x65, 0x72 +.byte 0x69, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x50, 0x75 +.byte 0x62, 0x6c, 0x69, 0x63, 0x20, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x34, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 +.byte 0x04, 0xa7, 0x56, 0x7a, 0x7c, 0x52, 0xda, 0x64, 0x9b, 0x0e, 0x2d, 0x5c, 0xd8, 0x5e, 0xac, 0x92 +.byte 0x3d, 0xfe, 0x01, 0xe6, 0x19, 0x4a, 0x3d, 0x14, 0x03, 0x4b, 0xfa, 0x60, 0x27, 0x20, 0xd9, 0x83 +.byte 0x89, 0x69, 0xfa, 0x54, 0xc6, 0x9a, 0x18, 0x5e, 0x55, 0x2a, 0x64, 0xde, 0x06, 0xf6, 0x8d, 0x4a +.byte 0x3b, 0xad, 0x10, 0x3c, 0x65, 0x3d, 0x90, 0x88, 0x04, 0x89, 0xe0, 0x30, 0x61, 0xb3, 0xae, 0x5d +.byte 0x01, 0xa7, 0x7b, 0xde, 0x7c, 0xb2, 0xbe, 0xca, 0x65, 0x61, 0x00, 0x86, 0xae, 0xda, 0x8f, 0x7b +.byte 0xd0, 0x89, 0xad, 0x4d, 0x1d, 0x59, 0x9a, 0x41, 0xb1, 0xbc, 0x47, 0x80, 0xdc, 0x9e, 0x62, 0xc3 +.byte 0xf9, 0x00, 0xd5, 0x01, 0x26, 0x30, 0x81, 0xd2, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0f +.byte 0x47, 0x65, 0x62, 0x7a, 0x65, 0x20, 0x2d, 0x20, 0x4b, 0x6f, 0x63, 0x61, 0x65, 0x6c, 0x69, 0x31 +.byte 0x42, 0x30, 0x40, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x39, 0x54, 0x75, 0x72, 0x6b, 0x69, 0x79 +.byte 0x65, 0x20, 0x42, 0x69, 0x6c, 0x69, 0x6d, 0x73, 0x65, 0x6c, 0x20, 0x76, 0x65, 0x20, 0x54, 0x65 +.byte 0x6b, 0x6e, 0x6f, 0x6c, 0x6f, 0x6a, 0x69, 0x6b, 0x20, 0x41, 0x72, 0x61, 0x73, 0x74, 0x69, 0x72 +.byte 0x6d, 0x61, 0x20, 0x4b, 0x75, 0x72, 0x75, 0x6d, 0x75, 0x20, 0x2d, 0x20, 0x54, 0x55, 0x42, 0x49 +.byte 0x54, 0x41, 0x4b, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x24, 0x4b, 0x61 +.byte 0x6d, 0x75, 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e +.byte 0x20, 0x4d, 0x65, 0x72, 0x6b, 0x65, 0x7a, 0x69, 0x20, 0x2d, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20 +.byte 0x53, 0x4d, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x54, 0x55, 0x42 +.byte 0x49, 0x54, 0x41, 0x4b, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x20, 0x53, 0x53, 0x4c +.byte 0x20, 0x4b, 0x6f, 0x6b, 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x69 +.byte 0x20, 0x2d, 0x20, 0x53, 0x75, 0x72, 0x75, 0x6d, 0x20, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 +.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xaf, 0x75, 0x30, 0x33, 0xaa +.byte 0xbb, 0x6b, 0xd3, 0x99, 0x2c, 0x12, 0x37, 0x84, 0xd9, 0x8d, 0x7b, 0x97, 0x80, 0xd3, 0x6e, 0xe7 +.byte 0xff, 0x9b, 0x50, 0x95, 0x3e, 0x90, 0x95, 0x56, 0x42, 0xd7, 0x19, 0x7c, 0x26, 0x84, 0x8d, 0x92 +.byte 0xfa, 0x01, 0x1d, 0x3a, 0x0f, 0xe2, 0x64, 0x38, 0xb7, 0x8c, 0xbc, 0xe8, 0x88, 0xf9, 0x8b, 0x24 +.byte 0xab, 0x2e, 0xa3, 0xf5, 0x37, 0xe4, 0x40, 0x8e, 0x18, 0x25, 0x79, 0x83, 0x75, 0x1f, 0x3b, 0xff +.byte 0x6c, 0xa8, 0xc5, 0xc6, 0x56, 0xf8, 0xb4, 0xed, 0x8a, 0x44, 0xa3, 0xab, 0x6c, 0x4c, 0xfc, 0x1d +.byte 0xd0, 0xdc, 0xef, 0x68, 0xbd, 0xcf, 0xe4, 0xaa, 0xce, 0xf0, 0x55, 0xf7, 0xa2, 0x34, 0xd4, 0x83 +.byte 0x6b, 0x37, 0x7c, 0x1c, 0xc2, 0xfe, 0xb5, 0x03, 0xec, 0x57, 0xce, 0xbc, 0xb4, 0xb5, 0xc5, 0xed +.byte 0x00, 0x0f, 0x53, 0x37, 0x2a, 0x4d, 0xf4, 0x4f, 0x0c, 0x83, 0xfb, 0x86, 0xcf, 0xcb, 0xfe, 0x8c +.byte 0x4e, 0xbd, 0x87, 0xf9, 0xa7, 0x8b, 0x21, 0x57, 0x9c, 0x7a, 0xdf, 0x03, 0x67, 0x89, 0x2c, 0x9d +.byte 0x97, 0x61, 0xa7, 0x10, 0xb8, 0x55, 0x90, 0x7f, 0x0e, 0x2d, 0x27, 0x38, 0x74, 0xdf, 0xe7, 0xfd +.byte 0xda, 0x4e, 0x12, 0xe3, 0x4d, 0x15, 0x22, 0x02, 0xc8, 0xe0, 0xe0, 0xfc, 0x0f, 0xad, 0x8a, 0xd7 +.byte 0xc9, 0x54, 0x50, 0xcc, 0x3b, 0x0f, 0xca, 0x16, 0x80, 0x84, 0xd0, 0x51, 0x56, 0xc3, 0x8e, 0x56 +.byte 0x7f, 0x89, 0x22, 0x33, 0x2f, 0xe6, 0x85, 0x0a, 0xbd, 0xa5, 0xa8, 0x1b, 0x36, 0xde, 0xd3, 0xdc +.byte 0x2c, 0x6d, 0x3b, 0xc7, 0x13, 0xbd, 0x59, 0x23, 0x2c, 0xe6, 0xe5, 0xa4, 0xf7, 0xd8, 0x0b, 0xed +.byte 0xea, 0x90, 0x40, 0x44, 0xa8, 0x95, 0xbb, 0x93, 0xd5, 0xd0, 0x80, 0x34, 0xb6, 0x46, 0x78, 0x0e +.byte 0x1f, 0x00, 0x93, 0x46, 0xe1, 0xee, 0xe9, 0xf9, 0xec, 0x4f, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0xf6, 0x01, 0x26, 0x30, 0x81, 0xf3, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x45, 0x53, 0x31, 0x3b, 0x30, 0x39, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x32, 0x41 +.byte 0x67, 0x65, 0x6e, 0x63, 0x69, 0x61, 0x20, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x61, 0x6e, 0x61, 0x20 +.byte 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x20 +.byte 0x28, 0x4e, 0x49, 0x46, 0x20, 0x51, 0x2d, 0x30, 0x38, 0x30, 0x31, 0x31, 0x37, 0x36, 0x2d, 0x49 +.byte 0x29, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x72, 0x76 +.byte 0x65, 0x69, 0x73, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x73, 0x20, 0x64, 0x65, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x31, 0x35, 0x30, 0x33, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x2c, 0x56, 0x65, 0x67, 0x65, 0x75, 0x20, 0x68, 0x74, 0x74, 0x70 +.byte 0x73, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x63, 0x61, 0x74, 0x63, 0x65, 0x72, 0x74, 0x2e +.byte 0x6e, 0x65, 0x74, 0x2f, 0x76, 0x65, 0x72, 0x61, 0x72, 0x72, 0x65, 0x6c, 0x20, 0x28, 0x63, 0x29 +.byte 0x30, 0x33, 0x31, 0x35, 0x30, 0x33, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x2c, 0x4a, 0x65, 0x72 +.byte 0x61, 0x72, 0x71, 0x75, 0x69, 0x61, 0x20, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x61, 0x74, 0x73, 0x20 +.byte 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x20 +.byte 0x43, 0x61, 0x74, 0x61, 0x6c, 0x61, 0x6e, 0x65, 0x73, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x06, 0x45, 0x43, 0x2d, 0x41, 0x43, 0x43, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 +.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb3, 0x22, 0xc7, 0x4f, 0xe2 +.byte 0x97, 0x42, 0x95, 0x88, 0x47, 0x83, 0x40, 0xf6, 0x1d, 0x17, 0xf3, 0x83, 0x73, 0x24, 0x1e, 0x51 +.byte 0xf3, 0x98, 0x8a, 0xc3, 0x92, 0xb8, 0xff, 0x40, 0x90, 0x05, 0x70, 0x87, 0x60, 0xc9, 0x00, 0xa9 +.byte 0xb5, 0x94, 0x65, 0x19, 0x22, 0x15, 0x17, 0xc2, 0x43, 0x6c, 0x66, 0x44, 0x9a, 0x0d, 0x04, 0x3e +.byte 0x39, 0x6f, 0xa5, 0x4b, 0x7a, 0xaa, 0x63, 0xb7, 0x8a, 0x44, 0x9d, 0xd9, 0x63, 0x91, 0x84, 0x66 +.byte 0xe0, 0x28, 0x0f, 0xba, 0x42, 0xe3, 0x6e, 0x8e, 0xf7, 0x14, 0x27, 0x93, 0x69, 0xee, 0x91, 0x0e +.byte 0xa3, 0x5f, 0x0e, 0xb1, 0xeb, 0x66, 0xa2, 0x72, 0x4f, 0x12, 0x13, 0x86, 0x65, 0x7a, 0x3e, 0xdb +.byte 0x4f, 0x07, 0xf4, 0xa7, 0x09, 0x60, 0xda, 0x3a, 0x42, 0x99, 0xc7, 0xb2, 0x7f, 0xb3, 0x16, 0x95 +.byte 0x1c, 0xc7, 0xf9, 0x34, 0xb5, 0x94, 0x85, 0xd5, 0x99, 0x5e, 0xa0, 0x48, 0xa0, 0x7e, 0xe7, 0x17 +.byte 0x65, 0xb8, 0xa2, 0x75, 0xb8, 0x1e, 0xf3, 0xe5, 0x42, 0x7d, 0xaf, 0xed, 0xf3, 0x8a, 0x48, 0x64 +.byte 0x5d, 0x82, 0x14, 0x93, 0xd8, 0xc0, 0xe4, 0xff, 0xb3, 0x50, 0x72, 0xf2, 0x76, 0xf6, 0xb3, 0x5d +.byte 0x42, 0x50, 0x79, 0xd0, 0x94, 0x3e, 0x6b, 0x0c, 0x00, 0xbe, 0xd8, 0x6b, 0x0e, 0x4e, 0x2a, 0xec +.byte 0x3e, 0xd2, 0xcc, 0x82, 0xa2, 0x18, 0x65, 0x33, 0x13, 0x77, 0x9e, 0x9a, 0x5d, 0x1a, 0x13, 0xd8 +.byte 0xc3, 0xdb, 0x3d, 0xc8, 0x97, 0x7a, 0xee, 0x70, 0xed, 0xa7, 0xe6, 0x7c, 0xdb, 0x71, 0xcf, 0x2d +.byte 0x94, 0x62, 0xdf, 0x6d, 0xd6, 0xf5, 0x38, 0xbe, 0x3f, 0xa5, 0x85, 0x0a, 0x19, 0xb8, 0xa8, 0xd8 +.byte 0x09, 0x75, 0x42, 0x70, 0xc4, 0xea, 0xef, 0xcb, 0x0e, 0xc8, 0x34, 0xa8, 0x12, 0x22, 0x98, 0x0c +.byte 0xb8, 0x13, 0x94, 0xb6, 0x4b, 0xec, 0xf0, 0xd0, 0x90, 0xe7, 0x27, 0x02, 0x03, 0x01, 0x00, 0x01 + +.global _binary_x509_crt_bundle_end +_binary_x509_crt_bundle_end: /* for objcopy compatibility */ + + +.global x509_crt_bundle_length +x509_crt_bundle_length: +.word 64208 diff --git a/components/ca/CMakeLists.txt b/components/ca/CMakeLists.txt index 24ad4d4..9715ac7 100644 --- a/components/ca/CMakeLists.txt +++ b/components/ca/CMakeLists.txt @@ -1,4 +1,4 @@ idf_component_register(SRCS "ca.c" "gen_key.c" INCLUDE_DIRS . - REQUIRES console mbedtls files) \ No newline at end of file + REQUIRES console mbedtls files ) \ No newline at end of file diff --git a/components/display/CMakeLists.txt b/components/display/CMakeLists.txt new file mode 100644 index 0000000..26126f6 --- /dev/null +++ b/components/display/CMakeLists.txt @@ -0,0 +1,4 @@ +idf_component_register(SRCS "display.c" + INCLUDE_DIRS . + REQUIRES lvgl_esp32_drivers lvgl lv_examples lvgl_tft lvgl_touch ) +target_compile_definitions(${COMPONENT_LIB} PRIVATE LV_CONF_INCLUDE_SIMPLE=1) diff --git a/components/display/component.mk b/components/display/component.mk new file mode 100644 index 0000000..e0e9f4c --- /dev/null +++ b/components/display/component.mk @@ -0,0 +1,10 @@ +# +# Component Makefile +# +# This Makefile should, at the very least, just include $(SDK_PATH)/Makefile. By default, +# this will take the sources in the src/ directory, compile them and link them into +# lib(subdirectory_name).a in the build directory. This behaviour is entirely configurable, +# please read the SDK documents if you need to do this. +# + +COMPONENT_ADD_INCLUDEDIRS := . diff --git a/components/display/display.c b/components/display/display.c new file mode 100644 index 0000000..0998e4e --- /dev/null +++ b/components/display/display.c @@ -0,0 +1,112 @@ +/* LVGL Example project + * + * Basic project to test LVGL on ESP32 based projects. + * + * This example code is in the Public Domain (or CC0 licensed, at your option.) + * + * Unless required by applicable law or agreed to in writing, this + * software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. + */ +#include +#include +#include +#include + +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_freertos_hooks.h" +#include "freertos/semphr.h" + + +#include "esp_system.h" +#include "driver/gpio.h" + +/* Littlevgl specific */ +#include "lvgl/lvgl.h" +#include "lvgl_driver.h" +//#include "lv_examples/lv_apps/demo/demo.h" +#include "lv_examples/lv_apps/sysmon/sysmon.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void IRAM_ATTR lv_tick_task(void *arg); + + +/********************** + * APPLICATION MAIN + ********************** +void app_main() { + + //If you want to use a task to create the graphic, you NEED to create a Pinned task + //Otherwise there can be problem such as memory corruption and so on + xTaskCreatePinnedToCore(guiTask, "gui", 4096*2, NULL, 0, NULL, 1); +} +**/ +static void IRAM_ATTR lv_tick_task(void *arg) { + (void) arg; + + lv_tick_inc(portTICK_RATE_MS); +} + +//Creates a semaphore to handle concurrent call to lvgl stuff +//If you wish to call *any* lvgl function from other threads/tasks +//you should lock on the very same semaphore! +SemaphoreHandle_t xGuiSemaphore; + +void guiTask() { + xGuiSemaphore = xSemaphoreCreateMutex(); + + lv_init(); + + lvgl_driver_init(); + + static lv_color_t buf1[DISP_BUF_SIZE]; + static lv_color_t buf2[DISP_BUF_SIZE]; + static lv_disp_buf_t disp_buf; + lv_disp_buf_init(&disp_buf, buf1, buf2, DISP_BUF_SIZE); + + lv_disp_drv_t disp_drv; + lv_disp_drv_init(&disp_drv); + disp_drv.flush_cb = disp_driver_flush; + disp_drv.buffer = &disp_buf; + lv_disp_drv_register(&disp_drv); + +#if CONFIG_LVGL_TOUCH_CONTROLLER != TOUCH_CONTROLLER_NONE + lv_indev_drv_t indev_drv; + lv_indev_drv_init(&indev_drv); + indev_drv.read_cb = touch_driver_read; + indev_drv.type = LV_INDEV_TYPE_POINTER; + lv_indev_drv_register(&indev_drv); +#endif + + const esp_timer_create_args_t periodic_timer_args = { + .callback = &lv_tick_task, + /* name is optional, but may help identify the timer when debugging */ + .name = "periodic_gui" + }; + esp_timer_handle_t periodic_timer; + ESP_ERROR_CHECK(esp_timer_create(&periodic_timer_args, &periodic_timer)); + //On ESP32 it's better to create a periodic task instead of esp_register_freertos_tick_hook + ESP_ERROR_CHECK(esp_timer_start_periodic(periodic_timer, 10*1000)); //10ms (expressed as microseconds) + + //demo_create(); + sysmon_create(); + + while (1) { + vTaskDelay(1); + //Try to lock the semaphore, if success, call lvgl stuff + if (xSemaphoreTake(xGuiSemaphore, (TickType_t)10) == pdTRUE) { + lv_task_handler(); + xSemaphoreGive(xGuiSemaphore); + } + } + + //A task should NEVER return + vTaskDelete(NULL); +} diff --git a/components/display/display.h b/components/display/display.h new file mode 100644 index 0000000..45cc95c --- /dev/null +++ b/components/display/display.h @@ -0,0 +1 @@ +void guiTask(); diff --git a/components/lv_port_esp32 b/components/lv_port_esp32 new file mode 160000 index 0000000..e00b3d0 --- /dev/null +++ b/components/lv_port_esp32 @@ -0,0 +1 @@ +Subproject commit e00b3d023c0dfa665bec036394c34a56c7bab963 diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index 3c47210..ca2de2c 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -1,5 +1,9 @@ idf_component_register(SRCS "main.c" INCLUDE_DIRS ".") + #REQUIRES lvgl_esp32_drivers lvgl lv_examples lvgl_tft lvgl_touch) +target_compile_definitions(${COMPONENT_LIB} PRIVATE LV_CONF_INCLUDE_SIMPLE=1) + + diff --git a/main/main.c b/main/main.c index 1ccaa8a..c833e89 100644 --- a/main/main.c +++ b/main/main.c @@ -23,6 +23,27 @@ #include #include +#include +#include +#include +#include + +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_freertos_hooks.h" +#include "freertos/semphr.h" + + +#include "esp_system.h" +#include "driver/gpio.h" + +/* Littlevgl specific */ +#include "lvgl/lvgl.h" +#include "lvgl_driver.h" +#include "lv_examples/lv_apps/demo/demo.h" +#include "display.h" + + static const char* TAG = "konzola"; /* Console command history can be stored to and loaded from a file. @@ -122,6 +143,8 @@ static void initialize_console(void) void app_main(void) { + xTaskCreatePinnedToCore(guiTask, "gui", 4096*2, NULL, 0, NULL, 1); + initialize_nvs(); init_memory(); diff --git a/partitions_example.csv b/partitions_example.csv index d1d8d84..3f1485b 100644 --- a/partitions_example.csv +++ b/partitions_example.csv @@ -2,6 +2,6 @@ # Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap nvs, data, nvs, 0x9000, 0x6000, phy_init, data, phy, 0xf000, 0x1000, -factory, app, factory, 0x10000, 1M, -storage_fat, data, fat, , 1M, +factory, app, factory, 0x10000, 1500K, +storage_fat, data, fat, , 500K, storage_spiffs, data, spiffs, , 1M, diff --git a/sdkconfig b/sdkconfig index ca5f1d3..df0218a 100644 --- a/sdkconfig +++ b/sdkconfig @@ -970,6 +970,47 @@ CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT=30 CONFIG_WPA_MBEDTLS_CRYPTO=y # CONFIG_WPA_DEBUG_PRINT is not set # end of Supplicant + +# +# LittlevGL (LVGL) TFT Display controller +# +# CONFIG_LVGL_PREDEFINED_DISPLAY_NONE is not set +CONFIG_LVGL_PREDEFINED_DISPLAY_WROVER4=y +# CONFIG_LVGL_PREDEFINED_DISPLAY_M5STACK is not set +# CONFIG_LVGL_PREDEFINED_DISPLAY_ERTFT0356 is not set +# CONFIG_LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING is not set +CONFIG_LVGL_TFT_DISPLAY_SPI_HSPI=y +# CONFIG_LVGL_TFT_DISPLAY_SPI_VSPI is not set +CONFIG_LVGL_DISPLAY_WIDTH=320 +CONFIG_LVGL_DISPLAY_HEIGHT=240 +CONFIG_LVGL_ENABLE_BACKLIGHT_CONTROL=y +CONFIG_LVGL_DISP_SPI_MOSI=23 +CONFIG_LVGL_DISP_SPI_CLK=19 +CONFIG_LVGL_DISP_SPI_CS=22 +CONFIG_LVGL_DISP_PIN_DC=21 +CONFIG_LVGL_DISP_PIN_RST=18 +CONFIG_LVGL_DISP_PIN_BCKL=5 +# end of LittlevGL (LVGL) TFT Display controller + +# +# LittlevGL (LVGL) Touch controller +# +CONFIG_LVGL_TOUCH_SPI_MISO=19 +CONFIG_LVGL_TOUCH_SPI_MOSI=23 +CONFIG_LVGL_TOUCH_SPI_CLK=18 +CONFIG_LVGL_TOUCH_SPI_CS=5 +CONFIG_LVGL_TOUCH_PIN_IRQ=25 +CONFIG_LVGL_TOUCH_I2C_SDA=21 +CONFIG_LVGL_TOUCH_I2C_SCL=22 +CONFIG_LVGL_TOUCH_X_MIN=200 +CONFIG_LVGL_TOUCH_Y_MIN=120 +CONFIG_LVGL_TOUCH_X_MAX=1900 +CONFIG_LVGL_TOUCH_Y_MAX=1900 +CONFIG_LVGL_TOUCH_INVERT_X=y +CONFIG_LVGL_TOUCH_INVERT_Y=y +CONFIG_LVGL_FT6X36_SWAPXY=y +CONFIG_LVGL_FT6X36_INVERT_Y=y +# end of LittlevGL (LVGL) Touch controller # end of Component config # diff --git a/sdkconfig.old b/sdkconfig.old index 6cbf584..c0813e2 100644 --- a/sdkconfig.old +++ b/sdkconfig.old @@ -303,7 +303,7 @@ CONFIG_ADC_CAL_LUT_ENABLE=y # CONFIG_ESP_ERR_TO_NAME_LOOKUP=y CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 -CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=5000 +CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=8000 CONFIG_ESP_MAIN_TASK_STACK_SIZE=15000 CONFIG_ESP_IPC_TASK_STACK_SIZE=1024 CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y @@ -970,6 +970,68 @@ CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT=30 CONFIG_WPA_MBEDTLS_CRYPTO=y # CONFIG_WPA_DEBUG_PRINT is not set # end of Supplicant + +# +# LittlevGL (LVGL) TFT Display controller +# +CONFIG_LVGL_PREDEFINED_DISPLAY_NONE=y +# CONFIG_LVGL_PREDEFINED_DISPLAY_WROVER4 is not set +# CONFIG_LVGL_PREDEFINED_DISPLAY_M5STACK is not set +# CONFIG_LVGL_PREDEFINED_DISPLAY_ERTFT0356 is not set +# CONFIG_LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING is not set +CONFIG_LVGL_PREDEFINED_PINS_NONE=y +# CONFIG_LVGL_PREDEFINED_PINS_38V4 is not set +# CONFIG_LVGL_PREDEFINED_PINS_30 is not set +# CONFIG_LVGL_PREDEFINED_PINS_38V1 is not set +CONFIG_LVGL_TFT_DISPLAY_CONTROLLER=0 +CONFIG_LVGL_TFT_DISPLAY_CONTROLLER_ILI9341=y +# CONFIG_LVGL_TFT_DISPLAY_CONTROLLER_ILI9488 is not set +# CONFIG_LVGL_TFT_DISPLAY_CONTROLLER_ST7789 is not set +# CONFIG_LVGL_TFT_DISPLAY_CONTROLLER_HX8357 is not set +CONFIG_LVGL_TFT_DISPLAY_SPI_HSPI=y +# CONFIG_LVGL_TFT_DISPLAY_SPI_VSPI is not set +CONFIG_LVGL_DISPLAY_WIDTH=320 +CONFIG_LVGL_DISPLAY_HEIGHT=240 +# CONFIG_LVGL_INVERT_DISPLAY is not set +# CONFIG_LVGL_ENABLE_BACKLIGHT_CONTROL is not set +# CONFIG_LVGL_BACKLIGHT_ACTIVE_LVL is not set + +# +# Display Pin Assignments +# +CONFIG_LVGL_DISP_SPI_MOSI=13 +CONFIG_LVGL_DISP_SPI_CLK=14 +CONFIG_LVGL_DISP_SPI_CS=15 +CONFIG_LVGL_DISP_PIN_DC=2 +CONFIG_LVGL_DISP_PIN_RST=4 +CONFIG_LVGL_DISP_PIN_BCKL=27 +# end of Display Pin Assignments +# end of LittlevGL (LVGL) TFT Display controller + +# +# LittlevGL (LVGL) Touch controller +# +CONFIG_LVGL_TOUCH_CONTROLLER=0 +CONFIG_LVGL_TOUCH_CONTROLLER_NONE=y +# CONFIG_LVGL_TOUCH_CONTROLLER_XPT2046 is not set +# CONFIG_LVGL_TOUCH_CONTROLLER_FT6X06 is not set +# CONFIG_LVGL_TOUCH_CONTROLLER_STMPE610 is not set +CONFIG_LVGL_TOUCH_SPI_MISO=19 +CONFIG_LVGL_TOUCH_SPI_MOSI=23 +CONFIG_LVGL_TOUCH_SPI_CLK=18 +CONFIG_LVGL_TOUCH_SPI_CS=5 +CONFIG_LVGL_TOUCH_PIN_IRQ=25 +CONFIG_LVGL_TOUCH_I2C_SDA=21 +CONFIG_LVGL_TOUCH_I2C_SCL=22 +CONFIG_LVGL_TOUCH_X_MIN=200 +CONFIG_LVGL_TOUCH_Y_MIN=120 +CONFIG_LVGL_TOUCH_X_MAX=1900 +CONFIG_LVGL_TOUCH_Y_MAX=1900 +CONFIG_LVGL_TOUCH_INVERT_X=y +CONFIG_LVGL_TOUCH_INVERT_Y=y +CONFIG_LVGL_FT6X36_SWAPXY=y +CONFIG_LVGL_FT6X36_INVERT_Y=y +# end of LittlevGL (LVGL) Touch controller # end of Component config # diff --git a/trace/trace_1585062789711.trace b/trace/trace_1585062789711.trace new file mode 100644 index 0000000..e69de29