diff --git a/.vscode/ipch/40f34ea280040acc/WEMOS_D1_MINI.ipch b/.vscode/ipch/40f34ea280040acc/WEMOS_D1_MINI.ipch index d4a3a7e..98818b3 100644 Binary files a/.vscode/ipch/40f34ea280040acc/WEMOS_D1_MINI.ipch and b/.vscode/ipch/40f34ea280040acc/WEMOS_D1_MINI.ipch differ diff --git a/.vscode/settings.json b/.vscode/settings.json index 691a8f6..a695f02 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,11 @@ { - "C_Cpp.errorSquiggles": "Disabled" + "C_Cpp.errorSquiggles": "Disabled", + "background.customImages": "https://api.yimian.xyz/moe", + "todo-tree.tags": [ + "TODO", + "FIXME", + "tag", + "done", + "note" + ], } \ No newline at end of file diff --git a/bin/core/core.a b/bin/core/core.a index a8c1531..38d0ded 100644 Binary files a/bin/core/core.a and b/bin/core/core.a differ diff --git a/bin/libraries/ESP8266HTTPUpdateServer/ESP8266HTTPUpdateServer.a b/bin/libraries/ESP8266HTTPUpdateServer/ESP8266HTTPUpdateServer.a index af772b6..72a2c7c 100644 Binary files a/bin/libraries/ESP8266HTTPUpdateServer/ESP8266HTTPUpdateServer.a and b/bin/libraries/ESP8266HTTPUpdateServer/ESP8266HTTPUpdateServer.a differ diff --git a/bin/libraries/ESP8266WebServer/ESP8266WebServer.a b/bin/libraries/ESP8266WebServer/ESP8266WebServer.a index 347b318..42b6c7c 100644 Binary files a/bin/libraries/ESP8266WebServer/ESP8266WebServer.a and b/bin/libraries/ESP8266WebServer/ESP8266WebServer.a differ diff --git a/bin/libraries/ESP8266WiFi/ESP8266WiFi.a b/bin/libraries/ESP8266WiFi/ESP8266WiFi.a index ba13f9c..a99ed66 100644 Binary files a/bin/libraries/ESP8266WiFi/ESP8266WiFi.a and b/bin/libraries/ESP8266WiFi/ESP8266WiFi.a differ diff --git a/bin/preproc/ctags_target_for_gcc_minus_e.cpp b/bin/preproc/ctags_target_for_gcc_minus_e.cpp index 61e56c1..772268a 100644 --- a/bin/preproc/ctags_target_for_gcc_minus_e.cpp +++ b/bin/preproc/ctags_target_for_gcc_minus_e.cpp @@ -1,11 +1,17 @@ # 1 "e:\\Arduino_project\\wIoT\\client\\wemos_D1_mini\\wemos_D1_mini.ino" # 1 "e:\\Arduino_project\\wIoT\\client\\wemos_D1_mini\\wemos_D1_mini.ino" +/* + * @Author: IoTcat (https://iotcat.me) + * @Date: 2019-05-02 22:17:45 + * @Last Modified by: + * @Last Modified time: 2019-05-03 00:09:38 + */ -# 7 "e:\\Arduino_project\\wIoT\\client\\wemos_D1_mini\\wemos_D1_mini.ino" 2 +# 13 "e:\\Arduino_project\\wIoT\\client\\wemos_D1_mini\\wemos_D1_mini.ino" 2 // Create an instance of the server diff --git a/bin/sketch/wemos_D1_mini.ino.cpp b/bin/sketch/wemos_D1_mini.ino.cpp index 2361625..300aa0c 100644 --- a/bin/sketch/wemos_D1_mini.ino.cpp +++ b/bin/sketch/wemos_D1_mini.ino.cpp @@ -1,6 +1,12 @@ #include #line 1 "e:\\Arduino_project\\wIoT\\client\\wemos_D1_mini\\wemos_D1_mini.ino" #line 1 "e:\\Arduino_project\\wIoT\\client\\wemos_D1_mini\\wemos_D1_mini.ino" +/* + * @Author: IoTcat (https://iotcat.me) + * @Date: 2019-05-02 22:17:45 + * @Last Modified by: + * @Last Modified time: 2019-05-03 00:09:38 + */ #define WIFI_STA_SSID "yimian-iot" #define WIFI_STA_PSK "1234567890." @@ -16,5 +22,3 @@ - - diff --git a/bin/sketch/wemos_D1_mini.ino.cpp.o b/bin/sketch/wemos_D1_mini.ino.cpp.o index ad94c71..18218ca 100644 Binary files a/bin/sketch/wemos_D1_mini.ino.cpp.o and b/bin/sketch/wemos_D1_mini.ino.cpp.o differ diff --git a/bin/sketch/wiot.h b/bin/sketch/wiot.h index 0090fe0..f0ba32d 100644 --- a/bin/sketch/wiot.h +++ b/bin/sketch/wiot.h @@ -1,3 +1,10 @@ +/* + * @Author: IoTcat (https://iotcat.me) + * @Date: 2019-05-02 21:20:48 + * @Last Modified by: + * @Last Modified time: 2019-05-03 00:12:37 + */ + #include #include #include @@ -18,11 +25,12 @@ const char* ssid = WIFI_STA_SSID; const char* password = WIFI_STA_PSK; +const char* wiot_version = "v0.0.1"; enum ModeType{AP, STA}; ModeType Mode; -void(* resetFunc) (void) = 0; +//void(* resetFunc) (void) = 0; /********** Web Server ***********/ ESP8266WebServer httpServer(WEB_PORT); @@ -30,7 +38,6 @@ ESP8266HTTPUpdateServer httpUpdater; - void serial_setup(){ Serial.begin(115200); @@ -45,6 +52,34 @@ void eeprom_setup(){ EEPROM.commit(); } +void eeprom_insertStr(int start, int end, const String& s){ +Serial.println("Write"); + const char *c = s.c_str(); + int i, t; + for(i = 0; c[i] != '\0' && i < end - start - 1; i++){ + + t = *(c+i); + EEPROM.write(start + i, t); + Serial.println(t); + } + EEPROM.write(start + i, 0x00); + EEPROM.commit(); +} + +String eeprom_readStr(int start, int end){ + + Serial.println("Read"); + int t[end-start]; + int i; + for(i = 0; i < end - start - 1; i++){ + + t[i] = EEPROM.read(start + i); + Serial.println(t[i]); + } + t[i] = 0; + + return ""; +} void wifi_setup(){ @@ -72,12 +107,22 @@ void wifi_setup(){ void http_ap_root(){ - String s = httpServer.arg("abc"); - if(s == "reset") resetFunc(); - httpServer.send(200, "text/html", "wIoT Config"+s+""); + httpServer.send(200, "text/html", "wIoT Config

wIoT Client

MAC Address: "+WiFi.macAddress()+"

wIoT Version: "+wiot_version+"

Please Input the SSID of your WIFI:


Please Input the Password of your WIFI:



You Only have ONE chance!! Please be Careful!!

"); } +void http_ap_cmd(){ + + String t_ssid = httpServer.arg("ssid"); + String t_psk = httpServer.arg("passwd"); + + eeprom_insertStr(255, 355, t_ssid); + eeprom_insertStr(355, 455, t_psk); + String s = eeprom_readStr(255,270); + //if(s == "reset") ESP.restart(); + httpServer.send(200, "text/html", "wIoT Config"+t_ssid+"||"+t_psk+"||"+s+""); +} + void http_setup(){ if(Mode == STA){ @@ -90,6 +135,7 @@ void http_setup(){ //MDNS.begin("wiot"); //MDNS.addService("http", "tcp", WEB_PORT); httpServer.on("/", http_ap_root); + httpServer.on("/cmd", http_ap_cmd); } //httpserver begin @@ -101,20 +147,37 @@ void http_setup(){ - +int address = 4000; +int value = 55; void setup() { serial_setup(); wifi_setup(); http_setup(); + + } void loop() { -httpServer.handleClient();/* +httpServer.handleClient(); + + EEPROM.write(address, 1+EEPROM.read(address)); + value = EEPROM.read(address); + EEPROM.commit(); +Serial.print(value,DEC); +Serial.print("\n"); +delay(1000); + + + + + + +/* EEPROM.write(0x01, 0x02); static String res = ""; static String to = ""; diff --git a/bin/wemos_D1_mini.ino.bin b/bin/wemos_D1_mini.ino.bin index 93e5c75..15d52cb 100644 Binary files a/bin/wemos_D1_mini.ino.bin and b/bin/wemos_D1_mini.ino.bin differ diff --git a/bin/wemos_D1_mini.ino.elf b/bin/wemos_D1_mini.ino.elf index 60fa664..a232398 100644 Binary files a/bin/wemos_D1_mini.ino.elf and b/bin/wemos_D1_mini.ino.elf differ diff --git a/bin/wemos_D1_mini.ino.map b/bin/wemos_D1_mini.ino.map index 98909fe..acb0534 100644 --- a/bin/wemos_D1_mini.ino.map +++ b/bin/wemos_D1_mini.ino.map @@ -461,6 +461,7 @@ sntp__tzrule 0x38 e:\Arduino_project\wIoT\bin\core\core.a(sn Discarded input sections + .group 0x00000000 0x10 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .group 0x00000000 0x10 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .group 0x00000000 0x10 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .literal._Z12http_ap_rootv @@ -469,6 +470,12 @@ Discarded input sections 0x00000000 0x0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .literal._Z12eeprom_setupv 0x00000000 0x0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .literal._Z16eeprom_insertStriiRK6String + 0x00000000 0x0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .literal._Z14eeprom_readStrii + 0x00000000 0x0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .literal._Z11http_ap_cmdv + 0x00000000 0x0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .literal._Z10wifi_setupv 0x00000000 0x0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .literal._Z10http_setupv @@ -491,8 +498,8 @@ Discarded input sections 0x00000000 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .rodata.TIM_DIV265 0x00000000 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - .xt.lit 0x00000000 0x50 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - .xt.prop 0x00000000 0x21c e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .xt.lit 0x00000000 0x68 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .xt.prop 0x00000000 0x300 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .literal._ZN11EEPROMClassC2Ej 0x00000000 0x0 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o .literal._ZN11EEPROMClassC2Ev @@ -522,10 +529,6 @@ Discarded input sections 0x00000000 0x20 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o .text._ZN11EEPROMClass5beginEj 0x00000000 0x6f e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - .text._ZN11EEPROMClass5writeEih - 0x00000000 0x22 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - .text._ZN11EEPROMClass6commitEv - 0x00000000 0x5d e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o .text._ZN11EEPROMClass3endEv 0x00000000 0x3a e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o .text._ZN11EEPROMClass10getDataPtrEv @@ -660,6 +663,8 @@ Discarded input sections 0x00000000 0x0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .literal._ZNSt17_Function_handlerIFvP10_esp_eventEZN23ESP8266WiFiGenericClass22onStationModeConnectedESt8functionIFvRK29WiFiEventStationModeConnectedEEEUlS1_E_E9_M_invokeERKSt9_Any_dataS1_ 0x00000000 0x0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .literal._ZNSt14_Function_baseD5Ev + 0x00000000 0x0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .literal._ZNSt19_Sp_counted_deleterIP22WiFiEventHandlerOpaqueNSt12__shared_ptrIS0_LN9__gnu_cxx12_Lock_policyE0EE8_DeleterISaIS0_EEES7_LS4_0EE10_M_disposeEv 0x00000000 0x0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .literal._ZN23ESP8266WiFiGenericClassC2Ev @@ -801,6 +806,8 @@ Discarded input sections 0x00000000 0x94 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .text._ZNSt17_Function_handlerIFvP10_esp_eventEZN23ESP8266WiFiGenericClass22onStationModeConnectedESt8functionIFvRK29WiFiEventStationModeConnectedEEEUlS1_E_E9_M_invokeERKSt9_Any_dataS1_ 0x00000000 0x94 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .text._ZNSt14_Function_baseD2Ev + 0x00000000 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .text._ZNSt19_Sp_counted_deleterIP22WiFiEventHandlerOpaqueNSt12__shared_ptrIS0_LN9__gnu_cxx12_Lock_policyE0EE8_DeleterISaIS0_EEES7_LS4_0EE10_M_disposeEv 0x00000000 0x2a e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .text._ZN23ESP8266WiFiGenericClass7channelEv @@ -929,6 +936,8 @@ Discarded input sections .xt.prop._ZNSt19_Sp_counted_deleterIP22WiFiEventHandlerOpaqueNSt12__shared_ptrIS0_LN9__gnu_cxx12_Lock_policyE0EE8_DeleterISaIS0_EEES7_LS4_0EE10_M_destroyEv 0x00000000 0x24 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .xt.prop 0x00000000 0xb70 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .xt.prop._ZNSt14_Function_baseD2Ev + 0x00000000 0x24 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .xt.prop._ZNSt19_Sp_counted_deleterIP22WiFiEventHandlerOpaqueNSt12__shared_ptrIS0_LN9__gnu_cxx12_Lock_policyE0EE8_DeleterISaIS0_EEES7_LS4_0EE10_M_disposeEv 0x00000000 0x24 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .xt.prop._ZNSt8functionIFvP10_esp_eventEEC2ERKS3_ @@ -2762,8 +2771,6 @@ Discarded input sections 0x00000000 0x2 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) .text._ZN5Print5printERK6String 0x00000000 0x20 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - .text._ZN5Print5printEPKc - 0x00000000 0x17 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) .text._ZN5Print5printERK9Printable 0x00000000 0x19 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) .text._ZN5Print7printlnERK6String @@ -2772,12 +2779,6 @@ Discarded input sections 0x00000000 0x33 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) .text._ZN5Print7printlnERK9Printable 0x00000000 0x31 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - .text._ZN5Print5printEli - 0x00000000 0x67 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - .text._ZN5Print5printEii - 0x00000000 0x17 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - .text._ZN5Print7printlnEii - 0x00000000 0x31 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) .text._ZN5Print7printlnEli 0x00000000 0x31 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) .text._ZN5Print7printlnEhi @@ -7690,7 +7691,7 @@ END GROUP *(.dport.data) 0x3ff00000 _dport0_data_end = ABSOLUTE (.) -.data 0x3ffe8000 0x5e8 +.data 0x3ffe8000 0x5f4 0x3ffe8000 _data_start = ABSOLUTE (.) *(.data) .data 0x3ffe8000 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm_for_bcn_only_mode.o) @@ -7749,33 +7750,40 @@ END GROUP .data 0x3ffe84d8 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_sleep.o) 0x3ffe84d8 chip_version *(.data.*) + .data.value 0x3ffe84dc 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x3ffe84dc value + .data.address 0x3ffe84e0 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x3ffe84e0 address + .data.wiot_version + 0x3ffe84e4 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x3ffe84e4 wiot_version .data.password - 0x3ffe84dc 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0x3ffe84dc password - .data.ssid 0x3ffe84e0 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0x3ffe84e0 ssid + 0x3ffe84e8 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x3ffe84e8 password + .data.ssid 0x3ffe84ec 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x3ffe84ec ssid .data._ZN23ESP8266WiFiGenericClass11_persistentE - 0x3ffe84e4 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - 0x3ffe84e4 ESP8266WiFiGenericClass::_persistent - *fill* 0x3ffe84e5 0x3 + 0x3ffe84f0 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x3ffe84f0 ESP8266WiFiGenericClass::_persistent + *fill* 0x3ffe84f1 0x3 .data.esp8266_gpioToFn - 0x3ffe84e8 0x10 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) - 0x3ffe84e8 esp8266_gpioToFn + 0x3ffe84f4 0x10 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) + 0x3ffe84f4 esp8266_gpioToFn .data.waveform - 0x3ffe84f8 0xdc e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + 0x3ffe8504 0xdc e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) .data.dhcps_lease_time - 0x3ffe85d4 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - 0x3ffe85d4 dhcps_lease_time - .data.offer 0x3ffe85d8 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - *fill* 0x3ffe85d9 0x3 + 0x3ffe85e0 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x3ffe85e0 dhcps_lease_time + .data.offer 0x3ffe85e4 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + *fill* 0x3ffe85e5 0x3 .data.iss$4300 - 0x3ffe85dc 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x3ffe85e8 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) .data.tcp_port - 0x3ffe85e0 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x3ffe85ec 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) .data.udp_port - 0x3ffe85e2 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x3ffe85ee 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) .data.time_zone - 0x3ffe85e4 0x1 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + 0x3ffe85f0 0x1 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) *(.gnu.linkonce.d.*) *(.data1) *(.sdata) @@ -7785,17 +7793,17 @@ END GROUP *(.sdata2.*) *(.gnu.linkonce.s2.*) *(.jcr) - 0x3ffe85e8 . = ALIGN (0x4) - *fill* 0x3ffe85e5 0x3 - 0x3ffe85e8 _Pri_3_HandlerAddress = ABSOLUTE (.) - 0x3ffe85e8 _data_end = ABSOLUTE (.) + 0x3ffe85f4 . = ALIGN (0x4) + *fill* 0x3ffe85f1 0x3 + 0x3ffe85f4 _Pri_3_HandlerAddress = ABSOLUTE (.) + 0x3ffe85f4 _data_end = ABSOLUTE (.) -.noinit 0x3ffe85e8 0x4 +.noinit 0x3ffe85f4 0x4 *(.noinit) - .noinit 0x3ffe85e8 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - 0x3ffe85e8 g_pcont + .noinit 0x3ffe85f4 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x3ffe85f4 g_pcont -.irom0.text 0x40201010 0x401e0 +.irom0.text 0x40201010 0x40540 0x40201010 _irom0_text_start = ABSOLUTE (.) *(.ver_number) .ver_number 0x40201010 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) @@ -8082,6665 +8090,6716 @@ END GROUP *.cpp.o(.literal*, .text*) *fill* 0x402027bb 0x1 .text._Z12http_ap_rootv - 0x402027bc 0x8a e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0xde (size before relaxing) + 0x402027bc 0x6d e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0xad (size before relaxing) 0x402027d8 http_ap_root() - *fill* 0x40202846 0x2 + *fill* 0x40202829 0x3 .text._Z12serial_setupv - 0x40202848 0x33 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x4020282c 0x33 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o 0x3f (size before relaxing) - 0x40202850 serial_setup() - *fill* 0x4020287b 0x1 + 0x40202834 serial_setup() + *fill* 0x4020285f 0x1 + .text._Z16eeprom_insertStriiRK6String + 0x40202860 0x85 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0xa9 (size before relaxing) + 0x40202868 eeprom_insertStr(int, int, String const&) + *fill* 0x402028e5 0x3 + .text._Z14eeprom_readStrii + 0x402028e8 0x81 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0xa5 (size before relaxing) + 0x402028f0 eeprom_readStr(int, int) + *fill* 0x40202969 0x3 + .text._Z11http_ap_cmdv + 0x4020296c 0xd7 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x183 (size before relaxing) + 0x40202980 http_ap_cmd() + *fill* 0x40202a43 0x1 .text._Z10wifi_setupv - 0x4020287c 0x10b e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x40202a44 0x103 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o 0x18b (size before relaxing) - 0x40202898 wifi_setup() - *fill* 0x40202987 0x1 + 0x40202a58 wifi_setup() + *fill* 0x40202b47 0x1 .text._Z10http_setupv - 0x40202988 0x9d e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0xd1 (size before relaxing) - 0x402029a4 http_setup() - *fill* 0x40202a25 0x3 - .text.setup 0x40202a28 0x17 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x40202b48 0xc6 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x122 (size before relaxing) + 0x40202b6c http_setup() + *fill* 0x40202c0e 0x2 + .text.setup 0x40202c10 0x17 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o 0x2b (size before relaxing) - 0x40202a28 setup - *fill* 0x40202a3f 0x1 - .text.loop 0x40202a40 0x15 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0x1d (size before relaxing) - 0x40202a40 loop - *fill* 0x40202a55 0x3 + 0x40202c10 setup + *fill* 0x40202c27 0x1 + .text.loop 0x40202c28 0x72 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0xb6 (size before relaxing) + 0x40202c34 loop + *fill* 0x40202c9a 0x2 .text._Z41__static_initialization_and_destruction_0ii$part$7 - 0x40202a58 0x30 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x40202c9c 0x30 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o 0x50 (size before relaxing) .text.startup._GLOBAL__sub_I_ssid - 0x40202a88 0x1f e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x40202ccc 0x1f e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o 0x33 (size before relaxing) - *fill* 0x40202aa7 0x1 + *fill* 0x40202ceb 0x1 .text.exit._GLOBAL__sub_D_ssid - 0x40202aa8 0xf e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x40202cec 0xf e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o 0x17 (size before relaxing) - *fill* 0x40202ab7 0x1 + *fill* 0x40202cfb 0x1 + .text._ZN11EEPROMClass6commitEv + 0x40202cfc 0x5d e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + 0x40202d04 EEPROMClass::commit() + *fill* 0x40202d59 0x3 .text.startup._GLOBAL__sub_I__ZN11EEPROMClassC2Ej - 0x40202ab8 0x23 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + 0x40202d5c 0x23 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o 0x27 (size before relaxing) - *fill* 0x40202adb 0x1 + *fill* 0x40202d7f 0x1 .text.startup._GLOBAL__sub_I__ZN16ESP8266WiFiClass9printDiagER5Print - 0x40202adc 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + 0x40202d80 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) 0x1d (size before relaxing) - *fill* 0x40202af1 0x3 + *fill* 0x40202d95 0x3 .text._ZN18ESP8266WiFiAPClass12softAPConfigE9IPAddressS0_S0_ - 0x40202af4 0xbd e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) + 0x40202d98 0xbd e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) 0xfd (size before relaxing) - 0x40202af8 ESP8266WiFiAPClass::softAPConfig(IPAddress, IPAddress, IPAddress) - *fill* 0x40202bb1 0x3 + 0x40202d9c ESP8266WiFiAPClass::softAPConfig(IPAddress, IPAddress, IPAddress) + *fill* 0x40202e55 0x3 .text._ZN18ESP8266WiFiAPClass6softAPEPKcS1_iii - 0x40202bb4 0x1cb e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) + 0x40202e58 0x1cb e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) 0x257 (size before relaxing) - 0x40202bc0 ESP8266WiFiAPClass::softAP(char const*, char const*, int, int, int) - *fill* 0x40202d7f 0x1 + 0x40202e64 ESP8266WiFiAPClass::softAP(char const*, char const*, int, int, int) + *fill* 0x40203023 0x1 .text._Z23wifi_dns_found_callbackPKcPK8ip4_addrPv - 0x40202d80 0x27 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x40203024 0x27 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0x32 (size before relaxing) - 0x40202d84 wifi_dns_found_callback(char const*, ip4_addr const*, void*) - *fill* 0x40202da7 0x1 + 0x40203028 wifi_dns_found_callback(char const*, ip4_addr const*, void*) + *fill* 0x4020304b 0x1 .text._ZN23ESP8266WiFiGenericClassC2Ev - 0x40202da8 0x19 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x4020304c 0x19 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0x1d (size before relaxing) - 0x40202dac ESP8266WiFiGenericClass::ESP8266WiFiGenericClass() - 0x40202dac ESP8266WiFiGenericClass::ESP8266WiFiGenericClass() - *fill* 0x40202dc1 0x3 + 0x40203050 ESP8266WiFiGenericClass::ESP8266WiFiGenericClass() + 0x40203050 ESP8266WiFiGenericClass::ESP8266WiFiGenericClass() + *fill* 0x40203065 0x3 .text._ZN23ESP8266WiFiGenericClass4modeE8WiFiMode - 0x40202dc4 0x71 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x40203068 0x71 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0x99 (size before relaxing) - 0x40202dc4 ESP8266WiFiGenericClass::mode(WiFiMode) - *fill* 0x40202e35 0x3 + 0x40203068 ESP8266WiFiGenericClass::mode(WiFiMode) + *fill* 0x402030d9 0x3 .text._ZN23ESP8266WiFiGenericClass9enableSTAEb - 0x40202e38 0x49 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x402030dc 0x49 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0x51 (size before relaxing) - 0x40202e38 ESP8266WiFiGenericClass::enableSTA(bool) - *fill* 0x40202e81 0x3 + 0x402030dc ESP8266WiFiGenericClass::enableSTA(bool) + *fill* 0x40203125 0x3 .text._ZN23ESP8266WiFiGenericClass8enableAPEb - 0x40202e84 0x45 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x40203128 0x45 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0x51 (size before relaxing) - 0x40202e84 ESP8266WiFiGenericClass::enableAP(bool) - *fill* 0x40202ec9 0x3 + 0x40203128 ESP8266WiFiGenericClass::enableAP(bool) + *fill* 0x4020316d 0x3 .text._ZN23ESP8266WiFiGenericClass10hostByNameEPKcR9IPAddressj - 0x40202ecc 0x81 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x40203170 0x81 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0xa5 (size before relaxing) - 0x40202ed0 ESP8266WiFiGenericClass::hostByName(char const*, IPAddress&, unsigned int) - *fill* 0x40202f4d 0x3 + 0x40203174 ESP8266WiFiGenericClass::hostByName(char const*, IPAddress&, unsigned int) + *fill* 0x402031f1 0x3 .text._ZN23ESP8266WiFiGenericClass14_eventCallbackEPv - 0x40202f50 0x8a e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x402031f4 0x8a e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0xaa (size before relaxing) - 0x40202f54 ESP8266WiFiGenericClass::_eventCallback(void*) - *fill* 0x40202fda 0x2 + 0x402031f8 ESP8266WiFiGenericClass::_eventCallback(void*) + *fill* 0x4020327e 0x2 .text._ZNSt10_List_baseISt10shared_ptrI22WiFiEventHandlerOpaqueESaIS2_EE8_M_clearEv - 0x40202fdc 0x32 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x40203280 0x32 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0x3e (size before relaxing) - 0x40202fdc std::_List_base, std::allocator > >::_M_clear() - *fill* 0x4020300e 0x2 + 0x40203280 std::_List_base, std::allocator > >::_M_clear() + *fill* 0x402032b2 0x2 .text.startup._GLOBAL__sub_I__ZN23ESP8266WiFiGenericClass11_persistentE - 0x40203010 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x402032b4 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0xd (size before relaxing) - *fill* 0x40203019 0x3 + *fill* 0x402032bd 0x3 .text.exit._GLOBAL__sub_D__ZN23ESP8266WiFiGenericClass11_persistentE - 0x4020301c 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x402032c0 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0x1d (size before relaxing) - *fill* 0x40203031 0x3 + *fill* 0x402032d5 0x3 .text._ZN19ESP8266WiFiSTAClass10macAddressEv - 0x40203034 0x54 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + 0x402032d8 0x54 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) 0x70 (size before relaxing) - 0x40203038 ESP8266WiFiSTAClass::macAddress() + 0x402032dc ESP8266WiFiSTAClass::macAddress() .text._ZN19ESP8266WiFiSTAClass6statusEv - 0x40203088 0x22 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + 0x4020332c 0x22 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) 0x2a (size before relaxing) - 0x4020308c ESP8266WiFiSTAClass::status() - *fill* 0x402030aa 0x2 + 0x40203330 ESP8266WiFiSTAClass::status() + *fill* 0x4020334e 0x2 .text._ZN19ESP8266WiFiSTAClass5beginEPKcS1_iPKhb - 0x402030ac 0x1c8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + 0x40203350 0x1c8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) 0x258 (size before relaxing) - 0x402030b4 ESP8266WiFiSTAClass::begin(char const*, char const*, int, unsigned char const*, bool) + 0x40203358 ESP8266WiFiSTAClass::begin(char const*, char const*, int, unsigned char const*, bool) .text._ZN19ESP8266WiFiSTAClass5beginEv - 0x40203274 0x49 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + 0x40203518 0x49 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) 0x71 (size before relaxing) - 0x40203274 ESP8266WiFiSTAClass::begin() - *fill* 0x402032bd 0x3 + 0x40203518 ESP8266WiFiSTAClass::begin() + *fill* 0x40203561 0x3 .text._ZN10DataSourceD2Ev - 0x402032c0 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x402032c4 DataSource::~DataSource() - 0x402032c4 DataSource::~DataSource() - *fill* 0x402032cb 0x1 + 0x40203564 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203568 DataSource::~DataSource() + 0x40203568 DataSource::~DataSource() + *fill* 0x4020356f 0x1 .text._ZN16BufferDataSourceD2Ev - 0x402032cc 0x7 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203570 0x7 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0xb (size before relaxing) - 0x402032cc BufferDataSource::~BufferDataSource() - 0x402032cc BufferDataSource::~BufferDataSource() - *fill* 0x402032d3 0x1 + 0x40203570 BufferDataSource::~BufferDataSource() + 0x40203570 BufferDataSource::~BufferDataSource() + *fill* 0x40203577 0x1 .text._ZN10DataSourceD0Ev - 0x402032d4 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203578 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x1f (size before relaxing) - 0x402032d4 DataSource::~DataSource() - *fill* 0x402032eb 0x1 + 0x40203578 DataSource::~DataSource() + *fill* 0x4020358f 0x1 .text._ZN16BufferDataSourceD0Ev - 0x402032ec 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203590 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x1f (size before relaxing) - 0x402032ec BufferDataSource::~BufferDataSource() - *fill* 0x40203303 0x1 + 0x40203590 BufferDataSource::~BufferDataSource() + *fill* 0x402035a7 0x1 .text._ZN10WiFiClient7connectEPKct - 0x40203304 0x47 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x402035a8 0x47 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x5b (size before relaxing) - 0x40203304 WiFiClient::connect(char const*, unsigned short) - *fill* 0x4020334b 0x1 + 0x402035a8 WiFiClient::connect(char const*, unsigned short) + *fill* 0x402035ef 0x1 .text._ZN10WiFiClient9availableEv - 0x4020334c 0x2b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x402035f0 0x2b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x2f (size before relaxing) - 0x4020334c WiFiClient::available() - *fill* 0x40203377 0x1 + 0x402035f0 WiFiClient::available() + *fill* 0x4020361b 0x1 .text._ZN10WiFiClient9peekBytesEPhj - 0x40203378 0xb6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4020361c 0xb6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0xbe (size before relaxing) - 0x40203380 WiFiClient::peekBytes(unsigned char*, unsigned int) - *fill* 0x4020342e 0x2 + 0x40203624 WiFiClient::peekBytes(unsigned char*, unsigned int) + *fill* 0x402036d2 0x2 .text._ZN16BufferDataSource10get_bufferEj - 0x40203430 0x33 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x402036d4 0x33 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x3b (size before relaxing) - 0x4020343c BufferDataSource::get_buffer(unsigned int) - *fill* 0x40203463 0x1 + 0x402036e0 BufferDataSource::get_buffer(unsigned int) + *fill* 0x40203707 0x1 .text._ZN16BufferDataSource14release_bufferEPKhj - 0x40203464 0x33 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203708 0x33 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x3b (size before relaxing) - 0x40203470 BufferDataSource::release_buffer(unsigned char const*, unsigned int) - *fill* 0x40203497 0x1 + 0x40203714 BufferDataSource::release_buffer(unsigned char const*, unsigned int) + *fill* 0x4020373b 0x1 .text._ZN13ClientContext5abortEv$isra$4 - 0x40203498 0x47 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4020373c 0x47 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x6f (size before relaxing) - *fill* 0x402034df 0x1 + *fill* 0x40203783 0x1 .text._ZN13ClientContext5closeEv$isra$5 - 0x402034e0 0x57 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203784 0x57 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x87 (size before relaxing) - *fill* 0x40203537 0x1 + *fill* 0x402037db 0x1 .text._ZN10WiFiClient4stopEj - 0x40203538 0x36 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x402037dc 0x36 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x3a (size before relaxing) - 0x40203538 WiFiClient::stop(unsigned int) - *fill* 0x4020356e 0x2 + 0x402037dc WiFiClient::stop(unsigned int) + *fill* 0x40203812 0x2 .text._ZN13ClientContext7_s_pollEPvP7tcp_pcb - 0x40203570 0x1f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203814 0x1f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x23 (size before relaxing) - 0x40203570 ClientContext::_s_poll(void*, tcp_pcb*) - *fill* 0x4020358f 0x1 + 0x40203814 ClientContext::_s_poll(void*, tcp_pcb*) + *fill* 0x40203833 0x1 .text._ZN13ClientContext7_s_recvEPvP7tcp_pcbP4pbufl - 0x40203590 0x3e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203834 0x3e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x4e (size before relaxing) - 0x40203590 ClientContext::_s_recv(void*, tcp_pcb*, pbuf*, long) - *fill* 0x402035ce 0x2 + 0x40203834 ClientContext::_s_recv(void*, tcp_pcb*, pbuf*, long) + *fill* 0x40203872 0x2 .text._ZN13ClientContext12_s_connectedEPvP7tcp_pcbl - 0x402035d0 0x4f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203874 0x4f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x5b (size before relaxing) - 0x402035e4 ClientContext::_s_connected(void*, tcp_pcb*, long) - *fill* 0x4020361f 0x1 + 0x40203888 ClientContext::_s_connected(void*, tcp_pcb*, long) + *fill* 0x402038c3 0x1 .text._ZN24BufferedStreamDataSourceI13ProgmemStreamE14release_bufferEPKhj - 0x40203620 0x5f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x402038c4 0x5f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x6b (size before relaxing) - 0x40203634 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int) - *fill* 0x4020367f 0x1 + 0x402038d8 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int) + *fill* 0x40203923 0x1 .text._ZN13ClientContext8_s_errorEPvl - 0x40203680 0x3a e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203924 0x3a e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x5e (size before relaxing) - 0x40203680 ClientContext::_s_error(void*, long) - *fill* 0x402036ba 0x2 + 0x40203924 ClientContext::_s_error(void*, long) + *fill* 0x4020395e 0x2 .text._ZN24BufferedStreamDataSourceI13ProgmemStreamE10get_bufferEj - 0x402036bc 0xc8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203960 0xc8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0xec (size before relaxing) - 0x402036d0 BufferedStreamDataSource::get_buffer(unsigned int) + 0x40203974 BufferedStreamDataSource::get_buffer(unsigned int) .text._ZN13ClientContext8_s_ackedEPvP7tcp_pcbt - 0x40203784 0x1f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203a28 0x1f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x23 (size before relaxing) - 0x40203784 ClientContext::_s_acked(void*, tcp_pcb*, unsigned short) - *fill* 0x402037a3 0x1 + 0x40203a28 ClientContext::_s_acked(void*, tcp_pcb*, unsigned short) + *fill* 0x40203a47 0x1 .text._ZN13ClientContext5unrefEv - 0x402037a4 0x52 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203a48 0x52 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x6a (size before relaxing) - 0x402037a4 ClientContext::unref() - *fill* 0x402037f6 0x2 + 0x40203a48 ClientContext::unref() + *fill* 0x40203a9a 0x2 .text._ZN10WiFiClientD2Ev - 0x402037f8 0x4b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203a9c 0x4b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x4f (size before relaxing) - 0x40203800 WiFiClient::~WiFiClient() - 0x40203800 WiFiClient::~WiFiClient() - *fill* 0x40203843 0x1 + 0x40203aa4 WiFiClient::~WiFiClient() + 0x40203aa4 WiFiClient::~WiFiClient() + *fill* 0x40203ae7 0x1 .text._ZN10WiFiClientD0Ev - 0x40203844 0x1d e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203ae8 0x1d e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x29 (size before relaxing) - 0x40203844 WiFiClient::~WiFiClient() - *fill* 0x40203861 0x3 + 0x40203ae8 WiFiClient::~WiFiClient() + *fill* 0x40203b05 0x3 .text._ZN13ClientContext15wait_until_sentEi - 0x40203864 0x7b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203b08 0x7b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x8f (size before relaxing) - 0x40203864 ClientContext::wait_until_sent(int) - *fill* 0x402038df 0x1 + 0x40203b08 ClientContext::wait_until_sent(int) + *fill* 0x40203b83 0x1 .text._ZN10WiFiClient5flushEj - 0x402038e0 0x21 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203b84 0x21 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x25 (size before relaxing) - 0x402038e0 WiFiClient::flush(unsigned int) - *fill* 0x40203901 0x3 + 0x40203b84 WiFiClient::flush(unsigned int) + *fill* 0x40203ba5 0x3 .text._ZN13ClientContext11_write_someEv - 0x40203904 0xb5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203ba8 0xb5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0xc1 (size before relaxing) - 0x40203904 ClientContext::_write_some() - *fill* 0x402039b9 0x3 + 0x40203ba8 ClientContext::_write_some() + *fill* 0x40203c5d 0x3 .text._ZN13ClientContext18_write_from_sourceEP10DataSource - 0x402039bc 0xd6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203c60 0xd6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0xfa (size before relaxing) - 0x402039d0 ClientContext::_write_from_source(DataSource*) - *fill* 0x40203a92 0x2 + 0x40203c74 ClientContext::_write_from_source(DataSource*) + *fill* 0x40203d36 0x2 .text._ZN10WiFiClient5writeEPKhj - 0x40203a94 0x59 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203d38 0x59 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x65 (size before relaxing) - 0x40203a98 WiFiClient::write(unsigned char const*, unsigned int) - *fill* 0x40203aed 0x3 + 0x40203d3c WiFiClient::write(unsigned char const*, unsigned int) + *fill* 0x40203d91 0x3 .text._ZN10WiFiClient7write_PEPKcj - 0x40203af0 0x5b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203d94 0x5b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x6b (size before relaxing) - 0x40203af4 WiFiClient::write_P(char const*, unsigned int) - *fill* 0x40203b4b 0x1 + 0x40203d98 WiFiClient::write_P(char const*, unsigned int) + *fill* 0x40203def 0x1 .text._ZN13ClientContext8_consumeEj - 0x40203b4c 0x61 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203df0 0x61 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x75 (size before relaxing) - 0x40203b4c ClientContext::_consume(unsigned int) - *fill* 0x40203bad 0x3 + 0x40203df0 ClientContext::_consume(unsigned int) + *fill* 0x40203e51 0x3 .text._ZN10WiFiClient4readEv - 0x40203bb0 0x40 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203e54 0x40 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x44 (size before relaxing) - 0x40203bb0 WiFiClient::read() + 0x40203e54 WiFiClient::read() .text._ZN10WiFiClient4readEPhj - 0x40203bf0 0x75 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203e94 0x75 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x7d (size before relaxing) - 0x40203bf0 WiFiClient::read(unsigned char*, unsigned int) - *fill* 0x40203c65 0x3 + 0x40203e94 WiFiClient::read(unsigned char*, unsigned int) + *fill* 0x40203f09 0x3 .text._Z32getDefaultPrivateGlobalSyncValuev - 0x40203c68 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x40203c6c getDefaultPrivateGlobalSyncValue() + 0x40203f0c 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203f10 getDefaultPrivateGlobalSyncValue() .text._ZN10WiFiClient17getDefaultNoDelayEv - 0x40203c74 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x40203c78 WiFiClient::getDefaultNoDelay() + 0x40203f18 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203f1c WiFiClient::getDefaultNoDelay() .text._ZN10WiFiClientC2Ev - 0x40203c80 0x1f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203f24 0x1f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x27 (size before relaxing) - 0x40203c84 WiFiClient::WiFiClient() - 0x40203c84 WiFiClient::WiFiClient() - *fill* 0x40203c9f 0x1 + 0x40203f28 WiFiClient::WiFiClient() + 0x40203f28 WiFiClient::WiFiClient() + *fill* 0x40203f43 0x1 .text._ZN10WiFiClientC2ERKS_ - 0x40203ca0 0x2f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203f44 0x2f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x37 (size before relaxing) - 0x40203ca0 WiFiClient::WiFiClient(WiFiClient const&) - 0x40203ca0 WiFiClient::WiFiClient(WiFiClient const&) - *fill* 0x40203ccf 0x1 + 0x40203f44 WiFiClient::WiFiClient(WiFiClient const&) + 0x40203f44 WiFiClient::WiFiClient(WiFiClient const&) + *fill* 0x40203f73 0x1 .text._ZN10WiFiClientaSERKS_ - 0x40203cd0 0x33 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203f74 0x33 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x3b (size before relaxing) - 0x40203cd0 WiFiClient::operator=(WiFiClient const&) - *fill* 0x40203d03 0x1 + 0x40203f74 WiFiClient::operator=(WiFiClient const&) + *fill* 0x40203fa7 0x1 .text._ZN10WiFiClient7connectE9IPAddresst - 0x40203d04 0x149 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40203fa8 0x149 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x1c1 (size before relaxing) - 0x40203d1c WiFiClient::connect(IPAddress, unsigned short) - *fill* 0x40203e4d 0x3 + 0x40203fc0 WiFiClient::connect(IPAddress, unsigned short) + *fill* 0x402040f1 0x3 .text._ZN10WiFiClientC2EP13ClientContext - 0x40203e50 0x4b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x402040f4 0x4b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x6f (size before relaxing) - 0x40203e50 WiFiClient::WiFiClient(ClientContext*) - 0x40203e50 WiFiClient::WiFiClient(ClientContext*) - *fill* 0x40203e9b 0x1 + 0x402040f4 WiFiClient::WiFiClient(ClientContext*) + 0x402040f4 WiFiClient::WiFiClient(ClientContext*) + *fill* 0x4020413f 0x1 .text._ZN10WiFiClient7stopAllEv - 0x40203e9c 0x2a e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40204140 0x2a e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x2e (size before relaxing) - 0x40203e9c WiFiClient::stopAll() - *fill* 0x40203ec6 0x2 + 0x40204140 WiFiClient::stopAll() + *fill* 0x4020416a 0x2 .text._ZNSt10unique_ptrIA_hSt14default_deleteIS0_EED2Ev - 0x40203ec8 0x21 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4020416c 0x21 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x25 (size before relaxing) - 0x40203ec8 std::unique_ptr >::~unique_ptr() - 0x40203ec8 std::unique_ptr >::~unique_ptr() - *fill* 0x40203ee9 0x3 + 0x4020416c std::unique_ptr >::~unique_ptr() + 0x4020416c std::unique_ptr >::~unique_ptr() + *fill* 0x4020418d 0x3 .text._ZN24BufferedStreamDataSourceI13ProgmemStreamED2Ev - 0x40203eec 0x22 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40204190 0x22 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x32 (size before relaxing) - 0x40203eec BufferedStreamDataSource::~BufferedStreamDataSource() - 0x40203eec BufferedStreamDataSource::~BufferedStreamDataSource() - *fill* 0x40203f0e 0x2 + 0x40204190 BufferedStreamDataSource::~BufferedStreamDataSource() + 0x40204190 BufferedStreamDataSource::~BufferedStreamDataSource() + *fill* 0x402041b2 0x2 .text._ZN24BufferedStreamDataSourceI13ProgmemStreamED0Ev - 0x40203f10 0x1d e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x402041b4 0x1d e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x29 (size before relaxing) - 0x40203f10 BufferedStreamDataSource::~BufferedStreamDataSource() - *fill* 0x40203f2d 0x3 + 0x402041b4 BufferedStreamDataSource::~BufferedStreamDataSource() + *fill* 0x402041d1 0x3 .text._ZN14RequestHandlerD2Ev - 0x40203f30 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - 0x40203f34 RequestHandler::~RequestHandler() - 0x40203f34 RequestHandler::~RequestHandler() - *fill* 0x40203f3b 0x1 + 0x402041d4 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402041d8 RequestHandler::~RequestHandler() + 0x402041d8 RequestHandler::~RequestHandler() + *fill* 0x402041df 0x1 .text._ZN14RequestHandlerD0Ev - 0x40203f3c 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402041e0 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x1f (size before relaxing) - 0x40203f3c RequestHandler::~RequestHandler() - *fill* 0x40203f53 0x1 + 0x402041e0 RequestHandler::~RequestHandler() + *fill* 0x402041f7 0x1 .text._ZN16ESP8266WebServer5beginEv - 0x40203f54 0x23 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402041f8 0x23 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x27 (size before relaxing) - 0x40203f54 ESP8266WebServer::begin() - *fill* 0x40203f77 0x1 + 0x402041f8 ESP8266WebServer::begin() + *fill* 0x4020421b 0x1 .text._ZN16ESP8266WebServer6clientEv - 0x40203f78 0x1d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020421c 0x1d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x21 (size before relaxing) - 0x40203f78 ESP8266WebServer::client() - *fill* 0x40203f95 0x3 + 0x4020421c ESP8266WebServer::client() + *fill* 0x40204239 0x3 .text._ZN22FunctionRequestHandler9canUploadE6String - 0x40203f98 0x44 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020423c 0x44 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x54 (size before relaxing) - 0x40203f98 FunctionRequestHandler::canUpload(String) + 0x4020423c FunctionRequestHandler::canUpload(String) .text._ZN16ESP8266WebServer5beginEt - 0x40203fdc 0x29 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204280 0x29 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x31 (size before relaxing) - 0x40203fdc ESP8266WebServer::begin(unsigned short) - *fill* 0x40204005 0x3 + 0x40204280 ESP8266WebServer::begin(unsigned short) + *fill* 0x402042a9 0x3 .text._ZNKSt14default_deleteI10HTTPUploadEclEPS0_$isra$9 - 0x40204008 0x2a e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402042ac 0x2a e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x46 (size before relaxing) - *fill* 0x40204032 0x2 + *fill* 0x402042d6 0x2 .text._ZN22FunctionRequestHandlerD2Ev - 0x40204034 0x33 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402042d8 0x33 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x4b (size before relaxing) - 0x40204038 FunctionRequestHandler::~FunctionRequestHandler() - 0x40204038 FunctionRequestHandler::~FunctionRequestHandler() - *fill* 0x40204067 0x1 + 0x402042dc FunctionRequestHandler::~FunctionRequestHandler() + 0x402042dc FunctionRequestHandler::~FunctionRequestHandler() + *fill* 0x4020430b 0x1 .text._ZN22FunctionRequestHandlerD0Ev - 0x40204068 0x1d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020430c 0x1d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x29 (size before relaxing) - 0x40204068 FunctionRequestHandler::~FunctionRequestHandler() - *fill* 0x40204085 0x3 + 0x4020430c FunctionRequestHandler::~FunctionRequestHandler() + *fill* 0x40204329 0x3 .text._ZNK6StringneERKS_ - 0x40204088 0x18 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020432c 0x18 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x20 (size before relaxing) - 0x40204088 String::operator!=(String const&) const + 0x4020432c String::operator!=(String const&) const .text._ZN22FunctionRequestHandler9canHandleE10HTTPMethod6String - 0x402040a0 0x29 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204344 0x29 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x31 (size before relaxing) - 0x402040a0 FunctionRequestHandler::canHandle(HTTPMethod, String) - *fill* 0x402040c9 0x3 + 0x40204344 FunctionRequestHandler::canHandle(HTTPMethod, String) + *fill* 0x4020436d 0x3 .text._ZN16ESP8266WebServer19_currentClientWriteEPKcj - 0x402040cc 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204370 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x19 (size before relaxing) - 0x402040cc ESP8266WebServer::_currentClientWrite(char const*, unsigned int) - *fill* 0x402040e1 0x3 + 0x40204370 ESP8266WebServer::_currentClientWrite(char const*, unsigned int) + *fill* 0x40204385 0x3 .text._ZN10MD5Builder3addE6String - 0x402040e4 0x29 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204388 0x29 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x35 (size before relaxing) - 0x402040e4 MD5Builder::add(String) - *fill* 0x4020410d 0x3 + 0x40204388 MD5Builder::add(String) + *fill* 0x402043b1 0x3 .text._ZN16ESP8266WebServerC2Ei - 0x40204110 0xa6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402043b4 0xa6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0xde (size before relaxing) - 0x40204118 ESP8266WebServer::ESP8266WebServer(int) - 0x40204118 ESP8266WebServer::ESP8266WebServer(int) - *fill* 0x402041b6 0x2 + 0x402043bc ESP8266WebServer::ESP8266WebServer(int) + 0x402043bc ESP8266WebServer::ESP8266WebServer(int) + *fill* 0x4020445a 0x2 .text._ZNK16ESP8266WebServer13_extractParamER6StringRKS0_c - 0x402041b8 0x71 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020445c 0x71 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x8d (size before relaxing) - 0x402041b8 ESP8266WebServer::_extractParam(String&, String const&, char) const - *fill* 0x40204229 0x3 + 0x4020445c ESP8266WebServer::_extractParam(String&, String const&, char) const + *fill* 0x402044cd 0x3 .text._ZN16ESP8266WebServer19_getRandomHexStringEv - 0x4020422c 0x49 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402044d0 0x49 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x55 (size before relaxing) - 0x40204234 ESP8266WebServer::_getRandomHexString() - *fill* 0x40204275 0x3 + 0x402044d8 ESP8266WebServer::_getRandomHexString() + *fill* 0x40204519 0x3 .text._ZN16ESP8266WebServer10sendHeaderERK6StringS2_b - 0x40204278 0x79 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020451c 0x79 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0xc1 (size before relaxing) - 0x40204280 ESP8266WebServer::sendHeader(String const&, String const&, bool) - *fill* 0x402042f1 0x3 + 0x40204524 ESP8266WebServer::sendHeader(String const&, String const&, bool) + *fill* 0x40204595 0x3 .text._ZN16ESP8266WebServer11sendContentERK6String - 0x402042f4 0x6a e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204598 0x6a e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x86 (size before relaxing) - 0x402042f8 ESP8266WebServer::sendContent(String const&) - *fill* 0x4020435e 0x2 + 0x4020459c ESP8266WebServer::sendContent(String const&) + *fill* 0x40204602 0x2 .text._ZN16ESP8266WebServer13sendContent_PEPKcj - 0x40204360 0x62 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204604 0x62 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x7e (size before relaxing) - 0x40204360 ESP8266WebServer::sendContent_P(char const*, unsigned int) - *fill* 0x402043c2 0x2 + 0x40204604 ESP8266WebServer::sendContent_P(char const*, unsigned int) + *fill* 0x40204666 0x2 .text._ZN16ESP8266WebServer13sendContent_PEPKc - 0x402043c4 0x2f e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204668 0x2f e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x3b (size before relaxing) - 0x402043c8 ESP8266WebServer::sendContent_P(char const*) - *fill* 0x402043f3 0x1 + 0x4020466c ESP8266WebServer::sendContent_P(char const*) + *fill* 0x40204697 0x1 .text._ZNK16ESP8266WebServer3argE6String - 0x402043f4 0x52 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204698 0x52 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x5a (size before relaxing) - 0x402043f4 ESP8266WebServer::arg(String) const - *fill* 0x40204446 0x2 + 0x40204698 ESP8266WebServer::arg(String) const + *fill* 0x402046ea 0x2 .text._ZNK16ESP8266WebServer6hasArgERK6String - 0x40204448 0x43 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402046ec 0x43 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x47 (size before relaxing) - 0x40204448 ESP8266WebServer::hasArg(String const&) const - *fill* 0x4020448b 0x1 + 0x402046ec ESP8266WebServer::hasArg(String const&) const + *fill* 0x4020472f 0x1 .text._ZNK16ESP8266WebServer6headerE6String - 0x4020448c 0x52 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204730 0x52 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x5a (size before relaxing) - 0x4020448c ESP8266WebServer::header(String) const - *fill* 0x402044de 0x2 + 0x40204730 ESP8266WebServer::header(String) const + *fill* 0x40204782 0x2 .text._ZN16ESP8266WebServer14collectHeadersEPPKcj - 0x402044e0 0xcf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204784 0xcf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x103 (size before relaxing) - 0x402044e8 ESP8266WebServer::collectHeaders(char const**, unsigned int) - *fill* 0x402045af 0x1 + 0x4020478c ESP8266WebServer::collectHeaders(char const**, unsigned int) + *fill* 0x40204853 0x1 .text._ZN16ESP8266WebServer5closeEv - 0x402045b0 0x2b e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204854 0x2b e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x37 (size before relaxing) - 0x402045b0 ESP8266WebServer::close() - *fill* 0x402045db 0x1 + 0x40204854 ESP8266WebServer::close() + *fill* 0x4020487f 0x1 .text._ZNK16ESP8266WebServer9hasHeaderE6String - 0x402045dc 0x62 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204880 0x62 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x66 (size before relaxing) - 0x402045dc ESP8266WebServer::hasHeader(String) const - *fill* 0x4020463e 0x2 + 0x40204880 ESP8266WebServer::hasHeader(String) const + *fill* 0x402048e2 0x2 .text._ZN16ESP8266WebServer12authenticateEPKcS1_ - 0x40204640 0x6f1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402048e4 0x6f1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0xb4d (size before relaxing) - 0x40204688 ESP8266WebServer::authenticate(char const*, char const*) - *fill* 0x40204d31 0x3 + 0x4020492c ESP8266WebServer::authenticate(char const*, char const*) + *fill* 0x40204fd5 0x3 .text._ZN16ESP8266WebServer17_finalizeResponseEv - 0x40204d34 0x18 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204fd8 0x18 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x23 (size before relaxing) - 0x40204d34 ESP8266WebServer::_finalizeResponse() - *fill* 0x40204d4c 0x0 + 0x40204fd8 ESP8266WebServer::_finalizeResponse() + *fill* 0x40204ff0 0x0 .text._ZN16ESP8266WebServer21_responseCodeToStringEi - 0x40204d4c 0x3a0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40204ff0 0x3a0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x3a4 (size before relaxing) - 0x40204df0 ESP8266WebServer::_responseCodeToString(int) + 0x40205094 ESP8266WebServer::_responseCodeToString(int) .text._ZN16ESP8266WebServer14_prepareHeaderER6StringiPKcj - 0x402050ec 0x1c4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40205390 0x1c4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x2fc (size before relaxing) - 0x40205114 ESP8266WebServer::_prepareHeader(String&, int, char const*, unsigned int) + 0x402053b8 ESP8266WebServer::_prepareHeader(String&, int, char const*, unsigned int) .text._ZN16ESP8266WebServer4sendEiPKcRK6String - 0x402052b0 0x67 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40205554 0x67 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x83 (size before relaxing) - 0x402052b0 ESP8266WebServer::send(int, char const*, String const&) - *fill* 0x40205317 0x1 + 0x40205554 ESP8266WebServer::send(int, char const*, String const&) + *fill* 0x402055bb 0x1 .text._ZN16ESP8266WebServer4sendEiRK6StringS2_ - 0x40205318 0x14 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402055bc 0x14 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x18 (size before relaxing) - 0x40205318 ESP8266WebServer::send(int, String const&, String const&) + 0x402055bc ESP8266WebServer::send(int, String const&, String const&) .text._ZN16ESP8266WebServer21requestAuthenticationE14HTTPAuthMethodPKcRK6String - 0x4020532c 0x1b2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402055d0 0x1b2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x2e2 (size before relaxing) - 0x4020534c ESP8266WebServer::requestAuthentication(HTTPAuthMethod, char const*, String const&) - *fill* 0x402054de 0x2 + 0x402055f0 ESP8266WebServer::requestAuthentication(HTTPAuthMethod, char const*, String const&) + *fill* 0x40205782 0x2 .text._ZN16ESP8266WebServer6send_PEiPKcS1_ - 0x402054e0 0x87 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40205784 0x87 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0xbb (size before relaxing) - 0x402054e0 ESP8266WebServer::send_P(int, char const*, char const*) - *fill* 0x40205567 0x1 + 0x40205784 ESP8266WebServer::send_P(int, char const*, char const*) + *fill* 0x4020580b 0x1 .text._ZN16ESP8266WebServer2onERK6String10HTTPMethodSt8functionIFvvEES6_ - 0x40205568 0x70 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020580c 0x70 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0xb4 (size before relaxing) - 0x40205568 ESP8266WebServer::on(String const&, HTTPMethod, std::function, std::function) + 0x4020580c ESP8266WebServer::on(String const&, HTTPMethod, std::function, std::function) .text._ZN16ESP8266WebServer2onERK6String10HTTPMethodSt8functionIFvvEE - 0x402055d8 0x46 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020587c 0x46 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x66 (size before relaxing) - 0x402055d8 ESP8266WebServer::on(String const&, HTTPMethod, std::function) - *fill* 0x4020561e 0x2 + 0x4020587c ESP8266WebServer::on(String const&, HTTPMethod, std::function) + *fill* 0x402058c2 0x2 .text._ZN16ESP8266WebServer2onERK6StringSt8functionIFvvEE - 0x40205620 0x31 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402058c4 0x31 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x45 (size before relaxing) - 0x40205620 ESP8266WebServer::on(String const&, std::function) - *fill* 0x40205651 0x3 + 0x402058c4 ESP8266WebServer::on(String const&, std::function) + *fill* 0x402058f5 0x3 .text._ZNKSt8functionIFvvEEclEv - 0x40205654 0x19 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x402058f8 0x19 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x20 (size before relaxing) - 0x40205654 std::function::operator()() const - *fill* 0x4020566d 0x3 + 0x402058f8 std::function::operator()() const + *fill* 0x40205911 0x3 .text._ZN22FunctionRequestHandler6handleER16ESP8266WebServer10HTTPMethod6String - 0x40205670 0x41 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40205914 0x41 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x55 (size before relaxing) - 0x40205670 FunctionRequestHandler::handle(ESP8266WebServer&, HTTPMethod, String) - *fill* 0x402056b1 0x3 + 0x40205914 FunctionRequestHandler::handle(ESP8266WebServer&, HTTPMethod, String) + *fill* 0x40205955 0x3 .text._ZN22FunctionRequestHandler6uploadER16ESP8266WebServer6StringR10HTTPUpload - 0x402056b4 0x38 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40205958 0x38 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x4c (size before relaxing) - 0x402056b4 FunctionRequestHandler::upload(ESP8266WebServer&, String, HTTPUpload&) + 0x40205958 FunctionRequestHandler::upload(ESP8266WebServer&, String, HTTPUpload&) .text._ZN16ESP8266WebServer14_handleRequestEv - 0x402056ec 0xbc e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40205990 0xbc e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x120 (size before relaxing) - 0x402056f0 ESP8266WebServer::_handleRequest() + 0x40205994 ESP8266WebServer::_handleRequest() .text._ZN16ESP8266WebServer21_currentClientWrite_PEPKcj - 0x402057a8 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40205a4c 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x19 (size before relaxing) - 0x402057a8 ESP8266WebServer::_currentClientWrite_P(char const*, unsigned int) - *fill* 0x402057bd 0x3 + 0x40205a4c ESP8266WebServer::_currentClientWrite_P(char const*, unsigned int) + *fill* 0x40205a61 0x3 .text._ZN16ESP8266WebServerD2Ev - 0x402057c0 0xc1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40205a64 0xc1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x125 (size before relaxing) - 0x402057c4 ESP8266WebServer::~ESP8266WebServer() - 0x402057c4 ESP8266WebServer::~ESP8266WebServer() - *fill* 0x40205881 0x3 + 0x40205a68 ESP8266WebServer::~ESP8266WebServer() + 0x40205a68 ESP8266WebServer::~ESP8266WebServer() + *fill* 0x40205b25 0x3 .text._ZN16ESP8266WebServerD0Ev - 0x40205884 0x1d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40205b28 0x1d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x29 (size before relaxing) - 0x40205884 ESP8266WebServer::~ESP8266WebServer() - *fill* 0x402058a1 0x3 + 0x40205b28 ESP8266WebServer::~ESP8266WebServer() + *fill* 0x40205b45 0x3 .text._ZN16ESP8266WebServer12handleClientEv - 0x402058a4 0x10d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40205b48 0x10d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x191 (size before relaxing) - 0x402058a4 ESP8266WebServer::handleClient() - *fill* 0x402059b1 0x3 + 0x40205b48 ESP8266WebServer::handleClient() + *fill* 0x40205c55 0x3 .text._ZNSt14_Function_base13_Base_managerI14nullArgHandlerE10_M_managerERSt9_Any_dataRKS3_St18_Manager_operation - 0x402059b4 0x38 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40205c58 0x38 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x40 (size before relaxing) - 0x402059b4 std::_Function_base::_Base_manager::_M_manager(std::_Any_data&, std::_Any_data const&, std::_Manager_operation) + 0x40205c58 std::_Function_base::_Base_manager::_M_manager(std::_Any_data&, std::_Any_data const&, std::_Manager_operation) .text._ZNSt14_Function_base13_Base_managerI15storeArgHandlerE10_M_managerERSt9_Any_dataRKS3_St18_Manager_operation - 0x402059ec 0x38 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40205c90 0x38 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x40 (size before relaxing) - 0x402059ec std::_Function_base::_Base_manager::_M_manager(std::_Any_data&, std::_Any_data const&, std::_Manager_operation) + 0x40205c90 std::_Function_base::_Base_manager::_M_manager(std::_Any_data&, std::_Any_data const&, std::_Manager_operation) .text._ZNK6String9substringEj - 0x40205a24 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40205cc8 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x23 (size before relaxing) - 0x40205a24 String::substring(unsigned int) const - *fill* 0x40205a3f 0x1 + 0x40205cc8 String::substring(unsigned int) const + *fill* 0x40205ce3 0x1 .text._ZN16ESP8266WebServer14_collectHeaderEPKcS1_ - 0x40205a40 0x70 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40205ce4 0x70 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x8c (size before relaxing) - 0x40205a40 ESP8266WebServer::_collectHeader(char const*, char const*) + 0x40205ce4 ESP8266WebServer::_collectHeader(char const*, char const*) .text._ZN16ESP8266WebServer15RequestArgumentC2Ev - 0x40205ab0 0x2b e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40205d54 0x2b e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x37 (size before relaxing) - 0x40205ab4 ESP8266WebServer::RequestArgument::RequestArgument() - 0x40205ab4 ESP8266WebServer::RequestArgument::RequestArgument() - *fill* 0x40205adb 0x1 + 0x40205d58 ESP8266WebServer::RequestArgument::RequestArgument() + 0x40205d58 ESP8266WebServer::RequestArgument::RequestArgument() + *fill* 0x40205d7f 0x1 .text._ZN16ESP8266WebServer22_parseArgumentsPrivateERK6StringSt8functionIFvRS0_S4_S2_iiiiEE - 0x40205adc 0xf1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40205d80 0xf1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x115 (size before relaxing) - 0x40205adc ESP8266WebServer::_parseArgumentsPrivate(String const&, std::function) - *fill* 0x40205bcd 0x3 + 0x40205d80 ESP8266WebServer::_parseArgumentsPrivate(String const&, std::function) + *fill* 0x40205e71 0x3 .text._ZN16ESP8266WebServer15_parseArgumentsERK6String - 0x40205bd0 0xe8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40205e74 0xe8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x134 (size before relaxing) - 0x40205be0 ESP8266WebServer::_parseArguments(String const&) + 0x40205e84 ESP8266WebServer::_parseArguments(String const&) .text._ZN16ESP8266WebServer16_uploadWriteByteEh - 0x40205cb8 0x9a e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40205f5c 0x9a e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0xb6 (size before relaxing) - 0x40205cbc ESP8266WebServer::_uploadWriteByte(unsigned char) - *fill* 0x40205d52 0x2 + 0x40205f60 ESP8266WebServer::_uploadWriteByte(unsigned char) + *fill* 0x40205ff6 0x2 .text._ZN16ESP8266WebServer15_uploadReadByteER10WiFiClient - 0x40205d54 0x56 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40205ff8 0x56 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x5a (size before relaxing) - 0x40205d54 ESP8266WebServer::_uploadReadByte(WiFiClient&) - *fill* 0x40205daa 0x2 + 0x40205ff8 ESP8266WebServer::_uploadReadByte(WiFiClient&) + *fill* 0x4020604e 0x2 .text._ZN16ESP8266WebServer9urlDecodeERK6String - 0x40205dac 0xa2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40206050 0xa2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0xce (size before relaxing) - 0x40205db0 ESP8266WebServer::urlDecode(String const&) - *fill* 0x40205e4e 0x2 + 0x40206054 ESP8266WebServer::urlDecode(String const&) + *fill* 0x402060f2 0x2 .text._ZNSt17_Function_handlerIFvR6StringS1_RKS0_iiiiE15storeArgHandlerE9_M_invokeERKSt9_Any_dataS1_S1_S3_iiii - 0x40205e50 0x89 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x402060f4 0x89 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0xcd (size before relaxing) - 0x40205e50 std::_Function_handler::_M_invoke(std::_Any_data const&, String&, String&, String const&, int, int, int, int) - *fill* 0x40205ed9 0x3 + 0x402060f4 std::_Function_handler::_M_invoke(std::_Any_data const&, String&, String&, String const&, int, int, int, int) + *fill* 0x4020617d 0x3 .text._ZN16ESP8266WebServer23_parseFormUploadAbortedEv - 0x40205edc 0x6a e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40206180 0x6a e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x86 (size before relaxing) - 0x40205edc ESP8266WebServer::_parseFormUploadAborted() - *fill* 0x40205f46 0x2 + 0x40206180 ESP8266WebServer::_parseFormUploadAborted() + *fill* 0x402061ea 0x2 .text._ZN16ESP8266WebServer10_parseFormER10WiFiClientRK6Stringj - 0x40205f48 0x8e4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x402061ec 0x8e4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0xd58 (size before relaxing) - 0x40205f68 ESP8266WebServer::_parseForm(WiFiClient&, String const&, unsigned int) + 0x4020620c ESP8266WebServer::_parseForm(WiFiClient&, String const&, unsigned int) .text._ZN16ESP8266WebServer13_parseRequestER10WiFiClient - 0x4020682c 0x69f e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40206ad0 0x69f e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0xa62 (size before relaxing) - 0x40206860 ESP8266WebServer::_parseRequest(WiFiClient&) - *fill* 0x40206ecb 0x1 + 0x40206b04 ESP8266WebServer::_parseRequest(WiFiClient&) + *fill* 0x4020716f 0x1 .text._ZN10UdpContext5unrefEv - 0x40206ecc 0x50 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x40207170 0x50 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o 0x70 (size before relaxing) - 0x40206ecc UdpContext::unref() + 0x40207170 UdpContext::unref() .text._ZN13MDNSResponderC2Ev - 0x40206f1c 0x56 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x402071c0 0x56 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o 0x6a (size before relaxing) - 0x40206f20 MDNSResponder::MDNSResponder() - 0x40206f20 MDNSResponder::MDNSResponder() - *fill* 0x40206f72 0x2 + 0x402071c4 MDNSResponder::MDNSResponder() + 0x402071c4 MDNSResponder::MDNSResponder() + *fill* 0x40207216 0x2 .text._ZN13MDNSResponderD2Ev - 0x40206f74 0x75 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x40207218 0x75 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o 0xb1 (size before relaxing) - 0x40206f74 MDNSResponder::~MDNSResponder() - 0x40206f74 MDNSResponder::~MDNSResponder() - *fill* 0x40206fe9 0x3 + 0x40207218 MDNSResponder::~MDNSResponder() + 0x40207218 MDNSResponder::~MDNSResponder() + *fill* 0x4020728d 0x3 .text.startup._GLOBAL__sub_I__ZN13MDNSResponderC2Ev - 0x40206fec 0x2c e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x40207290 0x2c e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o 0x38 (size before relaxing) .text.exit._GLOBAL__sub_D__ZN13MDNSResponderC2Ev - 0x40207018 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x402072bc 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o 0x1d (size before relaxing) - *fill* 0x4020702d 0x3 + *fill* 0x402072d1 0x3 .text._ZNSt14_Function_base13_Base_managerIZN23ESP8266HTTPUpdateServer5setupEP16ESP8266WebServerRK6StringS6_S6_EUlvE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation - 0x40207030 0x42 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x402072d4 0x42 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0x4a (size before relaxing) - *fill* 0x40207072 0x2 + *fill* 0x40207316 0x2 .text._ZNSt14_Function_base13_Base_managerIZN23ESP8266HTTPUpdateServer5setupEP16ESP8266WebServerRK6StringS6_S6_EUlvE0_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation - 0x40207074 0x42 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x40207318 0x42 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0x4a (size before relaxing) - *fill* 0x402070b6 0x2 + *fill* 0x4020735a 0x2 .text._ZNSt14_Function_base13_Base_managerIZN23ESP8266HTTPUpdateServer5setupEP16ESP8266WebServerRK6StringS6_S6_EUlvE1_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation - 0x402070b8 0x42 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x4020735c 0x42 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0x4a (size before relaxing) - *fill* 0x402070fa 0x2 + *fill* 0x4020739e 0x2 .text._ZNSt17_Function_handlerIFvvEZN23ESP8266HTTPUpdateServer5setupEP16ESP8266WebServerRK6StringS6_S6_EUlvE_E9_M_invokeERKSt9_Any_data - 0x402070fc 0x7f e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x402073a0 0x7f e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0xb3 (size before relaxing) - *fill* 0x4020717b 0x1 + *fill* 0x4020741f 0x1 .text._ZN23ESP8266HTTPUpdateServerC2Eb - 0x4020717c 0x5e e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x40207420 0x5e e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0x8a (size before relaxing) - 0x4020717c ESP8266HTTPUpdateServer::ESP8266HTTPUpdateServer(bool) - 0x4020717c ESP8266HTTPUpdateServer::ESP8266HTTPUpdateServer(bool) - *fill* 0x402071da 0x2 + 0x40207420 ESP8266HTTPUpdateServer::ESP8266HTTPUpdateServer(bool) + 0x40207420 ESP8266HTTPUpdateServer::ESP8266HTTPUpdateServer(bool) + *fill* 0x4020747e 0x2 .text._ZN23ESP8266HTTPUpdateServer5setupEP16ESP8266WebServerRK6StringS4_S4_ - 0x402071dc 0xdf e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x40207480 0xdf e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0x143 (size before relaxing) - 0x402071f4 ESP8266HTTPUpdateServer::setup(ESP8266WebServer*, String const&, String const&, String const&) - *fill* 0x402072bb 0x1 + 0x40207498 ESP8266HTTPUpdateServer::setup(ESP8266WebServer*, String const&, String const&, String const&) + *fill* 0x4020755f 0x1 .text._ZN23ESP8266HTTPUpdateServer16_setUpdaterErrorEv - 0x402072bc 0x6d e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x40207560 0x6d e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0x99 (size before relaxing) - 0x402072c8 ESP8266HTTPUpdateServer::_setUpdaterError() - *fill* 0x40207329 0x3 + 0x4020756c ESP8266HTTPUpdateServer::_setUpdaterError() + *fill* 0x402075cd 0x3 .text._ZNSt17_Function_handlerIFvvEZN23ESP8266HTTPUpdateServer5setupEP16ESP8266WebServerRK6StringS6_S6_EUlvE1_E9_M_invokeERKSt9_Any_data - 0x4020732c 0x1b1 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x402075d0 0x1b1 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0x249 (size before relaxing) - *fill* 0x402074dd 0x3 + *fill* 0x40207781 0x3 .text._ZNSt17_Function_handlerIFvvEZN23ESP8266HTTPUpdateServer5setupEP16ESP8266WebServerRK6StringS6_S6_EUlvE0_E9_M_invokeERKSt9_Any_data - 0x402074e0 0xee e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x40207784 0xee e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0x16e (size before relaxing) - *fill* 0x402075ce 0x2 + *fill* 0x40207872 0x2 .text._ZN8EspClass7restartEv - 0x402075d0 0x15 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x40207874 0x15 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x21 (size before relaxing) - 0x402075d0 EspClass::restart() - *fill* 0x402075e5 0x3 + 0x40207874 EspClass::restart() + *fill* 0x40207889 0x3 .text._ZN8EspClass11getFreeHeapEv - 0x402075e8 0xf e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x4020788c 0xf e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x17 (size before relaxing) - 0x402075e8 EspClass::getFreeHeap() - *fill* 0x402075f7 0x1 + 0x4020788c EspClass::getFreeHeap() + *fill* 0x4020789b 0x1 .text._ZN8EspClass20getFlashChipRealSizeEv - 0x402075f8 0x22 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - 0x402075fc EspClass::getFlashChipRealSize() - *fill* 0x4020761a 0x2 + 0x4020789c 0x22 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x402078a0 EspClass::getFlashChipRealSize() + *fill* 0x402078be 0x2 .text._ZN8EspClass16getFlashChipSizeEv - 0x4020761c 0x3a e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - 0x40207624 EspClass::getFlashChipSize() - *fill* 0x40207656 0x2 + 0x402078c0 0x3a e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x402078c8 EspClass::getFlashChipSize() + *fill* 0x402078fa 0x2 .text._ZN8EspClass16getFlashChipModeEv - 0x40207658 0x27 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x402078fc 0x27 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x2b (size before relaxing) - 0x40207658 EspClass::getFlashChipMode() - *fill* 0x4020767f 0x1 + 0x402078fc EspClass::getFlashChipMode() + *fill* 0x40207923 0x1 .text._ZN8EspClass18magicFlashChipSizeEh - 0x40207680 0x14 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x40207924 0x14 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x18 (size before relaxing) - 0x40207680 EspClass::magicFlashChipSize(unsigned char) + 0x40207924 EspClass::magicFlashChipSize(unsigned char) .text._ZN8EspClass16checkFlashConfigEb - 0x40207694 0x54 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x40207938 0x54 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x6c (size before relaxing) - 0x40207694 EspClass::checkFlashConfig(bool) + 0x40207938 EspClass::checkFlashConfig(bool) .text._ZN8EspClass13getSketchSizeEv - 0x402076e8 0x79 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x4020798c 0x79 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x85 (size before relaxing) - 0x402076f0 EspClass::getSketchSize() - *fill* 0x40207761 0x3 + 0x40207994 EspClass::getSketchSize() + *fill* 0x40207a05 0x3 .text._ZN8EspClass18getFreeSketchSpaceEv - 0x40207764 0x2d e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x40207a08 0x2d e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x3d (size before relaxing) - 0x4020776c EspClass::getFreeSketchSpace() - *fill* 0x40207791 0x3 + 0x40207a10 EspClass::getFreeSketchSpace() + *fill* 0x40207a35 0x3 .text._ZN8EspClass16flashEraseSectorEj - 0x40207794 0x3c e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x40207a38 0x38 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x44 (size before relaxing) - 0x40207798 EspClass::flashEraseSector(unsigned int) + 0x40207a38 EspClass::flashEraseSector(unsigned int) .text._ZN8EspClass10flashWriteEjPjj - 0x402077d0 0x49 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x40207a70 0x45 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x51 (size before relaxing) - 0x402077d4 EspClass::flashWrite(unsigned int, unsigned int*, unsigned int) - *fill* 0x40207819 0x3 + 0x40207a70 EspClass::flashWrite(unsigned int, unsigned int*, unsigned int) + *fill* 0x40207ab5 0x3 .text._ZN8EspClass9flashReadEjPjj - 0x4020781c 0x45 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x40207ab8 0x45 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x51 (size before relaxing) - 0x4020781c EspClass::flashRead(unsigned int, unsigned int*, unsigned int) - *fill* 0x40207861 0x3 + 0x40207ab8 EspClass::flashRead(unsigned int, unsigned int*, unsigned int) + *fill* 0x40207afd 0x3 .text._ZN14HardwareSerialD2Ev - 0x40207864 0xb e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - 0x40207868 HardwareSerial::~HardwareSerial() - 0x40207868 HardwareSerial::~HardwareSerial() - *fill* 0x4020786f 0x1 + 0x40207b00 0xb e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207b04 HardwareSerial::~HardwareSerial() + 0x40207b04 HardwareSerial::~HardwareSerial() + *fill* 0x40207b0b 0x1 .text._ZN14HardwareSerialD0Ev - 0x40207870 0x17 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207b0c 0x17 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x1f (size before relaxing) - 0x40207870 HardwareSerial::~HardwareSerial() - *fill* 0x40207887 0x1 + 0x40207b0c HardwareSerial::~HardwareSerial() + *fill* 0x40207b23 0x1 .text._ZN14HardwareSerial4peekEv - 0x40207888 0x14 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207b24 0x14 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x18 (size before relaxing) - 0x40207888 HardwareSerial::peek() + 0x40207b24 HardwareSerial::peek() .text._ZN14HardwareSerial4readEv - 0x4020789c 0x14 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207b38 0x14 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x18 (size before relaxing) - 0x4020789c HardwareSerial::read() + 0x40207b38 HardwareSerial::read() .text._ZN14HardwareSerial5writeEh - 0x402078b0 0x17 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207b4c 0x17 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x1b (size before relaxing) - 0x402078b0 HardwareSerial::write(unsigned char) - *fill* 0x402078c7 0x1 + 0x40207b4c HardwareSerial::write(unsigned char) + *fill* 0x40207b63 0x1 .text._ZN14HardwareSerial5writeEPKhj - 0x402078c8 0x14 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207b64 0x14 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x18 (size before relaxing) - 0x402078c8 HardwareSerial::write(unsigned char const*, unsigned int) + 0x40207b64 HardwareSerial::write(unsigned char const*, unsigned int) .text._ZN14HardwareSerial9availableEv - 0x402078dc 0x24 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207b78 0x24 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x34 (size before relaxing) - 0x402078dc HardwareSerial::available() + 0x40207b78 HardwareSerial::available() .text._ZN14HardwareSerial5flushEv - 0x40207900 0x3d e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207b9c 0x3d e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x5d (size before relaxing) - 0x40207904 HardwareSerial::flush() - *fill* 0x4020793d 0x3 + 0x40207ba0 HardwareSerial::flush() + *fill* 0x40207bd9 0x3 .text._ZN14HardwareSerialC2Ei - 0x40207940 0x19 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207bdc 0x19 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x1d (size before relaxing) - 0x40207940 HardwareSerial::HardwareSerial(int) - 0x40207940 HardwareSerial::HardwareSerial(int) - *fill* 0x40207959 0x3 + 0x40207bdc HardwareSerial::HardwareSerial(int) + 0x40207bdc HardwareSerial::HardwareSerial(int) + *fill* 0x40207bf5 0x3 .text._ZN14HardwareSerial3endEv - 0x4020795c 0x2e e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207bf8 0x2e e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x3e (size before relaxing) - 0x4020795c HardwareSerial::end() - *fill* 0x4020798a 0x2 + 0x40207bf8 HardwareSerial::end() + *fill* 0x40207c26 0x2 .text._ZN14HardwareSerial5beginEm12SerialConfig10SerialModeh - 0x4020798c 0x35 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207c28 0x35 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x41 (size before relaxing) - 0x4020798c HardwareSerial::begin(unsigned long, SerialConfig, SerialMode, unsigned char) - *fill* 0x402079c1 0x3 + 0x40207c28 HardwareSerial::begin(unsigned long, SerialConfig, SerialMode, unsigned char) + *fill* 0x40207c5d 0x3 .text._ZN14HardwareSerial14setDebugOutputEb - 0x402079c4 0x3a e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207c60 0x3a e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x4d (size before relaxing) - 0x402079c4 HardwareSerial::setDebugOutput(bool) - *fill* 0x402079fe 0x2 + 0x40207c60 HardwareSerial::setDebugOutput(bool) + *fill* 0x40207c9a 0x2 .text.startup._GLOBAL__sub_I__ZN14HardwareSerialC2Ei - 0x40207a00 0x23 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207c9c 0x23 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x33 (size before relaxing) - *fill* 0x40207a23 0x1 + *fill* 0x40207cbf 0x1 .text.exit._GLOBAL__sub_D__ZN14HardwareSerialC2Ei - 0x40207a24 0xf e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x40207cc0 0xf e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x1b (size before relaxing) - *fill* 0x40207a33 0x1 + *fill* 0x40207ccf 0x1 .text._ZNK9IPAddress7printToER5Print - 0x40207a34 0x53 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + 0x40207cd0 0x53 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) 0x67 (size before relaxing) - 0x40207a34 IPAddress::printTo(Print&) const - *fill* 0x40207a87 0x1 + 0x40207cd0 IPAddress::printTo(Print&) const + *fill* 0x40207d23 0x1 .text._ZN9IPAddressC2Ev - 0x40207a88 0xb e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + 0x40207d24 0xb e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) 0xf (size before relaxing) - 0x40207a88 IPAddress::IPAddress() - 0x40207a88 IPAddress::IPAddress() - *fill* 0x40207a93 0x1 + 0x40207d24 IPAddress::IPAddress() + 0x40207d24 IPAddress::IPAddress() + *fill* 0x40207d2f 0x1 .text._ZN9IPAddressC2Ehhhh - 0x40207a94 0x13 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + 0x40207d30 0x13 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) 0x17 (size before relaxing) - 0x40207a94 IPAddress::IPAddress(unsigned char, unsigned char, unsigned char, unsigned char) - 0x40207a94 IPAddress::IPAddress(unsigned char, unsigned char, unsigned char, unsigned char) - *fill* 0x40207aa7 0x1 + 0x40207d30 IPAddress::IPAddress(unsigned char, unsigned char, unsigned char, unsigned char) + 0x40207d30 IPAddress::IPAddress(unsigned char, unsigned char, unsigned char, unsigned char) + *fill* 0x40207d43 0x1 .text._ZN9IPAddressC2Ej - 0x40207aa8 0x9 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + 0x40207d44 0x9 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) 0xd (size before relaxing) - 0x40207aa8 IPAddress::IPAddress(unsigned int) - 0x40207aa8 IPAddress::IPAddress(unsigned int) - *fill* 0x40207ab1 0x3 + 0x40207d44 IPAddress::IPAddress(unsigned int) + 0x40207d44 IPAddress::IPAddress(unsigned int) + *fill* 0x40207d4d 0x3 .text.startup._GLOBAL__sub_I__ZN9IPAddressC2Ev - 0x40207ab4 0x1c e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + 0x40207d50 0x1c e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) 0x20 (size before relaxing) .text._ZN10MD5Builder5beginEv - 0x40207ad0 0x2b e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + 0x40207d6c 0x2b e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) 0x2f (size before relaxing) - 0x40207ad4 MD5Builder::begin() - *fill* 0x40207afb 0x1 + 0x40207d70 MD5Builder::begin() + *fill* 0x40207d97 0x1 .text._ZN10MD5Builder3addEPKht - 0x40207afc 0x19 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) - 0x40207b00 MD5Builder::add(unsigned char const*, unsigned short) - *fill* 0x40207b15 0x3 + 0x40207d98 0x19 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + 0x40207d9c MD5Builder::add(unsigned char const*, unsigned short) + *fill* 0x40207db1 0x3 .text._ZN10MD5Builder9calculateEv - 0x40207b18 0x1b e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) - 0x40207b1c MD5Builder::calculate() - *fill* 0x40207b33 0x1 + 0x40207db4 0x1b e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + 0x40207db8 MD5Builder::calculate() + *fill* 0x40207dcf 0x1 .text._ZN10MD5Builder8getCharsEPc - 0x40207b34 0x37 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + 0x40207dd0 0x37 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) 0x3b (size before relaxing) - 0x40207b38 MD5Builder::getChars(char*) - *fill* 0x40207b6b 0x1 + 0x40207dd4 MD5Builder::getChars(char*) + *fill* 0x40207e07 0x1 .text._ZN10MD5Builder8toStringEv - 0x40207b6c 0x25 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + 0x40207e08 0x25 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) 0x31 (size before relaxing) - 0x40207b6c MD5Builder::toString() - *fill* 0x40207b91 0x3 + 0x40207e08 MD5Builder::toString() + *fill* 0x40207e2d 0x3 .text._ZN5Print5writeEPKc - 0x40207b94 0x2e e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40207e30 0x2e e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0x32 (size before relaxing) - 0x40207b94 Print::write(char const*) - *fill* 0x40207bc2 0x2 + 0x40207e30 Print::write(char const*) + *fill* 0x40207e5e 0x2 .text._ZN5Print6printfEPKcz - 0x40207bc4 0xc2 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40207e60 0xc2 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0xda (size before relaxing) - 0x40207bc4 Print::printf(char const*, ...) - *fill* 0x40207c86 0x2 + 0x40207e60 Print::printf(char const*, ...) + *fill* 0x40207f22 0x2 .text._ZN5Print8printf_PEPKcz - 0x40207c88 0xc2 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40207f24 0xc2 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0xda (size before relaxing) - 0x40207c88 Print::printf_P(char const*, ...) - *fill* 0x40207d4a 0x2 + 0x40207f24 Print::printf_P(char const*, ...) + *fill* 0x40207fe6 0x2 + .text._ZN5Print5printEPKc + 0x40207fe8 0xf e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x17 (size before relaxing) + 0x40207fe8 Print::print(char const*) + *fill* 0x40207ff7 0x1 .text._ZN5Print7printlnEv - 0x40207d4c 0x19 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40207ff8 0x19 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0x1d (size before relaxing) - 0x40207d50 Print::println() - *fill* 0x40207d65 0x3 + 0x40207ffc Print::println() + *fill* 0x40208011 0x3 .text._ZN5Print7printlnEPK19__FlashStringHelper - 0x40207d68 0x25 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40208014 0x25 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0x31 (size before relaxing) - 0x40207d68 Print::println(__FlashStringHelper const*) - *fill* 0x40207d8d 0x3 + 0x40208014 Print::println(__FlashStringHelper const*) + *fill* 0x40208039 0x3 .text._ZN5Print7printlnEPKc - 0x40207d90 0x25 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x4020803c 0x25 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0x31 (size before relaxing) - 0x40207d90 Print::println(char const*) - *fill* 0x40207db5 0x3 + 0x4020803c Print::println(char const*) + *fill* 0x40208061 0x3 .text._ZN5Print11printNumberEmh - 0x40207db8 0x79 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40208064 0x79 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0x84 (size before relaxing) - 0x40207db8 Print::printNumber(unsigned long, unsigned char) - *fill* 0x40207e31 0x3 + 0x40208064 Print::printNumber(unsigned long, unsigned char) + *fill* 0x402080dd 0x3 + .text._ZN5Print5printEli + 0x402080e0 0x57 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x67 (size before relaxing) + 0x402080e0 Print::print(long, int) + *fill* 0x40208137 0x1 + .text._ZN5Print5printEii + 0x40208138 0xf e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x17 (size before relaxing) + 0x40208138 Print::print(int, int) + *fill* 0x40208147 0x1 + .text._ZN5Print7printlnEii + 0x40208148 0x25 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x31 (size before relaxing) + 0x40208148 Print::println(int, int) + *fill* 0x4020816d 0x3 .text._ZN5Print5printEmi - 0x40207e34 0x21 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40208170 0x21 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0x28 (size before relaxing) - 0x40207e34 Print::print(unsigned long, int) - *fill* 0x40207e55 0x3 + 0x40208170 Print::print(unsigned long, int) + *fill* 0x40208191 0x3 .text._ZN5Print5printEhi - 0x40207e58 0x15 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40208194 0x15 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0x19 (size before relaxing) - 0x40207e58 Print::print(unsigned char, int) - *fill* 0x40207e6d 0x3 + 0x40208194 Print::print(unsigned char, int) + *fill* 0x402081a9 0x3 .text._Z23run_scheduled_functionsv - 0x40207e70 0x89 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + 0x402081ac 0x89 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) 0xa9 (size before relaxing) - 0x40207e80 run_scheduled_functions() - *fill* 0x40207ef9 0x3 + 0x402081bc run_scheduled_functions() + *fill* 0x40208235 0x3 .text._ZN18ScheduledFunctions16ScheduledElementD2Ev - 0x40207efc 0x1f e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + 0x40208238 0x1f e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) 0x2b (size before relaxing) - 0x40207efc ScheduledFunctions::ScheduledElement::~ScheduledElement() - 0x40207efc ScheduledFunctions::ScheduledElement::~ScheduledElement() - *fill* 0x40207f1b 0x1 + 0x40208238 ScheduledFunctions::ScheduledElement::~ScheduledElement() + 0x40208238 ScheduledFunctions::ScheduledElement::~ScheduledElement() + *fill* 0x40208257 0x1 .text._ZNSt10_List_baseIN18ScheduledFunctions16ScheduledElementESaIS1_EE8_M_clearEv - 0x40207f1c 0x32 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + 0x40208258 0x32 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) 0x3e (size before relaxing) - 0x40207f1c std::_List_base >::_M_clear() - *fill* 0x40207f4e 0x2 + 0x40208258 std::_List_base >::_M_clear() + *fill* 0x4020828a 0x2 .text.startup._GLOBAL__sub_I__ZN18ScheduledFunctions18scheduledFunctionsE - 0x40207f50 0xd e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) - *fill* 0x40207f5d 0x3 + 0x4020828c 0xd e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + *fill* 0x40208299 0x3 .text.exit._GLOBAL__sub_D__ZN18ScheduledFunctions18scheduledFunctionsE - 0x40207f60 0x15 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + 0x4020829c 0x15 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) 0x1d (size before relaxing) - *fill* 0x40207f75 0x3 + *fill* 0x402082b1 0x3 .text._ZN6Stream9timedReadEv - 0x40207f78 0x3d e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + 0x402082b4 0x3d e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) 0x4d (size before relaxing) - 0x40207f78 Stream::timedRead() - *fill* 0x40207fb5 0x3 + 0x402082b4 Stream::timedRead() + *fill* 0x402082f1 0x3 .text._ZN6Stream9readBytesEPcj - 0x40207fb8 0x41 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + 0x402082f4 0x41 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) 0x45 (size before relaxing) - 0x40207fb8 Stream::readBytes(char*, unsigned int) - *fill* 0x40207ff9 0x3 + 0x402082f4 Stream::readBytes(char*, unsigned int) + *fill* 0x40208335 0x3 .text._ZN6Stream15readStringUntilEc - 0x40207ffc 0x45 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + 0x40208338 0x45 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) 0x59 (size before relaxing) - 0x40208000 Stream::readStringUntil(char) - *fill* 0x40208041 0x3 + 0x4020833c Stream::readStringUntil(char) + *fill* 0x4020837d 0x3 .text._ZN12StreamString5writeEh - 0x40208044 0x18 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + 0x40208380 0x18 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) 0x1c (size before relaxing) - 0x40208044 StreamString::write(unsigned char) + 0x40208380 StreamString::write(unsigned char) .text._ZN12StreamString4peekEv - 0x4020805c 0x29 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + 0x40208398 0x29 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) 0x2d (size before relaxing) - 0x4020805c StreamString::peek() - *fill* 0x40208085 0x3 + 0x40208398 StreamString::peek() + *fill* 0x402083c1 0x3 .text._ZN12StreamString4readEv - 0x40208088 0x3f e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + 0x402083c4 0x3f e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) 0x4b (size before relaxing) - 0x40208088 StreamString::read() - *fill* 0x402080c7 0x1 + 0x402083c4 StreamString::read() + *fill* 0x40208403 0x1 .text._ZN12StreamString5writeEPKhj - 0x402080c8 0x5a e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + 0x40208404 0x5a e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) 0x6a (size before relaxing) - 0x402080c8 StreamString::write(unsigned char const*, unsigned int) - *fill* 0x40208122 0x2 + 0x40208404 StreamString::write(unsigned char const*, unsigned int) + *fill* 0x4020845e 0x2 .text._ZN12UpdaterClassC2Ev - 0x40208124 0x2f e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x40208460 0x2f e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0x37 (size before relaxing) - 0x40208128 UpdaterClass::UpdaterClass() - 0x40208128 UpdaterClass::UpdaterClass() - *fill* 0x40208153 0x1 + 0x40208464 UpdaterClass::UpdaterClass() + 0x40208464 UpdaterClass::UpdaterClass() + *fill* 0x4020848f 0x1 .text._ZN12UpdaterClass6_resetEv - 0x40208154 0x46 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x40208490 0x46 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0x4a (size before relaxing) - 0x40208158 UpdaterClass::_reset() - *fill* 0x4020819a 0x2 + 0x40208494 UpdaterClass::_reset() + *fill* 0x402084d6 0x2 .text._ZN12UpdaterClass5beginEjiih - 0x4020819c 0x103 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x402084d8 0x103 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0x147 (size before relaxing) - 0x402081a4 UpdaterClass::begin(unsigned int, int, int, unsigned char) - *fill* 0x4020829f 0x1 + 0x402084e0 UpdaterClass::begin(unsigned int, int, int, unsigned char) + *fill* 0x402085db 0x1 .text._ZN12UpdaterClass12_writeBufferEv - 0x402082a0 0xd7 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x402085dc 0xd7 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0x103 (size before relaxing) - 0x402082a0 UpdaterClass::_writeBuffer() - *fill* 0x40208377 0x1 + 0x402085dc UpdaterClass::_writeBuffer() + *fill* 0x402086b3 0x1 .text._ZN12UpdaterClass5writeEPhj - 0x40208378 0xc7 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x402086b4 0xc7 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0xe7 (size before relaxing) - 0x40208378 UpdaterClass::write(unsigned char*, unsigned int) - *fill* 0x4020843f 0x1 + 0x402086b4 UpdaterClass::write(unsigned char*, unsigned int) + *fill* 0x4020877b 0x1 .text._ZN12UpdaterClass10_verifyEndEv - 0x40208440 0x8f e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x4020877c 0x8f e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0xa3 (size before relaxing) - 0x40208440 UpdaterClass::_verifyEnd() - *fill* 0x402084cf 0x1 + 0x4020877c UpdaterClass::_verifyEnd() + *fill* 0x4020880b 0x1 .text._ZN12UpdaterClass3endEb - 0x402084d0 0xcd e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x4020880c 0xcd e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0x109 (size before relaxing) - 0x402084d0 UpdaterClass::end(bool) - *fill* 0x4020859d 0x3 + 0x4020880c UpdaterClass::end(bool) + *fill* 0x402088d9 0x3 .text._ZN12UpdaterClass10printErrorER5Print - 0x402085a0 0x131 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x402088dc 0x131 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0x175 (size before relaxing) - 0x402085d8 UpdaterClass::printError(Print&) - *fill* 0x402086d1 0x3 + 0x40208914 UpdaterClass::printError(Print&) + *fill* 0x40208a0d 0x3 .text.startup._GLOBAL__sub_I__ZN12UpdaterClassC2Ev - 0x402086d4 0x15 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x40208a10 0x15 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0x1d (size before relaxing) - *fill* 0x402086e9 0x3 + *fill* 0x40208a25 0x3 .text.exit._GLOBAL__sub_D__ZN12UpdaterClassC2Ev - 0x402086ec 0x19 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x40208a28 0x19 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0x1d (size before relaxing) - *fill* 0x40208705 0x3 + *fill* 0x40208a41 0x3 .text._ZN6String10invalidateEv - 0x40208708 0x25 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208a44 0x25 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x29 (size before relaxing) - 0x40208708 String::invalidate() - *fill* 0x4020872d 0x3 + 0x40208a44 String::invalidate() + *fill* 0x40208a69 0x3 .text._ZN6StringD2Ev - 0x40208730 0xf e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208a6c 0xf e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x17 (size before relaxing) - 0x40208730 String::~String() - 0x40208730 String::~String() - *fill* 0x4020873f 0x1 + 0x40208a6c String::~String() + 0x40208a6c String::~String() + *fill* 0x40208a7b 0x1 .text._ZN6String12changeBufferEj - 0x40208740 0x4d e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208a7c 0x4d e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x59 (size before relaxing) - 0x40208740 String::changeBuffer(unsigned int) - *fill* 0x4020878d 0x3 + 0x40208a7c String::changeBuffer(unsigned int) + *fill* 0x40208ac9 0x3 .text._ZN6String7reserveEj - 0x40208790 0x33 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208acc 0x33 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x37 (size before relaxing) - 0x40208790 String::reserve(unsigned int) - *fill* 0x402087c3 0x1 + 0x40208acc String::reserve(unsigned int) + *fill* 0x40208aff 0x1 .text._ZN6String4copyEPKcj - 0x402087c4 0x3f e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208b00 0x3f e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x4f (size before relaxing) - 0x402087c4 String::copy(char const*, unsigned int) - *fill* 0x40208803 0x1 + 0x40208b00 String::copy(char const*, unsigned int) + *fill* 0x40208b3f 0x1 .text._ZN6StringC2EPKc - 0x40208804 0x2f e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208b40 0x2f e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x3b (size before relaxing) - 0x40208804 String::String(char const*) - 0x40208804 String::String(char const*) - *fill* 0x40208833 0x1 + 0x40208b40 String::String(char const*) + 0x40208b40 String::String(char const*) + *fill* 0x40208b6f 0x1 .text._ZN6String4copyEPK19__FlashStringHelperj - 0x40208834 0x43 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208b70 0x43 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x57 (size before relaxing) - 0x40208834 String::copy(__FlashStringHelper const*, unsigned int) - *fill* 0x40208877 0x1 + 0x40208b70 String::copy(__FlashStringHelper const*, unsigned int) + *fill* 0x40208bb3 0x1 .text._ZN6String4moveERS_ - 0x40208878 0x4e e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208bb4 0x4e e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x56 (size before relaxing) - 0x40208878 String::move(String&) - *fill* 0x402088c6 0x2 + 0x40208bb4 String::move(String&) + *fill* 0x40208c02 0x2 .text._ZN6StringaSERKS_ - 0x402088c8 0x2d e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208c04 0x2d e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x39 (size before relaxing) - 0x402088c8 String::operator=(String const&) - *fill* 0x402088f5 0x3 + 0x40208c04 String::operator=(String const&) + *fill* 0x40208c31 0x3 .text._ZN6StringC2ERKS_ - 0x402088f8 0x17 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208c34 0x17 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x1f (size before relaxing) - 0x402088f8 String::String(String const&) - 0x402088f8 String::String(String const&) - *fill* 0x4020890f 0x1 + 0x40208c34 String::String(String const&) + 0x40208c34 String::String(String const&) + *fill* 0x40208c4b 0x1 .text._ZN6StringaSEOS_ - 0x40208910 0x1d e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208c4c 0x1d e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x21 (size before relaxing) - 0x40208910 String::operator=(String&&) - *fill* 0x4020892d 0x3 + 0x40208c4c String::operator=(String&&) + *fill* 0x40208c69 0x3 .text._ZN6StringaSEPKc - 0x40208930 0x31 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208c6c 0x31 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x41 (size before relaxing) - 0x40208930 String::operator=(char const*) - *fill* 0x40208961 0x3 + 0x40208c6c String::operator=(char const*) + *fill* 0x40208c9d 0x3 .text._ZN6StringC2Ehh - 0x40208964 0x2f e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208ca0 0x2f e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x3b (size before relaxing) - 0x40208964 String::String(unsigned char, unsigned char) - 0x40208964 String::String(unsigned char, unsigned char) - *fill* 0x40208993 0x1 + 0x40208ca0 String::String(unsigned char, unsigned char) + 0x40208ca0 String::String(unsigned char, unsigned char) + *fill* 0x40208ccf 0x1 .text._ZN6StringC2Eih - 0x40208994 0x45 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208cd0 0x45 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x59 (size before relaxing) - 0x40208998 String::String(int, unsigned char) - 0x40208998 String::String(int, unsigned char) - *fill* 0x402089d9 0x3 + 0x40208cd4 String::String(int, unsigned char) + 0x40208cd4 String::String(int, unsigned char) + *fill* 0x40208d15 0x3 .text._ZN6StringC2Ejh - 0x402089dc 0x2d e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208d18 0x2d e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x39 (size before relaxing) - 0x402089dc String::String(unsigned int, unsigned char) - 0x402089dc String::String(unsigned int, unsigned char) - *fill* 0x40208a09 0x3 + 0x40208d18 String::String(unsigned int, unsigned char) + 0x40208d18 String::String(unsigned int, unsigned char) + *fill* 0x40208d45 0x3 .text._ZN6StringaSEPK19__FlashStringHelper - 0x40208a0c 0x36 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208d48 0x36 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x4e (size before relaxing) - 0x40208a0c String::operator=(__FlashStringHelper const*) - *fill* 0x40208a42 0x2 + 0x40208d48 String::operator=(__FlashStringHelper const*) + *fill* 0x40208d7e 0x2 .text._ZN6StringC2EPK19__FlashStringHelper - 0x40208a44 0x17 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208d80 0x17 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x1f (size before relaxing) - 0x40208a44 String::String(__FlashStringHelper const*) - 0x40208a44 String::String(__FlashStringHelper const*) - *fill* 0x40208a5b 0x1 + 0x40208d80 String::String(__FlashStringHelper const*) + 0x40208d80 String::String(__FlashStringHelper const*) + *fill* 0x40208d97 0x1 .text._ZN6String6concatEPKcj - 0x40208a5c 0x49 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208d98 0x49 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x55 (size before relaxing) - 0x40208a5c String::concat(char const*, unsigned int) - *fill* 0x40208aa5 0x3 + 0x40208d98 String::concat(char const*, unsigned int) + *fill* 0x40208de1 0x3 .text._ZN6String6concatERKS_ - 0x40208aa8 0x65 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208de4 0x65 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x75 (size before relaxing) - 0x40208aa8 String::concat(String const&) - *fill* 0x40208b0d 0x3 + 0x40208de4 String::concat(String const&) + *fill* 0x40208e49 0x3 .text._ZN6String6concatEPKc - 0x40208b10 0x29 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208e4c 0x29 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x35 (size before relaxing) - 0x40208b10 String::concat(char const*) - *fill* 0x40208b39 0x3 + 0x40208e4c String::concat(char const*) + *fill* 0x40208e75 0x3 .text._ZN6String6concatEc - 0x40208b3c 0x1b e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208e78 0x1b e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x23 (size before relaxing) - 0x40208b3c String::concat(char) - *fill* 0x40208b57 0x1 + 0x40208e78 String::concat(char) + *fill* 0x40208e93 0x1 .text._ZN6String6concatEPK19__FlashStringHelper - 0x40208b58 0x57 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208e94 0x57 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x6f (size before relaxing) - 0x40208b58 String::concat(__FlashStringHelper const*) - *fill* 0x40208baf 0x1 + 0x40208e94 String::concat(__FlashStringHelper const*) + *fill* 0x40208eeb 0x1 .text._ZplRK15StringSumHelperRK6String - 0x40208bb0 0x27 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208eec 0x27 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x33 (size before relaxing) - 0x40208bb0 operator+(StringSumHelper const&, String const&) - *fill* 0x40208bd7 0x1 + 0x40208eec operator+(StringSumHelper const&, String const&) + *fill* 0x40208f13 0x1 .text._ZplRK15StringSumHelperPKc - 0x40208bd8 0x33 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208f14 0x33 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x43 (size before relaxing) - 0x40208bd8 operator+(StringSumHelper const&, char const*) - *fill* 0x40208c0b 0x1 + 0x40208f14 operator+(StringSumHelper const&, char const*) + *fill* 0x40208f47 0x1 .text._ZplRK15StringSumHelperc - 0x40208c0c 0x23 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208f48 0x23 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x2f (size before relaxing) - 0x40208c0c operator+(StringSumHelper const&, char) - *fill* 0x40208c2f 0x1 + 0x40208f48 operator+(StringSumHelper const&, char) + *fill* 0x40208f6b 0x1 .text._ZplRK15StringSumHelperPK19__FlashStringHelper - 0x40208c30 0x21 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208f6c 0x21 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x2d (size before relaxing) - 0x40208c30 operator+(StringSumHelper const&, __FlashStringHelper const*) - *fill* 0x40208c51 0x3 + 0x40208f6c operator+(StringSumHelper const&, __FlashStringHelper const*) + *fill* 0x40208f8d 0x3 .text._ZNK6String9compareToERKS_ - 0x40208c54 0x41 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208f90 0x41 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x45 (size before relaxing) - 0x40208c54 String::compareTo(String const&) const - *fill* 0x40208c95 0x3 + 0x40208f90 String::compareTo(String const&) const + *fill* 0x40208fd1 0x3 .text._ZNK6String6equalsERKS_ - 0x40208c98 0x29 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40208fd4 0x29 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x2d (size before relaxing) - 0x40208c98 String::equals(String const&) const - *fill* 0x40208cc1 0x3 + 0x40208fd4 String::equals(String const&) const + *fill* 0x40208ffd 0x3 .text._ZNK6String6equalsEPKc - 0x40208cc4 0x3f e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209000 0x3f e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x43 (size before relaxing) - 0x40208cc4 String::equals(char const*) const - *fill* 0x40208d03 0x1 + 0x40209000 String::equals(char const*) const + *fill* 0x4020903f 0x1 .text._ZNK6String16equalsIgnoreCaseERKS_ - 0x40208d04 0x54 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209040 0x54 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x60 (size before relaxing) - 0x40208d04 String::equalsIgnoreCase(String const&) const + 0x40209040 String::equalsIgnoreCase(String const&) const .text._ZNK6String10startsWithERKS_j - 0x40208d58 0x37 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209094 0x37 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x3f (size before relaxing) - 0x40208d58 String::startsWith(String const&, unsigned int) const - *fill* 0x40208d8f 0x1 + 0x40209094 String::startsWith(String const&, unsigned int) const + *fill* 0x402090cb 0x1 .text._ZNK6String10startsWithERKS_ - 0x40208d90 0x1f e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x402090cc 0x1f e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x23 (size before relaxing) - 0x40208d90 String::startsWith(String const&) const - *fill* 0x40208daf 0x1 + 0x402090cc String::startsWith(String const&) const + *fill* 0x402090eb 0x1 .text._ZN6StringixEj - 0x40208db0 0x1a e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - 0x40208db4 String::operator[](unsigned int) - *fill* 0x40208dca 0x2 + 0x402090ec 0x1a e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x402090f0 String::operator[](unsigned int) + *fill* 0x40209106 0x2 .text._ZNK6String6charAtEj - 0x40208dcc 0xf e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209108 0xf e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x17 (size before relaxing) - 0x40208dcc String::charAt(unsigned int) const - *fill* 0x40208ddb 0x1 + 0x40209108 String::charAt(unsigned int) const + *fill* 0x40209117 0x1 .text._ZNK6String7indexOfEcj - 0x40208ddc 0x31 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209118 0x31 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x35 (size before relaxing) - 0x40208ddc String::indexOf(char, unsigned int) const - *fill* 0x40208e0d 0x3 + 0x40209118 String::indexOf(char, unsigned int) const + *fill* 0x40209149 0x3 .text._ZNK6String7indexOfEc - 0x40208e10 0x17 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x4020914c 0x17 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x1b (size before relaxing) - 0x40208e10 String::indexOf(char) const - *fill* 0x40208e27 0x1 + 0x4020914c String::indexOf(char) const + *fill* 0x40209163 0x1 .text._ZNK6String7indexOfERKS_j - 0x40208e28 0x31 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209164 0x31 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x35 (size before relaxing) - 0x40208e28 String::indexOf(String const&, unsigned int) const - *fill* 0x40208e59 0x3 + 0x40209164 String::indexOf(String const&, unsigned int) const + *fill* 0x40209195 0x3 .text._ZNK6String7indexOfERKS_ - 0x40208e5c 0x14 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209198 0x14 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x18 (size before relaxing) - 0x40208e5c String::indexOf(String const&) const + 0x40209198 String::indexOf(String const&) const .text._ZNK6String11lastIndexOfERKS_j - 0x40208e70 0x62 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x402091ac 0x62 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x66 (size before relaxing) - 0x40208e70 String::lastIndexOf(String const&, unsigned int) const - *fill* 0x40208ed2 0x2 + 0x402091ac String::lastIndexOf(String const&, unsigned int) const + *fill* 0x4020920e 0x2 .text._ZNK6String9substringEjj - 0x40208ed4 0x66 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209210 0x66 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x72 (size before relaxing) - 0x40208ed8 String::substring(unsigned int, unsigned int) const - *fill* 0x40208f3a 0x2 + 0x40209214 String::substring(unsigned int, unsigned int) const + *fill* 0x40209276 0x2 .text._ZN6String7replaceERKS_S1_ - 0x40208f3c 0x144 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209278 0x144 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x188 (size before relaxing) - 0x40208f3c String::replace(String const&, String const&) + 0x40209278 String::replace(String const&, String const&) .text._ZN6String6removeEjj - 0x40209080 0x41 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x402093bc 0x41 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x49 (size before relaxing) - 0x40209080 String::remove(unsigned int, unsigned int) - *fill* 0x402090c1 0x3 + 0x402093bc String::remove(unsigned int, unsigned int) + *fill* 0x402093fd 0x3 .text._ZN6String4trimEv - 0x402090c4 0x74 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209400 0x74 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x87 (size before relaxing) - 0x402090c4 String::trim() - *fill* 0x40209138 0x0 + 0x40209400 String::trim() + *fill* 0x40209474 0x0 .text._ZNK6String5toIntEv - 0x40209138 0x1b e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209474 0x1b e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x1f (size before relaxing) - 0x40209138 String::toInt() const - *fill* 0x40209153 0x1 + 0x40209474 String::toInt() const + *fill* 0x4020948f 0x1 .text.startup._GLOBAL__sub_I__ZN6StringC2EPKc - 0x40209154 0x18 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209490 0x18 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x24 (size before relaxing) .text.exit._GLOBAL__sub_D__ZN6StringC2EPKc - 0x4020916c 0x15 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x402094a8 0x15 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x1d (size before relaxing) - *fill* 0x40209181 0x3 - .text._Znwj 0x40209184 0x2d e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + *fill* 0x402094bd 0x3 + .text._Znwj 0x402094c0 0x2d e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) 0x39 (size before relaxing) - 0x40209184 operator new(unsigned int) - *fill* 0x402091b1 0x3 - .text._Znaj 0x402091b4 0x2d e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + 0x402094c0 operator new(unsigned int) + *fill* 0x402094ed 0x3 + .text._Znaj 0x402094f0 0x2d e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) 0x39 (size before relaxing) - 0x402091b4 operator new[](unsigned int) - *fill* 0x402091e1 0x3 - .text._ZdlPv 0x402091e4 0x13 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + 0x402094f0 operator new[](unsigned int) + *fill* 0x4020951d 0x3 + .text._ZdlPv 0x40209520 0x13 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) 0x17 (size before relaxing) - 0x402091e4 operator delete(void*) - *fill* 0x402091f7 0x1 - .text._ZdaPv 0x402091f8 0x13 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + 0x40209520 operator delete(void*) + *fill* 0x40209533 0x1 + .text._ZdaPv 0x40209534 0x13 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) 0x17 (size before relaxing) - 0x402091f8 operator delete[](void*) - *fill* 0x4020920b 0x1 + 0x40209534 operator delete[](void*) + *fill* 0x40209547 0x1 .text.__cxa_pure_virtual - 0x4020920c 0x18 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + 0x40209548 0x18 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) 0x20 (size before relaxing) - 0x40209214 __cxa_pure_virtual + 0x40209550 __cxa_pure_virtual .text._ZSt25__throw_bad_function_callv - 0x40209224 0x19 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + 0x40209560 0x19 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) 0x20 (size before relaxing) - 0x4020922c std::__throw_bad_function_call() - *fill* 0x4020923d 0x3 + 0x40209568 std::__throw_bad_function_call() + *fill* 0x40209579 0x3 .text._ZL9loop_taskP11ETSEventTag - 0x40209240 0x5a e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x4020957c 0x5a e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) 0x66 (size before relaxing) - *fill* 0x4020929a 0x2 + *fill* 0x402095d6 0x2 .text.esp_yield - 0x4020929c 0x2d e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x402095d8 0x2d e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) 0x31 (size before relaxing) - 0x402092a4 esp_yield - *fill* 0x402092c9 0x3 + 0x402095e0 esp_yield + *fill* 0x40209605 0x3 .text.esp_schedule - 0x402092cc 0x1c e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - 0x402092d0 esp_schedule + 0x40209608 0x1c e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x4020960c esp_schedule .text._Z9init_donev - 0x402092e8 0x3d e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x40209624 0x3d e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) 0x4d (size before relaxing) - 0x402092f0 init_done() - *fill* 0x40209325 0x3 + 0x4020962c init_done() + *fill* 0x40209661 0x3 .text._ZL12loop_wrapperv - 0x40209328 0x34 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x40209664 0x34 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) 0x54 (size before relaxing) - .text.__yield 0x4020935c 0x38 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + .text.__yield 0x40209698 0x38 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) 0x53 (size before relaxing) - 0x40209364 __yield - 0x40209364 yield - *fill* 0x40209394 0x0 + 0x402096a0 __yield + 0x402096a0 yield + *fill* 0x402096d0 0x0 .text.optimistic_yield - 0x40209394 0x36 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x402096d0 0x36 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) 0x4a (size before relaxing) - 0x40209394 optimistic_yield - *fill* 0x402093ca 0x2 + 0x402096d0 optimistic_yield + *fill* 0x40209706 0x2 .text.user_init - 0x402093cc 0x5c e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x40209708 0x5c e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) 0x90 (size before relaxing) - 0x402093e0 user_init + 0x4020971c user_init .text.strnlen_P - 0x40209428 0x37 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + 0x40209764 0x37 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) 0x3b (size before relaxing) - 0x40209428 strnlen_P - *fill* 0x4020945f 0x1 + 0x40209764 strnlen_P + *fill* 0x4020979b 0x1 .text.memcpy_P - 0x40209460 0x3b e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + 0x4020979c 0x3b e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) 0x3f (size before relaxing) - 0x40209460 memcpy_P - *fill* 0x4020949b 0x1 + 0x4020979c memcpy_P + *fill* 0x402097d7 0x1 .text.memccpy_P - 0x4020949c 0x45 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + 0x402097d8 0x45 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) 0x49 (size before relaxing) - 0x4020949c memccpy_P - *fill* 0x402094e1 0x3 + 0x402097d8 memccpy_P + *fill* 0x4020981d 0x3 .text.strncpy_P - 0x402094e4 0x61 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + 0x40209820 0x61 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) 0x69 (size before relaxing) - 0x402094e4 strncpy_P - *fill* 0x40209545 0x3 + 0x40209820 strncpy_P + *fill* 0x40209881 0x3 .text.vsnprintf_P - 0x40209548 0x5f e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + 0x40209884 0x5f e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) 0x83 (size before relaxing) - 0x40209548 vsnprintf_P - *fill* 0x402095a7 0x1 + 0x40209884 vsnprintf_P + *fill* 0x402098e3 0x1 .text._ZN10WiFiServerD2Ev - 0x402095a8 0x7 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x402098e4 0x7 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0xb (size before relaxing) - 0x402095a8 WiFiServer::~WiFiServer() - 0x402095a8 WiFiServer::~WiFiServer() - *fill* 0x402095af 0x1 + 0x402098e4 WiFiServer::~WiFiServer() + 0x402098e4 WiFiServer::~WiFiServer() + *fill* 0x402098eb 0x1 .text._ZN10WiFiServerD0Ev - 0x402095b0 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x402098ec 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0x1f (size before relaxing) - 0x402095b0 WiFiServer::~WiFiServer() - *fill* 0x402095c7 0x1 + 0x402098ec WiFiServer::~WiFiServer() + *fill* 0x40209903 0x1 .text._ZN10WiFiServerC2Et - 0x402095c8 0x34 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x40209904 0x34 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0x3c (size before relaxing) - 0x402095c8 WiFiServer::WiFiServer(unsigned short) - 0x402095c8 WiFiServer::WiFiServer(unsigned short) + 0x40209904 WiFiServer::WiFiServer(unsigned short) + 0x40209904 WiFiServer::WiFiServer(unsigned short) .text._ZN10WiFiServer10getNoDelayEv - 0x402095fc 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x40209938 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0x23 (size before relaxing) - 0x402095fc WiFiServer::getNoDelay() - *fill* 0x40209617 0x1 + 0x40209938 WiFiServer::getNoDelay() + *fill* 0x40209953 0x1 .text._ZN10WiFiServer5closeEv - 0x40209618 0x21 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x40209954 0x21 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0x25 (size before relaxing) - 0x40209618 WiFiServer::close() - *fill* 0x40209639 0x3 + 0x40209954 WiFiServer::close() + *fill* 0x40209975 0x3 .text._ZN10WiFiServer5beginEt - 0x4020963c 0x7b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x40209978 0x7b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0xa7 (size before relaxing) - 0x40209640 WiFiServer::begin(unsigned short) - *fill* 0x402096b7 0x1 + 0x4020997c WiFiServer::begin(unsigned short) + *fill* 0x402099f3 0x1 .text._ZN10WiFiServer5beginEv - 0x402096b8 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x402099f4 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0x1b (size before relaxing) - 0x402096b8 WiFiServer::begin() - *fill* 0x402096cf 0x1 + 0x402099f4 WiFiServer::begin() + *fill* 0x40209a0b 0x1 .text._ZN10WiFiServer7_acceptEP7tcp_pcbl - 0x402096d0 0x99 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x40209a0c 0x99 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0xed (size before relaxing) - 0x402096d4 WiFiServer::_accept(tcp_pcb*, long) - *fill* 0x40209769 0x3 + 0x40209a10 WiFiServer::_accept(tcp_pcb*, long) + *fill* 0x40209aa5 0x3 .text._ZN10WiFiServer9_s_acceptEPvP7tcp_pcbl - 0x4020976c 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x40209aa8 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0x17 (size before relaxing) - 0x4020976c WiFiServer::_s_accept(void*, tcp_pcb*, long) - *fill* 0x4020977b 0x1 + 0x40209aa8 WiFiServer::_s_accept(void*, tcp_pcb*, long) + *fill* 0x40209ab7 0x1 .text._ZN10WiFiServer9availableEPh - 0x4020977c 0x52 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x40209ab8 0x52 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0x82 (size before relaxing) - 0x4020977c WiFiServer::available(unsigned char*) - *fill* 0x402097ce 0x2 + 0x40209ab8 WiFiServer::available(unsigned char*) + *fill* 0x40209b0a 0x2 .text._ZN7WiFiUDP7stopAllEv - 0x402097d0 0x2b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) - 0x402097d4 WiFiUDP::stopAll() - *fill* 0x402097fb 0x1 + 0x40209b0c 0x2b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) + 0x40209b10 WiFiUDP::stopAll() + *fill* 0x40209b37 0x1 .text._ZNSt17_Function_handlerIFvvEPS0_E9_M_invokeERKSt9_Any_data - 0x402097fc 0x11 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0x402097fc std::_Function_handler::_M_invoke(std::_Any_data const&) - *fill* 0x4020980d 0x3 + 0x40209b38 0x11 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x40209b38 std::_Function_handler::_M_invoke(std::_Any_data const&) + *fill* 0x40209b49 0x3 .text._ZNSt14_Function_base13_Base_managerIPFvvEE10_M_managerERSt9_Any_dataRKS4_St18_Manager_operation - 0x40209810 0x14 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0x40209810 std::_Function_base::_Base_manager::_M_manager(std::_Any_data&, std::_Any_data const&, std::_Manager_operation) - *fill* 0x40209824 0x0 - *fill* 0x40209824 0x0 - *fill* 0x40209824 0x0 - *fill* 0x40209824 0x0 - *fill* 0x40209824 0x0 - *fill* 0x40209824 0x0 - *fill* 0x40209824 0x0 - *fill* 0x40209824 0x0 - .text._ZN11EEPROMClass4readEi - 0x40209824 0x1c e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - 0x40209824 EEPROMClass::read(int) - *fill* 0x40209840 0x0 - *fill* 0x40209840 0x0 - *fill* 0x40209840 0x0 - *fill* 0x40209840 0x0 - *fill* 0x40209840 0x0 + 0x40209b4c 0x14 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x40209b4c std::_Function_base::_Base_manager::_M_manager(std::_Any_data&, std::_Any_data const&, std::_Manager_operation) + *fill* 0x40209b60 0x0 .text._ZNSt14_Function_baseD2Ev - 0x40209840 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - 0x40209840 std::_Function_base::~_Function_base() - 0x40209840 std::_Function_base::~_Function_base() - *fill* 0x40209857 0x0 - *fill* 0x40209857 0x0 - *fill* 0x40209857 0x0 - *fill* 0x40209857 0x0 - *fill* 0x40209857 0x0 - *fill* 0x40209857 0x1 + 0x40209b60 0x17 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x40209b60 std::_Function_base::~_Function_base() + 0x40209b60 std::_Function_base::~_Function_base() + *fill* 0x40209b77 0x0 + *fill* 0x40209b77 0x0 + *fill* 0x40209b77 0x0 + *fill* 0x40209b77 0x0 + *fill* 0x40209b77 0x0 + *fill* 0x40209b77 0x0 + *fill* 0x40209b77 0x0 + *fill* 0x40209b77 0x0 + *fill* 0x40209b77 0x0 + *fill* 0x40209b77 0x0 + *fill* 0x40209b77 0x1 + .text._ZN11EEPROMClass4readEi + 0x40209b78 0x1c e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + 0x40209b78 EEPROMClass::read(int) + .text._ZN11EEPROMClass5writeEih + 0x40209b94 0x22 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + 0x40209b94 EEPROMClass::write(int, unsigned char) + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x0 + *fill* 0x40209bb6 0x2 .text._ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE0EED2Ev - 0x40209858 0x39 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - 0x40209858 std::__shared_count<(__gnu_cxx::_Lock_policy)0>::~__shared_count() - 0x40209858 std::__shared_count<(__gnu_cxx::_Lock_policy)0>::~__shared_count() - *fill* 0x40209891 0x0 - *fill* 0x40209891 0x3 + 0x40209bb8 0x39 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x40209bb8 std::__shared_count<(__gnu_cxx::_Lock_policy)0>::~__shared_count() + 0x40209bb8 std::__shared_count<(__gnu_cxx::_Lock_policy)0>::~__shared_count() + *fill* 0x40209bf1 0x0 + *fill* 0x40209bf1 0x3 .text._ZNSt8functionIFvvEEC2ERKS1_ - 0x40209894 0x21 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - 0x40209894 std::function::function(std::function const&) - 0x40209894 std::function::function(std::function const&) - *fill* 0x402098b5 0x0 - *fill* 0x402098b5 0x0 - *fill* 0x402098b5 0x0 - *fill* 0x402098b5 0x0 - *fill* 0x402098b5 0x0 - *fill* 0x402098b5 0x3 + 0x40209bf4 0x21 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x40209bf4 std::function::function(std::function const&) + 0x40209bf4 std::function::function(std::function const&) + *fill* 0x40209c15 0x0 + *fill* 0x40209c15 0x0 + *fill* 0x40209c15 0x0 + *fill* 0x40209c15 0x0 + *fill* 0x40209c15 0x0 + *fill* 0x40209c15 0x3 .text._ZN5Print5flushEv - 0x402098b8 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x402098b8 Print::flush() - *fill* 0x402098ba 0x2 + 0x40209c18 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209c18 Print::flush() + *fill* 0x40209c1a 0x2 .text._ZN6Stream9readBytesEPhj - 0x402098bc 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x402098bc Stream::readBytes(unsigned char*, unsigned int) - *fill* 0x402098cf 0x0 - *fill* 0x402098cf 0x1 + 0x40209c1c 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209c1c Stream::readBytes(unsigned char*, unsigned int) + *fill* 0x40209c2f 0x0 + *fill* 0x40209c2f 0x1 .text._ZN16BufferDataSource9availableEv - 0x402098d0 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x402098d0 BufferDataSource::available() - *fill* 0x402098d9 0x3 + 0x40209c30 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209c30 BufferDataSource::available() + *fill* 0x40209c39 0x3 .text._ZN10WiFiClient7connectE6Stringt - 0x402098dc 0x18 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x402098dc WiFiClient::connect(String, unsigned short) + 0x40209c3c 0x18 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209c3c WiFiClient::connect(String, unsigned short) .text._ZN10WiFiClient5writeEh - 0x402098f4 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x402098f4 WiFiClient::write(unsigned char) - *fill* 0x4020990f 0x1 + 0x40209c54 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209c54 WiFiClient::write(unsigned char) + *fill* 0x40209c6f 0x1 .text._ZN10WiFiClient4peekEv - 0x40209910 0x31 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x40209910 WiFiClient::peek() - *fill* 0x40209941 0x3 + 0x40209c70 0x31 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209c70 WiFiClient::peek() + *fill* 0x40209ca1 0x3 .text._ZN10WiFiClient9connectedEv - 0x40209944 0x3f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x40209944 WiFiClient::connected() - *fill* 0x40209983 0x1 + 0x40209ca4 0x3f e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209ca4 WiFiClient::connected() + *fill* 0x40209ce3 0x1 .text._ZN10WiFiClientcvbEv - 0x40209984 0x1c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x40209984 WiFiClient::operator bool() - *fill* 0x402099a0 0x0 + 0x40209ce4 0x1c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209ce4 WiFiClient::operator bool() + *fill* 0x40209d00 0x0 .text._ZN24BufferedStreamDataSourceI13ProgmemStreamE9availableEv - 0x402099a0 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x402099a0 BufferedStreamDataSource::available() - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x0 - *fill* 0x402099a9 0x3 + 0x40209d00 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209d00 BufferedStreamDataSource::available() + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x0 + *fill* 0x40209d09 0x3 .text._ZN10WiFiClient10setNoDelayEb - 0x402099ac 0x23 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x402099ac WiFiClient::setNoDelay(bool) - *fill* 0x402099cf 0x1 + 0x40209d0c 0x23 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209d0c WiFiClient::setNoDelay(bool) + *fill* 0x40209d2f 0x1 .text._ZN10WiFiClient7setSyncEb - 0x402099d0 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x402099d0 WiFiClient::setSync(bool) - *fill* 0x402099dc 0x0 - *fill* 0x402099dc 0x0 - *fill* 0x402099dc 0x0 - *fill* 0x402099dc 0x0 - *fill* 0x402099dc 0x0 - *fill* 0x402099dc 0x0 - *fill* 0x402099dc 0x0 + 0x40209d30 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209d30 WiFiClient::setSync(bool) + *fill* 0x40209d3c 0x0 + *fill* 0x40209d3c 0x0 + *fill* 0x40209d3c 0x0 + *fill* 0x40209d3c 0x0 + *fill* 0x40209d3c 0x0 + *fill* 0x40209d3c 0x0 + *fill* 0x40209d3c 0x0 .text._ZN14RequestHandler9canHandleE10HTTPMethod6String - 0x402099dc 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - 0x402099dc RequestHandler::canHandle(HTTPMethod, String) + 0x40209d3c 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40209d3c RequestHandler::canHandle(HTTPMethod, String) .text._ZN14RequestHandler9canUploadE6String - 0x402099e0 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - 0x402099e0 RequestHandler::canUpload(String) + 0x40209d40 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40209d40 RequestHandler::canUpload(String) .text._ZN14RequestHandler6handleER16ESP8266WebServer10HTTPMethod6String - 0x402099e4 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - 0x402099e4 RequestHandler::handle(ESP8266WebServer&, HTTPMethod, String) + 0x40209d44 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40209d44 RequestHandler::handle(ESP8266WebServer&, HTTPMethod, String) .text._ZN14RequestHandler6uploadER16ESP8266WebServer6StringR10HTTPUpload - 0x402099e8 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - 0x402099e8 RequestHandler::upload(ESP8266WebServer&, String, HTTPUpload&) - *fill* 0x402099ea 0x0 - *fill* 0x402099ea 0x0 - *fill* 0x402099ea 0x0 - *fill* 0x402099ea 0x0 - *fill* 0x402099ea 0x0 - *fill* 0x402099ea 0x0 - *fill* 0x402099ea 0x0 - *fill* 0x402099ea 0x0 - *fill* 0x402099ea 0x2 + 0x40209d48 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40209d48 RequestHandler::upload(ESP8266WebServer&, String, HTTPUpload&) + *fill* 0x40209d4a 0x0 + *fill* 0x40209d4a 0x0 + *fill* 0x40209d4a 0x0 + *fill* 0x40209d4a 0x0 + *fill* 0x40209d4a 0x0 + *fill* 0x40209d4a 0x0 + *fill* 0x40209d4a 0x0 + *fill* 0x40209d4a 0x0 + *fill* 0x40209d4a 0x2 .text._ZN5Print5writeEPKcj - 0x402099ec 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - 0x402099ec Print::write(char const*, unsigned int) - *fill* 0x402099ff 0x0 - *fill* 0x402099ff 0x0 - *fill* 0x402099ff 0x0 - *fill* 0x402099ff 0x0 - *fill* 0x402099ff 0x0 - *fill* 0x402099ff 0x1 + 0x40209d4c 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40209d4c Print::write(char const*, unsigned int) + *fill* 0x40209d5f 0x0 + *fill* 0x40209d5f 0x0 + *fill* 0x40209d5f 0x0 + *fill* 0x40209d5f 0x0 + *fill* 0x40209d5f 0x0 + *fill* 0x40209d5f 0x1 .text._ZN16ESP8266WebServer18_addRequestHandlerEP14RequestHandler - 0x40209a00 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - 0x40209a00 ESP8266WebServer::_addRequestHandler(RequestHandler*) - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x0 - *fill* 0x40209a13 0x1 + 0x40209d60 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x40209d60 ESP8266WebServer::_addRequestHandler(RequestHandler*) + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x0 + *fill* 0x40209d73 0x1 .text._ZNSt17_Function_handlerIFvR6StringS1_RKS0_iiiiE14nullArgHandlerE9_M_invokeERKSt9_Any_dataS1_S1_S3_iiii - 0x40209a14 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - 0x40209a14 std::_Function_handler::_M_invoke(std::_Any_data const&, String&, String&, String const&, int, int, int, int) - *fill* 0x40209a16 0x0 - *fill* 0x40209a16 0x0 - *fill* 0x40209a16 0x0 - *fill* 0x40209a16 0x0 - *fill* 0x40209a16 0x0 - *fill* 0x40209a16 0x0 - *fill* 0x40209a16 0x0 - *fill* 0x40209a16 0x0 - *fill* 0x40209a16 0x0 - *fill* 0x40209a16 0x0 - *fill* 0x40209a16 0x2 + 0x40209d74 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x40209d74 std::_Function_handler::_M_invoke(std::_Any_data const&, String&, String&, String const&, int, int, int, int) + *fill* 0x40209d76 0x0 + *fill* 0x40209d76 0x0 + *fill* 0x40209d76 0x0 + *fill* 0x40209d76 0x0 + *fill* 0x40209d76 0x0 + *fill* 0x40209d76 0x0 + *fill* 0x40209d76 0x0 + *fill* 0x40209d76 0x0 + *fill* 0x40209d76 0x0 + *fill* 0x40209d76 0x0 + *fill* 0x40209d76 0x2 .text._ZN13MDNSResponder17_getAnswerFromIdxEi - 0x40209a18 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - 0x40209a18 MDNSResponder::_getAnswerFromIdx(int) - *fill* 0x40209a33 0x1 + 0x40209d78 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x40209d78 MDNSResponder::_getAnswerFromIdx(int) + *fill* 0x40209d93 0x1 .text._ZN13MDNSResponder14_getNumAnswersEv - 0x40209a34 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - 0x40209a34 MDNSResponder::_getNumAnswers() - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x0 - *fill* 0x40209a45 0x3 + 0x40209d94 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x40209d94 MDNSResponder::_getNumAnswers() + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x0 + *fill* 0x40209da5 0x3 .text._ZN8EspClass18magicFlashChipModeEh - 0x40209a48 0xe e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - 0x40209a48 EspClass::magicFlashChipMode(unsigned char) - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x0 - *fill* 0x40209a56 0x2 + 0x40209da8 0xe e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x40209da8 EspClass::magicFlashChipMode(unsigned char) + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x0 + *fill* 0x40209db6 0x2 .text._ZN9IPAddress10fromStringEPKc - 0x40209a58 0x5e e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - 0x40209a58 IPAddress::fromString(char const*) - *fill* 0x40209ab6 0x2 + 0x40209db8 0x5e e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + 0x40209db8 IPAddress::fromString(char const*) + *fill* 0x40209e16 0x2 .text._ZN9IPAddressaSEj - 0x40209ab8 0x4 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - 0x40209ab8 IPAddress::operator=(unsigned int) - *fill* 0x40209abc 0x0 - *fill* 0x40209abc 0x0 - *fill* 0x40209abc 0x0 - *fill* 0x40209abc 0x0 - *fill* 0x40209abc 0x0 + 0x40209e18 0x4 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + 0x40209e18 IPAddress::operator=(unsigned int) + *fill* 0x40209e1c 0x0 + *fill* 0x40209e1c 0x0 + *fill* 0x40209e1c 0x0 + *fill* 0x40209e1c 0x0 + *fill* 0x40209e1c 0x0 .text._ZN5Print5writeEPKhj - 0x40209abc 0x3e e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - 0x40209abc Print::write(unsigned char const*, unsigned int) - *fill* 0x40209afa 0x0 - *fill* 0x40209afa 0x0 - *fill* 0x40209afa 0x0 - *fill* 0x40209afa 0x2 + 0x40209e1c 0x3e e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40209e1c Print::write(unsigned char const*, unsigned int) + *fill* 0x40209e5a 0x0 + *fill* 0x40209e5a 0x0 + *fill* 0x40209e5a 0x0 + *fill* 0x40209e5a 0x2 .text._ZN5Print5printEPK19__FlashStringHelper - 0x40209afc 0x4b e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - 0x40209afc Print::print(__FlashStringHelper const*) - *fill* 0x40209b47 0x1 + 0x40209e5c 0x4b e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40209e5c Print::print(__FlashStringHelper const*) + *fill* 0x40209ea7 0x0 + *fill* 0x40209ea7 0x1 .text._ZN5Print5printEc - 0x40209b48 0x17 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - 0x40209b48 Print::print(char) - *fill* 0x40209b5f 0x0 - *fill* 0x40209b5f 0x0 - *fill* 0x40209b5f 0x0 - *fill* 0x40209b5f 0x0 - *fill* 0x40209b5f 0x1 + 0x40209ea8 0x17 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x40209ea8 Print::print(char) + *fill* 0x40209ebf 0x0 + *fill* 0x40209ebf 0x0 + *fill* 0x40209ebf 0x0 + *fill* 0x40209ebf 0x0 + *fill* 0x40209ebf 0x0 + *fill* 0x40209ebf 0x0 + *fill* 0x40209ebf 0x0 + *fill* 0x40209ebf 0x1 .text._ZNSt8functionIFvvEE4swapERS1_ - 0x40209b60 0x28 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) - 0x40209b60 std::function::swap(std::function&) - *fill* 0x40209b88 0x0 - *fill* 0x40209b88 0x0 - *fill* 0x40209b88 0x0 - *fill* 0x40209b88 0x0 - *fill* 0x40209b88 0x0 - *fill* 0x40209b88 0x0 - *fill* 0x40209b88 0x0 + 0x40209ec0 0x28 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + 0x40209ec0 std::function::swap(std::function&) + *fill* 0x40209ee8 0x0 + *fill* 0x40209ee8 0x0 + *fill* 0x40209ee8 0x0 + *fill* 0x40209ee8 0x0 + *fill* 0x40209ee8 0x0 + *fill* 0x40209ee8 0x0 + *fill* 0x40209ee8 0x0 .text._ZN6Stream10setTimeoutEm - 0x40209b88 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) - 0x40209b88 Stream::setTimeout(unsigned long) - *fill* 0x40209b8c 0x0 + 0x40209ee8 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + 0x40209ee8 Stream::setTimeout(unsigned long) + *fill* 0x40209eec 0x0 .text._ZN12StreamString9availableEv - 0x40209b8c 0xc e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) - 0x40209b8c StreamString::available() + 0x40209eec 0xc e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + 0x40209eec StreamString::available() .text._ZN12StreamString5flushEv - 0x40209b98 0x2 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) - 0x40209b98 StreamString::flush() - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x0 - *fill* 0x40209b9a 0x2 + 0x40209ef8 0x2 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + 0x40209ef8 StreamString::flush() + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x0 + *fill* 0x40209efa 0x2 .text._ZNK6String18equalsConstantTimeERKS_ - 0x40209b9c 0x44 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - 0x40209b9c String::equalsConstantTime(String const&) const - *fill* 0x40209be0 0x0 - *fill* 0x40209be0 0x0 - *fill* 0x40209be0 0x0 + 0x40209efc 0x44 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209efc String::equalsConstantTime(String const&) const + *fill* 0x40209f40 0x0 + *fill* 0x40209f40 0x0 + *fill* 0x40209f40 0x0 .text._ZNK6StringixEj - 0x40209be0 0x15 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - 0x40209be0 String::operator[](unsigned int) const - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x0 - *fill* 0x40209bf5 0x3 + 0x40209f40 0x15 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x40209f40 String::operator[](unsigned int) const + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x0 + *fill* 0x40209f55 0x3 .text.initVariant - 0x40209bf8 0x2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - 0x40209bf8 initVariant - *fill* 0x40209bfa 0x2 + 0x40209f58 0x2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x40209f58 initVariant + *fill* 0x40209f5a 0x2 .text._Z24preloop_update_frequencyv - 0x40209bfc 0x2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - 0x40209bfc preloop_update_frequency() - *fill* 0x40209bfe 0x0 - *fill* 0x40209bfe 0x0 - *fill* 0x40209bfe 0x0 - *fill* 0x40209bfe 0x0 - *fill* 0x40209bfe 0x2 + 0x40209f5c 0x2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x40209f5c preloop_update_frequency() + *fill* 0x40209f5e 0x0 + *fill* 0x40209f5e 0x0 + *fill* 0x40209f5e 0x0 + *fill* 0x40209f5e 0x0 + *fill* 0x40209f5e 0x2 .text.pgm_read_byte_inlined - 0x40209c00 0x16 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) - *fill* 0x40209c16 0x0 - *fill* 0x40209c16 0x0 - *fill* 0x40209c16 0x0 - *fill* 0x40209c16 0x0 - *fill* 0x40209c16 0x0 - *fill* 0x40209c16 0x0 - *fill* 0x40209c16 0x2 + 0x40209f60 0x16 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + *fill* 0x40209f76 0x0 + *fill* 0x40209f76 0x0 + *fill* 0x40209f76 0x0 + *fill* 0x40209f76 0x0 + *fill* 0x40209f76 0x0 + *fill* 0x40209f76 0x0 + *fill* 0x40209f76 0x2 .text._ZN10WiFiServer5writeEh - 0x40209c18 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) - 0x40209c18 WiFiServer::write(unsigned char) - *fill* 0x40209c33 0x1 + 0x40209f78 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x40209f78 WiFiServer::write(unsigned char) + *fill* 0x40209f93 0x1 .text._ZN10WiFiServer5writeEPKhj - 0x40209c34 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) - 0x40209c34 WiFiServer::write(unsigned char const*, unsigned int) + 0x40209f94 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x40209f94 WiFiServer::write(unsigned char const*, unsigned int) .text._ZN10WiFiServer10_s_discardEPvP13ClientContext - 0x40209c38 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) - 0x40209c38 WiFiServer::_s_discard(void*, ClientContext*) - *fill* 0x40209c3a 0x0 - *fill* 0x40209c3a 0x0 - *fill* 0x40209c3a 0x0 - *fill* 0x40209c3a 0x0 - *fill* 0x40209c3a 0x0 - *fill* 0x40209c3a 0x0 - *fill* 0x40209c3a 0x0 - *fill* 0x40209c3a 0x0 - *fill* 0x40209c3a 0x0 + 0x40209f98 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x40209f98 WiFiServer::_s_discard(void*, ClientContext*) + *fill* 0x40209f9a 0x0 + *fill* 0x40209f9a 0x0 + *fill* 0x40209f9a 0x0 + *fill* 0x40209f9a 0x0 + *fill* 0x40209f9a 0x0 + *fill* 0x40209f9a 0x0 + *fill* 0x40209f9a 0x0 + *fill* 0x40209f9a 0x0 + *fill* 0x40209f9a 0x0 *(.rodata._ZTV*) - *fill* 0x40209c3a 0x6 + *fill* 0x40209f9a 0x6 .rodata._ZTV10DataSource - 0x40209c40 0x1c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x40209c40 vtable for DataSource - *fill* 0x40209c5c 0x4 + 0x40209fa0 0x1c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209fa0 vtable for DataSource + *fill* 0x40209fbc 0x4 .rodata._ZTV16BufferDataSource - 0x40209c60 0x1c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x40209c60 vtable for BufferDataSource - *fill* 0x40209c7c 0x4 + 0x40209fc0 0x1c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209fc0 vtable for BufferDataSource + *fill* 0x40209fdc 0x4 .rodata._ZTV24BufferedStreamDataSourceI13ProgmemStreamE - 0x40209c80 0x1c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x40209c80 vtable for BufferedStreamDataSource - *fill* 0x40209c9c 0x4 + 0x40209fe0 0x1c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x40209fe0 vtable for BufferedStreamDataSource + *fill* 0x40209ffc 0x4 .rodata._ZTV10WiFiClient - 0x40209ca0 0x58 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x40209ca0 vtable for WiFiClient + 0x4020a000 0x58 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4020a000 vtable for WiFiClient .rodata._ZTV14RequestHandler - 0x40209cf8 0x20 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - 0x40209cf8 vtable for RequestHandler + 0x4020a058 0x20 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020a058 vtable for RequestHandler .rodata._ZTV22FunctionRequestHandler - 0x40209d18 0x20 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - 0x40209d18 vtable for FunctionRequestHandler + 0x4020a078 0x20 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020a078 vtable for FunctionRequestHandler .rodata._ZTV16ESP8266WebServer - 0x40209d38 0x2c e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - 0x40209d38 vtable for ESP8266WebServer - *fill* 0x40209d64 0x4 + 0x4020a098 0x2c e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4020a098 vtable for ESP8266WebServer + *fill* 0x4020a0c4 0x4 .rodata._ZTV14HardwareSerial - 0x40209d68 0x30 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - 0x40209d68 vtable for HardwareSerial + 0x4020a0c8 0x30 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x4020a0c8 vtable for HardwareSerial .rodata._ZTV9IPAddress - 0x40209d98 0xc e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - 0x40209d98 vtable for IPAddress - *fill* 0x40209da4 0x4 + 0x4020a0f8 0xc e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + 0x4020a0f8 vtable for IPAddress + *fill* 0x4020a104 0x4 .rodata._ZTV6Stream - 0x40209da8 0x28 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) - 0x40209da8 vtable for Stream + 0x4020a108 0x28 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + 0x4020a108 vtable for Stream .rodata._ZTV12StreamString - 0x40209dd0 0x28 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) - 0x40209dd0 vtable for StreamString + 0x4020a130 0x28 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + 0x4020a130 vtable for StreamString .rodata._ZTV10WiFiServer - 0x40209df8 0x20 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) - 0x40209df8 vtable for WiFiServer + 0x4020a158 0x20 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x4020a158 vtable for WiFiServer *libc.a:(.literal .text .literal.* .text.*) - .literal 0x40209e18 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) + .literal 0x4020a178 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) 0x8 (size before relaxing) - .literal 0x40209e18 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) + .literal 0x4020a178 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) 0x8 (size before relaxing) - .literal 0x40209e18 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) - .literal 0x40209e1c 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) + .literal 0x4020a178 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) + .literal 0x4020a17c 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) 0x4 (size before relaxing) - .literal 0x40209e1c 0x24 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + .literal 0x4020a17c 0x24 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) 0x5c (size before relaxing) - .literal 0x40209e40 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + .literal 0x4020a1a0 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) 0x14 (size before relaxing) - .literal 0x40209e48 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) + .literal 0x4020a1a8 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) 0x1c (size before relaxing) - .literal 0x40209e50 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) + .literal 0x4020a1b0 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) 0x14 (size before relaxing) - .literal 0x40209e54 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) - .literal 0x40209e58 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) + .literal 0x4020a1b4 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) + .literal 0x4020a1b8 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) 0x14 (size before relaxing) - .literal 0x40209e58 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) + .literal 0x4020a1b8 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) 0x4 (size before relaxing) - .literal 0x40209e58 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) + .literal 0x4020a1b8 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) 0x20 (size before relaxing) - .literal 0x40209e70 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) + .literal 0x4020a1d0 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) 0xc (size before relaxing) - .literal 0x40209e70 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) + .literal 0x4020a1d0 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) 0xc (size before relaxing) - .literal 0x40209e70 0xbc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + .literal 0x4020a1d0 0xbc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) 0x1f8 (size before relaxing) .literal.unlikely - 0x40209f2c 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + 0x4020a28c 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) 0xc (size before relaxing) - .literal 0x40209f2c 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) + .literal 0x4020a28c 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) 0x18 (size before relaxing) - .literal 0x40209f2c 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) + .literal 0x4020a28c 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) 0x4 (size before relaxing) - .literal 0x40209f2c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) + .literal 0x4020a28c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) 0x10 (size before relaxing) - .literal 0x40209f30 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) + .literal 0x4020a290 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) 0x8 (size before relaxing) - .literal 0x40209f30 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + .literal 0x4020a290 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) 0x214 (size before relaxing) - .literal 0x40209f78 0x2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + .literal 0x4020a2d8 0x2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) 0x80 (size before relaxing) - .literal 0x40209fa4 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) + .literal 0x4020a304 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) 0x48 (size before relaxing) - .literal 0x40209fa4 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) + .literal 0x4020a304 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) 0x4 (size before relaxing) - .literal 0x40209fa4 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) + .literal 0x4020a304 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) 0x30 (size before relaxing) - .literal 0x40209fc0 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + .literal 0x4020a320 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) 0x74 (size before relaxing) - .literal 0x40209fdc 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) + .literal 0x4020a33c 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) 0x54 (size before relaxing) - .literal 0x40209ff0 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) + .literal 0x4020a350 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) 0x60 (size before relaxing) - .literal 0x4020a00c 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) + .literal 0x4020a36c 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) 0x24 (size before relaxing) - .literal 0x4020a020 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) + .literal 0x4020a380 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) 0x28 (size before relaxing) - .literal 0x4020a024 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) + .literal 0x4020a384 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) 0x1c (size before relaxing) - .literal 0x4020a024 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) + .literal 0x4020a384 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) 0x3c (size before relaxing) - .literal 0x4020a024 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) + .literal 0x4020a384 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) 0x38 (size before relaxing) - .literal 0x4020a02c 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) + .literal 0x4020a38c 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) 0x2c (size before relaxing) - .literal 0x4020a02c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) + .literal 0x4020a38c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) 0x40 (size before relaxing) - .literal 0x4020a030 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) + .literal 0x4020a390 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) 0x20 (size before relaxing) - .literal 0x4020a03c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) + .literal 0x4020a39c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) 0x10 (size before relaxing) - .literal 0x4020a040 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) + .literal 0x4020a3a0 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) 0x8 (size before relaxing) - .literal 0x4020a040 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) + .literal 0x4020a3a0 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) 0x8 (size before relaxing) - .literal 0x4020a040 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) + .literal 0x4020a3a0 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) 0x18 (size before relaxing) - .text 0x4020a048 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) + .text 0x4020a3a8 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) 0x2f (size before relaxing) - 0x4020a048 atoi - 0x4020a05c _atoi_r - *fill* 0x4020a06f 0x1 - .text 0x4020a070 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) + 0x4020a3a8 atoi + 0x4020a3bc _atoi_r + *fill* 0x4020a3cf 0x1 + .text 0x4020a3d0 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) 0x2f (size before relaxing) - 0x4020a070 atol - 0x4020a084 _atol_r - *fill* 0x4020a097 0x1 - .text 0x4020a098 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) - 0x4020a098 isspace - *fill* 0x4020a0a9 0x3 - .text 0x4020a0ac 0x57 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) - 0x4020a0ac __itoa - 0x4020a0f4 itoa - *fill* 0x4020a103 0x1 - .text 0x4020a104 0x6a0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + 0x4020a3d0 atol + 0x4020a3e4 _atol_r + *fill* 0x4020a3f7 0x1 + .text 0x4020a3f8 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) + 0x4020a3f8 isspace + *fill* 0x4020a409 0x3 + .text 0x4020a40c 0x57 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) + 0x4020a40c __itoa + 0x4020a454 itoa + *fill* 0x4020a463 0x1 + .text 0x4020a464 0x6a0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) 0x6b0 (size before relaxing) - 0x4020a104 __cvt - 0x4020a204 __exponent - 0x4020a2a0 _printf_float - .text 0x4020a7a4 0x4bb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + 0x4020a464 __cvt + 0x4020a564 __exponent + 0x4020a600 _printf_float + .text 0x4020ab04 0x4bb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) 0x4bf (size before relaxing) - 0x4020a7a4 _printf_common - 0x4020a8ac _printf_i - *fill* 0x4020ac5f 0x1 - .text 0x4020ac60 0x4bc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) + 0x4020ab04 _printf_common + 0x4020ac0c _printf_i + *fill* 0x4020afbf 0x1 + .text 0x4020afc0 0x4bc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) 0x4c4 (size before relaxing) - 0x4020ac60 _scanf_float - .text 0x4020b11c 0x99 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) - 0x4020b11c _printf_r - 0x4020b11c _iprintf_r - 0x4020b168 iprintf - 0x4020b168 printf - *fill* 0x4020b1b5 0x3 - .text 0x4020b1b8 0x5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) - 0x4020b1b8 nanf - *fill* 0x4020b1bd 0x3 - .text 0x4020b1c0 0xb5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) + 0x4020afc0 _scanf_float + .text 0x4020b47c 0x99 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) + 0x4020b47c _printf_r + 0x4020b47c _iprintf_r + 0x4020b4c8 iprintf + 0x4020b4c8 printf + *fill* 0x4020b515 0x3 + .text 0x4020b518 0x5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) + 0x4020b518 nanf + *fill* 0x4020b51d 0x3 + .text 0x4020b520 0xb5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) 0xb9 (size before relaxing) - 0x4020b1c0 _sprintf_r - 0x4020b1c0 _siprintf_r - 0x4020b218 siprintf - 0x4020b218 sprintf - *fill* 0x4020b275 0x3 - .text 0x4020b278 0x42 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) - 0x4020b278 strcasecmp - *fill* 0x4020b2ba 0x2 - .text 0x4020b2bc 0xff C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) - 0x4020b2bc strcmp - *fill* 0x4020b3bb 0x1 - .text 0x4020b3bc 0x83 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) - 0x4020b3bc strcpy - *fill* 0x4020b43f 0x1 - .text 0x4020b440 0x5b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) - 0x4020b440 strlen - *fill* 0x4020b49b 0x1 - .text 0x4020b49c 0xe03 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + 0x4020b520 _sprintf_r + 0x4020b520 _siprintf_r + 0x4020b578 siprintf + 0x4020b578 sprintf + *fill* 0x4020b5d5 0x3 + .text 0x4020b5d8 0x42 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) + 0x4020b5d8 strcasecmp + *fill* 0x4020b61a 0x2 + .text 0x4020b61c 0xff C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) + 0x4020b61c strcmp + *fill* 0x4020b71b 0x1 + .text 0x4020b71c 0x83 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) + 0x4020b71c strcpy + *fill* 0x4020b79f 0x1 + .text 0x4020b7a0 0x5b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) + 0x4020b7a0 strlen + *fill* 0x4020b7fb 0x1 + .text 0x4020b7fc 0xe03 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) 0xe7b (size before relaxing) - 0x4020b4cc _strtod_r - 0x4020c244 strtod - 0x4020c260 strtof - *fill* 0x4020c29f 0x1 + 0x4020b82c _strtod_r + 0x4020c5a4 strtod + 0x4020c5c0 strtof + *fill* 0x4020c5ff 0x1 .text.unlikely - 0x4020c2a0 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + 0x4020c600 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) 0x41 (size before relaxing) - *fill* 0x4020c2dd 0x3 - .text 0x4020c2e0 0x15f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) - 0x4020c2e0 _strtol_r - 0x4020c420 strtol - *fill* 0x4020c43f 0x1 - .text 0x4020c440 0x17 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) - 0x4020c440 tolower - *fill* 0x4020c457 0x1 - .text 0x4020c458 0xbb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) - 0x4020c458 __utoa - 0x4020c504 utoa - *fill* 0x4020c513 0x1 - .text 0x4020c514 0x97 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) - 0x4020c514 _vsnprintf_r - 0x4020c514 _vsniprintf_r - 0x4020c584 vsniprintf - 0x4020c584 vsnprintf - *fill* 0x4020c5ab 0x1 - .text 0x4020c5ac 0xe12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + *fill* 0x4020c63d 0x3 + .text 0x4020c640 0x15f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) + 0x4020c640 _strtol_r + 0x4020c780 strtol + *fill* 0x4020c79f 0x1 + .text 0x4020c7a0 0x17 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) + 0x4020c7a0 tolower + *fill* 0x4020c7b7 0x1 + .text 0x4020c7b8 0xbb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) + 0x4020c7b8 __utoa + 0x4020c864 utoa + *fill* 0x4020c873 0x1 + .text 0x4020c874 0x97 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) + 0x4020c874 _vsnprintf_r + 0x4020c874 _vsniprintf_r + 0x4020c8e4 vsniprintf + 0x4020c8e4 vsnprintf + *fill* 0x4020c90b 0x1 + .text 0x4020c90c 0xe12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) 0xe7a (size before relaxing) - 0x4020c6ec _dtoa_r - *fill* 0x4020d3be 0x2 - .text 0x4020d3c0 0x2aa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + 0x4020ca4c _dtoa_r + *fill* 0x4020d71e 0x2 + .text 0x4020d720 0x2aa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) 0x2c6 (size before relaxing) - 0x4020d3c0 _cleanup_r - 0x4020d45c __sfmoreglue - 0x4020d4a0 _cleanup - 0x4020d4b4 __sfp_lock_acquire - 0x4020d4cc __sfp_lock_release - 0x4020d4e4 __sinit_lock_acquire - 0x4020d4fc __sinit_lock_release - 0x4020d514 __sinit - 0x4020d584 __sfp - 0x4020d630 __fp_lock_all - 0x4020d650 __fp_unlock_all - *fill* 0x4020d66a 0x2 - .text 0x4020d66c 0x554 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) + 0x4020d720 _cleanup_r + 0x4020d7bc __sfmoreglue + 0x4020d800 _cleanup + 0x4020d814 __sfp_lock_acquire + 0x4020d82c __sfp_lock_release + 0x4020d844 __sinit_lock_acquire + 0x4020d85c __sinit_lock_release + 0x4020d874 __sinit + 0x4020d8e4 __sfp + 0x4020d990 __fp_lock_all + 0x4020d9b0 __fp_unlock_all + *fill* 0x4020d9ca 0x2 + .text 0x4020d9cc 0x554 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) 0x570 (size before relaxing) - 0x4020d6e0 __hexdig_fun - 0x4020d718 __gethex - .text 0x4020dbc0 0x165 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) - 0x4020dbec __hexnan - *fill* 0x4020dd25 0x3 - .text 0x4020dd28 0x8d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) + 0x4020da40 __hexdig_fun + 0x4020da78 __gethex + .text 0x4020df20 0x165 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) + 0x4020df4c __hexnan + *fill* 0x4020e085 0x3 + .text 0x4020e088 0x8d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) 0x95 (size before relaxing) - 0x4020dd28 _setlocale_r - 0x4020dd70 __locale_charset - 0x4020dd78 __locale_mb_cur_max - 0x4020dd80 __locale_msgcharset - 0x4020dd88 __locale_cjk_lang - 0x4020dd8c _localeconv_r - 0x4020dd94 setlocale - 0x4020ddb0 localeconv - *fill* 0x4020ddb5 0x3 - .text 0x4020ddb8 0x966 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + 0x4020e088 _setlocale_r + 0x4020e0d0 __locale_charset + 0x4020e0d8 __locale_mb_cur_max + 0x4020e0e0 __locale_msgcharset + 0x4020e0e8 __locale_cjk_lang + 0x4020e0ec _localeconv_r + 0x4020e0f4 setlocale + 0x4020e110 localeconv + *fill* 0x4020e115 0x3 + .text 0x4020e118 0x966 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) 0x96e (size before relaxing) - 0x4020ddb8 _Balloc - 0x4020de44 _Bfree - 0x4020de8c __multadd - 0x4020df18 __s2b - 0x4020dfb4 __hi0bits - 0x4020dffc __lo0bits - 0x4020e064 __i2b - 0x4020e084 __multiply - 0x4020e1a8 __pow5mult - 0x4020e264 __lshift - 0x4020e324 __mcmp - 0x4020e35c __mdiff - 0x4020e43c __ulp - 0x4020e480 __b2d - 0x4020e540 __d2b - 0x4020e604 __ratio - 0x4020e668 _mprec_log10 - 0x4020e6a4 __copybits - 0x4020e6d4 __any_on - *fill* 0x4020e71e 0x2 - .text 0x4020e720 0x4a1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) + 0x4020e118 _Balloc + 0x4020e1a4 _Bfree + 0x4020e1ec __multadd + 0x4020e278 __s2b + 0x4020e314 __hi0bits + 0x4020e35c __lo0bits + 0x4020e3c4 __i2b + 0x4020e3e4 __multiply + 0x4020e508 __pow5mult + 0x4020e5c4 __lshift + 0x4020e684 __mcmp + 0x4020e6bc __mdiff + 0x4020e79c __ulp + 0x4020e7e0 __b2d + 0x4020e8a0 __d2b + 0x4020e964 __ratio + 0x4020e9c8 _mprec_log10 + 0x4020ea04 __copybits + 0x4020ea34 __any_on + *fill* 0x4020ea7e 0x2 + .text 0x4020ea80 0x4a1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) 0x4b5 (size before relaxing) - 0x4020e720 __ssputs_r - 0x4020e814 __ssprint_r - 0x4020e944 _svfiprintf_r - 0x4020e944 _svfprintf_r - *fill* 0x4020ebc1 0x3 - .text 0x4020ebc4 0x437 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) + 0x4020ea80 __ssputs_r + 0x4020eb74 __ssprint_r + 0x4020eca4 _svfiprintf_r + 0x4020eca4 _svfprintf_r + *fill* 0x4020ef21 0x3 + .text 0x4020ef24 0x437 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) 0x44b (size before relaxing) - 0x4020ebf8 __sfputs_r - 0x4020ec68 __sprint_r - 0x4020ecf8 _vfiprintf_r - 0x4020ecf8 _vfprintf_r - 0x4020efd4 vfprintf - 0x4020efd4 vfiprintf - *fill* 0x4020effb 0x1 - .text 0x4020effc 0xed C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) - 0x4020effc __sread - 0x4020f038 __seofread - 0x4020f03c __swrite - 0x4020f094 __sseek - 0x4020f0d4 __sclose - *fill* 0x4020f0e9 0x3 - .text 0x4020f0ec 0xf3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) + 0x4020ef58 __sfputs_r + 0x4020efc8 __sprint_r + 0x4020f058 _vfiprintf_r + 0x4020f058 _vfprintf_r + 0x4020f334 vfprintf + 0x4020f334 vfiprintf + *fill* 0x4020f35b 0x1 + .text 0x4020f35c 0xed C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) + 0x4020f35c __sread + 0x4020f398 __seofread + 0x4020f39c __swrite + 0x4020f3f4 __sseek + 0x4020f434 __sclose + *fill* 0x4020f449 0x3 + .text 0x4020f44c 0xf3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) 0xff (size before relaxing) - 0x4020f0ec __swbuf_r - 0x4020f1c4 __swbuf - *fill* 0x4020f1df 0x1 - .text 0x4020f1e0 0xeb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) + 0x4020f44c __swbuf_r + 0x4020f524 __swbuf + *fill* 0x4020f53f 0x1 + .text 0x4020f540 0xeb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) 0xef (size before relaxing) - 0x4020f1e0 __swsetup_r - *fill* 0x4020f2cb 0x1 - .text 0x4020f2cc 0xf7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) + 0x4020f540 __swsetup_r + *fill* 0x4020f62b 0x1 + .text 0x4020f62c 0xf7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) 0x10f (size before relaxing) - 0x4020f2cc _fclose_r - 0x4020f3ac fclose - *fill* 0x4020f3c3 0x1 - .text 0x4020f3c4 0x20b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) + 0x4020f62c _fclose_r + 0x4020f70c fclose + *fill* 0x4020f723 0x1 + .text 0x4020f724 0x20b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) 0x217 (size before relaxing) - 0x4020f3c4 __sflush_r - 0x4020f524 _fflush_r - 0x4020f5a8 fflush - *fill* 0x4020f5cf 0x1 - .text 0x4020f5d0 0x192 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) + 0x4020f724 __sflush_r + 0x4020f884 _fflush_r + 0x4020f908 fflush + *fill* 0x4020f92f 0x1 + .text 0x4020f930 0x192 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) 0x19e (size before relaxing) - 0x4020f5d0 __fputwc - 0x4020f69c _fputwc_r - 0x4020f70c fputwc - *fill* 0x4020f762 0x2 - .text 0x4020f764 0x320 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) + 0x4020f930 __fputwc + 0x4020f9fc _fputwc_r + 0x4020fa6c fputwc + *fill* 0x4020fac2 0x2 + .text 0x4020fac4 0x320 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) 0x334 (size before relaxing) - 0x4020f764 __sfvwrite_r - .text 0x4020fa84 0x100 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) + 0x4020fac4 __sfvwrite_r + .text 0x4020fde4 0x100 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) 0x108 (size before relaxing) - 0x4020fa84 __smakebuf_r - .text 0x4020fb84 0x7d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) - 0x4020fb84 _wcrtomb_r - 0x4020fbe4 wcrtomb - *fill* 0x4020fc01 0x3 - .text 0x4020fc04 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) - 0x4020fc04 __ascii_wctomb - 0x4020fc24 _wctomb_r - *fill* 0x4020fc61 0x3 - .text 0x4020fc64 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) - 0x4020fc64 _isatty_r - *fill* 0x4020fc94 0x0 - *fill* 0x4020fc94 0x0 - *fill* 0x4020fc94 0x0 - *fill* 0x4020fc94 0x0 - .text 0x4020fc94 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) - 0x4020fc94 memcmp - *fill* 0x4020fcb7 0x1 - .text 0x4020fcb8 0x145 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcpy.o) - 0x4020fcfc memcpy - *fill* 0x4020fdfd 0x3 - .text 0x4020fe00 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) - 0x4020fe00 memmove - *fill* 0x4020fe3b 0x1 - .text 0x4020fe3c 0x7c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memset.o) - 0x4020fe68 memset - *fill* 0x4020feb8 0x0 - *fill* 0x4020feb8 0x0 - *fill* 0x4020feb8 0x0 - *fill* 0x4020feb8 0x0 - *fill* 0x4020feb8 0x0 - .text 0x4020feb8 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) - 0x4020feb8 strchr - *fill* 0x4020fed0 0x0 - *fill* 0x4020fed0 0x0 - *fill* 0x4020fed0 0x0 - .text 0x4020fed0 0x33 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) - 0x4020fed0 strncmp - *fill* 0x4020ff03 0x1 - .text 0x4020ff04 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) - 0x4020ff04 strstr - *fill* 0x4020ff36 0x0 - *fill* 0x4020ff36 0x0 - *fill* 0x4020ff36 0x0 - *fill* 0x4020ff36 0x0 - *fill* 0x4020ff36 0x0 - *fill* 0x4020ff36 0x0 - *fill* 0x4020ff36 0x0 - *fill* 0x4020ff36 0x0 - *fill* 0x4020ff36 0x2 - .text 0x4020ff38 0xba C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) - 0x4020ff38 _fwalk - 0x4020ff90 _fwalk_reent - *fill* 0x4020fff2 0x0 - *fill* 0x4020fff2 0x0 - *fill* 0x4020fff2 0x2 - .text 0x4020fff4 0x17 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) - 0x4020fff4 memchr - *fill* 0x4021000b 0x0 - *fill* 0x4021000b 0x0 - *fill* 0x4021000b 0x0 - *fill* 0x4021000b 0x0 - *fill* 0x4021000b 0x0 - *fill* 0x4021000b 0x0 - *fill* 0x4021000b 0x1 - .text 0x4021000c 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) - 0x4021000c _lock_close_recursive - 0x4021000c __dummy_lock - 0x4021000c _lock_release_recursive - 0x4021000c _lock_init_recursive - 0x4021000c _lock_acquire - 0x4021000c _lock_close - 0x4021000c _lock_release - 0x4021000c _lock_init - 0x4021000c _lock_acquire_recursive - 0x40210010 __dummy_lock_try - 0x40210010 _lock_try_acquire - 0x40210010 _lock_try_acquire_recursive - *fill* 0x40210014 0x0 - *fill* 0x40210014 0x0 - *fill* 0x40210014 0x0 - *fill* 0x40210014 0x0 - *fill* 0x40210014 0x0 + 0x4020fde4 __smakebuf_r + .text 0x4020fee4 0x7d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) + 0x4020fee4 _wcrtomb_r + 0x4020ff44 wcrtomb + *fill* 0x4020ff61 0x3 + .text 0x4020ff64 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) + 0x4020ff64 __ascii_wctomb + 0x4020ff84 _wctomb_r + *fill* 0x4020ffc1 0x3 + .text 0x4020ffc4 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) + 0x4020ffc4 _isatty_r + *fill* 0x4020fff4 0x0 + *fill* 0x4020fff4 0x0 + *fill* 0x4020fff4 0x0 + *fill* 0x4020fff4 0x0 + .text 0x4020fff4 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) + 0x4020fff4 memcmp + *fill* 0x40210017 0x1 + .text 0x40210018 0x145 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcpy.o) + 0x4021005c memcpy + *fill* 0x4021015d 0x3 + .text 0x40210160 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) + 0x40210160 memmove + *fill* 0x4021019b 0x1 + .text 0x4021019c 0x7c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memset.o) + 0x402101c8 memset + *fill* 0x40210218 0x0 + *fill* 0x40210218 0x0 + *fill* 0x40210218 0x0 + *fill* 0x40210218 0x0 + *fill* 0x40210218 0x0 + .text 0x40210218 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) + 0x40210218 strchr + *fill* 0x40210230 0x0 + *fill* 0x40210230 0x0 + *fill* 0x40210230 0x0 + .text 0x40210230 0x33 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) + 0x40210230 strncmp + *fill* 0x40210263 0x1 + .text 0x40210264 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) + 0x40210264 strstr + *fill* 0x40210296 0x0 + *fill* 0x40210296 0x0 + *fill* 0x40210296 0x0 + *fill* 0x40210296 0x0 + *fill* 0x40210296 0x0 + *fill* 0x40210296 0x0 + *fill* 0x40210296 0x0 + *fill* 0x40210296 0x0 + *fill* 0x40210296 0x2 + .text 0x40210298 0xba C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) + 0x40210298 _fwalk + 0x402102f0 _fwalk_reent + *fill* 0x40210352 0x0 + *fill* 0x40210352 0x0 + *fill* 0x40210352 0x2 + .text 0x40210354 0x17 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) + 0x40210354 memchr + *fill* 0x4021036b 0x0 + *fill* 0x4021036b 0x0 + *fill* 0x4021036b 0x0 + *fill* 0x4021036b 0x0 + *fill* 0x4021036b 0x0 + *fill* 0x4021036b 0x0 + *fill* 0x4021036b 0x1 + .text 0x4021036c 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) + 0x4021036c _lock_close_recursive + 0x4021036c __dummy_lock + 0x4021036c _lock_release_recursive + 0x4021036c _lock_init_recursive + 0x4021036c _lock_acquire + 0x4021036c _lock_close + 0x4021036c _lock_release + 0x4021036c _lock_init + 0x4021036c _lock_acquire_recursive + 0x40210370 __dummy_lock_try + 0x40210370 _lock_try_acquire + 0x40210370 _lock_try_acquire_recursive + *fill* 0x40210374 0x0 + *fill* 0x40210374 0x0 + *fill* 0x40210374 0x0 + *fill* 0x40210374 0x0 + *fill* 0x40210374 0x0 *libm.a:(.literal .text .literal.* .text.*) - .text 0x40210014 0x4c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) - 0x40210014 __fpclassifyd + .text 0x40210374 0x4c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) + 0x40210374 __fpclassifyd *libgcc.a:_umoddi3.o(.literal .text) *libgcc.a:_udivdi3.o(.literal .text) *libsmartconfig.a:(.literal .text .literal.* .text.*) *libstdc++.a:(.literal .text .literal.* .text.*) .text._ZNSt8__detail15_List_node_base9_M_unhookEv - 0x40210060 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) - 0x40210060 std::__detail::_List_node_base::_M_unhook() + 0x402103c0 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) + 0x402103c0 std::__detail::_List_node_base::_M_unhook() *liblwip_gcc.a:(.literal .text .literal.* .text.*) *liblwip_src.a:(.literal .text .literal.* .text.*) *liblwip2-536.a:(.literal .text .literal.* .text.*) *liblwip2-1460.a:(.literal .text .literal.* .text.*) *liblwip2-536-feat.a:(.literal .text .literal.* .text.*) - *fill* 0x4021006a 0x2 + *fill* 0x402103ca 0x2 .text.glue2esp_err - 0x4021006c 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - 0x40210070 glue2esp_err - *fill* 0x4021008a 0x2 + 0x402103cc 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x402103d0 glue2esp_err + *fill* 0x402103ea 0x2 .text.esp2glue_err - 0x4021008c 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - 0x40210090 esp2glue_err - *fill* 0x402100aa 0x2 + 0x402103ec 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x402103f0 esp2glue_err + *fill* 0x4021040a 0x2 .text.glue2esp_linkoutput - 0x402100ac 0x111 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4021040c 0x111 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x121 (size before relaxing) - 0x402100c8 glue2esp_linkoutput - *fill* 0x402101bd 0x3 + 0x40210428 glue2esp_linkoutput + *fill* 0x4021051d 0x3 .text.lwip_init - 0x402101c0 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x40210520 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x17 (size before relaxing) - 0x402101c0 lwip_init - *fill* 0x402101cf 0x1 + 0x40210520 lwip_init + *fill* 0x4021052f 0x1 .text.dhcps_start - 0x402101d0 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x40210530 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x39 (size before relaxing) - 0x402101d0 dhcps_start - *fill* 0x402101f9 0x3 + 0x40210530 dhcps_start + *fill* 0x40210559 0x3 .text.dhcp_cleanup - 0x402101fc 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4021055c 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x1d (size before relaxing) - 0x40210200 dhcp_cleanup - *fill* 0x40210215 0x3 + 0x40210560 dhcp_cleanup + *fill* 0x40210575 0x3 .text.dhcp_release - 0x40210218 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x40210578 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x1f (size before relaxing) - 0x4021021c dhcp_release - *fill* 0x40210233 0x1 + 0x4021057c dhcp_release + *fill* 0x40210593 0x1 .text.dhcp_start - 0x40210234 0x22 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x40210594 0x22 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x2e (size before relaxing) - 0x40210234 dhcp_start - *fill* 0x40210256 0x2 + 0x40210594 dhcp_start + *fill* 0x402105b6 0x2 .text.dhcp_stop - 0x40210258 0x15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x402105b8 0x15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x19 (size before relaxing) - 0x40210258 dhcp_stop - *fill* 0x4021026d 0x3 + 0x402105b8 dhcp_stop + *fill* 0x402105cd 0x3 .text.glue2esp_ifupdown - 0x40210270 0x4b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x402105d0 0x4b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x53 (size before relaxing) - 0x40210270 glue2esp_ifupdown - *fill* 0x402102bb 0x1 + 0x402105d0 glue2esp_ifupdown + *fill* 0x4021061b 0x1 .text.netif_init_ap - 0x402102bc 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x4021061c 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x60 (size before relaxing) .text.netif_sta_status_callback - 0x40210314 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x40210674 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x5b (size before relaxing) - *fill* 0x40210353 0x1 + *fill* 0x402106b3 0x1 .text.netif_init_sta - 0x40210354 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x402106b4 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x60 (size before relaxing) .text.glue2git_err - 0x402103a4 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - 0x402103a8 glue2git_err - *fill* 0x402103c2 0x2 + 0x40210704 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x40210708 glue2git_err + *fill* 0x40210722 0x2 .text.new_linkoutput - 0x402103c4 0x5c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x40210724 0x5c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x78 (size before relaxing) - 0x402103c4 new_linkoutput + 0x40210724 new_linkoutput .text.git2glue_err - 0x40210420 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - 0x40210424 git2glue_err - *fill* 0x4021043e 0x2 + 0x40210780 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x40210784 git2glue_err + *fill* 0x4021079e 0x2 .text.lwiperr_check - 0x40210440 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x402107a0 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x29 (size before relaxing) - 0x40210444 lwiperr_check - *fill* 0x40210465 0x3 + 0x402107a4 lwiperr_check + *fill* 0x402107c5 0x3 .text.esp2glue_dhcp_start - 0x40210468 0x33 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x402107c8 0x33 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x5b (size before relaxing) - 0x40210468 esp2glue_dhcp_start - *fill* 0x4021049b 0x1 + 0x402107c8 esp2glue_dhcp_start + *fill* 0x402107fb 0x1 .text.esp2glue_dhcp_stop - 0x4021049c 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x402107fc 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x25 (size before relaxing) - 0x4021049c esp2glue_dhcp_stop - *fill* 0x402104b9 0x3 + 0x402107fc esp2glue_dhcp_stop + *fill* 0x40210819 0x3 .text.esp2glue_pbuf_freed - 0x402104bc 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x4021081c 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x17 (size before relaxing) - 0x402104bc esp2glue_pbuf_freed - *fill* 0x402104cb 0x1 + 0x4021081c esp2glue_pbuf_freed + *fill* 0x4021082b 0x1 .text.esp2glue_netif_set_default - 0x402104cc 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x4021082c 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x2d (size before relaxing) - 0x402104cc esp2glue_netif_set_default - *fill* 0x402104f1 0x3 + 0x4021082c esp2glue_netif_set_default + *fill* 0x40210851 0x3 .text.esp2glue_lwip_init - 0x402104f4 0x95 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x40210854 0x95 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0xc5 (size before relaxing) - 0x40210508 esp2glue_lwip_init - *fill* 0x40210589 0x3 + 0x40210868 esp2glue_lwip_init + *fill* 0x402108e9 0x3 .text.esp2glue_alloc_for_recv - 0x4021058c 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x402108ec 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x33 (size before relaxing) - 0x4021058c esp2glue_alloc_for_recv - *fill* 0x402105b7 0x1 + 0x402108ec esp2glue_alloc_for_recv + *fill* 0x40210917 0x1 .text.esp2glue_ethernet_input - 0x402105b8 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x40210918 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x31 (size before relaxing) - 0x402105b8 esp2glue_ethernet_input - *fill* 0x402105d9 0x3 + 0x40210918 esp2glue_ethernet_input + *fill* 0x40210939 0x3 .text.esp2glue_dhcps_start - 0x402105dc 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x4021093c 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0x17 (size before relaxing) - 0x402105dc esp2glue_dhcps_start - *fill* 0x402105eb 0x1 + 0x4021093c esp2glue_dhcps_start + *fill* 0x4021094b 0x1 .text.esp2glue_netif_set_up1down0 - 0x402105ec 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x4021094c 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0xa1 (size before relaxing) - 0x402105f0 esp2glue_netif_set_up1down0 - *fill* 0x4021065d 0x3 + 0x40210950 esp2glue_netif_set_up1down0 + *fill* 0x402109bd 0x3 .text.esp2glue_netif_update - 0x40210660 0xa6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x402109c0 0xa6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0xc2 (size before relaxing) - 0x40210660 esp2glue_netif_update - *fill* 0x40210706 0x2 + 0x402109c0 esp2glue_netif_update + *fill* 0x40210a66 0x2 .text.ethernet_input_LWIP2 - 0x40210708 0xcb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + 0x40210a68 0xcb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) 0xeb (size before relaxing) - 0x4021070c ethernet_input_LWIP2 - *fill* 0x402107d3 0x1 + 0x40210a6c ethernet_input_LWIP2 + *fill* 0x40210b33 0x1 .text.ethernet_output - 0x402107d4 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + 0x40210b34 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) 0x81 (size before relaxing) - 0x402107d4 ethernet_output - *fill* 0x40210839 0x3 + 0x40210b34 ethernet_output + *fill* 0x40210b99 0x3 .text.lwip_init_LWIP2 - 0x4021083c 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) + 0x40210b9c 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) 0x5d (size before relaxing) - 0x4021083c lwip_init_LWIP2 - *fill* 0x40210861 0x3 + 0x40210b9c lwip_init_LWIP2 + *fill* 0x40210bc1 0x3 .text.do_memp_malloc_pool - 0x40210864 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x40210bc4 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) 0x3d (size before relaxing) - *fill* 0x40210891 0x3 + *fill* 0x40210bf1 0x3 .text.memp_malloc - 0x40210894 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x40210bf4 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) 0x2b (size before relaxing) - 0x40210898 memp_malloc - *fill* 0x402108bb 0x1 + 0x40210bf8 memp_malloc + *fill* 0x40210c1b 0x1 .text.memp_free - 0x402108bc 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x40210c1c 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) 0x3b (size before relaxing) - 0x402108bc memp_free - *fill* 0x402108e7 0x1 + 0x40210c1c memp_free + *fill* 0x40210c47 0x1 .text.tcp_new_port - 0x402108e8 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210c48 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x61 (size before relaxing) - *fill* 0x40210945 0x3 + *fill* 0x40210ca5 0x3 .text.tcp_close_shutdown_fin - 0x40210948 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210ca8 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x69 (size before relaxing) - *fill* 0x402109a5 0x3 + *fill* 0x40210d05 0x3 .text.tcp_init - 0x402109a8 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210d08 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x27 (size before relaxing) - 0x402109a8 tcp_init - *fill* 0x402109c3 0x1 + 0x40210d08 tcp_init + *fill* 0x40210d23 0x1 .text.tcp_free - 0x402109c4 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210d24 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x1b (size before relaxing) - 0x402109c4 tcp_free - *fill* 0x402109d7 0x1 + 0x40210d24 tcp_free + *fill* 0x40210d37 0x1 .text.tcp_bind - 0x402109d8 0xb1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210d38 0xb1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0xbd (size before relaxing) - 0x402109e0 tcp_bind - *fill* 0x40210a89 0x3 + 0x40210d40 tcp_bind + *fill* 0x40210de9 0x3 .text.tcp_listen_with_backlog_and_err - 0x40210a8c 0xf5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210dec 0xf5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x109 (size before relaxing) - 0x40210a94 tcp_listen_with_backlog_and_err - *fill* 0x40210b81 0x3 + 0x40210df4 tcp_listen_with_backlog_and_err + *fill* 0x40210ee1 0x3 .text.tcp_listen_with_backlog - 0x40210b84 0x17 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210ee4 0x17 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x1b (size before relaxing) - 0x40210b84 tcp_listen_with_backlog - *fill* 0x40210b9b 0x1 + 0x40210ee4 tcp_listen_with_backlog + *fill* 0x40210efb 0x1 .text.tcp_recved - 0x40210b9c 0x57 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210efc 0x57 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x63 (size before relaxing) - 0x40210ba0 tcp_recved - *fill* 0x40210bf3 0x1 + 0x40210f00 tcp_recved + *fill* 0x40210f53 0x1 .text.tcp_seg_free - 0x40210bf4 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210f54 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x31 (size before relaxing) - 0x40210bf4 tcp_seg_free - *fill* 0x40210c1a 0x2 + 0x40210f54 tcp_seg_free + *fill* 0x40210f7a 0x2 .text.tcp_segs_free - 0x40210c1c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210f7c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x24 (size before relaxing) - 0x40210c1c tcp_segs_free + 0x40210f7c tcp_segs_free .text.tcp_seg_copy - 0x40210c3c 0x2f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210f9c 0x2f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x43 (size before relaxing) - 0x40210c3c tcp_seg_copy - *fill* 0x40210c6b 0x1 + 0x40210f9c tcp_seg_copy + *fill* 0x40210fcb 0x1 .text.tcp_next_iss - 0x40210c6c 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x40210c74 tcp_next_iss + 0x40210fcc 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210fd4 tcp_next_iss .text.tcp_connect - 0x40210c84 0x163 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40210fe4 0x163 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x1a7 (size before relaxing) - 0x40210c8c tcp_connect - *fill* 0x40210de7 0x1 + 0x40210fec tcp_connect + *fill* 0x40211147 0x1 .text.tcp_free_ooseq - 0x40210de8 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211148 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x35 (size before relaxing) - 0x40210de8 tcp_free_ooseq - *fill* 0x40210e11 0x3 + 0x40211148 tcp_free_ooseq + *fill* 0x40211171 0x3 .text.tcp_pcb_purge - 0x40210e14 0x55 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211174 0x55 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x71 (size before relaxing) - 0x40210e14 tcp_pcb_purge - *fill* 0x40210e69 0x3 + 0x40211174 tcp_pcb_purge + *fill* 0x402111c9 0x3 .text.tcp_pcb_remove - 0x40210e6c 0x62 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x402111cc 0x62 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x6e (size before relaxing) - 0x40210e6c tcp_pcb_remove - *fill* 0x40210ece 0x2 + 0x402111cc tcp_pcb_remove + *fill* 0x4021122e 0x2 .text.tcp_abandon - 0x40210ed0 0xdb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211230 0xdb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x113 (size before relaxing) - 0x40210ed4 tcp_abandon - *fill* 0x40210fab 0x1 + 0x40211234 tcp_abandon + *fill* 0x4021130b 0x1 .text.tcp_abort - 0x40210fac 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x4021130c 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x18 (size before relaxing) - 0x40210fac tcp_abort + 0x4021130c tcp_abort .text.tcp_accept_null - 0x40210fc0 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211320 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x1a (size before relaxing) - *fill* 0x40210fd6 0x2 + *fill* 0x40211336 0x2 .text.tcp_kill_timewait - 0x40210fd8 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211338 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x48 (size before relaxing) - 0x40210fd8 tcp_kill_timewait + 0x40211338 tcp_kill_timewait .text.tcp_netif_ip_addr_changed_pcblist - 0x40211014 0x2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211374 0x2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x34 (size before relaxing) .text.tcp_netif_ip_addr_changed - 0x40211040 0x54 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x402113a0 0x54 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x6c (size before relaxing) - 0x40211040 tcp_netif_ip_addr_changed + 0x402113a0 tcp_netif_ip_addr_changed .text.tcp_kill_state - 0x40211094 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x402113f4 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x49 (size before relaxing) - *fill* 0x402110d1 0x3 + *fill* 0x40211431 0x3 .text.tcp_alloc - 0x402110d4 0x152 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211434 0x152 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x1a6 (size before relaxing) - 0x402110e4 tcp_alloc - *fill* 0x40211226 0x2 - .text.tcp_new 0x40211228 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211444 tcp_alloc + *fill* 0x40211586 0x2 + .text.tcp_new 0x40211588 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x18 (size before relaxing) - 0x40211228 tcp_new + 0x40211588 tcp_new .text.tcp_close_shutdown - 0x4021123c 0x143 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x4021159c 0x143 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x18b (size before relaxing) - *fill* 0x4021137f 0x1 + *fill* 0x402116df 0x1 .text.tcp_close - 0x40211380 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x402116e0 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x31 (size before relaxing) - 0x40211380 tcp_close - *fill* 0x402113a9 0x3 + 0x402116e0 tcp_close + *fill* 0x40211709 0x3 .text.tcp_recv_null - 0x402113ac 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x4021170c 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x4b (size before relaxing) - 0x402113ac tcp_recv_null - *fill* 0x402113e7 0x1 + 0x4021170c tcp_recv_null + *fill* 0x40211747 0x1 .text.tcp_process_refused_data - 0x402113e8 0x8d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211748 0x8d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x95 (size before relaxing) - 0x402113e8 tcp_process_refused_data - *fill* 0x40211475 0x3 + 0x40211748 tcp_process_refused_data + *fill* 0x402117d5 0x3 .text.tcp_fasttmr - 0x40211478 0x96 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x402117d8 0x96 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0xba (size before relaxing) - 0x40211478 tcp_fasttmr - *fill* 0x4021150e 0x2 + 0x402117d8 tcp_fasttmr + *fill* 0x4021186e 0x2 .text.tcp_slowtmr - 0x40211510 0x37d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211870 0x37d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x3e1 (size before relaxing) - 0x40211524 tcp_slowtmr - *fill* 0x4021188d 0x3 - .text.tcp_tmr 0x40211890 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40211884 tcp_slowtmr + *fill* 0x40211bed 0x3 + .text.tcp_tmr 0x40211bf0 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0x37 (size before relaxing) - 0x40211894 tcp_tmr - *fill* 0x402118b7 0x1 + 0x40211bf4 tcp_tmr + *fill* 0x40211c17 0x1 .text.dns_call_found - 0x402118b8 0x41 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - *fill* 0x402118f9 0x3 + 0x40211c18 0x41 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + *fill* 0x40211c59 0x3 .text.dns_send - 0x402118fc 0x159 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x40211c5c 0x159 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) 0x1b1 (size before relaxing) - *fill* 0x40211a55 0x3 + *fill* 0x40211db5 0x3 .text.dns_check_entry - 0x40211a58 0xee C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x40211db8 0xee C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) 0xfe (size before relaxing) - *fill* 0x40211b46 0x2 + *fill* 0x40211ea6 0x2 .text.dns_recv - 0x40211b48 0x30b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x40211ea8 0x30b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) 0x39f (size before relaxing) - *fill* 0x40211e53 0x1 + *fill* 0x402121b3 0x1 .text.dns_init - 0x40211e54 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x402121b4 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) 0x55 (size before relaxing) - 0x40211e58 dns_init - *fill* 0x40211e8d 0x3 + 0x402121b8 dns_init + *fill* 0x402121ed 0x3 .text.dns_setserver - 0x40211e90 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x402121f0 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) 0x26 (size before relaxing) - 0x40211e90 dns_setserver - *fill* 0x40211eae 0x2 - .text.dns_tmr 0x40211eb0 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x402121f0 dns_setserver + *fill* 0x4021220e 0x2 + .text.dns_tmr 0x40212210 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) 0x30 (size before relaxing) - 0x40211eb0 dns_tmr + 0x40212210 dns_tmr .text.dns_gethostbyname_addrtype - 0x40211ecc 0x18f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x4021222c 0x18f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) 0x1c3 (size before relaxing) - 0x40211ed8 dns_gethostbyname_addrtype - *fill* 0x4021205b 0x1 + 0x40212238 dns_gethostbyname_addrtype + *fill* 0x402123bb 0x1 .text.dns_gethostbyname - 0x4021205c 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x402123bc 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) 0x18 (size before relaxing) - 0x4021205c dns_gethostbyname + 0x402123bc dns_gethostbyname .text.sys_timeout_abs - 0x40212070 0x6d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x402123d0 0x6d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) 0x71 (size before relaxing) - *fill* 0x402120dd 0x3 + *fill* 0x4021243d 0x3 .text.lwip_cyclic_timer - 0x402120e0 0x42 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x40212440 0x42 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) 0x4d (size before relaxing) - *fill* 0x40212122 0x2 + *fill* 0x40212482 0x2 .text.sys_timeout_LWIP2 - 0x40212124 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x40212484 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) 0x31 (size before relaxing) - 0x40212124 sys_timeout_LWIP2 - *fill* 0x40212149 0x3 + 0x40212484 sys_timeout_LWIP2 + *fill* 0x402124a9 0x3 .text.tcp_timer_needed - 0x4021214c 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x402124ac 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) 0x47 (size before relaxing) - 0x40212154 tcp_timer_needed - *fill* 0x40212187 0x1 + 0x402124b4 tcp_timer_needed + *fill* 0x402124e7 0x1 .text.tcpip_tcp_timer - 0x40212188 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x402124e8 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) 0x51 (size before relaxing) - *fill* 0x402121bd 0x3 + *fill* 0x4021251d 0x3 .text.sys_timeouts_init - 0x402121c0 0x37 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x40212520 0x37 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) 0x3f (size before relaxing) - 0x402121c8 sys_timeouts_init - *fill* 0x402121f7 0x1 + 0x40212528 sys_timeouts_init + *fill* 0x40212557 0x1 .text.sys_untimeout_LWIP2 - 0x402121f8 0x43 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x40212558 0x43 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) 0x4f (size before relaxing) - 0x402121f8 sys_untimeout_LWIP2 - *fill* 0x4021223b 0x1 + 0x40212558 sys_untimeout_LWIP2 + *fill* 0x4021259b 0x1 .text.sys_check_timeouts - 0x4021223c 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x4021259c 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) 0x7f (size before relaxing) - 0x40212240 sys_check_timeouts - *fill* 0x402122a3 0x1 + 0x402125a0 sys_check_timeouts + *fill* 0x40212603 0x1 .text.tcp_get_next_optbyte - 0x402122a4 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - *fill* 0x402122e9 0x3 + 0x40212604 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + *fill* 0x40212649 0x3 .text.tcp_oos_insert_segment - 0x402122ec 0xe0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x4021264c 0xe0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) 0x104 (size before relaxing) .text.tcp_parseopt$part$0 - 0x402123cc 0xc6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x4021272c 0xc6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) 0xf2 (size before relaxing) - *fill* 0x40212492 0x2 + *fill* 0x402127f2 0x2 .text.tcp_input_delayed_close - 0x40212494 0x47 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x402127f4 0x47 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) 0x57 (size before relaxing) - *fill* 0x402124db 0x1 + *fill* 0x4021283b 0x1 .text.tcp_free_acked_segments$isra$2 - 0x402124dc 0xb1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x4021283c 0xb1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) 0xcd (size before relaxing) - *fill* 0x4021258d 0x3 + *fill* 0x402128ed 0x3 .text.tcp_receive - 0x40212590 0xc5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x402128f0 0xc5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) 0xdbd (size before relaxing) - *fill* 0x402131ed 0x3 + *fill* 0x4021354d 0x3 .text.tcp_input - 0x402131f0 0xbb7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x40213550 0xbb7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) 0xd73 (size before relaxing) - 0x40213204 tcp_input - *fill* 0x40213da7 0x1 + 0x40213564 tcp_input + *fill* 0x40214107 0x1 .text.tcp_trigger_input_pcb_close - 0x40213da8 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x40214108 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) 0x14 (size before relaxing) - 0x40213da8 tcp_trigger_input_pcb_close + 0x40214108 tcp_trigger_input_pcb_close .text.lwip_htonl - 0x40213db8 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + 0x40214118 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) 0x2b (size before relaxing) - 0x40213db8 lwip_htonl - *fill* 0x40213ddb 0x1 + 0x40214118 lwip_htonl + *fill* 0x4021413b 0x1 .text.netif_issue_reports - 0x40213ddc 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x4021413c 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) 0x47 (size before relaxing) - *fill* 0x40213e17 0x1 + *fill* 0x40214177 0x1 .text.netif_do_set_ipaddr - 0x40213e18 0x57 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x40214178 0x57 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) 0x73 (size before relaxing) - *fill* 0x40213e6f 0x1 + *fill* 0x402141cf 0x1 .text.netif_set_addr_LWIP2 - 0x40213e70 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x402141d0 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) 0x78 (size before relaxing) - 0x40213e70 netif_set_addr_LWIP2 + 0x402141d0 netif_set_addr_LWIP2 .text.netif_add_LWIP2 - 0x40213ed8 0xf9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x40214238 0xf9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) 0x10d (size before relaxing) - 0x40213ee4 netif_add_LWIP2 - *fill* 0x40213fd1 0x3 + 0x40214244 netif_add_LWIP2 + *fill* 0x40214331 0x3 .text.netif_set_default_LWIP2 - 0x40213fd4 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x40214334 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) 0xb (size before relaxing) - 0x40213fd4 netif_set_default_LWIP2 - *fill* 0x40213fdb 0x1 + 0x40214334 netif_set_default_LWIP2 + *fill* 0x4021433b 0x1 .text.netif_set_up_LWIP2 - 0x40213fdc 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x4021433c 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) 0x39 (size before relaxing) - 0x40213fdc netif_set_up_LWIP2 - *fill* 0x4021400e 0x2 + 0x4021433c netif_set_up_LWIP2 + *fill* 0x4021436e 0x2 .text.netif_set_down_LWIP2 - 0x40214010 0x36 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x40214370 0x36 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) 0x3a (size before relaxing) - 0x40214010 netif_set_down_LWIP2 - *fill* 0x40214046 0x2 + 0x40214370 netif_set_down_LWIP2 + *fill* 0x402143a6 0x2 .text.netif_set_link_up - 0x40214048 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x402143a8 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) 0x3d (size before relaxing) - 0x40214048 netif_set_link_up - *fill* 0x40214079 0x3 + 0x402143a8 netif_set_link_up + *fill* 0x402143d9 0x3 .text.netif_get_by_index - 0x4021407c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x402143dc 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) 0x24 (size before relaxing) - 0x4021407c netif_get_by_index + 0x402143dc netif_get_by_index .text.pbuf_add_header_impl - 0x4021409c 0x5e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x402143fc 0x5e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x62 (size before relaxing) - *fill* 0x402140fa 0x2 + *fill* 0x4021445a 0x2 .text.pbuf_free_ooseq - 0x402140fc 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x4021445c 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x54 (size before relaxing) - 0x402140fc pbuf_free_ooseq + 0x4021445c pbuf_free_ooseq .text.pbuf_alloc_reference - 0x40214138 0x43 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x40214498 0x43 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x47 (size before relaxing) - 0x40214138 pbuf_alloc_reference - *fill* 0x4021417b 0x1 + 0x40214498 pbuf_alloc_reference + *fill* 0x402144db 0x1 .text.pbuf_add_header - 0x4021417c 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x402144dc 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x18 (size before relaxing) - 0x4021417c pbuf_add_header + 0x402144dc pbuf_add_header .text.pbuf_remove_header - 0x40214190 0x42 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x402144f0 0x42 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x46 (size before relaxing) - 0x40214190 pbuf_remove_header - *fill* 0x402141d2 0x2 + 0x402144f0 pbuf_remove_header + *fill* 0x40214532 0x2 .text.pbuf_header_force - 0x402141d4 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x40214534 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x33 (size before relaxing) - 0x402141d4 pbuf_header_force - *fill* 0x402141fb 0x1 + 0x40214534 pbuf_header_force + *fill* 0x4021455b 0x1 .text.pbuf_free_LWIP2 - 0x402141fc 0x7e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x4021455c 0x7e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x8e (size before relaxing) - 0x402141fc pbuf_free_LWIP2 - *fill* 0x4021427a 0x2 + 0x4021455c pbuf_free_LWIP2 + *fill* 0x402145da 0x2 .text.pbuf_alloc_LWIP2 - 0x4021427c 0x149 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x402145dc 0x149 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x16d (size before relaxing) - 0x4021427c pbuf_alloc_LWIP2 - *fill* 0x402143c5 0x3 + 0x402145dc pbuf_alloc_LWIP2 + *fill* 0x40214725 0x3 .text.pbuf_realloc - 0x402143c8 0x6c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x40214728 0x6c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x77 (size before relaxing) - 0x402143c8 pbuf_realloc - *fill* 0x40214434 0x0 + 0x40214728 pbuf_realloc + *fill* 0x40214794 0x0 .text.pbuf_ref_LWIP2 - 0x40214434 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x40214794 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x31 (size before relaxing) - 0x40214434 pbuf_ref_LWIP2 - *fill* 0x4021445d 0x3 + 0x40214794 pbuf_ref_LWIP2 + *fill* 0x402147bd 0x3 .text.pbuf_chain - 0x40214460 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x402147c0 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x29 (size before relaxing) - 0x40214460 pbuf_chain - *fill* 0x4021447d 0x3 + 0x402147c0 pbuf_chain + *fill* 0x402147dd 0x3 .text.pbuf_copy - 0x40214480 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x402147e0 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0xd0 (size before relaxing) - 0x40214480 pbuf_copy + 0x402147e0 pbuf_copy .text.pbuf_copy_partial - 0x40214548 0x91 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x402148a8 0x91 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x95 (size before relaxing) - 0x40214548 pbuf_copy_partial - *fill* 0x402145d9 0x3 + 0x402148a8 pbuf_copy_partial + *fill* 0x40214939 0x3 .text.pbuf_take - 0x402145dc 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x4021493c 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x67 (size before relaxing) - 0x402145dc pbuf_take - *fill* 0x4021463f 0x1 + 0x4021493c pbuf_take + *fill* 0x4021499f 0x1 .text.pbuf_take_at - 0x40214640 0x69 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x402149a0 0x69 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x7d (size before relaxing) - 0x40214640 pbuf_take_at - *fill* 0x402146a9 0x3 + 0x402149a0 pbuf_take_at + *fill* 0x40214a09 0x3 .text.pbuf_clone - 0x402146ac 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x40214a0c 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x39 (size before relaxing) - 0x402146ac pbuf_clone - *fill* 0x402146d9 0x3 + 0x40214a0c pbuf_clone + *fill* 0x40214a39 0x3 .text.pbuf_try_get_at - 0x402146dc 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x40214a3c 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x32 (size before relaxing) - 0x402146dc pbuf_try_get_at - *fill* 0x4021470a 0x2 + 0x40214a3c pbuf_try_get_at + *fill* 0x40214a6a 0x2 .text.pbuf_get_at - 0x4021470c 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x40214a6c 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x23 (size before relaxing) - 0x4021470c pbuf_get_at - *fill* 0x4021472b 0x1 + 0x40214a6c pbuf_get_at + *fill* 0x40214a8b 0x1 .text.pbuf_put_at - 0x4021472c 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x40214a8c 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0x35 (size before relaxing) - 0x4021472c pbuf_put_at - *fill* 0x40214759 0x3 + 0x40214a8c pbuf_put_at + *fill* 0x40214ab9 0x3 .text.udp_init - 0x4021475c 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40214abc 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0x27 (size before relaxing) - 0x40214760 udp_init - *fill* 0x4021477b 0x1 + 0x40214ac0 udp_init + *fill* 0x40214adb 0x1 .text.udp_input - 0x4021477c 0x1ad C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40214adc 0x1ad C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0x1ed (size before relaxing) - 0x40214780 udp_input - *fill* 0x40214929 0x3 + 0x40214ae0 udp_input + *fill* 0x40214c89 0x3 .text.udp_bind - 0x4021492c 0xc1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40214c8c 0xc1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0xd9 (size before relaxing) - 0x4021492c udp_bind - *fill* 0x402149ed 0x3 + 0x40214c8c udp_bind + *fill* 0x40214d4d 0x3 .text.udp_sendto_if_src - 0x402149f0 0x15d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40214d50 0x15d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0x1a5 (size before relaxing) - 0x402149f0 udp_sendto_if_src - *fill* 0x40214b4d 0x3 + 0x40214d50 udp_sendto_if_src + *fill* 0x40214ead 0x3 .text.udp_sendto_if - 0x40214b50 0x43 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40214eb0 0x43 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0x47 (size before relaxing) - 0x40214b50 udp_sendto_if - *fill* 0x40214b93 0x1 + 0x40214eb0 udp_sendto_if + *fill* 0x40214ef3 0x1 .text.udp_sendto - 0x40214b94 0x9e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40214ef4 0x9e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0xbe (size before relaxing) - 0x40214b98 udp_sendto - *fill* 0x40214c32 0x2 + 0x40214ef8 udp_sendto + *fill* 0x40214f92 0x2 .text.udp_connect - 0x40214c34 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40214f94 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0x74 (size before relaxing) - 0x40214c34 udp_connect + 0x40214f94 udp_connect .text.udp_remove - 0x40214c9c 0x37 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40214ffc 0x37 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0x43 (size before relaxing) - 0x40214c9c udp_remove - *fill* 0x40214cd3 0x1 - .text.udp_new 0x40214cd4 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40214ffc udp_remove + *fill* 0x40215033 0x1 + .text.udp_new 0x40215034 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0x39 (size before relaxing) - 0x40214cd4 udp_new - *fill* 0x40214d01 0x3 + 0x40215034 udp_new + *fill* 0x40215061 0x3 .text.udp_new_ip_type - 0x40214d04 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40215064 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0x17 (size before relaxing) - 0x40214d04 udp_new_ip_type - *fill* 0x40214d13 0x1 + 0x40215064 udp_new_ip_type + *fill* 0x40215073 0x1 .text.udp_netif_ip_addr_changed - 0x40214d14 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40215074 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0x2b (size before relaxing) - 0x40214d14 udp_netif_ip_addr_changed - *fill* 0x40214d3b 0x1 + 0x40215074 udp_netif_ip_addr_changed + *fill* 0x4021509b 0x1 .text.tcp_create_segment - 0x40214d3c 0xe1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x4021509c 0xe1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x119 (size before relaxing) - *fill* 0x40214e1d 0x3 + *fill* 0x4021517d 0x3 .text.tcp_output_alloc_header_common - 0x40214e20 0xd5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x40215180 0xd5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x101 (size before relaxing) - *fill* 0x40214ef5 0x3 + *fill* 0x40215255 0x3 .text.tcp_output_alloc_header - 0x40214ef8 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x40215258 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x39 (size before relaxing) - *fill* 0x40214f29 0x3 + *fill* 0x40215289 0x3 .text.tcp_output_fill_options$isra$2 - 0x40214f2c 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x4021528c 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x75 (size before relaxing) - *fill* 0x40214f91 0x3 + *fill* 0x402152f1 0x3 .text.tcp_output_control_segment - 0x40214f94 0x9d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x402152f4 0x9d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0xb5 (size before relaxing) - *fill* 0x40215031 0x3 + *fill* 0x40215391 0x3 .text.tcp_write - 0x40215034 0x285 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x40215394 0x285 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x2b1 (size before relaxing) - 0x40215034 tcp_write - *fill* 0x402152b9 0x3 + 0x40215394 tcp_write + *fill* 0x40215619 0x3 .text.tcp_split_unsent_seg - 0x402152bc 0x18b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x4021561c 0x18b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x1da (size before relaxing) - 0x402152bc tcp_split_unsent_seg - *fill* 0x40215447 0x1 + 0x4021561c tcp_split_unsent_seg + *fill* 0x402157a7 0x1 .text.tcp_enqueue_flags - 0x40215448 0xc1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x402157a8 0xc1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0xd1 (size before relaxing) - 0x40215448 tcp_enqueue_flags - *fill* 0x40215509 0x3 + 0x402157a8 tcp_enqueue_flags + *fill* 0x40215869 0x3 .text.tcp_send_fin - 0x4021550c 0x81 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x4021586c 0x81 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x91 (size before relaxing) - 0x4021550c tcp_send_fin - *fill* 0x4021558d 0x3 + 0x4021586c tcp_send_fin + *fill* 0x402158ed 0x3 .text.tcp_rexmit_rto_prepare - 0x40215590 0xaf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x402158f0 0xaf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0xbf (size before relaxing) - 0x40215590 tcp_rexmit_rto_prepare - *fill* 0x4021563f 0x1 + 0x402158f0 tcp_rexmit_rto_prepare + *fill* 0x4021599f 0x1 .text.tcp_rexmit - 0x40215640 0xc7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x402159a0 0xc7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0xd3 (size before relaxing) - 0x40215640 tcp_rexmit - *fill* 0x40215707 0x1 + 0x402159a0 tcp_rexmit + *fill* 0x40215a67 0x1 .text.tcp_rexmit_fast - 0x40215708 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x40215a68 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x69 (size before relaxing) - 0x40215708 tcp_rexmit_fast - *fill* 0x4021576d 0x3 - .text.tcp_rst 0x40215770 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x40215a68 tcp_rexmit_fast + *fill* 0x40215acd 0x3 + .text.tcp_rst 0x40215ad0 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x83 (size before relaxing) - 0x40215774 tcp_rst - *fill* 0x402157d7 0x1 + 0x40215ad4 tcp_rst + *fill* 0x40215b37 0x1 .text.tcp_send_empty_ack - 0x402157d8 0xb2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x40215b38 0xb2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0xce (size before relaxing) - 0x402157d8 tcp_send_empty_ack - *fill* 0x4021588a 0x2 + 0x40215b38 tcp_send_empty_ack + *fill* 0x40215bea 0x2 .text.tcp_output - 0x4021588c 0x488 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x40215bec 0x488 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x50c (size before relaxing) - 0x40215894 tcp_output + 0x40215bf4 tcp_output .text.tcp_rexmit_rto_commit - 0x40215d14 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x40216074 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x25 (size before relaxing) - 0x40215d14 tcp_rexmit_rto_commit - *fill* 0x40215d32 0x2 + 0x40216074 tcp_rexmit_rto_commit + *fill* 0x40216092 0x2 .text.tcp_rexmit_rto - 0x40215d34 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x40216094 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x2b (size before relaxing) - 0x40215d34 tcp_rexmit_rto - *fill* 0x40215d53 0x1 + 0x40216094 tcp_rexmit_rto + *fill* 0x402160b3 0x1 .text.tcp_keepalive - 0x40215d54 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x402160b4 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x65 (size before relaxing) - 0x40215d54 tcp_keepalive - *fill* 0x40215d9d 0x3 + 0x402160b4 tcp_keepalive + *fill* 0x402160fd 0x3 .text.tcp_zero_window_probe - 0x40215da0 0x132 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x40216100 0x132 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0x15e (size before relaxing) - 0x40215da0 tcp_zero_window_probe - *fill* 0x40215ed2 0x2 + 0x40216100 tcp_zero_window_probe + *fill* 0x40216232 0x2 .text.ip_reass_dequeue_datagram$isra$0 - 0x40215ed4 0x2f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + 0x40216234 0x2f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) 0x33 (size before relaxing) - *fill* 0x40215f03 0x1 + *fill* 0x40216263 0x1 .text.ip_reass_free_complete_datagram - 0x40215f04 0xca C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + 0x40216264 0xca C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) 0xfa (size before relaxing) - *fill* 0x40215fce 0x2 + *fill* 0x4021632e 0x2 .text.ip_reass_remove_oldest_datagram - 0x40215fd0 0xc2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + 0x40216330 0xc2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) 0xca (size before relaxing) - *fill* 0x40216092 0x2 + *fill* 0x402163f2 0x2 .text.ip_reass_tmr - 0x40216094 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + 0x402163f4 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) 0x45 (size before relaxing) - 0x40216094 ip_reass_tmr - *fill* 0x402160d1 0x3 + 0x402163f4 ip_reass_tmr + *fill* 0x40216431 0x3 .text.ip4_reass - 0x402160d4 0x4ee C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + 0x40216434 0x4ee C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) 0x586 (size before relaxing) - 0x402160d4 ip4_reass - *fill* 0x402165c2 0x2 + 0x40216434 ip4_reass + *fill* 0x40216922 0x2 .text.ip4_frag - 0x402165c4 0x17a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + 0x40216924 0x17a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) 0x1c2 (size before relaxing) - 0x402165c4 ip4_frag - *fill* 0x4021673e 0x2 + 0x40216924 ip4_frag + *fill* 0x40216a9e 0x2 .text.dhcp_option_long - 0x40216740 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40216aa0 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x47 (size before relaxing) - *fill* 0x4021677f 0x1 + *fill* 0x40216adf 0x1 .text.dhcp_create_msg - 0x40216780 0x115 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40216ae0 0x115 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x12d (size before relaxing) - *fill* 0x40216895 0x3 + *fill* 0x40216bf5 0x3 .text.dhcp_option_trailer - 0x40216898 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40216bf8 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x40 (size before relaxing) .text.dhcp_discover - 0x402168d4 0x10c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40216c34 0x10c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x148 (size before relaxing) .text.dhcp_inc_pcb_refcount - 0x402169e0 0x6f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40216d40 0x6f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x93 (size before relaxing) - *fill* 0x40216a4f 0x1 + *fill* 0x40216daf 0x1 .text.unlikely.dhcp_bind - 0x40216a50 0x113 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40216db0 0x113 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x133 (size before relaxing) - *fill* 0x40216b63 0x1 + *fill* 0x40216ec3 0x1 .text.dhcp_option_hostname$isra$0 - 0x40216b64 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40216ec4 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x6c (size before relaxing) .text.dhcp_reboot - 0x40216bcc 0x138 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40216f2c 0x138 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x18c (size before relaxing) .text.dhcp_select - 0x40216d04 0x17e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40217064 0x17e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x1ea (size before relaxing) - *fill* 0x40216e82 0x2 + *fill* 0x402171e2 0x2 .text.dhcp_dec_pcb_refcount - 0x40216e84 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x402171e4 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x3d (size before relaxing) - *fill* 0x40216eb5 0x3 + *fill* 0x40217215 0x3 .text.unlikely.dhcp_handle_ack$isra$3 - 0x40216eb8 0xe8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40217218 0xe8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x11c (size before relaxing) .text.dhcp_recv - 0x40216fa0 0x47b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40217300 0x47b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x4e3 (size before relaxing) - *fill* 0x4021741b 0x1 + *fill* 0x4021777b 0x1 .text.dhcp_network_changed - 0x4021741c 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x4021777c 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x44 (size before relaxing) - 0x4021741c dhcp_network_changed - *fill* 0x40217455 0x3 + 0x4021777c dhcp_network_changed + *fill* 0x402177b5 0x3 .text.dhcp_renew - 0x40217458 0x10c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x402177b8 0x10c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x14c (size before relaxing) - 0x4021745c dhcp_renew + 0x402177bc dhcp_renew .text.dhcp_release_and_stop - 0x40217564 0xd8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x402178c4 0xd8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x130 (size before relaxing) - 0x40217564 dhcp_release_and_stop + 0x402178c4 dhcp_release_and_stop .text.dhcp_start_LWIP2 - 0x4021763c 0x99 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x4021799c 0x99 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0xc5 (size before relaxing) - 0x4021763c dhcp_start_LWIP2 - *fill* 0x402176d5 0x3 + 0x4021799c dhcp_start_LWIP2 + *fill* 0x40217a35 0x3 .text.dhcp_coarse_tmr - 0x402176d8 0x1c3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40217a38 0x1c3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x21b (size before relaxing) - 0x402176d8 dhcp_coarse_tmr - *fill* 0x4021789b 0x1 + 0x40217a38 dhcp_coarse_tmr + *fill* 0x40217bfb 0x1 .text.dhcp_fine_tmr - 0x4021789c 0xa2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40217bfc 0xa2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0xbe (size before relaxing) - 0x4021789c dhcp_fine_tmr - *fill* 0x4021793e 0x2 + 0x40217bfc dhcp_fine_tmr + *fill* 0x40217c9e 0x2 .text.dhcp_stop_LWIP2 - 0x40217940 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x40217ca0 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x17 (size before relaxing) - 0x40217940 dhcp_stop_LWIP2 - *fill* 0x4021794f 0x1 + 0x40217ca0 dhcp_stop_LWIP2 + *fill* 0x40217caf 0x1 .text.etharp_free_entry - 0x40217950 0x47 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x40217cb0 0x47 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0x4b (size before relaxing) - *fill* 0x40217997 0x1 + *fill* 0x40217cf7 0x1 .text.etharp_find_entry - 0x40217998 0xf7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x40217cf8 0xf7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0x103 (size before relaxing) - *fill* 0x40217a8f 0x1 + *fill* 0x40217def 0x1 .text.etharp_raw - 0x40217a90 0xcd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x40217df0 0xcd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0xf9 (size before relaxing) - *fill* 0x40217b5d 0x3 + *fill* 0x40217ebd 0x3 .text.etharp_cleanup_netif - 0x40217b60 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x40217ec0 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0x43 (size before relaxing) - 0x40217b60 etharp_cleanup_netif - *fill* 0x40217b9b 0x1 + 0x40217ec0 etharp_cleanup_netif + *fill* 0x40217efb 0x1 .text.etharp_input - 0x40217b9c 0x15b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x40217efc 0x15b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0x192 (size before relaxing) - 0x40217b9c etharp_input - *fill* 0x40217cf7 0x1 + 0x40217efc etharp_input + *fill* 0x40218057 0x1 .text.etharp_request - 0x40217cf8 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x40218058 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0x35 (size before relaxing) - 0x40217cfc etharp_request - *fill* 0x40217d25 0x3 + 0x4021805c etharp_request + *fill* 0x40218085 0x3 .text.etharp_tmr - 0x40217d28 0x81 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x40218088 0x81 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0x91 (size before relaxing) - 0x40217d28 etharp_tmr - *fill* 0x40217da9 0x3 + 0x40218088 etharp_tmr + *fill* 0x40218109 0x3 .text.etharp_output_to_arp_index - 0x40217dac 0x93 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x4021810c 0x93 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0xaf (size before relaxing) - *fill* 0x40217e3f 0x1 + *fill* 0x4021819f 0x1 .text.etharp_query - 0x40217e40 0x129 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x402181a0 0x129 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0x159 (size before relaxing) - 0x40217e44 etharp_query - *fill* 0x40217f69 0x3 + 0x402181a4 etharp_query + *fill* 0x402182c9 0x3 .text.etharp_output_LWIP2 - 0x40217f6c 0xfb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x402182cc 0xfb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0x127 (size before relaxing) - 0x40217f70 etharp_output_LWIP2 - *fill* 0x40218067 0x1 + 0x402182d0 etharp_output_LWIP2 + *fill* 0x402183c7 0x1 .text.ip4addr_aton - 0x40218068 0x169 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + 0x402183c8 0x169 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) 0x175 (size before relaxing) - 0x40218068 ip4addr_aton - *fill* 0x402181d1 0x3 + 0x402183c8 ip4addr_aton + *fill* 0x40218531 0x3 .text.igmp_send - 0x402181d4 0xf1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x40218534 0xf1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) 0x10d (size before relaxing) - *fill* 0x402182c5 0x3 + *fill* 0x40218625 0x3 .text.igmp_delaying_member - 0x402182c8 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x40218628 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) 0x55 (size before relaxing) - *fill* 0x40218311 0x3 + *fill* 0x40218671 0x3 .text.igmp_init - 0x40218314 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x40218674 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) 0x22 (size before relaxing) - 0x40218320 igmp_init - *fill* 0x40218332 0x2 + 0x40218680 igmp_init + *fill* 0x40218692 0x2 .text.igmp_report_groups - 0x40218334 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x40218694 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) 0x2a (size before relaxing) - 0x40218334 igmp_report_groups - *fill* 0x4021835a 0x2 + 0x40218694 igmp_report_groups + *fill* 0x402186ba 0x2 .text.igmp_lookup_group - 0x4021835c 0x5a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x402186bc 0x5a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) 0x66 (size before relaxing) - *fill* 0x402183b6 0x2 + *fill* 0x40218716 0x2 .text.igmp_start - 0x402183b8 0x4d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x40218718 0x4d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) 0x59 (size before relaxing) - 0x402183b8 igmp_start - *fill* 0x40218405 0x3 + 0x40218718 igmp_start + *fill* 0x40218765 0x3 .text.igmp_input - 0x40218408 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x40218768 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) 0x120 (size before relaxing) - 0x40218408 igmp_input + 0x40218768 igmp_input .text.igmp_tmr - 0x402184fc 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x4021885c 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) 0x71 (size before relaxing) - 0x402184fc igmp_tmr - *fill* 0x40218561 0x3 + 0x4021885c igmp_tmr + *fill* 0x402188c1 0x3 .text.ip4_input_accept - 0x40218564 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + 0x402188c4 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) 0x40 (size before relaxing) .text.ip4_route - 0x40218598 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + 0x402188f8 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) 0x6f (size before relaxing) - 0x4021859c ip4_route - *fill* 0x402185ff 0x1 + 0x402188fc ip4_route + *fill* 0x4021895f 0x1 .text.ip4_input - 0x40218600 0x26a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + 0x40218960 0x26a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) 0x301 (size before relaxing) - 0x40218604 ip4_input - *fill* 0x4021886a 0x2 + 0x40218964 ip4_input + *fill* 0x40218bca 0x2 .text.ip4_output_if_opt_src - 0x4021886c 0x1c9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + 0x40218bcc 0x1c9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) 0x1fd (size before relaxing) - 0x40218870 ip4_output_if_opt_src - *fill* 0x40218a35 0x3 + 0x40218bd0 ip4_output_if_opt_src + *fill* 0x40218d95 0x3 .text.ip4_output_if_opt - 0x40218a38 0x33 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + 0x40218d98 0x33 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) 0x37 (size before relaxing) - 0x40218a38 ip4_output_if_opt - *fill* 0x40218a6b 0x1 + 0x40218d98 ip4_output_if_opt + *fill* 0x40218dcb 0x1 .text.ip4_output_if - 0x40218a6c 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + 0x40218dcc 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) 0x29 (size before relaxing) - 0x40218a6c ip4_output_if - *fill* 0x40218a91 0x3 + 0x40218dcc ip4_output_if + *fill* 0x40218df1 0x3 .text.ip4_output_if_src - 0x40218a94 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + 0x40218df4 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) 0x29 (size before relaxing) - 0x40218a94 ip4_output_if_src - *fill* 0x40218ab9 0x3 + 0x40218df4 ip4_output_if_src + *fill* 0x40218e19 0x3 .text.icmp_send_response$isra$0 - 0x40218abc 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + 0x40218e1c 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) 0xef (size before relaxing) - *fill* 0x40218b84 0x0 + *fill* 0x40218ee4 0x0 .text.icmp_input - 0x40218b84 0x1cd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + 0x40218ee4 0x1cd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) 0x229 (size before relaxing) - 0x40218b84 icmp_input - *fill* 0x40218d51 0x3 + 0x40218ee4 icmp_input + *fill* 0x402190b1 0x3 .text.icmp_dest_unreach - 0x40218d54 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + 0x402190b4 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) 0x1d (size before relaxing) - 0x40218d54 icmp_dest_unreach - *fill* 0x40218d6d 0x3 + 0x402190b4 icmp_dest_unreach + *fill* 0x402190cd 0x3 .text.icmp_time_exceeded - 0x40218d70 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + 0x402190d0 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) 0x1d (size before relaxing) - 0x40218d70 icmp_time_exceeded - *fill* 0x40218d89 0x3 + 0x402190d0 icmp_time_exceeded + *fill* 0x402190e9 0x3 .text.sntp_retry - 0x40218d8c 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x402190ec 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0x41 (size before relaxing) - *fill* 0x40218dc5 0x3 + *fill* 0x40219125 0x3 .text.sntp_recv - 0x40218dc8 0xf5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x40219128 0xf5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0x150 (size before relaxing) - *fill* 0x40218ebd 0x3 + *fill* 0x4021921d 0x3 .text.sntp_send_request - 0x40218ec0 0x77 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x40219220 0x77 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0xa7 (size before relaxing) - *fill* 0x40218f37 0x1 + *fill* 0x40219297 0x1 .text.sntp_request - 0x40218f38 0x5b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x40219298 0x5b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0x73 (size before relaxing) - *fill* 0x40218f93 0x1 + *fill* 0x402192f3 0x1 .text.sntp_dns_found - 0x40218f94 0x22 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x402192f4 0x22 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0x35 (size before relaxing) - *fill* 0x40218fb6 0x2 + *fill* 0x40219316 0x2 .text.sntp_init - 0x40218fb8 0x74 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x40219318 0x74 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0xb7 (size before relaxing) - 0x40218fbc sntp_init - *fill* 0x4021902c 0x0 + 0x4021931c sntp_init + *fill* 0x4021938c 0x0 .text.sntp_stop - 0x4021902c 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x4021938c 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0x5d (size before relaxing) - 0x4021902c sntp_stop - *fill* 0x40219065 0x3 + 0x4021938c sntp_stop + *fill* 0x402193c5 0x3 .text.sntp_setoperatingmode - 0x40219068 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x402193c8 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0xc (size before relaxing) - 0x40219068 sntp_setoperatingmode + 0x402193c8 sntp_setoperatingmode .text.sntp_servermode_dhcp - 0x40219070 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) - 0x40219074 sntp_servermode_dhcp + 0x402193d0 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x402193d4 sntp_servermode_dhcp .text.sntp_setserver - 0x4021908c 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x402193ec 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0x18 (size before relaxing) - 0x4021908c sntp_setserver + 0x402193ec sntp_setserver .text.dhcp_set_ntp_servers - 0x402190a0 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x40219400 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0x48 (size before relaxing) - 0x402190a0 dhcp_set_ntp_servers + 0x40219400 dhcp_set_ntp_servers .text.mem_malloc - 0x402190dc 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + 0x4021943c 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) 0x33 (size before relaxing) - 0x402190dc mem_malloc - *fill* 0x40219103 0x1 + 0x4021943c mem_malloc + *fill* 0x40219463 0x1 .text.mem_free - 0x40219104 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + 0x40219464 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) 0x17 (size before relaxing) - 0x40219104 mem_free - *fill* 0x40219117 0x1 + 0x40219464 mem_free + *fill* 0x40219477 0x1 .text.inet_chksum_pseudo - 0x40219118 0xbd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + 0x40219478 0xbd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) 0xd1 (size before relaxing) - 0x40219118 inet_chksum_pseudo - *fill* 0x402191d5 0x3 + 0x40219478 inet_chksum_pseudo + *fill* 0x40219535 0x3 .text.ip_chksum_pseudo - 0x402191d8 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + 0x40219538 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) 0x1c (size before relaxing) - 0x402191d8 ip_chksum_pseudo + 0x40219538 ip_chksum_pseudo .text.inet_chksum - 0x402191f0 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + 0x40219550 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) 0x21 (size before relaxing) - 0x402191f0 inet_chksum - *fill* 0x4021920d 0x3 + 0x40219550 inet_chksum + *fill* 0x4021956d 0x3 .text.inet_chksum_pbuf - 0x40219210 0x6b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + 0x40219570 0x6b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) 0x73 (size before relaxing) - 0x40219210 inet_chksum_pbuf - *fill* 0x4021927b 0x1 + 0x40219570 inet_chksum_pbuf + *fill* 0x402195db 0x1 .text.raw_input - 0x4021927c 0xc4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + 0x402195dc 0xc4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) 0xd0 (size before relaxing) - 0x40219280 raw_input + 0x402195e0 raw_input .text.raw_netif_ip_addr_changed - 0x40219340 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + 0x402196a0 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) 0x2b (size before relaxing) - 0x40219340 raw_netif_ip_addr_changed - *fill* 0x40219367 0x1 + 0x402196a0 raw_netif_ip_addr_changed + *fill* 0x402196c7 0x1 .text.voidinit - 0x40219368 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - *fill* 0x4021936c 0x0 - *fill* 0x4021936c 0x0 - *fill* 0x4021936c 0x0 - *fill* 0x4021936c 0x0 - *fill* 0x4021936c 0x0 + 0x402196c8 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + *fill* 0x402196cc 0x0 + *fill* 0x402196cc 0x0 + *fill* 0x402196cc 0x0 + *fill* 0x402196cc 0x0 + *fill* 0x402196cc 0x0 .text.espconn_init - 0x4021936c 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - 0x4021936c espconn_init - *fill* 0x4021936e 0x0 - *fill* 0x4021936e 0x0 - *fill* 0x4021936e 0x0 - *fill* 0x4021936e 0x0 - *fill* 0x4021936e 0x0 - *fill* 0x4021936e 0x2 + 0x402196cc 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x402196cc espconn_init + *fill* 0x402196ce 0x0 + *fill* 0x402196ce 0x0 + *fill* 0x402196ce 0x0 + *fill* 0x402196ce 0x0 + *fill* 0x402196ce 0x0 + *fill* 0x402196ce 0x2 .text.new_input - 0x40219370 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 - *fill* 0x40219374 0x0 + 0x402196d0 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 + *fill* 0x402196d4 0x0 .text.memp_init - 0x40219374 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x40219374 memp_init - *fill* 0x40219376 0x0 - *fill* 0x40219376 0x0 - *fill* 0x40219376 0x0 - *fill* 0x40219376 0x0 - *fill* 0x40219376 0x0 - *fill* 0x40219376 0x0 - *fill* 0x40219376 0x0 - *fill* 0x40219376 0x0 - *fill* 0x40219376 0x0 - *fill* 0x40219376 0x2 + 0x402196d4 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x402196d4 memp_init + *fill* 0x402196d6 0x0 + *fill* 0x402196d6 0x0 + *fill* 0x402196d6 0x0 + *fill* 0x402196d6 0x0 + *fill* 0x402196d6 0x0 + *fill* 0x402196d6 0x0 + *fill* 0x402196d6 0x0 + *fill* 0x402196d6 0x0 + *fill* 0x402196d6 0x0 + *fill* 0x402196d6 0x2 .text.tcp_update_rcv_ann_wnd - 0x40219378 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x40219378 tcp_update_rcv_ann_wnd - *fill* 0x402193b7 0x0 - *fill* 0x402193b7 0x0 - *fill* 0x402193b7 0x1 + 0x402196d8 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x402196d8 tcp_update_rcv_ann_wnd + *fill* 0x40219717 0x0 + *fill* 0x40219717 0x0 + *fill* 0x40219717 0x1 .text.tcp_setprio - 0x402193b8 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x402193b8 tcp_setprio - *fill* 0x402193c2 0x0 - *fill* 0x402193c2 0x2 - .text.tcp_arg 0x402193c4 0x6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x402193c4 tcp_arg - *fill* 0x402193ca 0x2 + 0x40219718 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40219718 tcp_setprio + *fill* 0x40219722 0x0 + *fill* 0x40219722 0x2 + .text.tcp_arg 0x40219724 0x6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40219724 tcp_arg + *fill* 0x4021972a 0x2 .text.tcp_recv - 0x402193cc 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x402193cc tcp_recv - *fill* 0x402193d3 0x1 + 0x4021972c 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x4021972c tcp_recv + *fill* 0x40219733 0x1 .text.tcp_sent - 0x402193d4 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x402193d4 tcp_sent - *fill* 0x402193db 0x1 - .text.tcp_err 0x402193dc 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x402193dc tcp_err - *fill* 0x402193e3 0x1 + 0x40219734 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40219734 tcp_sent + *fill* 0x4021973b 0x1 + .text.tcp_err 0x4021973c 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x4021973c tcp_err + *fill* 0x40219743 0x1 .text.tcp_accept - 0x402193e4 0xb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x402193e4 tcp_accept - *fill* 0x402193ef 0x1 + 0x40219744 0xb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40219744 tcp_accept + *fill* 0x4021974f 0x1 .text.tcp_poll - 0x402193f0 0xe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x402193f0 tcp_poll - *fill* 0x402193fe 0x2 + 0x40219750 0xe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40219750 tcp_poll + *fill* 0x4021975e 0x2 .text.tcp_eff_send_mss_netif - 0x40219400 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x40219400 tcp_eff_send_mss_netif - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x0 - *fill* 0x40219426 0x2 + 0x40219760 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x40219760 tcp_eff_send_mss_netif + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x0 + *fill* 0x40219786 0x2 .text.lwip_htons - 0x40219428 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) - 0x40219428 lwip_htons - *fill* 0x40219439 0x0 - *fill* 0x40219439 0x3 + 0x40219788 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + 0x40219788 lwip_htons + *fill* 0x40219799 0x0 + *fill* 0x40219799 0x3 .text.lwip_strnicmp - 0x4021943c 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) - 0x4021943c lwip_strnicmp + 0x4021979c 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + 0x4021979c lwip_strnicmp .text.netif_null_output_ip4 - 0x4021947c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - *fill* 0x40219480 0x0 - *fill* 0x40219480 0x0 + 0x402197dc 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + *fill* 0x402197e0 0x0 + *fill* 0x402197e0 0x0 .text.netif_init - 0x40219480 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - 0x40219480 netif_init - *fill* 0x40219482 0x0 - *fill* 0x40219482 0x0 - *fill* 0x40219482 0x0 - *fill* 0x40219482 0x0 - *fill* 0x40219482 0x0 - *fill* 0x40219482 0x2 + 0x402197e0 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x402197e0 netif_init + *fill* 0x402197e2 0x0 + *fill* 0x402197e2 0x0 + *fill* 0x402197e2 0x0 + *fill* 0x402197e2 0x0 + *fill* 0x402197e2 0x0 + *fill* 0x402197e2 0x2 .text.netif_set_link_down - 0x40219484 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - 0x40219484 netif_set_link_down - *fill* 0x40219496 0x2 + 0x402197e4 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x402197e4 netif_set_link_down + *fill* 0x402197f6 0x2 .text.pbuf_skip_const - 0x40219498 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) - *fill* 0x402194b3 0x0 - *fill* 0x402194b3 0x0 - *fill* 0x402194b3 0x0 - *fill* 0x402194b3 0x0 - *fill* 0x402194b3 0x0 - *fill* 0x402194b3 0x0 - *fill* 0x402194b3 0x0 - *fill* 0x402194b3 0x1 + 0x402197f8 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + *fill* 0x40219813 0x0 + *fill* 0x40219813 0x0 + *fill* 0x40219813 0x0 + *fill* 0x40219813 0x0 + *fill* 0x40219813 0x0 + *fill* 0x40219813 0x0 + *fill* 0x40219813 0x0 + *fill* 0x40219813 0x1 .text.pbuf_clen - 0x402194b4 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) - 0x402194b4 pbuf_clen - *fill* 0x402194c8 0x0 + 0x40219814 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x40219814 pbuf_clen + *fill* 0x40219828 0x0 .text.pbuf_cat - 0x402194c8 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) - 0x402194c8 pbuf_cat - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x0 - *fill* 0x402194fa 0x2 + 0x40219828 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x40219828 pbuf_cat + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x0 + *fill* 0x4021985a 0x2 .text.udp_disconnect - 0x402194fc 0x1a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) - 0x402194fc udp_disconnect - *fill* 0x40219516 0x2 + 0x4021985c 0x1a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x4021985c udp_disconnect + *fill* 0x40219876 0x2 .text.udp_recv - 0x40219518 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) - 0x40219518 udp_recv - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 - *fill* 0x40219520 0x0 + 0x40219878 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x40219878 udp_recv + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 + *fill* 0x40219880 0x0 .text.dhcp_set_state - 0x40219520 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - *fill* 0x40219536 0x2 + 0x40219880 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + *fill* 0x40219896 0x2 .text.dhcp_option_short - 0x40219538 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - *fill* 0x40219551 0x0 - *fill* 0x40219551 0x0 - *fill* 0x40219551 0x0 - *fill* 0x40219551 0x0 - *fill* 0x40219551 0x0 - *fill* 0x40219551 0x0 - *fill* 0x40219551 0x0 - *fill* 0x40219551 0x3 + 0x40219898 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + *fill* 0x402198b1 0x0 + *fill* 0x402198b1 0x0 + *fill* 0x402198b1 0x0 + *fill* 0x402198b1 0x0 + *fill* 0x402198b1 0x0 + *fill* 0x402198b1 0x0 + *fill* 0x402198b1 0x0 + *fill* 0x402198b1 0x3 .text.dhcp_supplied_address - 0x40219554 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - 0x40219554 dhcp_supplied_address - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x0 - *fill* 0x40219572 0x2 + 0x402198b4 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x402198b4 dhcp_supplied_address + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x0 + *fill* 0x402198d2 0x2 .text.ip4_addr_isbroadcast_u32 - 0x40219574 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) - 0x40219574 ip4_addr_isbroadcast_u32 - *fill* 0x402195a9 0x0 - *fill* 0x402195a9 0x0 - *fill* 0x402195a9 0x0 - *fill* 0x402195a9 0x0 - *fill* 0x402195a9 0x0 - *fill* 0x402195a9 0x3 + 0x402198d4 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + 0x402198d4 ip4_addr_isbroadcast_u32 + *fill* 0x40219909 0x0 + *fill* 0x40219909 0x0 + *fill* 0x40219909 0x0 + *fill* 0x40219909 0x0 + *fill* 0x40219909 0x0 + *fill* 0x40219909 0x3 .text.igmp_lookfor_group - 0x402195ac 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) - 0x402195ac igmp_lookfor_group - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x0 - *fill* 0x402195bf 0x1 + 0x4021990c 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x4021990c igmp_lookfor_group + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x0 + *fill* 0x4021991f 0x1 .text.mem_init - 0x402195c0 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) - 0x402195c0 mem_init - *fill* 0x402195c2 0x2 + 0x40219920 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + 0x40219920 mem_init + *fill* 0x40219922 0x2 .text.mem_trim - 0x402195c4 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) - 0x402195c4 mem_trim - *fill* 0x402195c6 0x0 - *fill* 0x402195c6 0x0 - *fill* 0x402195c6 0x2 + 0x40219924 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + 0x40219924 mem_trim + *fill* 0x40219926 0x0 + *fill* 0x40219926 0x0 + *fill* 0x40219926 0x2 .text.lwip_standard_chksum - 0x402195c8 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) - 0x402195c8 lwip_standard_chksum - *fill* 0x40219630 0x0 - *fill* 0x40219630 0x0 - *fill* 0x40219630 0x0 + 0x40219928 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + 0x40219928 lwip_standard_chksum + *fill* 0x40219990 0x0 + *fill* 0x40219990 0x0 + *fill* 0x40219990 0x0 *liblwip2-1460-feat.a:(.literal .text .literal.* .text.*) *libbearssl.a:(.literal .text .literal.* .text.*) *libaxtls.a:(.literal .text .literal.* .text.*) *libat.a:(.literal.* .text.*) *libcrypto.a:(.literal.* .text.*) .text.aes_wrap - 0x40219630 0xe3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-wrap.o) + 0x40219990 0xe3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-wrap.o) 0x103 (size before relaxing) - 0x40219634 aes_wrap - *fill* 0x40219713 0x1 + 0x40219994 aes_wrap + *fill* 0x40219a73 0x1 .text.rijndaelEncrypt - 0x40219714 0x41a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal-enc.o) + 0x40219a74 0x41a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal-enc.o) 0x426 (size before relaxing) - 0x40219718 rijndaelEncrypt - *fill* 0x40219b2e 0x2 + 0x40219a78 rijndaelEncrypt + *fill* 0x40219e8e 0x2 .text.aes_encrypt_init - 0x40219b30 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal-enc.o) + 0x40219e90 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal-enc.o) 0x69 (size before relaxing) - 0x40219b38 aes_encrypt_init - *fill* 0x40219b8d 0x3 + 0x40219e98 aes_encrypt_init + *fill* 0x40219eed 0x3 .text.aes_encrypt - 0x40219b90 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal-enc.o) + 0x40219ef0 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal-enc.o) 0x1d (size before relaxing) - 0x40219b90 aes_encrypt - *fill* 0x40219ba9 0x3 + 0x40219ef0 aes_encrypt + *fill* 0x40219f09 0x3 .text.aes_encrypt_deinit - 0x40219bac 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal-enc.o) + 0x40219f0c 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal-enc.o) 0x37 (size before relaxing) - 0x40219bac aes_encrypt_deinit - *fill* 0x40219bd7 0x1 + 0x40219f0c aes_encrypt_deinit + *fill* 0x40219f37 0x1 .text.rijndaelKeySetupEnc - 0x40219bd8 0x304 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal.o) + 0x40219f38 0x304 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal.o) 0x31c (size before relaxing) - 0x40219bdc rijndaelKeySetupEnc - *fill* 0x40219edc 0x0 - *fill* 0x40219edc 0x0 - *fill* 0x40219edc 0x0 - *fill* 0x40219edc 0x0 - *fill* 0x40219edc 0x0 - *fill* 0x40219edc 0x0 + 0x40219f3c rijndaelKeySetupEnc + *fill* 0x4021a23c 0x0 + *fill* 0x4021a23c 0x0 + *fill* 0x4021a23c 0x0 + *fill* 0x4021a23c 0x0 + *fill* 0x4021a23c 0x0 + *fill* 0x4021a23c 0x0 *libespnow.a:(.literal.* .text.*) *libjson.a:(.literal.* .text.*) *liblwip.a:(.literal.* .text.*) *libmesh.a:(.literal.* .text.*) *libnet80211.a:(.literal.* .text.*) .text.ieee80211_chan_init - 0x40219edc 0x8b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x4021a23c 0x8b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) 0x93 (size before relaxing) - *fill* 0x40219f67 0x1 + *fill* 0x4021a2c7 0x1 .text.ieee80211_rate_ref_init - 0x40219f68 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) - 0x40219f6c ieee80211_rate_ref_init - *fill* 0x40219f7e 0x2 + 0x4021a2c8 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x4021a2cc ieee80211_rate_ref_init + *fill* 0x4021a2de 0x2 .text.ieee80211_freedom_inside_cb - 0x40219f80 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) - 0x40219f84 ieee80211_freedom_inside_cb - *fill* 0x40219fae 0x2 + 0x4021a2e0 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x4021a2e4 ieee80211_freedom_inside_cb + *fill* 0x4021a30e 0x2 .text.ieee80211_freedom_init - 0x40219fb0 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x4021a310 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) 0x30 (size before relaxing) - 0x40219fb4 ieee80211_freedom_init + 0x4021a314 ieee80211_freedom_init .text.ieee80211_user_ie_init - 0x40219fd8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) - 0x40219fdc ieee80211_user_ie_init + 0x4021a338 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x4021a33c ieee80211_user_ie_init .text.ieee80211_ifattach - 0x40219ff8 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x4021a358 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) 0xc3 (size before relaxing) - 0x40219ff8 ieee80211_ifattach - *fill* 0x4021a05f 0x1 + 0x4021a358 ieee80211_ifattach + *fill* 0x4021a3bf 0x1 .text.ieee80211_mhz2ieee - 0x4021a060 0x64 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x4021a3c0 0x64 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) 0x74 (size before relaxing) - 0x4021a068 ieee80211_mhz2ieee + 0x4021a3c8 ieee80211_mhz2ieee .text.ieee80211_chan2ieee - 0x4021a0c4 0x15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x4021a424 0x15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) 0x19 (size before relaxing) - 0x4021a0c4 ieee80211_chan2ieee - *fill* 0x4021a0d9 0x3 + 0x4021a424 ieee80211_chan2ieee + *fill* 0x4021a439 0x3 .text.wifi_mode_set - 0x4021a0dc 0x205 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x4021a43c 0x205 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) 0x25d (size before relaxing) - 0x4021a10c wifi_mode_set - *fill* 0x4021a2e1 0x3 + 0x4021a46c wifi_mode_set + *fill* 0x4021a641 0x3 .text.ieee80211_crypto_encap - 0x4021a2e4 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto.o) + 0x4021a644 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto.o) 0x5c (size before relaxing) - 0x4021a2e4 ieee80211_crypto_encap + 0x4021a644 ieee80211_crypto_encap .text.ieee80211_crypto_decap - 0x4021a33c 0x6b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto.o) + 0x4021a69c 0x6b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto.o) 0x6f (size before relaxing) - 0x4021a33c ieee80211_crypto_decap - *fill* 0x4021a3a7 0x1 + 0x4021a69c ieee80211_crypto_decap + *fill* 0x4021a707 0x1 .text.ieee80211_getmgtframe - 0x4021a3a8 0x4c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ets.o) + 0x4021a708 0x4c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ets.o) 0x50 (size before relaxing) - 0x4021a3ac ieee80211_getmgtframe + 0x4021a70c ieee80211_getmgtframe .text.ieee80211_hostap_send_beacon - 0x4021a3f4 0x33d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021a754 0x33d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x3cd (size before relaxing) - *fill* 0x4021a731 0x3 + *fill* 0x4021aa91 0x3 .text.ieee80211_hostapd_beacon_txcb - 0x4021a734 0x102 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021aa94 0x102 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x166 (size before relaxing) - *fill* 0x4021a836 0x2 + *fill* 0x4021ab96 0x2 .text.ieee80211_hostap_init - 0x4021a838 0x172 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021ab98 0x172 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x1b2 (size before relaxing) - *fill* 0x4021a9aa 0x2 + *fill* 0x4021ad0a 0x2 .text.ieee80211_hostap_deinit - 0x4021a9ac 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021ad0c 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0xff (size before relaxing) - *fill* 0x4021aa83 0x1 + *fill* 0x4021ade3 0x1 .text.ieee80211_hostap_attach - 0x4021aa84 0xc4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021ade4 0xc4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x10e (size before relaxing) - 0x4021aa8c ieee80211_hostap_attach - *fill* 0x4021ab48 0x0 + 0x4021adec ieee80211_hostap_attach + *fill* 0x4021aea8 0x0 .text.hostap_deliver_data - 0x4021ab48 0x37 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021aea8 0x37 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x3f (size before relaxing) - *fill* 0x4021ab7f 0x1 + *fill* 0x4021aedf 0x1 .text.hostap_handle_timer - 0x4021ab80 0xcb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021aee0 0xcb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x107 (size before relaxing) - 0x4021ab90 hostap_handle_timer - *fill* 0x4021ac4b 0x1 + 0x4021aef0 hostap_handle_timer + *fill* 0x4021afab 0x1 .text.hostap_input - 0x4021ac4c 0x4bd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021afac 0x4bd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x569 (size before relaxing) - 0x4021ac58 hostap_input - *fill* 0x4021b109 0x3 + 0x4021afb8 hostap_input + *fill* 0x4021b469 0x3 .text.hostap_auth_open - 0x4021b10c 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021b46c 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x108 (size before relaxing) .text.is11bclient - 0x4021b1dc 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) - *fill* 0x4021b20a 0x2 + 0x4021b53c 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + *fill* 0x4021b56a 0x2 .text.hostap_recv_mgmt - 0x4021b20c 0x60b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021b56c 0x60b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x6a3 (size before relaxing) - *fill* 0x4021b817 0x1 + *fill* 0x4021bb77 0x1 .text.hostap_recv_ctl - 0x4021b818 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021bb78 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x1f (size before relaxing) - *fill* 0x4021b830 0x0 + *fill* 0x4021bb90 0x0 .text.hostap_recv_pspoll - 0x4021b830 0xca C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021bb90 0xca C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0xf5 (size before relaxing) - *fill* 0x4021b8fa 0x2 + *fill* 0x4021bc5a 0x2 .text.freqcal_scan_done - 0x4021b8fc 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021bc5c 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x18 (size before relaxing) - 0x4021b8fc freqcal_scan_done + 0x4021bc5c freqcal_scan_done .text.ApFreqCalTimerCB - 0x4021b910 0x42a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021bc70 0x42a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x536 (size before relaxing) - *fill* 0x4021bd3a 0x2 + *fill* 0x4021c09a 0x2 .text.wifi_softap_start - 0x4021bd3c 0x183 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021c09c 0x183 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x21b (size before relaxing) - 0x4021bd4c wifi_softap_start - *fill* 0x4021bebf 0x1 + 0x4021c0ac wifi_softap_start + *fill* 0x4021c21f 0x1 .text.wifi_softap_stop - 0x4021bec0 0x1ac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x4021c220 0x1ac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x263 (size before relaxing) - 0x4021bed0 wifi_softap_stop - *fill* 0x4021c06c 0x0 + 0x4021c230 wifi_softap_stop + *fill* 0x4021c3cc 0x0 .text.ieee80211_ht_attach - 0x4021c06c 0x5a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021c3cc 0x5a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x66 (size before relaxing) - 0x4021c07c ieee80211_ht_attach - *fill* 0x4021c0c6 0x2 + 0x4021c3dc ieee80211_ht_attach + *fill* 0x4021c426 0x2 .text.ieee80211_ht_node_init - 0x4021c0c8 0x44 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021c428 0x44 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x48 (size before relaxing) - 0x4021c0cc ieee80211_ht_node_init + 0x4021c42c ieee80211_ht_node_init .text.findhtchan - 0x4021c10c 0x24 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021c46c 0x24 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x28 (size before relaxing) .text.ieee80211_parse_htcap - 0x4021c130 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021c490 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x49 (size before relaxing) - 0x4021c130 ieee80211_parse_htcap - *fill* 0x4021c175 0x3 + 0x4021c490 ieee80211_parse_htcap + *fill* 0x4021c4d5 0x3 .text.htinfo_update_chw - 0x4021c178 0x6c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021c4d8 0x6c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x88 (size before relaxing) .text.ieee80211_ht_updateparams - 0x4021c1e4 0x120 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021c544 0x120 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x158 (size before relaxing) - 0x4021c1f0 ieee80211_ht_updateparams + 0x4021c550 ieee80211_ht_updateparams .text.ieee80211_setup_htrates - 0x4021c304 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021c664 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0xdc (size before relaxing) - 0x4021c308 ieee80211_setup_htrates + 0x4021c668 ieee80211_setup_htrates .text.ieee80211_setup_basic_htrates - 0x4021c3d4 0x80 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021c734 0x80 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x84 (size before relaxing) - 0x4021c3d4 ieee80211_setup_basic_htrates + 0x4021c734 ieee80211_setup_basic_htrates .text.ieee80211_set_mcsset - 0x4021c454 0x157 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021c7b4 0x157 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x167 (size before relaxing) - *fill* 0x4021c5ab 0x1 + *fill* 0x4021c90b 0x1 .text.ieee80211_add_htcap_body - 0x4021c5ac 0x160 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021c90c 0x160 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x19c (size before relaxing) .text.ieee80211_add_htcap - 0x4021c70c 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021ca6c 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x22 (size before relaxing) - 0x4021c70c ieee80211_add_htcap - *fill* 0x4021c72a 0x2 + 0x4021ca6c ieee80211_add_htcap + *fill* 0x4021ca8a 0x2 .text.ieee80211_add_htcap_vendor - 0x4021c72c 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021ca8c 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x38 (size before relaxing) - 0x4021c72c ieee80211_add_htcap_vendor + 0x4021ca8c ieee80211_add_htcap_vendor .text.ieee80211_set_basic_htrates - 0x4021c760 0x66 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021cac0 0x66 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x6a (size before relaxing) - *fill* 0x4021c7c6 0x2 + *fill* 0x4021cb26 0x2 .text.ieee80211_add_htinfo_body - 0x4021c7c8 0x8a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021cb28 0x8a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x96 (size before relaxing) - *fill* 0x4021c852 0x2 + *fill* 0x4021cbb2 0x2 .text.ieee80211_add_htinfo - 0x4021c854 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021cbb4 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x22 (size before relaxing) - 0x4021c854 ieee80211_add_htinfo - *fill* 0x4021c872 0x2 + 0x4021cbb4 ieee80211_add_htinfo + *fill* 0x4021cbd2 0x2 .text.ieee80211_add_htinfo_vendor - 0x4021c874 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021cbd4 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x38 (size before relaxing) - 0x4021c874 ieee80211_add_htinfo_vendor + 0x4021cbd4 ieee80211_add_htinfo_vendor .text.ht_recv_action_ba_addba_request - 0x4021c8a8 0x82 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021cc08 0x82 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x8a (size before relaxing) - *fill* 0x4021c92a 0x2 + *fill* 0x4021cc8a 0x2 .text.ht_send_action_ba_addba - 0x4021c92c 0x186 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x4021cc8c 0x186 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) 0x19e (size before relaxing) - *fill* 0x4021cab2 0x2 + *fill* 0x4021ce12 0x2 .text.ieee80211_deliver_data - 0x4021cab4 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021ce14 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0x54 (size before relaxing) - 0x4021cab4 ieee80211_deliver_data + 0x4021ce14 ieee80211_deliver_data .text.ieee80211_decap - 0x4021cafc 0x10f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021ce5c 0x10f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0x12f (size before relaxing) - 0x4021cb08 ieee80211_decap - *fill* 0x4021cc0b 0x1 + 0x4021ce68 ieee80211_decap + *fill* 0x4021cf6b 0x1 .text.ieee80211_setup_rates - 0x4021cc0c 0x6a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021cf6c 0x6a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0x76 (size before relaxing) - 0x4021cc0c ieee80211_setup_rates - *fill* 0x4021cc76 0x2 + 0x4021cf6c ieee80211_setup_rates + *fill* 0x4021cfd6 0x2 .text.ieee80211_alloc_challenge - 0x4021cc78 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021cfd8 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0x36 (size before relaxing) - 0x4021cc7c ieee80211_alloc_challenge - *fill* 0x4021ccaa 0x2 + 0x4021cfdc ieee80211_alloc_challenge + *fill* 0x4021d00a 0x2 .text.ieee80211_parse_beacon - 0x4021ccac 0x516 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021d00c 0x516 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0x546 (size before relaxing) - 0x4021cccc ieee80211_parse_beacon - *fill* 0x4021d1c2 0x2 + 0x4021d02c ieee80211_parse_beacon + *fill* 0x4021d522 0x2 .text.wpa_cipher - 0x4021d1c4 0x6a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021d524 0x6a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0x76 (size before relaxing) - *fill* 0x4021d22e 0x2 + *fill* 0x4021d58e 0x2 .text.wpa_keymgmt - 0x4021d230 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021d590 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0x48 (size before relaxing) .text.rsn_cipher - 0x4021d26c 0x84 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021d5cc 0x84 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) .text.rsn_keymgmt - 0x4021d2f0 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021d650 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0x48 (size before relaxing) .text.ieee80211_parse_wpa - 0x4021d32c 0x11e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021d68c 0x11e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0x132 (size before relaxing) - 0x4021d330 ieee80211_parse_wpa - *fill* 0x4021d44a 0x2 + 0x4021d690 ieee80211_parse_wpa + *fill* 0x4021d7aa 0x2 .text.ieee80211_parse_rsn - 0x4021d44c 0x108 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021d7ac 0x108 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0x11c (size before relaxing) - 0x4021d44c ieee80211_parse_rsn + 0x4021d7ac ieee80211_parse_rsn .text.ieee80211_parse_action - 0x4021d554 0x9f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x4021d8b4 0x9f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) 0xa3 (size before relaxing) - 0x4021d558 ieee80211_parse_action - *fill* 0x4021d5f3 0x1 + 0x4021d8b8 ieee80211_parse_action + *fill* 0x4021d953 0x1 .text.ieee80211_mesh_quick_get - 0x4021d5f4 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_mesh_quick.o) + 0x4021d954 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_mesh_quick.o) 0xe4 (size before relaxing) - 0x4021d5f8 ieee80211_mesh_quick_get + 0x4021d958 ieee80211_mesh_quick_get .text.ieee80211_mesh_quick_ie_add - 0x4021d6c4 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_mesh_quick.o) + 0x4021da24 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_mesh_quick.o) 0x3a (size before relaxing) - 0x4021d6c4 ieee80211_mesh_quick_ie_add - *fill* 0x4021d6f6 0x2 + 0x4021da24 ieee80211_mesh_quick_ie_add + *fill* 0x4021da56 0x2 .text.ieee80211_output_pbuf - 0x4021d6f8 0x281 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021da58 0x281 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x2e1 (size before relaxing) - 0x4021d708 ieee80211_output_pbuf - *fill* 0x4021d979 0x3 + 0x4021da68 ieee80211_output_pbuf + *fill* 0x4021dcd9 0x3 .text.ieee80211_send_setup - 0x4021d97c 0x131 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021dcdc 0x131 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x159 (size before relaxing) - 0x4021d97c ieee80211_send_setup - *fill* 0x4021daad 0x3 + 0x4021dcdc ieee80211_send_setup + *fill* 0x4021de0d 0x3 .text.ieee80211_mgmt_output - 0x4021dab0 0xeb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021de10 0xeb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x11f (size before relaxing) - 0x4021dab0 ieee80211_mgmt_output - *fill* 0x4021db9b 0x1 + 0x4021de10 ieee80211_mgmt_output + *fill* 0x4021defb 0x1 .text.ieee80211_send_nulldata - 0x4021db9c 0x147 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021defc 0x147 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x173 (size before relaxing) - 0x4021dba0 ieee80211_send_nulldata - *fill* 0x4021dce3 0x1 + 0x4021df00 ieee80211_send_nulldata + *fill* 0x4021e043 0x1 .text.ieee80211_encap_esfbuf - 0x4021dce4 0x2b8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e044 0x2b8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x2e4 (size before relaxing) .text.ieee80211_classify_pbuf - 0x4021df9c 0x75 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e2fc 0x75 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x79 (size before relaxing) - *fill* 0x4021e011 0x3 + *fill* 0x4021e371 0x3 .text.ieee80211_add_rates - 0x4021e014 0x4e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e374 0x4e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x56 (size before relaxing) - 0x4021e014 ieee80211_add_rates - *fill* 0x4021e062 0x2 + 0x4021e374 ieee80211_add_rates + *fill* 0x4021e3c2 0x2 .text.ieee80211_add_xrates - 0x4021e064 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e3c4 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x4d (size before relaxing) - 0x4021e064 ieee80211_add_xrates - *fill* 0x4021e0a9 0x3 + 0x4021e3c4 ieee80211_add_xrates + *fill* 0x4021e409 0x3 .text.ieee80211_add_ssid - 0x4021e0ac 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e40c 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x32 (size before relaxing) - *fill* 0x4021e0da 0x2 + *fill* 0x4021e43a 0x2 .text.add_appie - 0x4021e0dc 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e43c 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x2c (size before relaxing) .text.ieee80211_add_wme_info - 0x4021e104 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e464 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x27 (size before relaxing) - *fill* 0x4021e127 0x1 + *fill* 0x4021e487 0x1 .text.ieee80211_add_csa - 0x4021e128 0x22 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e488 0x22 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x26 (size before relaxing) - *fill* 0x4021e14a 0x2 + *fill* 0x4021e4aa 0x2 .text.ieee80211_send_probereq - 0x4021e14c 0x274 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e4ac 0x274 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x2e8 (size before relaxing) - 0x4021e154 ieee80211_send_probereq + 0x4021e4b4 ieee80211_send_probereq .text.ieee80211_getcapinfo - 0x4021e3c0 0x4e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e720 0x4e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x52 (size before relaxing) - 0x4021e3c0 ieee80211_getcapinfo - *fill* 0x4021e40e 0x2 + 0x4021e720 ieee80211_getcapinfo + *fill* 0x4021e76e 0x2 .text.ieee80211_send_mgmt - 0x4021e410 0x5a0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021e770 0x5a0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x66c (size before relaxing) - 0x4021e41c ieee80211_send_mgmt + 0x4021e77c ieee80211_send_mgmt .text.ieee80211_alloc_proberesp - 0x4021e9b0 0x265 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021ed10 0x265 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x2ed (size before relaxing) - 0x4021e9bc ieee80211_alloc_proberesp - *fill* 0x4021ec15 0x3 + 0x4021ed1c ieee80211_alloc_proberesp + *fill* 0x4021ef75 0x3 .text.ieee80211_send_proberesp - 0x4021ec18 0x152 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021ef78 0x152 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x192 (size before relaxing) - 0x4021ec1c ieee80211_send_proberesp - *fill* 0x4021ed6a 0x2 + 0x4021ef7c ieee80211_send_proberesp + *fill* 0x4021f0ca 0x2 .text.ieee80211_alloc_deauth - 0x4021ed6c 0x3e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021f0cc 0x3e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x42 (size before relaxing) - 0x4021ed6c ieee80211_alloc_deauth - *fill* 0x4021edaa 0x2 + 0x4021f0cc ieee80211_alloc_deauth + *fill* 0x4021f10a 0x2 .text.ieee80211_send_deauth - 0x4021edac 0x13b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021f10c 0x13b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x17b (size before relaxing) - 0x4021edac ieee80211_send_deauth - *fill* 0x4021eee7 0x1 + 0x4021f10c ieee80211_send_deauth + *fill* 0x4021f247 0x1 .text.ieee80211_freedom_output - 0x4021eee8 0x1ea C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021f248 0x1ea C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x222 (size before relaxing) - 0x4021eeec ieee80211_freedom_output - *fill* 0x4021f0d2 0x2 + 0x4021f24c ieee80211_freedom_output + *fill* 0x4021f432 0x2 .text.ieee80211_beacon_construct - 0x4021f0d4 0x24d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021f434 0x24d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x2e1 (size before relaxing) - *fill* 0x4021f321 0x3 + *fill* 0x4021f681 0x3 .text.ieee80211_beacon_alloc - 0x4021f324 0x1de C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x4021f684 0x1de C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) 0x22a (size before relaxing) - 0x4021f328 ieee80211_beacon_alloc - *fill* 0x4021f502 0x2 + 0x4021f688 ieee80211_beacon_alloc + *fill* 0x4021f862 0x2 .text.ieee80211_psq_init - 0x4021f504 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_power.o) + 0x4021f864 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_power.o) 0x24 (size before relaxing) - 0x4021f504 ieee80211_psq_init + 0x4021f864 ieee80211_psq_init .text.ieee80211_set_tim - 0x4021f524 0x41 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_power.o) - 0x4021f528 ieee80211_set_tim - *fill* 0x4021f565 0x3 + 0x4021f884 0x41 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_power.o) + 0x4021f888 ieee80211_set_tim + *fill* 0x4021f8c5 0x3 .text.ieee80211_pwrsave - 0x4021f568 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_power.o) + 0x4021f8c8 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_power.o) 0x78 (size before relaxing) - 0x4021f568 ieee80211_pwrsave + 0x4021f8c8 ieee80211_pwrsave .text.pwrsave_flushq - 0x4021f5d0 0xaf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_power.o) + 0x4021f930 0xaf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_power.o) 0xdb (size before relaxing) - 0x4021f5d0 pwrsave_flushq - *fill* 0x4021f67f 0x1 + 0x4021f930 pwrsave_flushq + *fill* 0x4021f9df 0x1 .text.ieee80211_node_pwrsave - 0x4021f680 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_power.o) + 0x4021f9e0 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_power.o) 0x44 (size before relaxing) - 0x4021f680 ieee80211_node_pwrsave + 0x4021f9e0 ieee80211_node_pwrsave .text.ieee80211_proto_attach - 0x4021f6b8 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_proto.o) + 0x4021fa18 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_proto.o) 0x33 (size before relaxing) - 0x4021f6bc ieee80211_proto_attach - *fill* 0x4021f6e3 0x1 + 0x4021fa1c ieee80211_proto_attach + *fill* 0x4021fa43 0x1 .text.ieee80211_mlme_connect_bss - 0x4021f6e4 0x9d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_proto.o) + 0x4021fa44 0x9d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_proto.o) 0xcd (size before relaxing) - 0x4021f6e8 ieee80211_mlme_connect_bss - *fill* 0x4021f781 0x3 + 0x4021fa48 ieee80211_mlme_connect_bss + *fill* 0x4021fae1 0x3 .text.ieee80211_regdomain_update - 0x4021f784 0xc7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) + 0x4021fae4 0xc7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) 0xdb (size before relaxing) - 0x4021f788 ieee80211_regdomain_update - *fill* 0x4021f84b 0x1 + 0x4021fae8 ieee80211_regdomain_update + *fill* 0x4021fbab 0x1 .text.ieee80211_regdomain_get_country - 0x4021f84c 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) + 0x4021fbac 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) 0x32 (size before relaxing) - 0x4021f850 ieee80211_regdomain_get_country - *fill* 0x4021f87a 0x2 + 0x4021fbb0 ieee80211_regdomain_get_country + *fill* 0x4021fbda 0x2 .text.ieee80211_add_countryie - 0x4021f87c 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) + 0x4021fbdc 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) 0x49 (size before relaxing) - 0x4021f87c ieee80211_add_countryie - *fill* 0x4021f8c1 0x3 + 0x4021fbdc ieee80211_add_countryie + *fill* 0x4021fc21 0x3 .text.ieee80211_regdomain_max_chan - 0x4021f8c4 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) + 0x4021fc24 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) 0x23 (size before relaxing) - 0x4021f8c4 ieee80211_regdomain_max_chan - *fill* 0x4021f8e3 0x1 + 0x4021fc24 ieee80211_regdomain_max_chan + *fill* 0x4021fc43 0x1 .text.ieee80211_regdomain_min_chan - 0x4021f8e4 0x15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) + 0x4021fc44 0x15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) 0x19 (size before relaxing) - 0x4021f8e4 ieee80211_regdomain_min_chan - *fill* 0x4021f8f9 0x3 + 0x4021fc44 ieee80211_regdomain_min_chan + *fill* 0x4021fc59 0x3 .text.ieee80211_regdomain_chan_in_range - 0x4021f8fc 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) + 0x4021fc5c 0x27 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) 0x33 (size before relaxing) - 0x4021f8fc ieee80211_regdomain_chan_in_range - *fill* 0x4021f923 0x1 + 0x4021fc5c ieee80211_regdomain_chan_in_range + *fill* 0x4021fc83 0x1 .text.ieee80211_regdomain_is_active_scan - 0x4021f924 0x4b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) + 0x4021fc84 0x4b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) 0x5f (size before relaxing) - 0x4021f924 ieee80211_regdomain_is_active_scan - *fill* 0x4021f96f 0x1 + 0x4021fc84 ieee80211_regdomain_is_active_scan + *fill* 0x4021fccf 0x1 .text.ieee80211_rfid_locp_recv_open - 0x4021f970 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) + 0x4021fcd0 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) 0x41 (size before relaxing) - 0x4021f974 ieee80211_rfid_locp_recv_open - *fill* 0x4021f9a9 0x3 + 0x4021fcd4 ieee80211_rfid_locp_recv_open + *fill* 0x4021fd09 0x3 .text.ieee80211_rfid_locp_recv_close - 0x4021f9ac 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) + 0x4021fd0c 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) 0x1f (size before relaxing) - 0x4021f9b0 ieee80211_rfid_locp_recv_close - *fill* 0x4021f9c7 0x1 + 0x4021fd10 ieee80211_rfid_locp_recv_close + *fill* 0x4021fd27 0x1 .text.ieee80211_rfid_locp_recv_reset - 0x4021f9c8 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) + 0x4021fd28 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) 0x2b (size before relaxing) - 0x4021f9c8 ieee80211_rfid_locp_recv_reset - *fill* 0x4021f9e7 0x1 + 0x4021fd28 ieee80211_rfid_locp_recv_reset + *fill* 0x4021fd47 0x1 .text.ieee80211_rfid_locp_recv - 0x4021f9e8 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) + 0x4021fd48 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) 0x21 (size before relaxing) - 0x4021f9e8 ieee80211_rfid_locp_recv - *fill* 0x4021fa05 0x3 + 0x4021fd48 ieee80211_rfid_locp_recv + *fill* 0x4021fd65 0x3 .text.register_ieee80211_rfid_locp_recv_cb - 0x4021fa08 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) + 0x4021fd68 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) 0x17 (size before relaxing) - 0x4021fa08 register_ieee80211_rfid_locp_recv_cb - *fill* 0x4021fa1b 0x1 + 0x4021fd68 register_ieee80211_rfid_locp_recv_cb + *fill* 0x4021fd7b 0x1 .text.unregister_ieee80211_rfid_locp_recv_cb - 0x4021fa1c 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) + 0x4021fd7c 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_rfid.o) 0xe (size before relaxing) - 0x4021fa1c unregister_ieee80211_rfid_locp_recv_cb - *fill* 0x4021fa26 0x2 + 0x4021fd7c unregister_ieee80211_rfid_locp_recv_cb + *fill* 0x4021fd86 0x2 .text.ieee80211_scan_attach - 0x4021fa28 0x62 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x4021fd88 0x62 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x6a (size before relaxing) - 0x4021fa38 ieee80211_scan_attach - *fill* 0x4021fa8a 0x2 + 0x4021fd98 ieee80211_scan_attach + *fill* 0x4021fdea 0x2 .text.slp_wk_cpu_scan_wait_timout - 0x4021fa8c 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x4021fdec 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x29 (size before relaxing) - *fill* 0x4021faad 0x3 + *fill* 0x4021fe0d 0x3 .text.freq_changle_scan_start - 0x4021fab0 0x130 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x4021fe10 0x130 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x178 (size before relaxing) - 0x4021fac0 freq_changle_scan_start + 0x4021fe20 freq_changle_scan_start .text.scan_start - 0x4021fbe0 0x132 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x4021ff40 0x132 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x1ae (size before relaxing) - 0x4021fbf0 scan_start - *fill* 0x4021fd12 0x2 + 0x4021ff50 scan_start + *fill* 0x40220072 0x2 .text.scan_next_channel - 0x4021fd14 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220074 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x33 (size before relaxing) - *fill* 0x4021fd34 0x0 + *fill* 0x40220094 0x0 .text.scan_perform - 0x4021fd34 0x5e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220094 0x5e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x6a (size before relaxing) - *fill* 0x4021fd92 0x2 + *fill* 0x402200f2 0x2 .text.scan_op_start - 0x4021fd94 0x42 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x402200f4 0x42 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x56 (size before relaxing) - *fill* 0x4021fdd6 0x2 + *fill* 0x40220136 0x2 .text.scan_op_end - 0x4021fdd8 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220138 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x10e (size before relaxing) - *fill* 0x4021feaf 0x1 + *fill* 0x4022020f 0x1 .text.scan_cancel - 0x4021feb0 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220210 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x4a (size before relaxing) - 0x4021feb0 scan_cancel - *fill* 0x4021fee2 0x2 + 0x40220210 scan_cancel + *fill* 0x40220242 0x2 .text.scan_done - 0x4021fee4 0x1a9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220244 0x1a9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x249 (size before relaxing) - *fill* 0x4022008d 0x3 + *fill* 0x402203ed 0x3 .text.scan_add_bssid - 0x40220090 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x402203f0 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x2d (size before relaxing) - 0x40220094 scan_add_bssid - *fill* 0x402200b5 0x3 + 0x402203f4 scan_add_bssid + *fill* 0x40220415 0x3 .text.scan_remove_bssid - 0x402200b8 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220418 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0xe (size before relaxing) - 0x402200b8 scan_remove_bssid - *fill* 0x402200c2 0x2 + 0x40220418 scan_remove_bssid + *fill* 0x40220422 0x2 .text.scan_hidden_ssid - 0x402200c4 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220424 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0xc (size before relaxing) - 0x402200c4 scan_hidden_ssid + 0x40220424 scan_hidden_ssid .text.scan_set_act_duration - 0x402200cc 0x9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x4022042c 0x9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0xd (size before relaxing) - 0x402200cc scan_set_act_duration - *fill* 0x402200d5 0x3 + 0x4022042c scan_set_act_duration + *fill* 0x40220435 0x3 .text.scan_set_pas_duration - 0x402200d8 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220438 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0xb (size before relaxing) - 0x402200d8 scan_set_pas_duration - *fill* 0x402200df 0x1 + 0x40220438 scan_set_pas_duration + *fill* 0x4022043f 0x1 .text.scan_add_probe_ssid - 0x402200e0 0x53 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220440 0x53 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x63 (size before relaxing) - 0x402200e0 scan_add_probe_ssid - *fill* 0x40220133 0x1 + 0x40220440 scan_add_probe_ssid + *fill* 0x40220493 0x1 .text.scan_remove_probe_ssid - 0x40220134 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220494 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x1c (size before relaxing) - 0x40220134 scan_remove_probe_ssid + 0x40220494 scan_remove_probe_ssid .text.scan_send_probe - 0x4022014c 0x8d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x402204ac 0x8d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0xa1 (size before relaxing) - *fill* 0x402201d9 0x3 + *fill* 0x40220539 0x3 .text.scan_get_next_channel - 0x402201dc 0xab C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x4022053c 0xab C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0xbb (size before relaxing) - *fill* 0x40220287 0x1 + *fill* 0x402205e7 0x1 .text.scan_enter_oper_channel - 0x40220288 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x402205e8 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x16 (size before relaxing) - *fill* 0x4022029a 0x2 + *fill* 0x402205fa 0x2 .text.scan_inter_channel_timeout - 0x4022029c 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x402205fc 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x52 (size before relaxing) - *fill* 0x402202db 0x1 + *fill* 0x4022063b 0x1 .text.scan_set_desChan - 0x402202dc 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x4022063c 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0xe (size before relaxing) - 0x402202dc scan_set_desChan - *fill* 0x402202e6 0x2 + 0x4022063c scan_set_desChan + *fill* 0x40220646 0x2 .text.scan_get_type - 0x402202e8 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220648 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0xb (size before relaxing) - 0x402202e8 scan_get_type - *fill* 0x402202ef 0x1 + 0x40220648 scan_get_type + *fill* 0x4022064f 0x1 .text.scan_connect_state - 0x402202f0 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220650 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x65 (size before relaxing) - 0x402202f4 scan_connect_state - *fill* 0x40220339 0x3 + 0x40220654 scan_connect_state + *fill* 0x40220699 0x3 .text.scan_profile_check - 0x4022033c 0x1d3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x4022069c 0x1d3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x223 (size before relaxing) - 0x40220358 scan_profile_check - *fill* 0x4022050f 0x1 + 0x402206b8 scan_profile_check + *fill* 0x4022086f 0x1 .text.clear_bss_queue - 0x40220510 0x5a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220870 0x5a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x6e (size before relaxing) - *fill* 0x4022056a 0x2 + *fill* 0x402208ca 0x2 .text.check_bss_queue - 0x4022056c 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x402208cc 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x40 (size before relaxing) .text.scan_add_ssid - 0x402205a4 0x1d9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220904 0x1d9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x231 (size before relaxing) - *fill* 0x4022077d 0x3 + *fill* 0x40220add 0x3 .text.scan_parse_beacon - 0x40220780 0x3a3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40220ae0 0x3a3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) 0x493 (size before relaxing) - 0x40220788 scan_parse_beacon - *fill* 0x40220b23 0x1 + 0x40220ae8 scan_parse_beacon + *fill* 0x40220e83 0x1 .text.save_rssi - 0x40220b24 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40220e84 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) .text.max_rssi - 0x40220b40 0x17 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) - *fill* 0x40220b57 0x1 + 0x40220ea0 0x17 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + *fill* 0x40220eb7 0x1 .text.sta_authretry - 0x40220b58 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40220eb8 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0x29 (size before relaxing) - *fill* 0x40220b7d 0x3 + *fill* 0x40220edd 0x3 .text.sta_status_set - 0x40220b80 0x5c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40220ee0 0x5c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0x60 (size before relaxing) - 0x40220b80 sta_status_set + 0x40220ee0 sta_status_set .text.ieee80211_sta_new_state - 0x40220bdc 0x396 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40220f3c 0x396 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0x485 (size before relaxing) - 0x40220bec ieee80211_sta_new_state - *fill* 0x40220f72 0x2 + 0x40220f4c ieee80211_sta_new_state + *fill* 0x402212d2 0x2 .text.sta_input - 0x40220f74 0x38c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x402212d4 0x38c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0x3dc (size before relaxing) - 0x40220f78 sta_input + 0x402212d8 sta_input .text.sta_auth_open - 0x40221300 0xe1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40221660 0xe1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0x135 (size before relaxing) - *fill* 0x402213e1 0x3 + *fill* 0x40221741 0x3 .text.sta_auth_shared - 0x402213e4 0xf9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40221744 0xf9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0x129 (size before relaxing) - *fill* 0x402214dd 0x3 + *fill* 0x4022183d 0x3 .text.sta_rx_csa - 0x402214e0 0x9c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40221840 0x9c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0xb0 (size before relaxing) .text.sta_recv_mgmt - 0x4022157c 0x2ae C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x402218dc 0x2ae C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0x32e (size before relaxing) - *fill* 0x4022182a 0x2 + *fill* 0x40221b8a 0x2 .text.sta_recv_assoc - 0x4022182c 0x2fa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40221b8c 0x2fa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0x386 (size before relaxing) - *fill* 0x40221b26 0x2 + *fill* 0x40221e86 0x2 .text.wifi_station_start - 0x40221b28 0x74 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40221e88 0x74 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0x98 (size before relaxing) - 0x40221b2c wifi_station_start + 0x40221e8c wifi_station_start .text.wifi_station_stop - 0x40221b9c 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40221efc 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) 0x55 (size before relaxing) - 0x40221ba0 wifi_station_stop - *fill* 0x40221be1 0x3 + 0x40221f00 wifi_station_stop + *fill* 0x40221f41 0x3 .text.chm_init - 0x40221be4 0x91 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x40221f44 0x91 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0xad (size before relaxing) - 0x40221bf4 chm_init - *fill* 0x40221c75 0x3 + 0x40221f54 chm_init + *fill* 0x40221fd5 0x3 .text.chm_acquire_lock - 0x40221c78 0x46 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x40221fd8 0x46 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0x52 (size before relaxing) - 0x40221c78 chm_acquire_lock - *fill* 0x40221cbe 0x2 + 0x40221fd8 chm_acquire_lock + *fill* 0x4022201e 0x2 .text.chm_release_lock - 0x40221cc0 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x40222020 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0x15 (size before relaxing) - 0x40221cc0 chm_release_lock - *fill* 0x40221cd1 0x3 + 0x40222020 chm_release_lock + *fill* 0x40222031 0x3 .text.chm_start_op - 0x40221cd4 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x40222034 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0x4f (size before relaxing) - 0x40221cd4 chm_start_op - *fill* 0x40221d13 0x1 + 0x40222034 chm_start_op + *fill* 0x40222073 0x1 .text.chm_change_channel - 0x40221d14 0x92 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x40222074 0x92 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0xba (size before relaxing) - *fill* 0x40221da6 0x2 + *fill* 0x40222106 0x2 .text.chm_end_op - 0x40221da8 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x40222108 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0x40 (size before relaxing) - 0x40221da8 chm_end_op + 0x40222108 chm_end_op .text.chm_end_op_timeout - 0x40221ddc 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x4022213c 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0x18 (size before relaxing) .text.chm_cancel_op - 0x40221df0 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x40222150 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0x55 (size before relaxing) - 0x40221df0 chm_cancel_op - *fill* 0x40221e2d 0x3 + 0x40222150 chm_cancel_op + *fill* 0x4022218d 0x3 .text.chm_return_home_channel - 0x40221e30 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x40222190 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0x39 (size before relaxing) - 0x40221e30 chm_return_home_channel - *fill* 0x40221e5d 0x3 + 0x40222190 chm_return_home_channel + *fill* 0x402221bd 0x3 .text.chm_set_current_channel - 0x40221e60 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x402221c0 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0x41 (size before relaxing) - 0x40221e64 chm_set_current_channel - *fill* 0x40221e95 0x3 + 0x402221c4 chm_set_current_channel + *fill* 0x402221f5 0x3 .text.chm_check_same_channel - 0x40221e98 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + 0x402221f8 0x2e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) 0x42 (size before relaxing) - 0x40221e98 chm_check_same_channel - *fill* 0x40221ec6 0x2 + 0x402221f8 chm_check_same_channel + *fill* 0x40222226 0x2 .text.cnx_attach - 0x40221ec8 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222228 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x55 (size before relaxing) - 0x40221ed4 cnx_attach - *fill* 0x40221f11 0x3 + 0x40222234 cnx_attach + *fill* 0x40222271 0x3 .text.cnx_sta_connect_led_timer_cb - 0x40221f14 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222274 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x59 (size before relaxing) - 0x40221f14 cnx_sta_connect_led_timer_cb - *fill* 0x40221f5d 0x3 + 0x40222274 cnx_sta_connect_led_timer_cb + *fill* 0x402222bd 0x3 .text.cnx_sta_connect_cmd - 0x40221f60 0xc3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402222c0 0xc3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x10f (size before relaxing) - 0x40221f68 cnx_sta_connect_cmd - *fill* 0x40222023 0x1 + 0x402222c8 cnx_sta_connect_cmd + *fill* 0x40222383 0x1 .text.cnx_sta_scan_cmd - 0x40222024 0x13a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222384 0x13a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x1b5 (size before relaxing) - 0x40222028 cnx_sta_scan_cmd - *fill* 0x4022215e 0x2 + 0x40222388 cnx_sta_scan_cmd + *fill* 0x402224be 0x2 .text.cnx_start_connect - 0x40222160 0x73 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402224c0 0x73 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x8b (size before relaxing) - *fill* 0x402221d3 0x1 + *fill* 0x40222533 0x1 .text.cnx_traverse_rc_list - 0x402221d4 0x46 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222534 0x46 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x60 (size before relaxing) - *fill* 0x4022221a 0x2 + *fill* 0x4022257a 0x2 .text.cnx_probe_rc - 0x4022221c 0x5f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x4022257c 0x5f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x77 (size before relaxing) - *fill* 0x4022227b 0x1 + *fill* 0x402225db 0x1 .text.cnx_probe_rc_tx_cb - 0x4022227c 0x4c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402225dc 0x4c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x73 (size before relaxing) - *fill* 0x402222c8 0x0 + *fill* 0x40222628 0x0 .text.cnx_traverse_rc_lis_done - 0x402222c8 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222628 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x40 (size before relaxing) .text.cnx_connect_timeout - 0x402222fc 0x87 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x4022265c 0x87 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0xb6 (size before relaxing) - 0x40222304 cnx_connect_timeout - *fill* 0x40222383 0x1 + 0x40222664 cnx_connect_timeout + *fill* 0x402226e3 0x1 .text.cnx_auth_timeout - 0x40222384 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402226e4 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x38 (size before relaxing) - 0x40222384 cnx_auth_timeout + 0x402226e4 cnx_auth_timeout .text.cnx_assoc_timeout - 0x402223a4 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222704 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x38 (size before relaxing) - 0x402223a4 cnx_assoc_timeout + 0x40222704 cnx_assoc_timeout .text.cnx_handshake_timeout - 0x402223c4 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222724 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x5f (size before relaxing) - 0x402223c4 cnx_handshake_timeout - *fill* 0x40222403 0x1 + 0x40222724 cnx_handshake_timeout + *fill* 0x40222763 0x1 .text.cnx_start_handoff_cb - 0x40222404 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222764 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x18 (size before relaxing) - 0x40222404 cnx_start_handoff_cb - *fill* 0x40222415 0x3 + 0x40222764 cnx_start_handoff_cb + *fill* 0x40222775 0x3 .text.cnx_do_handoff - 0x40222418 0x183 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222778 0x183 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x213 (size before relaxing) - *fill* 0x4022259b 0x1 + *fill* 0x402228fb 0x1 .text.cnx_csa_fn - 0x4022259c 0xa1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402228fc 0xa1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0xd5 (size before relaxing) - 0x402225a0 cnx_csa_fn - *fill* 0x4022263d 0x3 + 0x40222900 cnx_csa_fn + *fill* 0x4022299d 0x3 .text.cnx_connect_to_bss - 0x40222640 0x160 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402229a0 0x160 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x1d8 (size before relaxing) .text.cnx_connect_op - 0x402227a0 0x153 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222b00 0x153 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x1ce (size before relaxing) - *fill* 0x402228f3 0x1 + *fill* 0x40222c53 0x1 .text.cnx_choose_rc - 0x402228f4 0x7c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222c54 0x7c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x98 (size before relaxing) .text.cnx_cal_rc_util - 0x40222970 0x52 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222cd0 0x52 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x56 (size before relaxing) - *fill* 0x402229c2 0x2 + *fill* 0x40222d22 0x2 .text.cnx_bss_alloc - 0x402229c4 0xca C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222d24 0xca C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0xd6 (size before relaxing) - 0x402229c8 cnx_bss_alloc - *fill* 0x40222a8e 0x2 + 0x40222d28 cnx_bss_alloc + *fill* 0x40222dee 0x2 .text.cnx_rc_search - 0x40222a90 0x53 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222df0 0x53 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x63 (size before relaxing) - 0x40222a90 cnx_rc_search - *fill* 0x40222ae3 0x1 + 0x40222df0 cnx_rc_search + *fill* 0x40222e43 0x1 .text.cnx_get_next_rc - 0x40222ae4 0x2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222e44 0x2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x34 (size before relaxing) .text.cnx_add_rc - 0x40222b10 0x69 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222e70 0x69 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x71 (size before relaxing) - 0x40222b10 cnx_add_rc - *fill* 0x40222b79 0x3 + 0x40222e70 cnx_add_rc + *fill* 0x40222ed9 0x3 .text.cnx_remove_all_rc - 0x40222b7c 0x4b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222edc 0x4b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x57 (size before relaxing) - 0x40222b7c cnx_remove_all_rc - *fill* 0x40222bc7 0x1 + 0x40222edc cnx_remove_all_rc + *fill* 0x40222f27 0x1 .text.cnx_remove_rc - 0x40222bc8 0x72 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222f28 0x72 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x7e (size before relaxing) - 0x40222bc8 cnx_remove_rc - *fill* 0x40222c3a 0x2 + 0x40222f28 cnx_remove_rc + *fill* 0x40222f9a 0x2 .text.cnx_remove_rc_except - 0x40222c3c 0x5c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222f9c 0x5c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x68 (size before relaxing) .text.cnx_rc_update_rssi - 0x40222c98 0x8b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40222ff8 0x8b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x96 (size before relaxing) - 0x40222c98 cnx_rc_update_rssi - *fill* 0x40222d23 0x1 + 0x40222ff8 cnx_rc_update_rssi + *fill* 0x40223083 0x1 .text.cnx_rc_update_state_metric - 0x40222d24 0x6e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40223084 0x6e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x7d (size before relaxing) - 0x40222d24 cnx_rc_update_state_metric - *fill* 0x40222d92 0x2 + 0x40223084 cnx_rc_update_state_metric + *fill* 0x402230f2 0x2 .text.cnx_rc_update_age - 0x40222d94 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402230f4 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x2a (size before relaxing) - 0x40222d94 cnx_rc_update_age - *fill* 0x40222dba 0x2 + 0x402230f4 cnx_rc_update_age + *fill* 0x4022311a 0x2 .text.cnx_update_bss - 0x40222dbc 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x4022311c 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x38 (size before relaxing) - 0x40222dbc cnx_update_bss + 0x4022311c cnx_update_bss .text.cnx_update_bss_more - 0x40222dec 0x1e6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x4022314c 0x1e6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x266 (size before relaxing) - 0x40222df0 cnx_update_bss_more - *fill* 0x40222fd2 0x2 + 0x40223150 cnx_update_bss_more + *fill* 0x40223332 0x2 .text.cnx_sta_leave - 0x40222fd4 0xfa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40223334 0xfa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x162 (size before relaxing) - 0x40222fd4 cnx_sta_leave - *fill* 0x402230ce 0x2 + 0x40223334 cnx_sta_leave + *fill* 0x4022342e 0x2 .text.send_ap_probe - 0x402230d0 0x8b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40223430 0x8b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0xa7 (size before relaxing) - *fill* 0x4022315b 0x1 + *fill* 0x402234bb 0x1 .text.cnx_beacon_timeout - 0x4022315c 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402234bc 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x4b (size before relaxing) - *fill* 0x40223197 0x1 + *fill* 0x402234f7 0x1 .text.mgd_probe_send_timeout - 0x40223198 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402234f8 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x104 (size before relaxing) .text.cnx_sta_associated - 0x40223260 0x113 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402235c0 0x113 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x15b (size before relaxing) - 0x40223270 cnx_sta_associated - *fill* 0x40223373 0x1 + 0x402235d0 cnx_sta_associated + *fill* 0x402236d3 0x1 .text.cnx_node_alloc - 0x40223374 0x72 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402236d4 0x72 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x86 (size before relaxing) - 0x40223374 cnx_node_alloc - *fill* 0x402233e6 0x2 + 0x402236d4 cnx_node_alloc + *fill* 0x40223746 0x2 .text.cnx_node_remove - 0x402233e8 0x8b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40223748 0x8b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0xbf (size before relaxing) - 0x402233e8 cnx_node_remove - *fill* 0x40223473 0x1 + 0x40223748 cnx_node_remove + *fill* 0x402237d3 0x1 .text.cnx_node_search - 0x40223474 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x402237d4 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x81 (size before relaxing) - 0x40223474 cnx_node_search - *fill* 0x402234e5 0x3 + 0x402237d4 cnx_node_search + *fill* 0x40223845 0x3 .text.cnx_node_leave - 0x402234e8 0x102 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x40223848 0x102 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x146 (size before relaxing) - 0x402234f0 cnx_node_leave - *fill* 0x402235ea 0x2 + 0x40223850 cnx_node_leave + *fill* 0x4022394a 0x2 .text.cnx_node_join - 0x402235ec 0x261 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x4022394c 0x261 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) 0x319 (size before relaxing) - 0x402235fc cnx_node_join - *fill* 0x4022384d 0x3 + 0x4022395c cnx_node_join + *fill* 0x40223bad 0x3 .text.ieee80211_send_action_register - 0x40223850 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) - 0x4022385c ieee80211_send_action_register + 0x40223bb0 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) + 0x40223bbc ieee80211_send_action_register .text.ieee80211_send_action - 0x4022388c 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) + 0x40223bec 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) 0x69 (size before relaxing) - 0x40223890 ieee80211_send_action - *fill* 0x402238e9 0x3 + 0x40223bf0 ieee80211_send_action + *fill* 0x40223c49 0x3 .text.ieee80211_recv_action_register - 0x402238ec 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) - 0x402238f8 ieee80211_recv_action_register + 0x40223c4c 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) + 0x40223c58 ieee80211_recv_action_register .text.ieee80211_recv_action - 0x40223928 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) + 0x40223c88 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) 0x77 (size before relaxing) - 0x4022392c ieee80211_recv_action - *fill* 0x4022398f 0x1 + 0x40223c8c ieee80211_recv_action + *fill* 0x40223cef 0x1 .text.get_iav_key - 0x40223990 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action_vendor.o) - 0x40223994 get_iav_key - *fill* 0x402239b5 0x3 + 0x40223cf0 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action_vendor.o) + 0x40223cf4 get_iav_key + *fill* 0x40223d15 0x3 .text.ieee80211_recv_action_vendor_spec - 0x402239b8 0x16d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action_vendor.o) + 0x40223d18 0x16d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action_vendor.o) 0x195 (size before relaxing) - 0x402239d0 ieee80211_recv_action_vendor_spec - *fill* 0x40223b25 0x3 + 0x40223d30 ieee80211_recv_action_vendor_spec + *fill* 0x40223e85 0x3 .text.ieee80211_action_vendor_spec_attach - 0x40223b28 0x43 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action_vendor.o) + 0x40223e88 0x43 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action_vendor.o) 0x53 (size before relaxing) - 0x40223b30 ieee80211_action_vendor_spec_attach - *fill* 0x40223b6b 0x1 + 0x40223e90 ieee80211_action_vendor_spec_attach + *fill* 0x40223ecb 0x1 .text.ccmp_encap - 0x40223b6c 0x79 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_ccmp.o) + 0x40223ecc 0x79 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_ccmp.o) 0x7d (size before relaxing) - *fill* 0x40223be5 0x3 + *fill* 0x40223f45 0x3 .text.ccmp_decap - 0x40223be8 0xe1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_ccmp.o) + 0x40223f48 0xe1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_ccmp.o) 0xe5 (size before relaxing) - *fill* 0x40223cc9 0x3 + *fill* 0x40224029 0x3 .text.ieee80211_add_ie_vendor_esp_head - 0x40223ccc 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ie_vendor.o) + 0x4022402c 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ie_vendor.o) 0x40 (size before relaxing) - 0x40223cd0 ieee80211_add_ie_vendor_esp_head + 0x40224030 ieee80211_add_ie_vendor_esp_head .text.ieee80211_add_ie_vendor_esp_simple_pair - 0x40223d08 0x5e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ie_vendor.o) + 0x40224068 0x5e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ie_vendor.o) 0x66 (size before relaxing) - 0x40223d08 ieee80211_add_ie_vendor_esp_simple_pair - *fill* 0x40223d66 0x2 + 0x40224068 ieee80211_add_ie_vendor_esp_simple_pair + *fill* 0x402240c6 0x2 .text.ieee80211_add_ie_vendor_esp_freq_annon - 0x40223d68 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ie_vendor.o) + 0x402240c8 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ie_vendor.o) 0x3f (size before relaxing) - 0x40223d68 ieee80211_add_ie_vendor_esp_freq_annon - *fill* 0x40223da3 0x1 + 0x402240c8 ieee80211_add_ie_vendor_esp_freq_annon + *fill* 0x40224103 0x1 .text.ieee80211_add_ie_vendor_esp_ssid - 0x40223da4 0x41 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ie_vendor.o) + 0x40224104 0x41 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ie_vendor.o) 0x49 (size before relaxing) - 0x40223da4 ieee80211_add_ie_vendor_esp_ssid - *fill* 0x40223de5 0x3 + 0x40224104 ieee80211_add_ie_vendor_esp_ssid + *fill* 0x40224145 0x3 .text.ieee80211_add_ie_vendor_esp_manufacturer - 0x40223de8 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ie_vendor.o) + 0x40224148 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ie_vendor.o) 0x5c (size before relaxing) - 0x40223de8 ieee80211_add_ie_vendor_esp_manufacturer + 0x40224148 ieee80211_add_ie_vendor_esp_manufacturer .text.ieee80211_phy_init - 0x40223e38 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_phy.o) + 0x40224198 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_phy.o) 0x3c (size before relaxing) - 0x40223e38 ieee80211_phy_init + 0x40224198 ieee80211_phy_init .text.ieee80211_phy_type_get - 0x40223e6c 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_phy.o) + 0x402241cc 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_phy.o) 0x13 (size before relaxing) - 0x40223e6c ieee80211_phy_type_get - *fill* 0x40223e7b 0x1 + 0x402241cc ieee80211_phy_type_get + *fill* 0x402241db 0x1 .text.ieee80211_setup_ratetable - 0x40223e7c 0x9c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_phy.o) + 0x402241dc 0x9c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_phy.o) 0xbc (size before relaxing) - 0x40223e88 ieee80211_setup_ratetable + 0x402241e8 ieee80211_setup_ratetable .text.tkip_encap - 0x40223f18 0x92 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_tkip.o) + 0x40224278 0x92 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_tkip.o) 0x96 (size before relaxing) - *fill* 0x40223faa 0x2 + *fill* 0x4022430a 0x2 .text.tkip_decap - 0x40223fac 0xf7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_tkip.o) + 0x4022430c 0xf7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_tkip.o) 0xff (size before relaxing) - *fill* 0x402240a3 0x1 + *fill* 0x40224403 0x1 .text.wep_encap - 0x402240a4 0x5b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_wep.o) - *fill* 0x402240ff 0x0 - *fill* 0x402240ff 0x0 - *fill* 0x402240ff 0x0 - *fill* 0x402240ff 0x0 - *fill* 0x402240ff 0x1 + 0x40224404 0x5b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_wep.o) + *fill* 0x4022445f 0x0 + *fill* 0x4022445f 0x0 + *fill* 0x4022445f 0x0 + *fill* 0x4022445f 0x0 + *fill* 0x4022445f 0x1 .text.ieee80211_find_channel - 0x40224100 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) - 0x40224100 ieee80211_find_channel - *fill* 0x40224129 0x0 - *fill* 0x40224129 0x3 + 0x40224460 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x40224460 ieee80211_find_channel + *fill* 0x40224489 0x0 + *fill* 0x40224489 0x3 .text.ieee80211_crypto_attach - 0x4022412c 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto.o) - 0x4022412c ieee80211_crypto_attach - *fill* 0x4022412e 0x0 - *fill* 0x4022412e 0x2 + 0x4022448c 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto.o) + 0x4022448c ieee80211_crypto_attach + *fill* 0x4022448e 0x0 + *fill* 0x4022448e 0x2 .text.ieee80211_hdrsize - 0x40224130 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x0 - *fill* 0x40224155 0x3 + 0x40224490 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x0 + *fill* 0x402244b5 0x3 .text.ieee80211_ht_node_cleanup - 0x40224158 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) - 0x40224158 ieee80211_ht_node_cleanup - *fill* 0x4022416b 0x0 - *fill* 0x4022416b 0x1 + 0x402244b8 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + 0x402244b8 ieee80211_ht_node_cleanup + *fill* 0x402244cb 0x0 + *fill* 0x402244cb 0x1 .text.htinfo_parse - 0x4022416c 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x0 - *fill* 0x4022418f 0x1 + 0x402244cc 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x0 + *fill* 0x402244ef 0x1 .text.ieee80211_setup_rateset - 0x40224190 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) - 0x40224190 ieee80211_setup_rateset - *fill* 0x40224194 0x0 - *fill* 0x40224194 0x0 - *fill* 0x40224194 0x0 - *fill* 0x40224194 0x0 + 0x402244f0 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + 0x402244f0 ieee80211_setup_rateset + *fill* 0x402244f4 0x0 + *fill* 0x402244f4 0x0 + *fill* 0x402244f4 0x0 + *fill* 0x402244f4 0x0 .text.ieee80211_tx_mgt_cb - 0x40224194 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) - 0x40224194 ieee80211_tx_mgt_cb - *fill* 0x40224196 0x0 - *fill* 0x40224196 0x0 - *fill* 0x40224196 0x0 - *fill* 0x40224196 0x0 - *fill* 0x40224196 0x0 - *fill* 0x40224196 0x2 + 0x402244f4 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + 0x402244f4 ieee80211_tx_mgt_cb + *fill* 0x402244f6 0x0 + *fill* 0x402244f6 0x0 + *fill* 0x402244f6 0x0 + *fill* 0x402244f6 0x0 + *fill* 0x402244f6 0x0 + *fill* 0x402244f6 0x2 .text.ieee80211_add_erp - 0x40224198 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) - *fill* 0x402241bd 0x0 - *fill* 0x402241bd 0x0 - *fill* 0x402241bd 0x0 - *fill* 0x402241bd 0x3 + 0x402244f8 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + *fill* 0x4022451d 0x0 + *fill* 0x4022451d 0x0 + *fill* 0x4022451d 0x0 + *fill* 0x4022451d 0x3 .text.ieee80211_is_tx_allowed - 0x402241c0 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) - *fill* 0x402241d2 0x0 - *fill* 0x402241d2 0x0 - *fill* 0x402241d2 0x0 - *fill* 0x402241d2 0x0 - *fill* 0x402241d2 0x0 - *fill* 0x402241d2 0x0 - *fill* 0x402241d2 0x0 - *fill* 0x402241d2 0x0 - *fill* 0x402241d2 0x0 - *fill* 0x402241d2 0x0 - *fill* 0x402241d2 0x2 + 0x40224520 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + *fill* 0x40224532 0x0 + *fill* 0x40224532 0x0 + *fill* 0x40224532 0x0 + *fill* 0x40224532 0x0 + *fill* 0x40224532 0x0 + *fill* 0x40224532 0x0 + *fill* 0x40224532 0x0 + *fill* 0x40224532 0x0 + *fill* 0x40224532 0x0 + *fill* 0x40224532 0x0 + *fill* 0x40224532 0x2 .text.ieee80211_set_shortslottime - 0x402241d4 0x15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_proto.o) - 0x402241d4 ieee80211_set_shortslottime - *fill* 0x402241e9 0x3 + 0x40224534 0x15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_proto.o) + 0x40224534 ieee80211_set_shortslottime + *fill* 0x40224549 0x3 .text.ieee80211_wme_updateparams - 0x402241ec 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_proto.o) - 0x402241ec ieee80211_wme_updateparams - *fill* 0x402241ee 0x0 - *fill* 0x402241ee 0x2 + 0x4022454c 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_proto.o) + 0x4022454c ieee80211_wme_updateparams + *fill* 0x4022454e 0x0 + *fill* 0x4022454e 0x2 .text.ieee80211_regdomain_attach - 0x402241f0 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) - 0x402241f0 ieee80211_regdomain_attach - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x0 - *fill* 0x40224211 0x3 + 0x40224550 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_regdomain.o) + 0x40224550 ieee80211_regdomain_attach + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x0 + *fill* 0x40224571 0x3 .text.scan_check_hidden - 0x40224214 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) - 0x40224214 scan_check_hidden - *fill* 0x40224232 0x0 - *fill* 0x40224232 0x0 - *fill* 0x40224232 0x2 + 0x40224574 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x40224574 scan_check_hidden + *fill* 0x40224592 0x0 + *fill* 0x40224592 0x0 + *fill* 0x40224592 0x2 .text.cipher_type_map - 0x40224234 0x2f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) - *fill* 0x40224263 0x1 + 0x40224594 0x2f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + *fill* 0x402245c3 0x1 .text.rate_to_phy_mode - 0x40224264 0x5b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) - *fill* 0x402242bf 0x0 - *fill* 0x402242bf 0x0 - *fill* 0x402242bf 0x0 - *fill* 0x402242bf 0x0 - *fill* 0x402242bf 0x0 - *fill* 0x402242bf 0x0 - *fill* 0x402242bf 0x0 - *fill* 0x402242bf 0x1 + 0x402245c4 0x5b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + *fill* 0x4022461f 0x0 + *fill* 0x4022461f 0x0 + *fill* 0x4022461f 0x0 + *fill* 0x4022461f 0x0 + *fill* 0x4022461f 0x0 + *fill* 0x4022461f 0x0 + *fill* 0x4022461f 0x0 + *fill* 0x4022461f 0x1 .text.ieee80211_parse_wmeparams - 0x402242c0 0x62 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) - 0x402242c0 ieee80211_parse_wmeparams - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x0 - *fill* 0x40224322 0x2 + 0x40224620 0x62 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + 0x40224620 ieee80211_parse_wmeparams + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x0 + *fill* 0x40224682 0x2 .text.cnx_process_tim - 0x40224324 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) - *fill* 0x40224326 0x0 - *fill* 0x40224326 0x0 - *fill* 0x40224326 0x0 - *fill* 0x40224326 0x0 - *fill* 0x40224326 0x2 + 0x40224684 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + *fill* 0x40224686 0x0 + *fill* 0x40224686 0x0 + *fill* 0x40224686 0x0 + *fill* 0x40224686 0x0 + *fill* 0x40224686 0x2 .text.cnx_process_handoff_trigger - 0x40224328 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) - *fill* 0x4022432a 0x0 - *fill* 0x4022432a 0x0 - *fill* 0x4022432a 0x0 - *fill* 0x4022432a 0x0 - *fill* 0x4022432a 0x0 - *fill* 0x4022432a 0x2 + 0x40224688 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + *fill* 0x4022468a 0x0 + *fill* 0x4022468a 0x0 + *fill* 0x4022468a 0x0 + *fill* 0x4022468a 0x0 + *fill* 0x4022468a 0x0 + *fill* 0x4022468a 0x2 .text.send_inval - 0x4022432c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) - *fill* 0x40224330 0x0 + 0x4022468c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) + *fill* 0x40224690 0x0 .text.recv_inval - 0x40224330 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 - *fill* 0x40224334 0x0 + 0x40224690 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action.o) + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 + *fill* 0x40224694 0x0 .text.wep_decap - 0x40224334 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_wep.o) + 0x40224694 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_wep.o) *libsmartconfig.a:(.literal.* .text.*) *libssl.a:(.literal.* .text.*) *libupgrade.a:(.literal.* .text.*) *libwpa.a:(.literal.* .text.*) .text.hostapd_derive_psk - 0x40224354 0x4a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(ap_config.o) + 0x402246b4 0x4a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(ap_config.o) 0x56 (size before relaxing) - *fill* 0x4022439e 0x2 + *fill* 0x402246fe 0x2 .text.hostapd_setup_wpa_psk - 0x402243a0 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(ap_config.o) + 0x40224700 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(ap_config.o) 0x35 (size before relaxing) - 0x402243a0 hostapd_setup_wpa_psk - *fill* 0x402243d1 0x3 + 0x40224700 hostapd_setup_wpa_psk + *fill* 0x40224731 0x3 .text.hostapd_get_psk - 0x402243d4 0x52 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(ap_config.o) + 0x40224734 0x52 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(ap_config.o) 0x56 (size before relaxing) - 0x402243d4 hostapd_get_psk - *fill* 0x40224426 0x2 + 0x40224734 hostapd_get_psk + *fill* 0x40224786 0x2 .text.hex2byte - 0x40224428 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) + 0x40224788 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) 0x41 (size before relaxing) - 0x40224428 hex2byte - *fill* 0x4022445d 0x3 + 0x40224788 hex2byte + *fill* 0x402247bd 0x3 .text.hexstr2bin - 0x40224460 0x44 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) + 0x402247c0 0x44 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) 0x48 (size before relaxing) - 0x40224460 hexstr2bin + 0x402247c0 hexstr2bin .text.wpa_get_ntp_timestamp - 0x402244a4 0x95 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) + 0x40224804 0x95 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) 0xad (size before relaxing) - 0x402244a8 wpa_get_ntp_timestamp - *fill* 0x40224539 0x3 + 0x40224808 wpa_get_ntp_timestamp + *fill* 0x40224899 0x3 .text.wpa_config_parse_string - 0x4022453c 0x10e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) + 0x4022489c 0x10e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) 0x13e (size before relaxing) - 0x40224540 wpa_config_parse_string - *fill* 0x4022464a 0x2 - .text.r_rand 0x4022464c 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(os_xtensa.o) + 0x402248a0 wpa_config_parse_string + *fill* 0x402249aa 0x2 + .text.r_rand 0x402249ac 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(os_xtensa.o) 0x16 (size before relaxing) - 0x4022464c r_rand - *fill* 0x4022465e 0x2 + 0x402249ac r_rand + *fill* 0x402249be 0x2 .text.os_get_random - 0x40224660 0x5f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(os_xtensa.o) + 0x402249c0 0x5f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(os_xtensa.o) 0x63 (size before relaxing) - 0x40224660 os_get_random - *fill* 0x402246bf 0x1 + 0x402249c0 os_get_random + *fill* 0x40224a1f 0x1 .text.wpa_auth_get_sm - 0x402246c0 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x402246e3 0x1 + 0x40224a20 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40224a43 0x1 .text.wpa_auth_add_sm - 0x402246e4 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224a44 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x3f (size before relaxing) - *fill* 0x4022471f 0x1 + *fill* 0x40224a7f 0x1 .text.wpa_auth_del_sm - 0x40224720 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224a80 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x2f (size before relaxing) - *fill* 0x4022474b 0x1 + *fill* 0x40224aab 0x1 .text.wpa_auth_set_key - 0x4022474c 0x143 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224aac 0x143 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x17f (size before relaxing) - *fill* 0x4022488f 0x1 + *fill* 0x40224bef 0x1 .text.wpa_rekey_gtk - 0x40224890 0x57 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224bf0 0x57 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x5f (size before relaxing) - *fill* 0x402248e7 0x1 + *fill* 0x40224c47 0x1 .text.wpa_rekey_ptk - 0x402248e8 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224c48 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x2a (size before relaxing) - *fill* 0x40224906 0x2 + *fill* 0x40224c66 0x2 .text.wpa_group_init_gmk_and_counter - 0x40224908 0x8d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224c68 0x8d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0xb1 (size before relaxing) - *fill* 0x40224995 0x3 + *fill* 0x40224cf5 0x3 .text.wpa_group_init - 0x40224998 0x75 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224cf8 0x75 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x9d (size before relaxing) - *fill* 0x40224a0d 0x3 + *fill* 0x40224d6d 0x3 .text.wpa_init - 0x40224a10 0x91 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224d70 0x91 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0xc1 (size before relaxing) - 0x40224a10 wpa_init - *fill* 0x40224aa1 0x3 + 0x40224d70 wpa_init + *fill* 0x40224e01 0x3 .text.wpa_auth_sta_init - 0x40224aa4 0x4e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224e04 0x4e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x5e (size before relaxing) - 0x40224aa4 wpa_auth_sta_init - *fill* 0x40224af2 0x2 + 0x40224e04 wpa_auth_sta_init + *fill* 0x40224e52 0x2 .text.wpa_auth_sta_associated - 0x40224af4 0x73 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224e54 0x73 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x83 (size before relaxing) - 0x40224af4 wpa_auth_sta_associated - *fill* 0x40224b67 0x1 + 0x40224e54 wpa_auth_sta_associated + *fill* 0x40224ec7 0x1 .text.wpa_free_sta_sm - 0x40224b68 0x56 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224ec8 0x56 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x72 (size before relaxing) - *fill* 0x40224bbe 0x2 + *fill* 0x40224f1e 0x2 .text.wpa_auth_sta_deinit - 0x40224bc0 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224f20 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x29 (size before relaxing) - 0x40224bc0 wpa_auth_sta_deinit - *fill* 0x40224be5 0x3 + 0x40224f20 wpa_auth_sta_deinit + *fill* 0x40224f45 0x3 .text.wpa_replay_counter_valid - 0x40224be8 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224f48 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x41 (size before relaxing) - *fill* 0x40224c25 0x3 + *fill* 0x40224f85 0x3 .text.wpa_replay_counter_mark_invalid - 0x40224c28 0x3e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224f88 0x3e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x42 (size before relaxing) - *fill* 0x40224c66 0x2 + *fill* 0x40224fc6 0x2 .text.wpa_receive_error_report - 0x40224c68 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224fc8 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x1a (size before relaxing) - *fill* 0x40224c7e 0x2 + *fill* 0x40224fde 0x2 .text.wpa_receive - 0x40224c80 0x3e6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40224fe0 0x3e6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x492 (size before relaxing) - 0x40224c88 wpa_receive - *fill* 0x40225066 0x2 + 0x40224fe8 wpa_receive + *fill* 0x402253c6 0x2 .text.wpa_gmk_to_gtk - 0x40225068 0x75 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x402253c8 0x75 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x8d (size before relaxing) - *fill* 0x402250dd 0x3 + *fill* 0x4022543d 0x3 .text.wpa_send_eapol_timeout - 0x402250e0 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225440 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x21 (size before relaxing) - *fill* 0x402250fd 0x3 + *fill* 0x4022545d 0x3 .text.__wpa_send_eapol - 0x40225100 0x406 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225460 0x406 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x4ae (size before relaxing) - 0x4022510c __wpa_send_eapol - *fill* 0x40225506 0x2 + 0x4022546c __wpa_send_eapol + *fill* 0x40225866 0x2 .text.resend_eapol_handle - 0x40225508 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225868 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x36 (size before relaxing) - 0x40225508 resend_eapol_handle - *fill* 0x40225532 0x2 + 0x40225868 resend_eapol_handle + *fill* 0x40225892 0x2 .text.wpa_send_eapol - 0x40225534 0xd3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225894 0xd3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0xf7 (size before relaxing) - *fill* 0x40225607 0x1 + *fill* 0x40225967 0x1 .text.wpa_verify_key_mic - 0x40225608 0x83 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225968 0x83 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x97 (size before relaxing) - *fill* 0x4022568b 0x1 + *fill* 0x402259eb 0x1 .text.wpa_remove_ptk - 0x4022568c 0x4d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x402259ec 0x4d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x5d (size before relaxing) - 0x40225690 wpa_remove_ptk - *fill* 0x402256d9 0x3 + 0x402259f0 wpa_remove_ptk + *fill* 0x40225a39 0x3 .text.sm_WPA_PTK_INITIALIZE_Enter - 0x402256dc 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225a3c 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x74 (size before relaxing) .text.sm_WPA_PTK_DISCONNECT_Enter - 0x40225744 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225aa4 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x34 (size before relaxing) .text.sm_WPA_PTK_AUTHENTICATION_Enter - 0x40225774 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225ad4 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x43 (size before relaxing) - *fill* 0x402257b3 0x1 + *fill* 0x40225b13 0x1 .text.wpa_group_ensure_init - 0x402257b4 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225b14 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x51 (size before relaxing) - *fill* 0x402257f1 0x3 + *fill* 0x40225b51 0x3 .text.sm_WPA_PTK_AUTHENTICATION2_Enter - 0x402257f4 0x4a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225b54 0x4a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x5e (size before relaxing) - *fill* 0x4022583e 0x2 + *fill* 0x40225b9e 0x2 .text.sm_WPA_PTK_INITPSK_Enter - 0x40225840 0x53 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225ba0 0x53 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x5f (size before relaxing) - *fill* 0x40225893 0x1 + *fill* 0x40225bf3 0x1 .text.sm_WPA_PTK_PTKSTART_Enter - 0x40225894 0xb5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225bf4 0xb5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0xbd (size before relaxing) - *fill* 0x40225949 0x3 + *fill* 0x40225ca9 0x3 .text.wpa_derive_ptk - 0x4022594c 0x6e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225cac 0x6e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x7a (size before relaxing) - *fill* 0x402259ba 0x2 + *fill* 0x40225d1a 0x2 .text.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter - 0x402259bc 0xe5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225d1c 0xe5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x121 (size before relaxing) - *fill* 0x40225aa1 0x3 + *fill* 0x40225e01 0x3 .text.sm_WPA_PTK_PTKINITNEGOTIATING_Enter - 0x40225aa4 0x197 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225e04 0x197 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x1cb (size before relaxing) - *fill* 0x40225c3b 0x1 + *fill* 0x40225f9b 0x1 .text.sm_WPA_PTK_PTKINITDONE_Enter - 0x40225c3c 0xb2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40225f9c 0xb2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0xee (size before relaxing) - *fill* 0x40225cee 0x2 + *fill* 0x4022604e 0x2 .text.sm_WPA_PTK_Step - 0x40225cf0 0x205 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40226050 0x205 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x27c (size before relaxing) - *fill* 0x40225ef5 0x3 + *fill* 0x40226255 0x3 .text.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter - 0x40225ef8 0x11b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40226258 0x11b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x153 (size before relaxing) - *fill* 0x40226013 0x1 + *fill* 0x40226373 0x1 .text.sm_WPA_PTK_GROUP_Step - 0x40226014 0xb2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40226374 0xb2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0xd1 (size before relaxing) - *fill* 0x402260c6 0x2 + *fill* 0x40226426 0x2 .text.wpa_gtk_update - 0x402260c8 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40226428 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x7b (size before relaxing) - *fill* 0x4022612b 0x1 + *fill* 0x4022648b 0x1 .text.wpa_group_gtk_init - 0x4022612c 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x4022648c 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x41 (size before relaxing) - *fill* 0x40226165 0x3 + *fill* 0x402264c5 0x3 .text.wpa_group_update_sta - 0x40226168 0x44 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x402264c8 0x44 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x48 (size before relaxing) .text.wpa_group_setkeys - 0x402261ac 0x4b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x4022650c 0x4b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x57 (size before relaxing) - *fill* 0x402261f7 0x1 + *fill* 0x40226557 0x1 .text.wpa_group_config_group_keys - 0x402261f8 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40226558 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x50 (size before relaxing) .text.wpa_group_setkeysdone - 0x40226238 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40226598 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x29 (size before relaxing) - *fill* 0x4022625d 0x3 + *fill* 0x402265bd 0x3 .text.wpa_group_sm_step - 0x40226260 0x53 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x402265c0 0x53 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x6a (size before relaxing) - *fill* 0x402262b3 0x1 + *fill* 0x40226613 0x1 .text.wpa_sm_step - 0x402262b4 0x86 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40226614 0x86 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) 0x9a (size before relaxing) - *fill* 0x4022633a 0x2 + *fill* 0x4022669a 0x2 .text.wpa_write_wpa_ie - 0x4022633c 0xc3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) + 0x4022669c 0xc3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) 0xcf (size before relaxing) - *fill* 0x402263ff 0x1 + *fill* 0x4022675f 0x1 .text.wpa_write_rsn_ie - 0x40226400 0x106 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) + 0x40226760 0x106 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) 0x116 (size before relaxing) - 0x40226400 wpa_write_rsn_ie - *fill* 0x40226506 0x2 + 0x40226760 wpa_write_rsn_ie + *fill* 0x40226866 0x2 .text.wpa_auth_gen_wpa_ie - 0x40226508 0x9b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) + 0x40226868 0x9b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) 0xb3 (size before relaxing) - 0x4022650c wpa_auth_gen_wpa_ie - *fill* 0x402265a3 0x1 + 0x4022686c wpa_auth_gen_wpa_ie + *fill* 0x40226903 0x1 .text.wpa_add_kde - 0x402265a4 0x6a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) + 0x40226904 0x6a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) 0x72 (size before relaxing) - 0x402265a4 wpa_add_kde - *fill* 0x4022660e 0x2 + 0x40226904 wpa_add_kde + *fill* 0x4022696e 0x2 .text.wpa_validate_wpa_ie - 0x40226610 0x133 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) + 0x40226970 0x133 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) 0x16b (size before relaxing) - 0x40226610 wpa_validate_wpa_ie - *fill* 0x40226743 0x1 + 0x40226970 wpa_validate_wpa_ie + *fill* 0x40226aa3 0x1 .text.wpa_parse_generic - 0x40226744 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) + 0x40226aa4 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) 0xdb (size before relaxing) - *fill* 0x4022681b 0x1 + *fill* 0x40226b7b 0x1 .text.wpa_parse_kde_ies - 0x4022681c 0x9d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) + 0x40226b7c 0x9d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) 0xa5 (size before relaxing) - 0x4022681c wpa_parse_kde_ies - *fill* 0x402268b9 0x3 + 0x40226b7c wpa_parse_kde_ies + *fill* 0x40226c19 0x3 .text.wpa_eapol_key_send - 0x402268bc 0x100 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40226c1c 0x100 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x11c (size before relaxing) .text.wpa_sm_key_request - 0x402269bc 0x114 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40226d1c 0x114 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x134 (size before relaxing) .text.wpa_supplicant_send_2_of_4 - 0x40226ad0 0xf8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40226e30 0xf8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x114 (size before relaxing) .text.wpa_derive_ptk - 0x40226bc8 0x6f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40226f28 0x6f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x7b (size before relaxing) - *fill* 0x40226c37 0x1 + *fill* 0x40226f97 0x1 .text.wpa_supplicant_process_1_of_4 - 0x40226c38 0xe0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40226f98 0xe0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x114 (size before relaxing) .text.wpa_sm_rekey_ptk - 0x40226d18 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227078 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x1a (size before relaxing) - *fill* 0x40226d2e 0x2 + *fill* 0x4022708e 0x2 .text.wpa_supplicant_install_ptk - 0x40226d30 0x85 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227090 0x85 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x99 (size before relaxing) - *fill* 0x40226db5 0x3 + *fill* 0x40227115 0x3 .text.wpa_supplicant_key_neg_complete - 0x40226db8 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227118 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x5c (size before relaxing) .text.wpa_supplicant_install_gtk - 0x40226e00 0x9c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227160 0x9c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0xb0 (size before relaxing) .text.wpa_supplicant_gtk_in_use - 0x40226e9c 0x118 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x402271fc 0x118 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x154 (size before relaxing) .text.wpa_supplicant_pairwise_gtk - 0x40226fb4 0x82 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227314 0x82 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x96 (size before relaxing) - *fill* 0x40227036 0x2 + *fill* 0x40227396 0x2 .text.wpa_report_ie_mismatch - 0x40227038 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227398 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x18 (size before relaxing) .text.wpa_supplicant_validate_ie - 0x4022704c 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x402273ac 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0xf3 (size before relaxing) - *fill* 0x40227123 0x1 + *fill* 0x40227483 0x1 .text.wpa_supplicant_send_4_of_4 - 0x40227124 0xf9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227484 0xf9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x111 (size before relaxing) - *fill* 0x4022721d 0x3 + *fill* 0x4022757d 0x3 .text.wpa_sm_set_seq - 0x40227220 0x46 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227580 0x46 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x4e (size before relaxing) - *fill* 0x40227266 0x2 + *fill* 0x402275c6 0x2 .text.wpa_supplicant_process_3_of_4 - 0x40227268 0x114 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x402275c8 0x114 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x14c (size before relaxing) .text.wpa_supplicant_send_4_of_4_txcallback - 0x4022737c 0x80 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x402276dc 0x80 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x9c (size before relaxing) .text.wpa_supplicant_process_1_of_2_rsn - 0x402273fc 0x85 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x4022775c 0x85 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0xa1 (size before relaxing) - *fill* 0x40227481 0x3 + *fill* 0x402277e1 0x3 .text.wpa_supplicant_process_1_of_2_wpa - 0x40227484 0xf8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x402277e4 0xf8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x110 (size before relaxing) .text.wpa_supplicant_send_2_of_2 - 0x4022757c 0xdc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x402278dc 0xdc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0xf0 (size before relaxing) .text.wpa_supplicant_process_1_of_2 - 0x40227658 0xb5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x402279b8 0xb5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0xdd (size before relaxing) - *fill* 0x4022770d 0x3 + *fill* 0x40227a6d 0x3 .text.wpa_supplicant_send_2_of_2_txcallback - 0x40227710 0x75 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227a70 0x75 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x89 (size before relaxing) - *fill* 0x40227785 0x3 + *fill* 0x40227ae5 0x3 .text.wpa_supplicant_verify_eapol_key_mic - 0x40227788 0xec C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227ae8 0xec C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x114 (size before relaxing) .text.wpa_supplicant_decrypt_key_data - 0x40227874 0xaf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227bd4 0xaf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0xc3 (size before relaxing) - *fill* 0x40227923 0x1 + *fill* 0x40227c83 0x1 .text.wpa_sm_rx_eapol - 0x40227924 0x189 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227c84 0x189 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x1ad (size before relaxing) - 0x40227930 wpa_sm_rx_eapol - *fill* 0x40227aad 0x3 + 0x40227c90 wpa_sm_rx_eapol + *fill* 0x40227e0d 0x3 .text.wpa_register - 0x40227ab0 0x3a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227e10 0x3a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x3e (size before relaxing) - 0x40227ab4 wpa_register - *fill* 0x40227aea 0x2 + 0x40227e14 wpa_register + *fill* 0x40227e4a 0x2 .text.wpa_set_profile - 0x40227aec 0x15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227e4c 0x15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x19 (size before relaxing) - 0x40227aec wpa_set_profile - *fill* 0x40227b01 0x3 + 0x40227e4c wpa_set_profile + *fill* 0x40227e61 0x3 .text.wpa_set_bss - 0x40227b04 0x8c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227e64 0x8c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0xbc (size before relaxing) - 0x40227b10 wpa_set_bss + 0x40227e70 wpa_set_bss .text.wpa_set_passphrase - 0x40227b90 0x94 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227ef0 0x94 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0xdc (size before relaxing) .text.set_assoc_ie - 0x40227c24 0x33 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227f84 0x33 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x37 (size before relaxing) - *fill* 0x40227c57 0x1 + *fill* 0x40227fb7 0x1 .text.wpa_sm_set_key - 0x40227c58 0x7c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40227fb8 0x7c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x88 (size before relaxing) .text.wpa_sm_get_key - 0x40227cd4 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40228034 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x1d (size before relaxing) - *fill* 0x40227ced 0x3 + *fill* 0x4022804d 0x3 .text.eapol_txcb - 0x40227cf0 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x40228050 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0xa8 (size before relaxing) - 0x40227cf0 eapol_txcb + 0x40228050 eapol_txcb .text.wpa_sm_set_state - 0x40227d80 0x2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + 0x402280e0 0x2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) 0x38 (size before relaxing) - 0x40227d84 wpa_sm_set_state + 0x402280e4 wpa_sm_set_state .text.rsn_selector_to_bitfield - 0x40227dac 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x4022810c 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x6b (size before relaxing) - *fill* 0x40227e0f 0x1 + *fill* 0x4022816f 0x1 .text.rsn_key_mgmt_to_bitfield - 0x40227e10 0x37 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x40228170 0x37 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x3f (size before relaxing) - *fill* 0x40227e47 0x1 + *fill* 0x402281a7 0x1 .text.wpa_selector_to_bitfield - 0x40227e48 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x402281a8 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x6b (size before relaxing) - *fill* 0x40227eaf 0x1 + *fill* 0x4022820f 0x1 .text.wpa_key_mgmt_to_bitfield - 0x40227eb0 0x41 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x40228210 0x41 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x4d (size before relaxing) - *fill* 0x40227ef1 0x3 + *fill* 0x40228251 0x3 .text.wpa_parse_wpa_ie_rsn - 0x40227ef4 0x195 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x40228254 0x195 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x1ad (size before relaxing) - 0x40227ef4 wpa_parse_wpa_ie_rsn - *fill* 0x40228089 0x3 + 0x40228254 wpa_parse_wpa_ie_rsn + *fill* 0x402283e9 0x3 .text.wpa_parse_wpa_ie_wpa - 0x4022808c 0x18e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x402283ec 0x18e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x1a2 (size before relaxing) - 0x4022808c wpa_parse_wpa_ie_wpa - *fill* 0x4022821a 0x2 + 0x402283ec wpa_parse_wpa_ie_wpa + *fill* 0x4022857a 0x2 .text.wpa_eapol_key_mic - 0x4022821c 0x47 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x4022857c 0x47 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x4b (size before relaxing) - 0x40228224 wpa_eapol_key_mic - *fill* 0x40228263 0x1 + 0x40228584 wpa_eapol_key_mic + *fill* 0x402285c3 0x1 .text.wpa_compare_rsn_ie - 0x40228264 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x402285c4 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x2a (size before relaxing) - 0x40228264 wpa_compare_rsn_ie - *fill* 0x4022828a 0x2 + 0x402285c4 wpa_compare_rsn_ie + *fill* 0x402285ea 0x2 .text.wpa_pmk_to_ptk - 0x4022828c 0xe3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x402285ec 0xe3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x10f (size before relaxing) - 0x4022828c wpa_pmk_to_ptk - *fill* 0x4022836f 0x1 + 0x402285ec wpa_pmk_to_ptk + *fill* 0x402286cf 0x1 .text.rsn_pmkid - 0x40228370 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x402286d0 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x6f (size before relaxing) - 0x4022837c rsn_pmkid - *fill* 0x402283d7 0x1 + 0x402286dc rsn_pmkid + *fill* 0x40228737 0x1 .text.wpa_cipher_to_suite - 0x402283d8 0x55 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x40228738 0x55 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) 0x7d (size before relaxing) - 0x402283dc wpa_cipher_to_suite - *fill* 0x4022842d 0x3 + 0x4022873c wpa_cipher_to_suite + *fill* 0x4022878d 0x3 .text.wpa_parse_wpa_ie - 0x40228430 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) + 0x40228790 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) 0x2d (size before relaxing) - 0x40228430 wpa_parse_wpa_ie - *fill* 0x40228455 0x3 + 0x40228790 wpa_parse_wpa_ie + *fill* 0x402287b5 0x3 .text.wpa_parse_generic - 0x40228458 0xcb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) + 0x402287b8 0xcb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) 0xdb (size before relaxing) - *fill* 0x40228523 0x1 + *fill* 0x40228883 0x1 .text.wpa_supplicant_parse_ies - 0x40228524 0x9d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) + 0x40228884 0x9d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) 0xa5 (size before relaxing) - 0x40228524 wpa_supplicant_parse_ies - *fill* 0x402285c1 0x3 + 0x40228884 wpa_supplicant_parse_ies + *fill* 0x40228921 0x3 .text.wpa_gen_wpa_ie - 0x402285c4 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) + 0x40228924 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) 0x3f (size before relaxing) - 0x402285c4 wpa_gen_wpa_ie - *fill* 0x402285f8 0x0 + 0x40228924 wpa_gen_wpa_ie + *fill* 0x40228958 0x0 .text.ppInstallKey - 0x402285f8 0x146 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228958 0x146 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x18e (size before relaxing) - 0x402285fc ppInstallKey - *fill* 0x4022873e 0x2 + 0x4022895c ppInstallKey + *fill* 0x40228a9e 0x2 .text.ppGetKey - 0x40228740 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228aa0 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x2e (size before relaxing) - 0x40228740 ppGetKey - *fill* 0x4022876a 0x2 + 0x40228aa0 ppGetKey + *fill* 0x40228aca 0x2 .text.wpa_sendto_wrapper - 0x4022876c 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228acc 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x23 (size before relaxing) - *fill* 0x40228787 0x1 + *fill* 0x40228ae7 0x1 .text.wpa_deauthenticate - 0x40228788 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228ae8 0x32 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x46 (size before relaxing) - *fill* 0x402287ba 0x2 + *fill* 0x40228b1a 0x2 .text.wpa_config_profile - 0x402287bc 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228b1c 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x3f (size before relaxing) - 0x402287bc wpa_config_profile - *fill* 0x402287f0 0x0 + 0x40228b1c wpa_config_profile + *fill* 0x40228b50 0x0 .text.wpa_config_bss - 0x402287f0 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228b50 0x2d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x31 (size before relaxing) - 0x402287f0 wpa_config_bss - *fill* 0x4022881d 0x3 + 0x40228b50 wpa_config_bss + *fill* 0x40228b7d 0x3 .text.wpa_config_assoc_ie - 0x40228820 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228b80 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x18 (size before relaxing) - 0x40228820 wpa_config_assoc_ie + 0x40228b80 wpa_config_assoc_ie .text.dhcp_bind_check - 0x40228834 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228b94 0x1e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x26 (size before relaxing) - 0x40228834 dhcp_bind_check - *fill* 0x40228852 0x2 + 0x40228b94 dhcp_bind_check + *fill* 0x40228bb2 0x2 .text.eagle_auth_done - 0x40228854 0x19b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228bb4 0x19b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x21f (size before relaxing) - 0x40228870 eagle_auth_done - *fill* 0x402289ef 0x1 + 0x40228bd0 eagle_auth_done + *fill* 0x40228d4f 0x1 .text.wpa_neg_complete - 0x402289f0 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228d50 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x16 (size before relaxing) - 0x402289f0 wpa_neg_complete - *fill* 0x40228a02 0x2 + 0x40228d50 wpa_neg_complete + *fill* 0x40228d62 0x2 .text.wpa_attach - 0x40228a04 0x59 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + 0x40228d64 0x59 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) 0x65 (size before relaxing) - 0x40228a20 wpa_attach - *fill* 0x40228a5d 0x3 + 0x40228d80 wpa_attach + *fill* 0x40228dbd 0x3 .text.wpa_alloc_eapol - 0x40228a60 0x6e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) + 0x40228dc0 0x6e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) 0x76 (size before relaxing) - *fill* 0x40228ace 0x2 + *fill* 0x40228e2e 0x2 .text.wpa_sm_alloc_eapol - 0x40228ad0 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) + 0x40228e30 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) 0x4b (size before relaxing) - 0x40228ad0 wpa_sm_alloc_eapol - *fill* 0x40228b0f 0x0 - *fill* 0x40228b0f 0x0 - *fill* 0x40228b0f 0x1 + 0x40228e30 wpa_sm_alloc_eapol + *fill* 0x40228e6f 0x0 + *fill* 0x40228e6f 0x0 + *fill* 0x40228e6f 0x1 .text.inc_byte_array - 0x40228b10 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) - 0x40228b10 inc_byte_array - *fill* 0x40228b2d 0x3 - .text.hex2num 0x40228b30 0x33 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) - *fill* 0x40228b63 0x0 - *fill* 0x40228b63 0x0 - *fill* 0x40228b63 0x0 - *fill* 0x40228b63 0x1 + 0x40228e70 0x1d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) + 0x40228e70 inc_byte_array + *fill* 0x40228e8d 0x3 + .text.hex2num 0x40228e90 0x33 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) + *fill* 0x40228ec3 0x0 + *fill* 0x40228ec3 0x0 + *fill* 0x40228ec3 0x0 + *fill* 0x40228ec3 0x1 .text.os_get_time - 0x40228b64 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(os_xtensa.o) - 0x40228b64 os_get_time - *fill* 0x40228b68 0x0 - *fill* 0x40228b68 0x0 + 0x40228ec4 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(os_xtensa.o) + 0x40228ec4 os_get_time + *fill* 0x40228ec8 0x0 + *fill* 0x40228ec8 0x0 .text.wpa_key_mgmt_wpa_psk - 0x40228b68 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x40228b79 0x0 - *fill* 0x40228b79 0x0 - *fill* 0x40228b79 0x0 - *fill* 0x40228b79 0x0 - *fill* 0x40228b79 0x3 + 0x40228ec8 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40228ed9 0x0 + *fill* 0x40228ed9 0x0 + *fill* 0x40228ed9 0x0 + *fill* 0x40228ed9 0x0 + *fill* 0x40228ed9 0x3 .text.wpa_auth_for_each_sta - 0x40228b7c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - 0x40228b7c wpa_auth_for_each_sta + 0x40228edc 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40228edc wpa_auth_for_each_sta .text.wpa_sta_disconnect - 0x40228b80 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x40228b82 0x2 + 0x40228ee0 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40228ee2 0x2 .text.wpa_use_aes_cmac - 0x40228b84 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x40228b88 0x0 - *fill* 0x40228b88 0x0 - *fill* 0x40228b88 0x0 - *fill* 0x40228b88 0x0 - *fill* 0x40228b88 0x0 - *fill* 0x40228b88 0x0 - *fill* 0x40228b88 0x0 - *fill* 0x40228b88 0x0 - *fill* 0x40228b88 0x0 + 0x40228ee4 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40228ee8 0x0 + *fill* 0x40228ee8 0x0 + *fill* 0x40228ee8 0x0 + *fill* 0x40228ee8 0x0 + *fill* 0x40228ee8 0x0 + *fill* 0x40228ee8 0x0 + *fill* 0x40228ee8 0x0 + *fill* 0x40228ee8 0x0 + *fill* 0x40228ee8 0x0 .text.wpa_request_new_ptk - 0x40228b88 0xe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x0 - *fill* 0x40228b96 0x2 + 0x40228ee8 0xe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x0 + *fill* 0x40228ef6 0x2 .text.sm_WPA_PTK_DISCONNECTED_Enter - 0x40228b98 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x40228bb4 0x0 - *fill* 0x40228bb4 0x0 - *fill* 0x40228bb4 0x0 - *fill* 0x40228bb4 0x0 - *fill* 0x40228bb4 0x0 - *fill* 0x40228bb4 0x0 - *fill* 0x40228bb4 0x0 + 0x40228ef8 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40228f14 0x0 + *fill* 0x40228f14 0x0 + *fill* 0x40228f14 0x0 + *fill* 0x40228f14 0x0 + *fill* 0x40228f14 0x0 + *fill* 0x40228f14 0x0 + *fill* 0x40228f14 0x0 .text.sm_WPA_PTK_PTKCALCNEGOTIATING2_Enter - 0x40228bb4 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40228f14 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) .text.ieee80211w_kde_len - 0x40228bd0 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x40228f30 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) .text.ieee80211w_kde_add - 0x40228bd4 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x40228bd8 0x0 - *fill* 0x40228bd8 0x0 + 0x40228f34 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40228f38 0x0 + *fill* 0x40228f38 0x0 .text.sm_WPA_PTK_GROUP_IDLE_Enter - 0x40228bd8 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x40228c00 0x0 + 0x40228f38 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40228f60 0x0 .text.sm_WPA_PTK_GROUP_REKEYESTABLISHED_Enter - 0x40228c00 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x40228c31 0x3 + 0x40228f60 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40228f91 0x3 .text.sm_WPA_PTK_GROUP_KEYERROR_Enter - 0x40228c34 0x2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 - *fill* 0x40228c60 0x0 + 0x40228f94 0x2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 + *fill* 0x40228fc0 0x0 .text.eapol_sm_notify_eap_success - 0x40228c60 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) - *fill* 0x40228c62 0x2 + 0x40228fc0 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + *fill* 0x40228fc2 0x2 .text.wpa_supplicant_get_pmk - 0x40228c64 0xb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) - *fill* 0x40228c6f 0x0 - *fill* 0x40228c6f 0x0 - *fill* 0x40228c6f 0x0 - *fill* 0x40228c6f 0x1 + 0x40228fc4 0xb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + *fill* 0x40228fcf 0x0 + *fill* 0x40228fcf 0x0 + *fill* 0x40228fcf 0x0 + *fill* 0x40228fcf 0x1 .text.wpa_supplicant_check_group_cipher - 0x40228c70 0x56 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) - *fill* 0x40228cc6 0x2 + 0x40228fd0 0x56 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + *fill* 0x40229026 0x2 .text.wpa_supplicant_gtk_tx_bit_workaround - 0x40228cc8 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) - *fill* 0x40228cd8 0x0 + 0x40229028 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + *fill* 0x40229038 0x0 .text.ieee80211w_set_keys - 0x40228cd8 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) - *fill* 0x40228cdc 0x0 - *fill* 0x40228cdc 0x0 - *fill* 0x40228cdc 0x0 - *fill* 0x40228cdc 0x0 - *fill* 0x40228cdc 0x0 - *fill* 0x40228cdc 0x0 - *fill* 0x40228cdc 0x0 + 0x40229038 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + *fill* 0x4022903c 0x0 + *fill* 0x4022903c 0x0 + *fill* 0x4022903c 0x0 + *fill* 0x4022903c 0x0 + *fill* 0x4022903c 0x0 + *fill* 0x4022903c 0x0 + *fill* 0x4022903c 0x0 .text.wpa_eapol_key_dump - 0x40228cdc 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x0 - *fill* 0x40228cde 0x2 + 0x4022903c 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x0 + *fill* 0x4022903e 0x2 .text.wpa_cipher_key_len - 0x40228ce0 0x24 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) - 0x40228ce0 wpa_cipher_key_len + 0x40229040 0x24 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x40229040 wpa_cipher_key_len .text.wpa_cipher_to_alg - 0x40228d04 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) - 0x40228d04 wpa_cipher_to_alg - *fill* 0x40228d27 0x0 - *fill* 0x40228d27 0x1 + 0x40229064 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x40229064 wpa_cipher_to_alg + *fill* 0x40229087 0x0 + *fill* 0x40229087 0x1 .text.rsn_cipher_put_suites - 0x40228d28 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) - 0x40228d28 rsn_cipher_put_suites + 0x40229088 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x40229088 rsn_cipher_put_suites .text.wpa_cipher_put_suites - 0x40228d88 0x4a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) - 0x40228d88 wpa_cipher_put_suites - *fill* 0x40228dd2 0x2 + 0x402290e8 0x4a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + 0x402290e8 wpa_cipher_put_suites + *fill* 0x40229132 0x2 .text.eloop_cancel_timeout - 0x40228dd4 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_debug.o) - 0x40228dd4 eloop_cancel_timeout + 0x40229134 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_debug.o) + 0x40229134 eloop_cancel_timeout .text.eloop_register_timeout - 0x40228dd8 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_debug.o) - 0x40228dd8 eloop_register_timeout - *fill* 0x40228ddc 0x0 - *fill* 0x40228ddc 0x0 - *fill* 0x40228ddc 0x0 + 0x40229138 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_debug.o) + 0x40229138 eloop_register_timeout + *fill* 0x4022913c 0x0 + *fill* 0x4022913c 0x0 + *fill* 0x4022913c 0x0 .text.wpa_gen_wpa_ie_wpa - 0x40228ddc 0xb7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) - *fill* 0x40228e93 0x1 + 0x4022913c 0xb7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) + *fill* 0x402291f3 0x1 .text.wpa_gen_wpa_ie_rsn - 0x40228e94 0xa9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x0 - *fill* 0x40228f3d 0x3 + 0x402291f4 0xa9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_ie.o) + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x0 + *fill* 0x4022929d 0x3 .text.wpa_sm_deauthenticate - 0x40228f40 0x1a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) - 0x40228f40 wpa_sm_deauthenticate - *fill* 0x40228f5a 0x2 + 0x402292a0 0x1a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) + 0x402292a0 wpa_sm_deauthenticate + *fill* 0x402292ba 0x2 .text.wpa_sm_mlme_setprotection - 0x40228f5c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) - 0x40228f5c wpa_sm_mlme_setprotection + 0x402292bc 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) + 0x402292bc wpa_sm_mlme_setprotection .text.wpa_sm_get_beacon_ie - 0x40228f60 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) - 0x40228f60 wpa_sm_get_beacon_ie + 0x402292c0 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) + 0x402292c0 wpa_sm_get_beacon_ie .text.wpa_sm_disassociate - 0x40228f64 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) - 0x40228f64 wpa_sm_disassociate + 0x402292c4 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpas_glue.o) + 0x402292c4 wpa_sm_disassociate *libwpa2.a:(.literal.* .text.*) *libwps.a:(.literal.* .text.*) *(.irom0.literal .irom.literal .irom.text.literal .irom0.text .irom0.text.* .irom.text .irom.text.*) - *fill* 0x40228f66 0x2 + *fill* 0x402292c6 0x2 .irom0.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266umm_mallocumm_malloc.c.980.0 - 0x40228f68 0x312 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + 0x402292c8 0x312 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) 0x356 (size before relaxing) - 0x40228f94 umm_info - *fill* 0x4022927a 0x2 + 0x402292f4 umm_info + *fill* 0x402295da 0x2 .irom0.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266umm_mallocumm_malloc.c.1763.8 - 0x4022927c 0x1c e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + 0x402295dc 0x1c e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) 0x28 (size before relaxing) - 0x4022927c umm_free_heap_size - .irom0.text 0x40229298 0xb7c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm_for_bcn_only_mode.o) + 0x402295dc umm_free_heap_size + .irom0.text 0x402295f8 0xb7c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm_for_bcn_only_mode.o) 0xeec (size before relaxing) - 0x402292b4 wifi_fpm_set_sleep_type - 0x402292b4 fpm_set_type_from_upper - 0x40229370 fpm_get_slp_type - 0x40229370 wifi_fpm_get_sleep_type - 0x40229378 fpm_rf_is_closed - 0x4022938c fpm_is_open - 0x40229398 fpm_allow_tx - 0x402293c8 fpm_close - 0x402293c8 wifi_fpm_close - 0x40229458 wifi_fpm_open - 0x40229458 fpm_open - 0x402294dc fpm_attach - 0x402296ac wifi_fpm_set_wakeup_cb - 0x402296ac fpm_set_wakeup_cb - 0x402297ec fpm_do_wakeup - 0x402297ec wifi_fpm_do_wakeup - 0x40229d2c fpm_do_sleep - 0x40229d2c wifi_fpm_do_sleep - 0x40229dcc fpm_auto_sleep_set_in_null_mode - 0x40229dcc wifi_fpm_auto_sleep_set_in_null_mode - 0x40229e0c get_fpm_auto_sleep_flag - .irom0.text 0x40229e14 0x19d2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pp.o) + 0x40229614 wifi_fpm_set_sleep_type + 0x40229614 fpm_set_type_from_upper + 0x402296d0 fpm_get_slp_type + 0x402296d0 wifi_fpm_get_sleep_type + 0x402296d8 fpm_rf_is_closed + 0x402296ec fpm_is_open + 0x402296f8 fpm_allow_tx + 0x40229728 fpm_close + 0x40229728 wifi_fpm_close + 0x402297b8 wifi_fpm_open + 0x402297b8 fpm_open + 0x4022983c fpm_attach + 0x40229a0c wifi_fpm_set_wakeup_cb + 0x40229a0c fpm_set_wakeup_cb + 0x40229b4c fpm_do_wakeup + 0x40229b4c wifi_fpm_do_wakeup + 0x4022a08c fpm_do_sleep + 0x4022a08c wifi_fpm_do_sleep + 0x4022a12c fpm_auto_sleep_set_in_null_mode + 0x4022a12c wifi_fpm_auto_sleep_set_in_null_mode + 0x4022a16c get_fpm_auto_sleep_flag + .irom0.text 0x4022a174 0x19d2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pp.o) 0x1e76 (size before relaxing) - 0x40229e20 PPWdtReset - 0x40229e54 pp_soft_wdt_init - 0x40229e74 pp_soft_wdt_feed - 0x40229e74 system_soft_wdt_feed - 0x40229e90 system_soft_wdt_stop - 0x40229e90 pp_soft_wdt_stop - 0x40229ebc pp_soft_wdt_restart - 0x40229ebc system_soft_wdt_restart - 0x40229ef4 RxNodeNum - 0x40229f0c TxNodeNum - 0x40229f30 pp_disable_noise_timer - 0x40229f50 pp_enable_noise_timer - 0x4022a060 pp_noise_test - 0x4022a070 reset_noise_timer - 0x4022a0a8 pp_disable_idle_timer - 0x4022a0cc pp_enable_idle_timer - 0x4022a0f4 pp_try_enable_idle_timer - 0x4022a130 ppPeocessRxPktHdr - 0x4022a46c HdlAllBuffedEb - 0x4022a544 ppTxPkt - 0x4022a6bc ppProcessWaitQ - 0x4022a6cc ppRegisterTxCallback - 0x4022a6f4 ppUnregisterTxCallback - 0x4022a728 ppRecycleRxPkt - 0x4022a788 ppCheckTxIdle - 0x4022aa1c pp_tx_idle_timeout - 0x4022abdc freq_change_sta_scan_force_enable - 0x4022abe4 freq_changle_sta_scan_do_cb - 0x4022ac8c freq_change_check_scan_start - 0x4022acac freq_change_check_scan_done - 0x4022ae50 freq_change_check_scan_work - 0x4022ae8c DefFreqCalTimerCB - 0x4022b2f8 ppGetTxQFirstAvail_Locked - 0x4022b3d8 pp_attach - *fill* 0x4022b7e6 0x2 - .irom0.text 0x4022b7e8 0x296 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(rate_control.o) + 0x4022a180 PPWdtReset + 0x4022a1b4 pp_soft_wdt_init + 0x4022a1d4 pp_soft_wdt_feed + 0x4022a1d4 system_soft_wdt_feed + 0x4022a1f0 system_soft_wdt_stop + 0x4022a1f0 pp_soft_wdt_stop + 0x4022a21c pp_soft_wdt_restart + 0x4022a21c system_soft_wdt_restart + 0x4022a254 RxNodeNum + 0x4022a26c TxNodeNum + 0x4022a290 pp_disable_noise_timer + 0x4022a2b0 pp_enable_noise_timer + 0x4022a3c0 pp_noise_test + 0x4022a3d0 reset_noise_timer + 0x4022a408 pp_disable_idle_timer + 0x4022a42c pp_enable_idle_timer + 0x4022a454 pp_try_enable_idle_timer + 0x4022a490 ppPeocessRxPktHdr + 0x4022a7cc HdlAllBuffedEb + 0x4022a8a4 ppTxPkt + 0x4022aa1c ppProcessWaitQ + 0x4022aa2c ppRegisterTxCallback + 0x4022aa54 ppUnregisterTxCallback + 0x4022aa88 ppRecycleRxPkt + 0x4022aae8 ppCheckTxIdle + 0x4022ad7c pp_tx_idle_timeout + 0x4022af3c freq_change_sta_scan_force_enable + 0x4022af44 freq_changle_sta_scan_do_cb + 0x4022afec freq_change_check_scan_start + 0x4022b00c freq_change_check_scan_done + 0x4022b1b0 freq_change_check_scan_work + 0x4022b1ec DefFreqCalTimerCB + 0x4022b658 ppGetTxQFirstAvail_Locked + 0x4022b738 pp_attach + *fill* 0x4022bb46 0x2 + .irom0.text 0x4022bb48 0x296 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(rate_control.o) 0x2a2 (size before relaxing) - 0x4022ba34 RC_SetBasicRate - *fill* 0x4022ba7e 0x2 - .irom0.text 0x4022ba80 0x5e9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(trc.o) + 0x4022bd94 RC_SetBasicRate + *fill* 0x4022bdde 0x2 + .irom0.text 0x4022bde0 0x5e9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(trc.o) 0x64d (size before relaxing) - 0x4022ba80 phytype2mode - 0x4022ba9c rc_set_rate_limit_id - 0x4022bbb8 rcUpdatePhyMode - 0x4022bd84 rcAttach - 0x4022bdd0 rcGetTrc - 0x4022bdd8 trc_onDisconnect - 0x4022bddc trc_onScanStart - 0x4022bdf0 trc_onScanDone - 0x4022be0c rc_enable_trc - 0x4022bee4 rc_get_mask - 0x4022bef8 rc_disable_trc - 0x4022bf4c rc_disable_trc_by_interface - 0x4022bf68 rc_get_sta_trc - 0x4022bfac rc_get_trc - 0x4022c01c rc_get_trc_by_index - 0x4022c03c rc_only_sta_trc - *fill* 0x4022c069 0x3 - .irom0.text 0x4022c06c 0xc57 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(wdev.o) + 0x4022bde0 phytype2mode + 0x4022bdfc rc_set_rate_limit_id + 0x4022bf18 rcUpdatePhyMode + 0x4022c0e4 rcAttach + 0x4022c130 rcGetTrc + 0x4022c138 trc_onDisconnect + 0x4022c13c trc_onScanStart + 0x4022c150 trc_onScanDone + 0x4022c16c rc_enable_trc + 0x4022c244 rc_get_mask + 0x4022c258 rc_disable_trc + 0x4022c2ac rc_disable_trc_by_interface + 0x4022c2c8 rc_get_sta_trc + 0x4022c30c rc_get_trc + 0x4022c37c rc_get_trc_by_index + 0x4022c39c rc_only_sta_trc + *fill* 0x4022c3c9 0x3 + .irom0.text 0x4022c3cc 0xc57 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(wdev.o) 0xdaf (size before relaxing) - 0x4022c084 wDev_Option_Init - 0x4022c178 wDev_Enable_Beacon_Tsf - 0x4022c194 wDev_Disable_Beacon_Tsf - 0x4022c1b0 wDev_Set_Beacon_Int - 0x4022c1b8 wDev_Reset_TBTT - 0x4022c1e8 wDev_Get_Next_TBTT - 0x4022c468 wDev_Initialize - 0x4022c4d8 wDevForceAck6M - 0x4022c4f4 wDev_SetMacAddress - 0x4022c590 wDev_SetRxPolicy - 0x4022c5e4 wDev_EnableUcRx - 0x4022c610 wDev_DisableUcRx - 0x4022c63c wDev_SetBssid - 0x4022c714 wDev_ClearBssid - 0x4022c748 wDev_Is_Mac_Key_Exist - 0x4022c7d4 wDev_Insert_KeyEntry - 0x4022c904 wDev_remove_KeyEntry - 0x4022c96c wDev_remove_KeyEntry_all_cnx - 0x4022c9b8 wDev_Crypto_Conf - 0x4022ca58 wDev_Crypto_Disable - 0x4022ca90 wDevEnableRx - 0x4022cabc wdev_go_sniffer - 0x4022cb98 wdev_set_sniffer_addr - 0x4022cbf4 wdev_exit_sniffer - *fill* 0x4022ccc3 0x1 - .irom0.text 0x4022ccc4 0x57d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(esf_buf.o) + 0x4022c3e4 wDev_Option_Init + 0x4022c4d8 wDev_Enable_Beacon_Tsf + 0x4022c4f4 wDev_Disable_Beacon_Tsf + 0x4022c510 wDev_Set_Beacon_Int + 0x4022c518 wDev_Reset_TBTT + 0x4022c548 wDev_Get_Next_TBTT + 0x4022c7c8 wDev_Initialize + 0x4022c838 wDevForceAck6M + 0x4022c854 wDev_SetMacAddress + 0x4022c8f0 wDev_SetRxPolicy + 0x4022c944 wDev_EnableUcRx + 0x4022c970 wDev_DisableUcRx + 0x4022c99c wDev_SetBssid + 0x4022ca74 wDev_ClearBssid + 0x4022caa8 wDev_Is_Mac_Key_Exist + 0x4022cb34 wDev_Insert_KeyEntry + 0x4022cc64 wDev_remove_KeyEntry + 0x4022cccc wDev_remove_KeyEntry_all_cnx + 0x4022cd18 wDev_Crypto_Conf + 0x4022cdb8 wDev_Crypto_Disable + 0x4022cdf0 wDevEnableRx + 0x4022ce1c wdev_go_sniffer + 0x4022cef8 wdev_set_sniffer_addr + 0x4022cf54 wdev_exit_sniffer + *fill* 0x4022d023 0x1 + .irom0.text 0x4022d024 0x57d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(esf_buf.o) 0x6a9 (size before relaxing) - 0x4022ccd0 esf_buf_alloc - 0x4022d044 esf_buf_recycle - 0x4022d184 esf_buf_setup - *fill* 0x4022d241 0x3 - .irom0.text 0x4022d244 0x4b1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(if_hwctrl.o) + 0x4022d030 esf_buf_alloc + 0x4022d3a4 esf_buf_recycle + 0x4022d4e4 esf_buf_setup + *fill* 0x4022d5a1 0x3 + .irom0.text 0x4022d5a4 0x4b1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(if_hwctrl.o) 0x5e1 (size before relaxing) - 0x4022d264 ic_get_addr - 0x4022d270 ic_set_opmode - 0x4022d284 ic_enable_interface - 0x4022d2d4 ic_interface_enabled - 0x4022d2e8 ic_disable_interface - 0x4022d330 ic_is_pure_sta - 0x4022d34c ic_get_ptk_alg - 0x4022d35c ic_get_gtk_alg - 0x4022d36c ic_set_ptk_alg - 0x4022d37c ic_set_gtk_alg - 0x4022d38c ic_interface_is_p2p - 0x4022d424 ic_set_vif - 0x4022d4e0 ic_set_sta - 0x4022d5e0 ic_bss_info_update - 0x4022d63c ic_set_key - 0x4022d69c ic_get_key - 0x4022d6bc ic_remove_key - 0x4022d6d0 ic_get_rssi - *fill* 0x4022d6f5 0x3 - .irom0.text 0x4022d6f8 0x100 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(lmac.o) + 0x4022d5c4 ic_get_addr + 0x4022d5d0 ic_set_opmode + 0x4022d5e4 ic_enable_interface + 0x4022d634 ic_interface_enabled + 0x4022d648 ic_disable_interface + 0x4022d690 ic_is_pure_sta + 0x4022d6ac ic_get_ptk_alg + 0x4022d6bc ic_get_gtk_alg + 0x4022d6cc ic_set_ptk_alg + 0x4022d6dc ic_set_gtk_alg + 0x4022d6ec ic_interface_is_p2p + 0x4022d784 ic_set_vif + 0x4022d840 ic_set_sta + 0x4022d940 ic_bss_info_update + 0x4022d99c ic_set_key + 0x4022d9fc ic_get_key + 0x4022da1c ic_remove_key + 0x4022da30 ic_get_rssi + *fill* 0x4022da55 0x3 + .irom0.text 0x4022da58 0x100 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(lmac.o) 0x118 (size before relaxing) - 0x4022d6fc lmacInitAc - 0x4022d730 lmacInit - 0x4022d7dc lmacSetRetryLimit - .irom0.text 0x4022d7f8 0x1b99 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm.o) + 0x4022da5c lmacInitAc + 0x4022da90 lmacInit + 0x4022db3c lmacSetRetryLimit + .irom0.text 0x4022db58 0x1b99 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm.o) 0x21d1 (size before relaxing) - 0x4022d7fc pm_set_gpio_wakeup_pin - 0x4022d834 pm_clear_gpio_wakeup_pin - 0x4022d844 pm_is_gpio_int_trig - 0x4022d85c pm_rtc_clock_cali_proc - 0x4022d894 pm_get_ck170_period - 0x4022d8b8 pm_set_sleep_time - 0x4022db78 pm_rf_is_closed - 0x4022dba4 pm_set_sleep_type_from_upper - 0x4022dc94 pm_get_sleep_type - 0x4022dca8 pm_set_sleep_level - 0x4022dcb0 pm_get_sleep_level - 0x4022dcb8 pm_set_listen_interval - 0x4022dcc0 pm_get_listen_interval - 0x4022de6c uart_tx_flush - 0x4022de70 pm_suspend - 0x4022e088 pm_shutdown - 0x4022e16c pm_reset_idle_sleep - 0x4022e1ac pm_idle_sleep - 0x4022e1c0 pm_open - 0x4022e2fc pm_onBcnRx - 0x4022e6f8 StopLightSleepSetFunc - 0x4022e700 LightSleepWakedCbSetFunc - 0x4022ecc8 pm_incr_active_cnt - 0x4022ecdc pm_disable_active_timer - 0x4022ecf4 pm_enable_active_timer - 0x4022ed10 pm_keep_active_disable - 0x4022ed30 pm_keep_active_enable - 0x4022eda8 pm_enable_gpio_wakeup - 0x4022ede4 pm_attach - 0x4022eee8 pm_send_nullfunc - 0x4022f09c pm_is_waked - 0x4022f0b4 pm_is_open - 0x4022f0cc pm_scan_lock - 0x4022f0f4 pm_try_scan_unlock - 0x4022f10c pm_force_scan_unlock - 0x4022f1b8 pm_scan_unlocked - 0x4022f1cc pm_allow_tx - 0x4022f1e8 pm_assoc_parse - 0x4022f200 pm_set_addr - 0x4022f220 pm_sleep_for - 0x4022f250 pm_post - 0x4022f350 pm_get_idle_wait_time - *fill* 0x4022f391 0x3 + 0x4022db5c pm_set_gpio_wakeup_pin + 0x4022db94 pm_clear_gpio_wakeup_pin + 0x4022dba4 pm_is_gpio_int_trig + 0x4022dbbc pm_rtc_clock_cali_proc + 0x4022dbf4 pm_get_ck170_period + 0x4022dc18 pm_set_sleep_time + 0x4022ded8 pm_rf_is_closed + 0x4022df04 pm_set_sleep_type_from_upper + 0x4022dff4 pm_get_sleep_type + 0x4022e008 pm_set_sleep_level + 0x4022e010 pm_get_sleep_level + 0x4022e018 pm_set_listen_interval + 0x4022e020 pm_get_listen_interval + 0x4022e1cc uart_tx_flush + 0x4022e1d0 pm_suspend + 0x4022e3e8 pm_shutdown + 0x4022e4cc pm_reset_idle_sleep + 0x4022e50c pm_idle_sleep + 0x4022e520 pm_open + 0x4022e65c pm_onBcnRx + 0x4022ea58 StopLightSleepSetFunc + 0x4022ea60 LightSleepWakedCbSetFunc + 0x4022f028 pm_incr_active_cnt + 0x4022f03c pm_disable_active_timer + 0x4022f054 pm_enable_active_timer + 0x4022f070 pm_keep_active_disable + 0x4022f090 pm_keep_active_enable + 0x4022f108 pm_enable_gpio_wakeup + 0x4022f144 pm_attach + 0x4022f248 pm_send_nullfunc + 0x4022f3fc pm_is_waked + 0x4022f414 pm_is_open + 0x4022f42c pm_scan_lock + 0x4022f454 pm_try_scan_unlock + 0x4022f46c pm_force_scan_unlock + 0x4022f518 pm_scan_unlocked + 0x4022f52c pm_allow_tx + 0x4022f548 pm_assoc_parse + 0x4022f560 pm_set_addr + 0x4022f580 pm_sleep_for + 0x4022f5b0 pm_post + 0x4022f6b0 pm_get_idle_wait_time + *fill* 0x4022f6f1 0x3 .irom0.text.../../lwip/include/lwip/netif.h.265.33 - 0x4022f394 0xff C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4022f6f4 0xff C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x127 (size before relaxing) - 0x4022f39c netif_set_addr - *fill* 0x4022f493 0x1 + 0x4022f6fc netif_set_addr + *fill* 0x4022f7f3 0x1 .irom0.text.../../lwip/include/lwip/netif.h.261.32 - 0x4022f494 0x4d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4022f7f4 0x4d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x59 (size before relaxing) - 0x4022f494 netif_add - *fill* 0x4022f4e1 0x3 + 0x4022f7f4 netif_add + *fill* 0x4022f841 0x3 .irom0.text.../../lwip/include/lwip/netif.h.274.36 - 0x4022f4e4 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4022f844 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x23 (size before relaxing) - 0x4022f4e8 netif_set_default - *fill* 0x4022f4ff 0x1 + 0x4022f848 netif_set_default + *fill* 0x4022f85f 0x1 .irom0.text.../../lwip/include/lwip/netif.h.281.41 - 0x4022f500 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4022f860 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x27 (size before relaxing) - 0x4022f500 netif_set_down - *fill* 0x4022f51f 0x1 + 0x4022f860 netif_set_down + *fill* 0x4022f87f 0x1 .irom0.text.../../lwip/include/lwip/netif.h.266.34 - 0x4022f520 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4022f880 0xf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x17 (size before relaxing) - 0x4022f520 netif_remove - *fill* 0x4022f52f 0x1 + 0x4022f880 netif_remove + *fill* 0x4022f88f 0x1 .irom0.text.../../lwip/include/lwip/netif.h.280.40 - 0x4022f530 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4022f890 0x1f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x27 (size before relaxing) - 0x4022f530 netif_set_up - *fill* 0x4022f54f 0x1 + 0x4022f890 netif_set_up + *fill* 0x4022f8af 0x1 .irom0.text.../../lwip/include/lwip/pbuf.h.128.14 - 0x4022f550 0xab C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4022f8b0 0xab C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0xbb (size before relaxing) - 0x4022f554 pbuf_alloc - *fill* 0x4022f5fb 0x1 + 0x4022f8b4 pbuf_alloc + *fill* 0x4022f95b 0x1 .irom0.text.../../lwip/include/lwip/pbuf.h.137.18 - 0x4022f5fc 0x69 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4022f95c 0x69 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x89 (size before relaxing) - 0x4022f5fc pbuf_free - *fill* 0x4022f665 0x3 + 0x4022f95c pbuf_free + *fill* 0x4022f9c5 0x3 .irom0.text.../../lwip/include/netif/etharp.h.213.54 - 0x4022f668 0x6a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4022f9c8 0x6a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x8e (size before relaxing) - 0x4022f668 ethernet_input - *fill* 0x4022f6d2 0x2 + 0x4022f9c8 ethernet_input + *fill* 0x4022fa32 0x2 .irom0.text.glue-lwip/esp-dhcpserver.c.247.6 - 0x4022f6d4 0xb6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x4022fa34 0xb6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0xe6 (size before relaxing) - *fill* 0x4022f78a 0x2 + *fill* 0x4022faea 0x2 .irom0.text.glue-lwip/esp-dhcpserver.c.139.4 - 0x4022f78c 0x144 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x4022faec 0x144 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0x14c (size before relaxing) .irom0.text.glue-lwip/esp-dhcpserver.c.723.14 - 0x4022f8d0 0x136 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x4022fc30 0x136 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0x196 (size before relaxing) - 0x4022f8e4 dhcps_start_LWIP2 - *fill* 0x4022fa06 0x2 + 0x4022fc44 dhcps_start_LWIP2 + *fill* 0x4022fd66 0x2 .irom0.text.glue-lwip/esp-dhcpserver.c.771.16 - 0x4022fa08 0x80 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x4022fd68 0x80 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0xac (size before relaxing) - 0x4022fa0c dhcps_stop + 0x4022fd6c dhcps_stop .irom0.text.glue-lwip/esp-dhcpserver.c.816.17 - 0x4022fa88 0x98 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x4022fde8 0x98 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0xd0 (size before relaxing) - 0x4022fa88 wifi_softap_set_dhcps_lease + 0x4022fde8 wifi_softap_set_dhcps_lease .irom0.text.glue-lwip/esp-dhcpserver.c.960.21 - 0x4022fb20 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x4022fe80 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0x47 (size before relaxing) - 0x4022fb20 wifi_softap_set_dhcps_offer_option - *fill* 0x4022fb5f 0x1 + 0x4022fe80 wifi_softap_set_dhcps_offer_option + *fill* 0x4022febf 0x1 .irom0.text.glue-lwip/esp-dhcpserver.c.982.22 - 0x4022fb60 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x4022fec0 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0x41 (size before relaxing) - 0x4022fb60 wifi_softap_set_dhcps_lease_time - *fill* 0x4022fb91 0x3 + 0x4022fec0 wifi_softap_set_dhcps_lease_time + *fill* 0x4022fef1 0x3 .irom0.text.glue-lwip/esp-dhcpserver.c.1021.25 - 0x4022fb94 0xb0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x4022fef4 0xb0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0xd4 (size before relaxing) - 0x4022fb94 wifi_softap_dhcps_client_leave + 0x4022fef4 wifi_softap_dhcps_client_leave .irom0.text.glue-lwip/esp-dhcpserver.c.1058.26 - 0x4022fc44 0x223 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x4022ffa4 0x223 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0x283 (size before relaxing) - 0x4022fc48 wifi_softap_dhcps_client_update - *fill* 0x4022fe67 0x1 + 0x4022ffa8 wifi_softap_dhcps_client_update + *fill* 0x402301c7 0x1 .irom0.text.glue-lwip/esp-dhcpserver.c.588.12 - 0x4022fe68 0x315 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x402301c8 0x315 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0x3a5 (size before relaxing) - *fill* 0x4023017d 0x3 - .irom0.text 0x40230180 0xc89 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(app_main.o) + *fill* 0x402304dd 0x3 + .irom0.text 0x402304e0 0xc89 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(app_main.o) 0xfe1 (size before relaxing) - 0x4023018c uart_div_modify - 0x402303bc wdt_init - 0x40230454 user_uart_wait_tx_fifo_empty - 0x40230704 wifi_set_backup_mac - 0x40230710 system_phy_freq_trace_enable - 0x40230718 flash_data_check - *fill* 0x40230e09 0x3 - .irom0.text 0x40230e0c 0x60c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(eagle_lib.o) + 0x402304ec uart_div_modify + 0x4023071c wdt_init + 0x402307b4 user_uart_wait_tx_fifo_empty + 0x40230a64 wifi_set_backup_mac + 0x40230a70 system_phy_freq_trace_enable + 0x40230a78 flash_data_check + *fill* 0x40231169 0x3 + .irom0.text 0x4023116c 0x60c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(eagle_lib.o) 0x620 (size before relaxing) - 0x40230e0c divide - 0x40230e48 skip_atoi - 0x40230fc8 ets_vsnprintf - 0x40231328 ets_vsprintf - 0x4023134c ets_sprintf - 0x40231374 ets_strcat - 0x40231394 ets_strrchr - 0x402313c0 ets_strchr - 0x402313d8 bit_popcount - 0x402313f4 ets_snprintf - .irom0.text 0x40231418 0x32a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(eagle_lwip_if.o) + 0x4023116c divide + 0x402311a8 skip_atoi + 0x40231328 ets_vsnprintf + 0x40231688 ets_vsprintf + 0x402316ac ets_sprintf + 0x402316d4 ets_strcat + 0x402316f4 ets_strrchr + 0x40231720 ets_strchr + 0x40231738 bit_popcount + 0x40231754 ets_snprintf + .irom0.text 0x40231778 0x32a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(eagle_lwip_if.o) 0x3ea (size before relaxing) - 0x402314d4 eagle_lwip_if_alloc - 0x4023169c eagle_lwip_if_free - 0x40231720 eagle_lwip_getif - *fill* 0x40231742 0x2 - .irom0.text 0x40231744 0x172 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(ets_timer.o) + 0x40231834 eagle_lwip_if_alloc + 0x402319fc eagle_lwip_if_free + 0x40231a80 eagle_lwip_getif + *fill* 0x40231aa2 0x2 + .irom0.text 0x40231aa4 0x172 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(ets_timer.o) 0x1b2 (size before relaxing) - 0x4023174c ets_timer_done - 0x40231788 ets_timer_handler_isr - 0x40231854 ets_timer_init - *fill* 0x402318b6 0x2 - .irom0.text 0x402318b8 0x4109 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(user_interface.o) + 0x40231aac ets_timer_done + 0x40231ae8 ets_timer_handler_isr + 0x40231bb4 ets_timer_init + *fill* 0x40231c16 0x2 + .irom0.text 0x40231c18 0x4109 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(user_interface.o) 0x4dd1 (size before relaxing) - 0x402318bc system_set_os_print - 0x402318cc system_get_os_print - 0x40231a94 system_pp_recycle_rx_pkt - 0x40231aa8 system_adc_read - 0x40231ae8 system_adc_read_fast - 0x40231b48 system_get_vdd33 - 0x40231b74 system_restart_hook - 0x40231b8c system_restart_local - 0x40231c68 system_restart - 0x40231cc4 system_restore - 0x40231d30 system_get_flash_size_map - 0x40231d50 system_get_boot_version - 0x40231d88 system_get_test_result - 0x40231dac system_get_userbin_addr - 0x40231e48 system_get_boot_mode - 0x40231e78 system_restart_enhance - 0x40232028 system_upgrade_userbin_set - 0x40232074 system_upgrade_userbin_check - 0x402320b4 system_upgrade_flag_set - 0x402320c8 system_upgrade_flag_check - 0x402320d0 spi_flash_erase_protect_enable - 0x402320f8 spi_flash_erase_protect_disable - 0x4023210c spi_flash_erase_sector_check - 0x402321b8 system_get_current_sumlength - 0x40232230 get_irom0_bin_len - 0x40232298 get_flash_bin_len - 0x40232564 system_upgrade_reboot - 0x40232880 system_deep_sleep_instant - 0x402328d8 system_deep_sleep - 0x40232978 system_deep_sleep_set_option - 0x40232994 system_phy_temperature_alert - 0x402329a8 system_phy_set_max_tpw - 0x402329bc system_phy_set_tpw_via_vdd33 - 0x402329d0 system_phy_set_rfoption - 0x402329e4 system_phy_set_powerup_option - 0x402329f8 system_update_cpu_freq - 0x40232a54 system_get_cpu_freq - 0x40232a6c system_overclock - 0x40232a98 system_restoreclock - 0x40232ac8 system_timer_reinit - 0x40232ae0 system_relative_time - 0x40232b04 system_station_got_ip_set - 0x40232c34 system_print_meminfo - 0x40232c94 system_get_free_heap_size - 0x40232ca8 system_get_chip_id - 0x40232ce8 system_rtc_clock_cali_proc - 0x40232cfc system_get_rtc_time - 0x40232d0c system_mktime - 0x40232ddc system_init_done_cb - 0x40232de4 system_get_rst_info - 0x40232dec system_get_data_of_array_8 - 0x40232e10 system_get_data_of_array_16 - 0x40232e38 system_get_string_from_flash - 0x40232ea4 wifi_softap_dhcps_start - 0x40232eec wifi_softap_dhcps_stop - 0x40232f2c wifi_softap_dhcps_status - 0x40232f34 wifi_station_dhcpc_start - 0x40232f8c wifi_station_dhcpc_stop - 0x40232fcc wifi_station_dhcpc_event - 0x40233040 wifi_station_dhcpc_set_maxtry - 0x40233050 wifi_station_dhcpc_status - 0x402330d0 wifi_get_opmode - 0x402330e4 wifi_get_opmode_default - 0x4023315c wifi_get_broadcast_if - 0x40233198 wifi_set_broadcast_if - 0x40233360 wifi_set_opmode - 0x40233374 wifi_set_opmode_current - 0x40233388 system_get_checksum - 0x402333c8 wifi_param_save_protect_with_check - 0x40233488 system_param_save_with_protect - 0x4023353c system_save_sys_param - 0x40233568 system_param_load - 0x402336c0 wifi_station_get_config - 0x402336d4 wifi_station_get_config_default - 0x402336f4 wifi_station_get_ap_info - 0x402337b4 wifi_station_ap_number_set - 0x40233cd4 wifi_station_set_config - 0x40233cec wifi_station_set_config_current - 0x40233d04 wifi_station_restore_config - 0x40233d1c wifi_station_get_current_ap_id - 0x40233d30 wifi_station_ap_check - 0x40233d74 wifi_station_ap_change - 0x40233e8c wifi_station_scan - 0x40233ed8 wifi_station_get_auto_connect - 0x40233ef8 wifi_station_set_auto_connect - 0x40233fb0 wifi_station_save_pmk2cache - 0x402340e0 wifi_station_save_bssid - 0x40234180 wifi_station_connect - 0x40234214 wifi_station_disconnect - 0x402342d4 wifi_station_get_connect_status - 0x40234304 wifi_station_set_reconnect_policy - 0x4023431c wifi_station_get_reconnect_policy - 0x40234324 wifi_station_get_rssi - 0x40234370 wifi_station_set_default_hostname - 0x402343d8 wifi_station_get_hostname - 0x40234404 wifi_station_set_hostname - 0x402344a0 wifi_softap_cacl_mac - 0x40234504 wifi_softap_set_default_ssid - 0x402346ec wifi_softap_get_config - 0x40234700 wifi_softap_get_config_default - 0x40234a14 wifi_softap_set_config - 0x40234a28 wifi_softap_set_config_current - 0x40234a44 wifi_softap_set_station_info - 0x40234b18 wifi_softap_get_station_info - 0x40234bc4 wifi_softap_free_station_info - 0x40234c04 wifi_softap_get_station_num - 0x40234c54 wifi_softap_deauth - 0x40234d44 wifi_softap_get_beacon_only_mode - 0x40234d58 wifi_softap_set_beacon_only_mode - 0x40234dbc wifi_register_user_ie_manufacturer_recv_cb - 0x40234dd0 wifi_unregister_user_ie_manufacturer_recv_cb - 0x40234e04 wifi_set_user_ie - 0x40234f18 wifi_get_user_ie - 0x40234f4c wifi_get_phy_mode - 0x40234f60 wifi_set_phy_mode - 0x40235080 wifi_set_sleep_type - 0x4023509c wifi_set_sleep_level - 0x402350b4 wifi_set_listen_interval - 0x402350cc wifi_enable_gpio_wakeup - 0x402350f8 wifi_disable_gpio_wakeup - 0x40235110 wifi_get_sleep_type - 0x40235124 wifi_get_sleep_level - 0x40235138 wifi_get_listen_interval - 0x4023514c wifi_get_channel - 0x40235164 wifi_set_channel - 0x402351c0 wifi_adjust_ap_chan - 0x40235238 wifi_set_country - 0x40235278 wifi_get_country - 0x402352b0 wifi_promiscuous_set_mac - 0x4023530c wifi_promiscuous_enable - 0x402353f0 wifi_set_promiscuous_rx_cb - 0x402353f8 wifi_get_ip_info - 0x40235478 wifi_set_ip_info - 0x402354ec wifi_get_macaddr - 0x4023554c wifi_set_macaddr - 0x40235670 wifi_enable_6m_rate - 0x40235678 wifi_get_user_fixed_rate - 0x40235698 wifi_set_user_fixed_rate - 0x402356b8 wifi_set_user_sup_rate - 0x402356f4 wifi_set_user_rate_limit - 0x40235718 wifi_get_user_limit_rate_mask - 0x40235720 wifi_set_user_limit_rate_mask - 0x40235738 wifi_register_send_pkt_freedom_cb - 0x4023574c wifi_unregister_send_pkt_freedom_cb - 0x40235758 wifi_send_pkt_freedom - 0x402357a4 wifi_rfid_locp_recv_open - 0x402357b8 wifi_rfid_locp_recv_close - 0x402357cc wifi_register_rfid_locp_recv_cb - 0x402357e0 wifi_unregister_rfid_locp_recv_cb - 0x402357f8 wifi_status_led_install - 0x4023582c wifi_status_led_uninstall - 0x40235850 wifi_set_status_led_output_level - 0x402358a4 wifi_set_event_handler_cb - 0x402358ec system_os_task - 0x40235928 system_uart_swap - 0x40235988 system_uart_de_swap - 0x402359bc system_get_sdk_version - *fill* 0x402359c1 0x3 - .irom0.text 0x402359c4 0xfa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy.o) + 0x40231c1c system_set_os_print + 0x40231c2c system_get_os_print + 0x40231df4 system_pp_recycle_rx_pkt + 0x40231e08 system_adc_read + 0x40231e48 system_adc_read_fast + 0x40231ea8 system_get_vdd33 + 0x40231ed4 system_restart_hook + 0x40231eec system_restart_local + 0x40231fc8 system_restart + 0x40232024 system_restore + 0x40232090 system_get_flash_size_map + 0x402320b0 system_get_boot_version + 0x402320e8 system_get_test_result + 0x4023210c system_get_userbin_addr + 0x402321a8 system_get_boot_mode + 0x402321d8 system_restart_enhance + 0x40232388 system_upgrade_userbin_set + 0x402323d4 system_upgrade_userbin_check + 0x40232414 system_upgrade_flag_set + 0x40232428 system_upgrade_flag_check + 0x40232430 spi_flash_erase_protect_enable + 0x40232458 spi_flash_erase_protect_disable + 0x4023246c spi_flash_erase_sector_check + 0x40232518 system_get_current_sumlength + 0x40232590 get_irom0_bin_len + 0x402325f8 get_flash_bin_len + 0x402328c4 system_upgrade_reboot + 0x40232be0 system_deep_sleep_instant + 0x40232c38 system_deep_sleep + 0x40232cd8 system_deep_sleep_set_option + 0x40232cf4 system_phy_temperature_alert + 0x40232d08 system_phy_set_max_tpw + 0x40232d1c system_phy_set_tpw_via_vdd33 + 0x40232d30 system_phy_set_rfoption + 0x40232d44 system_phy_set_powerup_option + 0x40232d58 system_update_cpu_freq + 0x40232db4 system_get_cpu_freq + 0x40232dcc system_overclock + 0x40232df8 system_restoreclock + 0x40232e28 system_timer_reinit + 0x40232e40 system_relative_time + 0x40232e64 system_station_got_ip_set + 0x40232f94 system_print_meminfo + 0x40232ff4 system_get_free_heap_size + 0x40233008 system_get_chip_id + 0x40233048 system_rtc_clock_cali_proc + 0x4023305c system_get_rtc_time + 0x4023306c system_mktime + 0x4023313c system_init_done_cb + 0x40233144 system_get_rst_info + 0x4023314c system_get_data_of_array_8 + 0x40233170 system_get_data_of_array_16 + 0x40233198 system_get_string_from_flash + 0x40233204 wifi_softap_dhcps_start + 0x4023324c wifi_softap_dhcps_stop + 0x4023328c wifi_softap_dhcps_status + 0x40233294 wifi_station_dhcpc_start + 0x402332ec wifi_station_dhcpc_stop + 0x4023332c wifi_station_dhcpc_event + 0x402333a0 wifi_station_dhcpc_set_maxtry + 0x402333b0 wifi_station_dhcpc_status + 0x40233430 wifi_get_opmode + 0x40233444 wifi_get_opmode_default + 0x402334bc wifi_get_broadcast_if + 0x402334f8 wifi_set_broadcast_if + 0x402336c0 wifi_set_opmode + 0x402336d4 wifi_set_opmode_current + 0x402336e8 system_get_checksum + 0x40233728 wifi_param_save_protect_with_check + 0x402337e8 system_param_save_with_protect + 0x4023389c system_save_sys_param + 0x402338c8 system_param_load + 0x40233a20 wifi_station_get_config + 0x40233a34 wifi_station_get_config_default + 0x40233a54 wifi_station_get_ap_info + 0x40233b14 wifi_station_ap_number_set + 0x40234034 wifi_station_set_config + 0x4023404c wifi_station_set_config_current + 0x40234064 wifi_station_restore_config + 0x4023407c wifi_station_get_current_ap_id + 0x40234090 wifi_station_ap_check + 0x402340d4 wifi_station_ap_change + 0x402341ec wifi_station_scan + 0x40234238 wifi_station_get_auto_connect + 0x40234258 wifi_station_set_auto_connect + 0x40234310 wifi_station_save_pmk2cache + 0x40234440 wifi_station_save_bssid + 0x402344e0 wifi_station_connect + 0x40234574 wifi_station_disconnect + 0x40234634 wifi_station_get_connect_status + 0x40234664 wifi_station_set_reconnect_policy + 0x4023467c wifi_station_get_reconnect_policy + 0x40234684 wifi_station_get_rssi + 0x402346d0 wifi_station_set_default_hostname + 0x40234738 wifi_station_get_hostname + 0x40234764 wifi_station_set_hostname + 0x40234800 wifi_softap_cacl_mac + 0x40234864 wifi_softap_set_default_ssid + 0x40234a4c wifi_softap_get_config + 0x40234a60 wifi_softap_get_config_default + 0x40234d74 wifi_softap_set_config + 0x40234d88 wifi_softap_set_config_current + 0x40234da4 wifi_softap_set_station_info + 0x40234e78 wifi_softap_get_station_info + 0x40234f24 wifi_softap_free_station_info + 0x40234f64 wifi_softap_get_station_num + 0x40234fb4 wifi_softap_deauth + 0x402350a4 wifi_softap_get_beacon_only_mode + 0x402350b8 wifi_softap_set_beacon_only_mode + 0x4023511c wifi_register_user_ie_manufacturer_recv_cb + 0x40235130 wifi_unregister_user_ie_manufacturer_recv_cb + 0x40235164 wifi_set_user_ie + 0x40235278 wifi_get_user_ie + 0x402352ac wifi_get_phy_mode + 0x402352c0 wifi_set_phy_mode + 0x402353e0 wifi_set_sleep_type + 0x402353fc wifi_set_sleep_level + 0x40235414 wifi_set_listen_interval + 0x4023542c wifi_enable_gpio_wakeup + 0x40235458 wifi_disable_gpio_wakeup + 0x40235470 wifi_get_sleep_type + 0x40235484 wifi_get_sleep_level + 0x40235498 wifi_get_listen_interval + 0x402354ac wifi_get_channel + 0x402354c4 wifi_set_channel + 0x40235520 wifi_adjust_ap_chan + 0x40235598 wifi_set_country + 0x402355d8 wifi_get_country + 0x40235610 wifi_promiscuous_set_mac + 0x4023566c wifi_promiscuous_enable + 0x40235750 wifi_set_promiscuous_rx_cb + 0x40235758 wifi_get_ip_info + 0x402357d8 wifi_set_ip_info + 0x4023584c wifi_get_macaddr + 0x402358ac wifi_set_macaddr + 0x402359d0 wifi_enable_6m_rate + 0x402359d8 wifi_get_user_fixed_rate + 0x402359f8 wifi_set_user_fixed_rate + 0x40235a18 wifi_set_user_sup_rate + 0x40235a54 wifi_set_user_rate_limit + 0x40235a78 wifi_get_user_limit_rate_mask + 0x40235a80 wifi_set_user_limit_rate_mask + 0x40235a98 wifi_register_send_pkt_freedom_cb + 0x40235aac wifi_unregister_send_pkt_freedom_cb + 0x40235ab8 wifi_send_pkt_freedom + 0x40235b04 wifi_rfid_locp_recv_open + 0x40235b18 wifi_rfid_locp_recv_close + 0x40235b2c wifi_register_rfid_locp_recv_cb + 0x40235b40 wifi_unregister_rfid_locp_recv_cb + 0x40235b58 wifi_status_led_install + 0x40235b8c wifi_status_led_uninstall + 0x40235bb0 wifi_set_status_led_output_level + 0x40235c04 wifi_set_event_handler_cb + 0x40235c4c system_os_task + 0x40235c88 system_uart_swap + 0x40235ce8 system_uart_de_swap + 0x40235d1c system_get_sdk_version + *fill* 0x40235d21 0x3 + .irom0.text 0x40235d24 0xfa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy.o) 0x11e (size before relaxing) - 0x402359c8 rf_init - 0x402359e4 bb_init - 0x402359fc phy_init - 0x40235a2c RFChannelSel - 0x40235a48 phy_delete_channel - 0x40235a60 phy_enable_agc - 0x40235a78 phy_disable_agc - 0x40235a90 phy_initialize_bb - 0x40235aa8 phy_set_sense - *fill* 0x40235abe 0x2 - .irom0.text 0x40235ac0 0x1773 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_ana.o) + 0x40235d28 rf_init + 0x40235d44 bb_init + 0x40235d5c phy_init + 0x40235d8c RFChannelSel + 0x40235da8 phy_delete_channel + 0x40235dc0 phy_enable_agc + 0x40235dd8 phy_disable_agc + 0x40235df0 phy_initialize_bb + 0x40235e08 phy_set_sense + *fill* 0x40235e1e 0x2 + .irom0.text 0x40235e20 0x1773 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_ana.o) 0x19b7 (size before relaxing) - 0x40235ac0 ram_pbus_set_rxgain - 0x40235b90 ram_pbus_debugmode - 0x40235c44 ram_pbus_xpd_tx_on - 0x40235cb0 set_rf_freq_offset - 0x40235d20 chip_v6_rxmax_ext_ana - 0x40235e74 ram_chip_v6_rx_init - 0x40235ea4 tsen_meas - 0x40235f50 readvdd33 - 0x40236118 txpwr_offset - 0x402361d4 set_txcap_reg - 0x40236254 ram_ana_inf_gating_en - 0x402363b4 ram_restart_cal - 0x40236420 wait_rfpll_cal_end - 0x402364ac ram_rfpll_set_freq - 0x402365ac ram_set_channel_freq - 0x402368b0 chip_60_set_channel - 0x40236a78 chip_v6_set_chan_offset - 0x40236ad4 chip_v6_set_chan - 0x40236b84 chip_v6_set_chan_wakeup - 0x40236c00 chip_v6_rf_init - 0x40236e64 low_power_set - 0x40236eb4 test_tout - 0x4023702c check_data_flag - 0x4023704c phy_get_check_flag - 0x40237180 phy_get_vdd33 - *fill* 0x40237233 0x1 - .irom0.text 0x40237234 0x3de8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6.o) + 0x40235e20 ram_pbus_set_rxgain + 0x40235ef0 ram_pbus_debugmode + 0x40235fa4 ram_pbus_xpd_tx_on + 0x40236010 set_rf_freq_offset + 0x40236080 chip_v6_rxmax_ext_ana + 0x402361d4 ram_chip_v6_rx_init + 0x40236204 tsen_meas + 0x402362b0 readvdd33 + 0x40236478 txpwr_offset + 0x40236534 set_txcap_reg + 0x402365b4 ram_ana_inf_gating_en + 0x40236714 ram_restart_cal + 0x40236780 wait_rfpll_cal_end + 0x4023680c ram_rfpll_set_freq + 0x4023690c ram_set_channel_freq + 0x40236c10 chip_60_set_channel + 0x40236dd8 chip_v6_set_chan_offset + 0x40236e34 chip_v6_set_chan + 0x40236ee4 chip_v6_set_chan_wakeup + 0x40236f60 chip_v6_rf_init + 0x402371c4 low_power_set + 0x40237214 test_tout + 0x4023738c check_data_flag + 0x402373ac phy_get_check_flag + 0x402374e0 phy_get_vdd33 + *fill* 0x40237593 0x1 + .irom0.text 0x40237594 0x3de8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6.o) 0x44d0 (size before relaxing) - 0x40237234 ram_tx_mac_enable - 0x40237238 ram_tx_mac_disable - 0x4023723c rtc_mem_backup - 0x4023726c rtc_mem_recovery - 0x4023729c set_cal_rxdc - 0x40237350 set_rx_gain_cal_iq - 0x402376a8 gen_rx_gain_table - 0x40237800 pbus_set_rxbbgain - 0x4023787c set_rx_gain_testchip_50 - 0x40237bb0 ram_get_corr_power - 0x40237ca0 check_data_func - 0x40237cc0 do_noisefloor_lsleep_v50 - 0x40237cf4 do_noisefloor - 0x40237d64 start_dig_rx - 0x40237da8 stop_dig_rx - 0x40237dd4 chip_v6_set_chanfreq - 0x40237e00 tx_cap_init - 0x40238028 target_power_add_backoff - 0x40238050 tx_pwctrl_init_cal - 0x402381f0 tx_atten_set_interp - 0x40238450 check_tx_pwr_cal - 0x40238594 tx_pwctrl_init - 0x402386b8 ram_get_noisefloor - 0x402386d4 get_noisefloor_sat - 0x40238704 ram_set_noise_floor - 0x4023875c ram_start_noisefloor - 0x402387a4 read_hw_noisefloor - 0x402387cc noise_check_loop - 0x40238924 noise_init - 0x40238b24 target_power_backoff - 0x40238b7c sdt_on_noise_start - 0x40238c00 chip_v6_set_chan_rx_cmp - 0x40238d8c chip_v6_set_chan_misc - 0x40238e08 phy_dig_spur_set - 0x40239160 phy_dig_spur_prot - 0x40239398 chip_v6_rxmax_ext_dig - 0x402393e4 chip_v6_rxmax_ext - 0x40239488 phy_bb_rx_cfg - 0x402398a0 uart_wait_idle - 0x402398d4 phy_pbus_soc_cfg - 0x4023998c phy_gpio_cfg - 0x40239ba0 tx_cont_en - 0x40239c48 tx_cont_dis - 0x40239c9c tx_cont_cfg - 0x40239cbc chip_v6_initialize_bb - 0x40239e20 periodic_cal - 0x40239e58 bbpll_cal - 0x40239f00 periodic_cal_top - 0x40239f64 register_chipv6_phy_init_param - 0x4023a20c change_bbpll160_sleep - 0x4023a3bc change_bbpll160 - 0x4023a3f4 set_crystal_uart - 0x4023a484 ant_switch_init - 0x4023a534 reduce_current_init - 0x4023a620 rtc_mem_check - 0x4023a65c phy_afterwake_set_rfoption - 0x4023a678 deep_sleep_set_option - 0x4023a6a4 write_data_to_rtc - 0x4023a6dc get_data_from_rtc - 0x4023a764 register_chipv6_phy - 0x4023abd4 set_dpd_bypass - 0x4023abfc set_rf_gain_stage10 - 0x4023ac2c get_vdd33_offset - 0x4023aca0 get_phy_target_power - 0x4023ad50 set_most_pwr_reg - 0x4023ae24 phy_set_most_tpw - 0x4023ae44 phy_vdd33_set_tpw - 0x4023ae5c get_adc_rand - 0x4023ae8c phy_get_rand - 0x4023aea4 phy_tx_pwctrl_cali - 0x4023aecc phy_check_data_table - 0x4023af08 phy_after_init_enrx - 0x4023af6c phy_set_rx11b_reg - 0x4023afa0 phy_set_powerup_option - 0x4023afb0 phy_get_txpwr_param - 0x4023affc phy_get_rxnf_param - 0x4023b008 phy_get_freq_param - .irom0.text 0x4023b01c 0x219c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_cal.o) + 0x40237594 ram_tx_mac_enable + 0x40237598 ram_tx_mac_disable + 0x4023759c rtc_mem_backup + 0x402375cc rtc_mem_recovery + 0x402375fc set_cal_rxdc + 0x402376b0 set_rx_gain_cal_iq + 0x40237a08 gen_rx_gain_table + 0x40237b60 pbus_set_rxbbgain + 0x40237bdc set_rx_gain_testchip_50 + 0x40237f10 ram_get_corr_power + 0x40238000 check_data_func + 0x40238020 do_noisefloor_lsleep_v50 + 0x40238054 do_noisefloor + 0x402380c4 start_dig_rx + 0x40238108 stop_dig_rx + 0x40238134 chip_v6_set_chanfreq + 0x40238160 tx_cap_init + 0x40238388 target_power_add_backoff + 0x402383b0 tx_pwctrl_init_cal + 0x40238550 tx_atten_set_interp + 0x402387b0 check_tx_pwr_cal + 0x402388f4 tx_pwctrl_init + 0x40238a18 ram_get_noisefloor + 0x40238a34 get_noisefloor_sat + 0x40238a64 ram_set_noise_floor + 0x40238abc ram_start_noisefloor + 0x40238b04 read_hw_noisefloor + 0x40238b2c noise_check_loop + 0x40238c84 noise_init + 0x40238e84 target_power_backoff + 0x40238edc sdt_on_noise_start + 0x40238f60 chip_v6_set_chan_rx_cmp + 0x402390ec chip_v6_set_chan_misc + 0x40239168 phy_dig_spur_set + 0x402394c0 phy_dig_spur_prot + 0x402396f8 chip_v6_rxmax_ext_dig + 0x40239744 chip_v6_rxmax_ext + 0x402397e8 phy_bb_rx_cfg + 0x40239c00 uart_wait_idle + 0x40239c34 phy_pbus_soc_cfg + 0x40239cec phy_gpio_cfg + 0x40239f00 tx_cont_en + 0x40239fa8 tx_cont_dis + 0x40239ffc tx_cont_cfg + 0x4023a01c chip_v6_initialize_bb + 0x4023a180 periodic_cal + 0x4023a1b8 bbpll_cal + 0x4023a260 periodic_cal_top + 0x4023a2c4 register_chipv6_phy_init_param + 0x4023a56c change_bbpll160_sleep + 0x4023a71c change_bbpll160 + 0x4023a754 set_crystal_uart + 0x4023a7e4 ant_switch_init + 0x4023a894 reduce_current_init + 0x4023a980 rtc_mem_check + 0x4023a9bc phy_afterwake_set_rfoption + 0x4023a9d8 deep_sleep_set_option + 0x4023aa04 write_data_to_rtc + 0x4023aa3c get_data_from_rtc + 0x4023aac4 register_chipv6_phy + 0x4023af34 set_dpd_bypass + 0x4023af5c set_rf_gain_stage10 + 0x4023af8c get_vdd33_offset + 0x4023b000 get_phy_target_power + 0x4023b0b0 set_most_pwr_reg + 0x4023b184 phy_set_most_tpw + 0x4023b1a4 phy_vdd33_set_tpw + 0x4023b1bc get_adc_rand + 0x4023b1ec phy_get_rand + 0x4023b204 phy_tx_pwctrl_cali + 0x4023b22c phy_check_data_table + 0x4023b268 phy_after_init_enrx + 0x4023b2cc phy_set_rx11b_reg + 0x4023b300 phy_set_powerup_option + 0x4023b310 phy_get_txpwr_param + 0x4023b35c phy_get_rxnf_param + 0x4023b368 phy_get_freq_param + .irom0.text 0x4023b37c 0x219c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_cal.o) 0x23d4 (size before relaxing) - 0x4023b01c txbbgain2dcoindex - 0x4023b03c dcoindex2txbbgain - 0x4023b05c init_cal_dcoffset - 0x4023b120 set_rfanagain_dc_reg - 0x4023b1bc set_txdc_pbus - 0x4023b228 get_rf_gain_qdb - 0x4023b250 correct_rf_ana_gain - 0x4023b358 get_sar_dout - 0x4023b3e8 cal_rf_ana_gain - 0x4023b500 meas_tone_pwr_db - 0x4023b570 tx_pwr_backoff - 0x4023b724 get_fcc_1m2m_pwr_offset - 0x4023b760 ram_set_txbb_atten - 0x4023b7f0 txiq_get_mis_pwr - 0x4023b894 txiq_cover - 0x4023bab0 ram_rfcal_txiq - 0x4023bd20 rc_cal - 0x4023bee0 get_target_power_offset - 0x4023bfe8 get_pwctrl_correct - 0x4023c040 tx_pwctrl_cal - 0x4023c33c tx_pwctrl_bg_init - 0x4023c3b4 tx_pwctrl_background - 0x4023c46c read_sar_dout - 0x4023c4d0 ram_get_fm_sar_dout - 0x4023c574 ram_cal_tos_v60 - 0x4023c744 ram_get_bb_atten - 0x4023c774 ram_rfcal_txcap - 0x4023c938 ram_rfcal_pwrctrl - 0x4023cb78 ram_rxiq_get_mis - 0x4023cd44 ram_rxiq_cover_mg_mp - 0x4023cee8 ram_rfcal_rxiq - 0x4023d0f4 dpd_scale_set - 0x4023d13c dpd_mem_write - .irom0.text 0x4023d1b8 0xcde C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_sleep.o) + 0x4023b37c txbbgain2dcoindex + 0x4023b39c dcoindex2txbbgain + 0x4023b3bc init_cal_dcoffset + 0x4023b480 set_rfanagain_dc_reg + 0x4023b51c set_txdc_pbus + 0x4023b588 get_rf_gain_qdb + 0x4023b5b0 correct_rf_ana_gain + 0x4023b6b8 get_sar_dout + 0x4023b748 cal_rf_ana_gain + 0x4023b860 meas_tone_pwr_db + 0x4023b8d0 tx_pwr_backoff + 0x4023ba84 get_fcc_1m2m_pwr_offset + 0x4023bac0 ram_set_txbb_atten + 0x4023bb50 txiq_get_mis_pwr + 0x4023bbf4 txiq_cover + 0x4023be10 ram_rfcal_txiq + 0x4023c080 rc_cal + 0x4023c240 get_target_power_offset + 0x4023c348 get_pwctrl_correct + 0x4023c3a0 tx_pwctrl_cal + 0x4023c69c tx_pwctrl_bg_init + 0x4023c714 tx_pwctrl_background + 0x4023c7cc read_sar_dout + 0x4023c830 ram_get_fm_sar_dout + 0x4023c8d4 ram_cal_tos_v60 + 0x4023caa4 ram_get_bb_atten + 0x4023cad4 ram_rfcal_txcap + 0x4023cc98 ram_rfcal_pwrctrl + 0x4023ced8 ram_rxiq_get_mis + 0x4023d0a4 ram_rxiq_cover_mg_mp + 0x4023d248 ram_rfcal_rxiq + 0x4023d454 dpd_scale_set + 0x4023d49c dpd_mem_write + .irom0.text 0x4023d518 0xcde C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_sleep.o) 0xefe (size before relaxing) - 0x4023d1b8 pm_usec2rtc - 0x4023d1f0 pm_usec2rtc_64 - 0x4023d244 pm_rtc2usec - 0x4023d254 pm_set_sleep_cycles - 0x4023d27c pm_sleep_opt - 0x4023d3d0 pm_wakeup_opt - 0x4023d408 get_chip_version - 0x4023d448 pm_sleep_opt_bb_off - 0x4023d494 pm_sleep_opt_bb_on - 0x4023d4e8 pm_set_pll_xtal_wait_time - 0x4023d514 pm_prepare_to_sleep - 0x4023d51c pm_sdio_nidle - 0x4023d590 chg_lslp_mem_opt_8266 - 0x4023d5b0 pm_wait4wakeup - 0x4023d5ec pm_open_rf - 0x4023d628 pm_sleep_set_mac - 0x4023d6ac pm_set_wakeup_mac - 0x4023d744 pm_check_mac_idle - 0x4023d79c pm_set_sleep_btco - 0x4023d83c pm_set_wakeup_btco - 0x4023d954 pm_set_sleep_mode - 0x4023da74 pm_unmask_bt - 0x4023dae0 pm_wakeup_init - 0x4023dd3c sleep_opt_8266 - 0x4023dd5c sleep_opt_bb_on_8266 - 0x4023dd94 sleep_reset_analog_rtcreg_8266 - *fill* 0x4023de96 0x2 + 0x4023d518 pm_usec2rtc + 0x4023d550 pm_usec2rtc_64 + 0x4023d5a4 pm_rtc2usec + 0x4023d5b4 pm_set_sleep_cycles + 0x4023d5dc pm_sleep_opt + 0x4023d730 pm_wakeup_opt + 0x4023d768 get_chip_version + 0x4023d7a8 pm_sleep_opt_bb_off + 0x4023d7f4 pm_sleep_opt_bb_on + 0x4023d848 pm_set_pll_xtal_wait_time + 0x4023d874 pm_prepare_to_sleep + 0x4023d87c pm_sdio_nidle + 0x4023d8f0 chg_lslp_mem_opt_8266 + 0x4023d910 pm_wait4wakeup + 0x4023d94c pm_open_rf + 0x4023d988 pm_sleep_set_mac + 0x4023da0c pm_set_wakeup_mac + 0x4023daa4 pm_check_mac_idle + 0x4023dafc pm_set_sleep_btco + 0x4023db9c pm_set_wakeup_btco + 0x4023dcb4 pm_set_sleep_mode + 0x4023ddd4 pm_unmask_bt + 0x4023de40 pm_wakeup_init + 0x4023e09c sleep_opt_8266 + 0x4023e0bc sleep_opt_bb_on_8266 + 0x4023e0f4 sleep_reset_analog_rtcreg_8266 + *fill* 0x4023e1f6 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.116.11 - 0x4023de98 0x10 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023de98 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c - 0x4023dea0 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c + 0x4023e1f8 0x10 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e1f8 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c + 0x4023e200 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.116.10 - 0x4023dea8 0xd5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023dea8 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c - 0x4023df14 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c - *fill* 0x4023df7d 0x3 + 0x4023e208 0xd5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e208 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c + 0x4023e274 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c + *fill* 0x4023e2dd 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.111.9 - 0x4023df80 0x27 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023df80 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c - 0x4023df94 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c - *fill* 0x4023dfa7 0x1 + 0x4023e2e0 0x27 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e2e0 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c + 0x4023e2f4 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c + *fill* 0x4023e307 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.111.8 - 0x4023dfa8 0xd5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023dfa8 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c - 0x4023e014 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c - *fill* 0x4023e07d 0x3 + 0x4023e308 0xd5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e308 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c + 0x4023e374 BufferedStreamDataSource::release_buffer(unsigned char const*, unsigned int)::__c + *fill* 0x4023e3dd 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.93.7 - 0x4023e080 0x25 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e080 BufferedStreamDataSource::get_buffer(unsigned int)::__c - 0x4023e094 BufferedStreamDataSource::get_buffer(unsigned int)::__c - *fill* 0x4023e0a5 0x3 + 0x4023e3e0 0x25 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e3e0 BufferedStreamDataSource::get_buffer(unsigned int)::__c + 0x4023e3f4 BufferedStreamDataSource::get_buffer(unsigned int)::__c + *fill* 0x4023e405 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.93.6 - 0x4023e0a8 0xd5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e0a8 BufferedStreamDataSource::get_buffer(unsigned int)::__c - 0x4023e114 BufferedStreamDataSource::get_buffer(unsigned int)::__c - *fill* 0x4023e17d 0x3 + 0x4023e408 0xd5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e408 BufferedStreamDataSource::get_buffer(unsigned int)::__c + 0x4023e474 BufferedStreamDataSource::get_buffer(unsigned int)::__c + *fill* 0x4023e4dd 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.68.5 - 0x4023e180 0x2d e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e180 BufferedStreamDataSource::get_buffer(unsigned int)::__c - 0x4023e198 BufferedStreamDataSource::get_buffer(unsigned int)::__c - *fill* 0x4023e1ad 0x3 + 0x4023e4e0 0x2d e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e4e0 BufferedStreamDataSource::get_buffer(unsigned int)::__c + 0x4023e4f8 BufferedStreamDataSource::get_buffer(unsigned int)::__c + *fill* 0x4023e50d 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.68.4 - 0x4023e1b0 0xd5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e1b0 BufferedStreamDataSource::get_buffer(unsigned int)::__c - 0x4023e21c BufferedStreamDataSource::get_buffer(unsigned int)::__c - *fill* 0x4023e285 0x3 + 0x4023e510 0xd5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e510 BufferedStreamDataSource::get_buffer(unsigned int)::__c + 0x4023e57c BufferedStreamDataSource::get_buffer(unsigned int)::__c + *fill* 0x4023e5e5 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/ClientContext.h.440.15 - 0x4023e288 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e288 ClientContext::_write_from_source(DataSource*)::__c - *fill* 0x4023e29b 0x1 + 0x4023e5e8 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e5e8 ClientContext::_write_from_source(DataSource*)::__c + *fill* 0x4023e5fb 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/ClientContext.h.440.14 - 0x4023e29c 0x6c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e29c ClientContext::_write_from_source(DataSource*)::__c + 0x4023e5fc 0x6c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e5fc ClientContext::_write_from_source(DataSource*)::__c .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/ClientContext.h.439.13 - 0x4023e308 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e308 ClientContext::_write_from_source(DataSource*)::__c - *fill* 0x4023e31f 0x1 + 0x4023e668 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e668 ClientContext::_write_from_source(DataSource*)::__c + *fill* 0x4023e67f 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/ClientContext.h.439.12 - 0x4023e320 0x6c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e320 ClientContext::_write_from_source(DataSource*)::__c + 0x4023e680 0x6c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e680 ClientContext::_write_from_source(DataSource*)::__c .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/ClientContext.h.604.19 - 0x4023e38c 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e38c ClientContext::_connected(tcp_pcb*, long)::__c - *fill* 0x4023e39d 0x3 + 0x4023e6ec 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e6ec ClientContext::_connected(tcp_pcb*, long)::__c + *fill* 0x4023e6fd 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/ClientContext.h.604.18 - 0x4023e3a0 0x6c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e3a0 ClientContext::_connected(tcp_pcb*, long)::__c + 0x4023e700 0x6c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e700 ClientContext::_connected(tcp_pcb*, long)::__c .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/ClientContext.h.603.17 - 0x4023e40c 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e40c ClientContext::_connected(tcp_pcb*, long)::__c + 0x4023e76c 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e76c ClientContext::_connected(tcp_pcb*, long)::__c .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/ClientContext.h.603.16 - 0x4023e418 0x6c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e418 ClientContext::_connected(tcp_pcb*, long)::__c + 0x4023e778 0x6c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e778 ClientContext::_connected(tcp_pcb*, long)::__c .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.42.3 - 0x4023e484 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e484 BufferDataSource::release_buffer(unsigned char const*, unsigned int)::__c - *fill* 0x4023e49b 0x1 + 0x4023e7e4 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e7e4 BufferDataSource::release_buffer(unsigned char const*, unsigned int)::__c + *fill* 0x4023e7fb 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.42.2 - 0x4023e49c 0x69 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e49c BufferDataSource::release_buffer(unsigned char const*, unsigned int)::__c - *fill* 0x4023e505 0x3 + 0x4023e7fc 0x69 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e7fc BufferDataSource::release_buffer(unsigned char const*, unsigned int)::__c + *fill* 0x4023e865 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.35.1 - 0x4023e508 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e508 BufferDataSource::get_buffer(unsigned int)::__c - *fill* 0x4023e51d 0x3 + 0x4023e868 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e868 BufferDataSource::get_buffer(unsigned int)::__c + *fill* 0x4023e87d 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WiFisrc/include/DataSource.h.35.0 - 0x4023e520 0x69 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x4023e520 BufferDataSource::get_buffer(unsigned int)::__c - *fill* 0x4023e589 0x3 + 0x4023e880 0x69 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x4023e880 BufferDataSource::get_buffer(unsigned int)::__c + *fill* 0x4023e8e9 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.655.79 - 0x4023e58c 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e58d 0x3 + 0x4023e8ec 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023e8ed 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.654.78 - 0x4023e590 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e5ab 0x1 + 0x4023e8f0 0x1b e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023e90b 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.653.77 - 0x4023e5ac 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e5bd 0x3 + 0x4023e90c 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023e91d 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.652.76 - 0x4023e5c0 0x14 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023e920 0x14 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.651.75 - 0x4023e5d4 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023e934 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.650.74 - 0x4023e5e0 0x10 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023e940 0x10 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.649.73 - 0x4023e5f0 0x16 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e606 0x2 + 0x4023e950 0x16 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023e966 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.648.72 - 0x4023e608 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e61b 0x1 + 0x4023e968 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023e97b 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.647.71 - 0x4023e61c 0x20 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023e97c 0x20 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.646.70 - 0x4023e63c 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e653 0x1 + 0x4023e99c 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023e9b3 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.645.69 - 0x4023e654 0x16 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e66a 0x2 + 0x4023e9b4 0x16 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023e9ca 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.644.68 - 0x4023e66c 0x19 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e685 0x3 + 0x4023e9cc 0x19 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023e9e5 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.643.67 - 0x4023e688 0x14 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023e9e8 0x14 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.642.66 - 0x4023e69c 0x10 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023e9fc 0x10 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.641.65 - 0x4023e6ac 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e6b1 0x3 + 0x4023ea0c 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ea11 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.640.64 - 0x4023e6b4 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e6bd 0x3 + 0x4023ea14 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ea1d 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.639.63 - 0x4023e6c0 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e6d1 0x3 + 0x4023ea20 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ea31 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.638.62 - 0x4023e6d4 0x1e e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e6f2 0x2 + 0x4023ea34 0x1e e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ea52 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.637.61 - 0x4023e6f4 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e703 0x1 + 0x4023ea54 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ea63 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.636.60 - 0x4023e704 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e717 0x1 + 0x4023ea64 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ea77 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.635.59 - 0x4023e718 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e722 0x2 + 0x4023ea78 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ea82 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.634.58 - 0x4023e724 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e72e 0x2 + 0x4023ea84 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ea8e 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.633.57 - 0x4023e730 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e741 0x3 + 0x4023ea90 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eaa1 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.632.56 - 0x4023e744 0xd e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e751 0x3 + 0x4023eaa4 0xd e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eab1 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.631.55 - 0x4023e754 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023eab4 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.630.54 - 0x4023e760 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e773 0x1 + 0x4023eac0 0x13 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ead3 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.629.53 - 0x4023e774 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e77e 0x2 + 0x4023ead4 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eade 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.628.52 - 0x4023e780 0xd e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e78d 0x3 + 0x4023eae0 0xd e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eaed 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.627.51 - 0x4023e790 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e79a 0x2 + 0x4023eaf0 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eafa 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.626.50 - 0x4023e79c 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e7a2 0x2 + 0x4023eafc 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eb02 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.625.49 - 0x4023e7a4 0x12 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e7b6 0x2 + 0x4023eb04 0x12 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eb16 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.624.48 - 0x4023e7b8 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e7c9 0x3 + 0x4023eb18 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eb29 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.623.47 - 0x4023e7cc 0x10 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023eb2c 0x10 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.622.46 - 0x4023e7dc 0xe e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e7ea 0x2 + 0x4023eb3c 0xe e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eb4a 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.621.45 - 0x4023e7ec 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e7f7 0x1 + 0x4023eb4c 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eb57 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.620.44 - 0x4023e7f8 0x1e e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e816 0x2 + 0x4023eb58 0x1e e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eb76 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.619.43 - 0x4023e818 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e821 0x3 + 0x4023eb78 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eb81 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.618.42 - 0x4023e824 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023eb84 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.617.41 - 0x4023e82c 0x3 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e82f 0x1 + 0x4023eb8c 0x3 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eb8f 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.616.40 - 0x4023e830 0x14 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023eb90 0x14 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.615.39 - 0x4023e844 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e84d 0x3 + 0x4023eba4 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ebad 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.597.38 - 0x4023e850 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023ebb0 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.387.35 - 0x4023e85c 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e862 0x2 + 0x4023ebbc 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ebc2 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.387.34 - 0x4023e864 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e86f 0x1 + 0x4023ebc4 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ebcf 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.385.33 - 0x4023e870 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023ebd0 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.385.32 - 0x4023e878 0x12 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e88a 0x2 + 0x4023ebd8 0x12 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ebea 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.384.31 - 0x4023e88c 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e891 0x3 + 0x4023ebec 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ebf1 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.384.30 - 0x4023e894 0xe e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e8a2 0x2 + 0x4023ebf4 0xe e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec02 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.376.29 - 0x4023e8a4 0xd e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e8b1 0x3 + 0x4023ec04 0xd e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec11 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.366.28 - 0x4023e8b4 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023ec14 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.349.27 - 0x4023e8bc 0x3 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e8bf 0x1 + 0x4023ec1c 0x3 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec1f 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.234.26 - 0x4023e8c0 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e8c2 0x2 + 0x4023ec20 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec22 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.234.25 - 0x4023e8c4 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023ec24 0xc e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.234.24 - 0x4023e8d0 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e8e7 0x1 + 0x4023ec30 0x17 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec47 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.234.23 - 0x4023e8e8 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e8f7 0x1 + 0x4023ec48 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec57 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.230.22 - 0x4023e8f8 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e8fa 0x2 + 0x4023ec58 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec5a 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.230.21 - 0x4023e8fc 0xe e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e90a 0x2 + 0x4023ec5c 0xe e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec6a 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.225.20 - 0x4023e90c 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e91b 0x1 + 0x4023ec6c 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec7b 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.195.19 - 0x4023e91c 0x7 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e923 0x1 + 0x4023ec7c 0x7 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec83 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.186.18 - 0x4023e924 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e929 0x3 + 0x4023ec84 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec89 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.184.17 - 0x4023e92c 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023ec8c 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.182.16 - 0x4023e934 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e939 0x3 + 0x4023ec94 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ec99 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.180.15 - 0x4023e93c 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e942 0x2 + 0x4023ec9c 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eca2 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.178.14 - 0x4023e944 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e949 0x3 + 0x4023eca4 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023eca9 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.166.13 - 0x4023e94c 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e955 0x3 + 0x4023ecac 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ecb5 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.165.12 - 0x4023e958 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023ecb8 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.152.11 - 0x4023e95c 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e965 0x3 + 0x4023ecbc 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ecc5 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.151.10 - 0x4023e968 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e973 0x1 + 0x4023ecc8 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ecd3 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.150.9 - 0x4023e974 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e97a 0x2 + 0x4023ecd4 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ecda 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.149.8 - 0x4023e97c 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023ecdc 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.148.7 - 0x4023e984 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x4023ece4 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.142.6 - 0x4023e98c 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e997 0x1 + 0x4023ecec 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ecf7 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.137.5 - 0x4023e998 0x7 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e99f 0x1 + 0x4023ecf8 0x7 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ecff 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.113.4 - 0x4023e9a0 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e9a6 0x2 + 0x4023ed00 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ed06 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.42.3 - 0x4023e9a8 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e9b7 0x1 + 0x4023ed08 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ed17 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.41.2 - 0x4023e9b8 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e9c9 0x3 + 0x4023ed18 0x11 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ed29 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.40.1 - 0x4023e9cc 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e9d5 0x3 + 0x4023ed2c 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ed35 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcESP8266WebServer.cpp.39.0 - 0x4023e9d8 0xe e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - *fill* 0x4023e9e6 0x2 + 0x4023ed38 0xe e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + *fill* 0x4023ed46 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.413.13 - 0x4023e9e8 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023e9ed 0x3 + 0x4023ed48 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023ed4d 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.397.12 - 0x4023e9f0 0x14 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x4023ed50 0x14 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.201.11 - 0x4023ea04 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023ea0a 0x2 + 0x4023ed64 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023ed6a 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.170.10 - 0x4023ea0c 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023ea11 0x3 + 0x4023ed6c 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023ed71 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.168.9 - 0x4023ea14 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023ea23 0x1 + 0x4023ed74 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023ed83 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.163.8 - 0x4023ea24 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023ea2f 0x1 + 0x4023ed84 0xb e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023ed8f 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.160.7 - 0x4023ea30 0x22 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023ea52 0x2 + 0x4023ed90 0x22 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023edb2 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.104.6 - 0x4023ea54 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023ea5a 0x2 + 0x4023edb4 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023edba 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.102.5 - 0x4023ea5c 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x4023edbc 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.100.4 - 0x4023ea60 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x4023edc0 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.98.3 - 0x4023ea68 0x7 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023ea6f 0x1 + 0x4023edc8 0x7 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023edcf 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.96.2 - 0x4023ea70 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023ea75 0x3 + 0x4023edd0 0x5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023edd5 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.36.1 - 0x4023ea78 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023ea81 0x3 + 0x4023edd8 0x9 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023ede1 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcParsing.cpp.35.0 - 0x4023ea84 0xd e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - *fill* 0x4023ea91 0x3 + 0x4023ede4 0xd e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + *fill* 0x4023edf1 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266WebServersrcdetailmimetable.cpp.8.0 - 0x4023ea94 0x450 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) - 0x4023ea94 mime::mimeTable + 0x4023edf4 0x450 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) + 0x4023edf4 mime::mimeTable .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266HTTPUpdateServersrcESP8266HTTPUpdateServer.cpp.49.5 - 0x4023eee4 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - *fill* 0x4023eeee 0x2 + 0x4023f244 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + *fill* 0x4023f24e 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266HTTPUpdateServersrcESP8266HTTPUpdateServer.cpp.46.4 - 0x4023eef0 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - *fill* 0x4023eeff 0x1 + 0x4023f250 0xf e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + *fill* 0x4023f25f 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266HTTPUpdateServersrcESP8266HTTPUpdateServer.cpp.46.3 - 0x4023ef00 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - *fill* 0x4023ef0a 0x2 + 0x4023f260 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + *fill* 0x4023f26a 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266HTTPUpdateServersrcESP8266HTTPUpdateServer.cpp.38.2 - 0x4023ef0c 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - *fill* 0x4023ef16 0x2 + 0x4023f26c 0xa e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + *fill* 0x4023f276 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266HTTPUpdateServersrcESP8266HTTPUpdateServer.cpp.16.1 - 0x4023ef18 0x4c e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x4023f278 0x4c e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266librariesESP8266HTTPUpdateServersrcESP8266HTTPUpdateServer.cpp.10.0 - 0x4023ef64 0xe3 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - *fill* 0x4023f047 0x1 + 0x4023f2c4 0xe3 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + *fill* 0x4023f3a7 0x1 .irom0.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266core_esp8266_phy.c.31.0 - 0x4023f048 0x80 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) - *fill* 0x4023f0c8 0x0 + 0x4023f3a8 0x80 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) + *fill* 0x4023f428 0x0 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266umm_mallocumm_malloc.c.1101.7 - 0x4023f0c8 0x3b e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - *fill* 0x4023f103 0x1 + 0x4023f428 0x3b e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + *fill* 0x4023f463 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266umm_mallocumm_malloc.c.1096.6 - 0x4023f104 0x3b e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - *fill* 0x4023f13f 0x1 + 0x4023f464 0x3b e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + *fill* 0x4023f49f 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266umm_mallocumm_malloc.c.1091.5 - 0x4023f140 0x33 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - *fill* 0x4023f173 0x1 + 0x4023f4a0 0x33 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + *fill* 0x4023f4d3 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266umm_mallocumm_malloc.c.1063.4 - 0x4023f174 0x25 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - *fill* 0x4023f199 0x3 + 0x4023f4d4 0x25 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + *fill* 0x4023f4f9 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266umm_mallocumm_malloc.c.1043.3 - 0x4023f19c 0x33 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - *fill* 0x4023f1cf 0x1 + 0x4023f4fc 0x33 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + *fill* 0x4023f52f 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266umm_mallocumm_malloc.c.1006.2 - 0x4023f1d0 0x33 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - *fill* 0x4023f203 0x1 + 0x4023f530 0x33 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + *fill* 0x4023f563 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266umm_mallocumm_malloc.c.997.1 - 0x4023f204 0x1b e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - *fill* 0x4023f21f 0x1 + 0x4023f564 0x1b e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + *fill* 0x4023f57f 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.440.12 - 0x4023f220 0x8 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x4023f580 0x8 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.438.11 - 0x4023f228 0x3b e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - *fill* 0x4023f263 0x1 + 0x4023f588 0x3b e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + *fill* 0x4023f5c3 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.436.10 - 0x4023f264 0x1e e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - *fill* 0x4023f282 0x2 + 0x4023f5c4 0x1e e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + *fill* 0x4023f5e2 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.434.9 - 0x4023f284 0x21 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - *fill* 0x4023f2a5 0x3 + 0x4023f5e4 0x21 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + *fill* 0x4023f605 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.432.8 - 0x4023f2a8 0x25 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - *fill* 0x4023f2cd 0x3 + 0x4023f608 0x25 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + *fill* 0x4023f62d 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.427.7 - 0x4023f2d0 0x14 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x4023f630 0x14 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.425.6 - 0x4023f2e4 0xf e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - *fill* 0x4023f2f3 0x1 + 0x4023f644 0xf e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + *fill* 0x4023f653 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.423.5 - 0x4023f2f4 0x11 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - *fill* 0x4023f305 0x3 + 0x4023f654 0x11 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + *fill* 0x4023f665 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.421.4 - 0x4023f308 0x12 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - *fill* 0x4023f31a 0x2 + 0x4023f668 0x12 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + *fill* 0x4023f67a 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.419.3 - 0x4023f31c 0x13 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - *fill* 0x4023f32f 0x1 + 0x4023f67c 0x13 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + *fill* 0x4023f68f 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.417.2 - 0x4023f330 0x13 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - *fill* 0x4023f343 0x1 + 0x4023f690 0x13 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + *fill* 0x4023f6a3 0x1 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.415.1 - 0x4023f344 0x9 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - *fill* 0x4023f34d 0x3 + 0x4023f6a4 0x9 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + *fill* 0x4023f6ad 0x3 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266Updater.cpp.413.0 - 0x4023f350 0xc e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x4023f6b0 0xc e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266abi.cpp.106.2 - 0x4023f35c 0x50 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + 0x4023f6bc 0x50 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266abi.cpp.66.0 - 0x4023f3ac 0x50 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + 0x4023f70c 0x50 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266core_esp8266_main.cpp.134.1 - 0x4023f3fc 0x5e e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - *fill* 0x4023f45a 0x2 + 0x4023f75c 0x5e e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + *fill* 0x4023f7ba 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266core_esp8266_main.cpp.103.0 - 0x4023f45c 0x5e e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - *fill* 0x4023f4ba 0x2 + 0x4023f7bc 0x5e e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + *fill* 0x4023f81a 0x2 .irom.text.C:UserslymiaDocumentsArduinohardwareesp8266esp8266coresesp8266uart.c.50.0 - 0x4023f4bc 0x13 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) - 0x4023f4bc overrun_str - *fill* 0x4023f4cf 0x0 - *fill* 0x4023f4cf 0x1 - .irom.text 0x4023f4d0 0x118 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm_for_bcn_only_mode.o) - *fill* 0x4023f5e8 0x8 - .irom.text 0x4023f5f0 0x6e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pp.o) - *fill* 0x4023f65e 0x0 - *fill* 0x4023f65e 0x0 - *fill* 0x4023f65e 0x2 - .irom.text 0x4023f660 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(trc.o) - *fill* 0x4023f698 0x0 - .irom.text 0x4023f698 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(wdev.o) - *fill* 0x4023f69f 0x0 - *fill* 0x4023f69f 0x1 - .irom.text 0x4023f6a0 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(esf_buf.o) - *fill* 0x4023f6aa 0x0 - *fill* 0x4023f6aa 0x6 - .irom.text 0x4023f6b0 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(if_hwctrl.o) - *fill* 0x4023f700 0x0 - .irom.text 0x4023f700 0x2f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(lmac.o) - *fill* 0x4023f72f 0x0 - *fill* 0x4023f72f 0x1 - .irom.text 0x4023f730 0x14d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm.o) - *fill* 0x4023f87d 0x3 - .irom.text 0x4023f880 0x82 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) - 0x4023f890 ieee80211_opcap - *fill* 0x4023f902 0xe - .irom.text 0x4023f910 0x4d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) - *fill* 0x4023f95d 0x3 - .irom.text 0x4023f960 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) - *fill* 0x4023f979 0x7 - .irom.text 0x4023f980 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) - *fill* 0x4023f992 0xe - .irom.text 0x4023f9a0 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) - *fill* 0x4023f9dd 0x3 - .irom.text 0x4023f9e0 0x89 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) - *fill* 0x4023fa69 0x7 - .irom.text 0x4023fa70 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) - *fill* 0x4023fa96 0xa - .irom.text 0x4023faa0 0x1c7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) - *fill* 0x4023fc67 0x9 - .irom.text 0x4023fc70 0xe3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action_vendor.o) - *fill* 0x4023fd53 0x1 - .irom.text 0x4023fd54 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_ccmp.o) - 0x4023fd54 ccmp - *fill* 0x4023fd6c 0x4 - .irom.text 0x4023fd70 0x1b8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_phy.o) + 0x4023f81c 0x13 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) + 0x4023f81c overrun_str + *fill* 0x4023f82f 0x0 + *fill* 0x4023f82f 0x1 + .irom.text 0x4023f830 0x118 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm_for_bcn_only_mode.o) + *fill* 0x4023f948 0x8 + .irom.text 0x4023f950 0x6e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pp.o) + *fill* 0x4023f9be 0x0 + *fill* 0x4023f9be 0x0 + *fill* 0x4023f9be 0x2 + .irom.text 0x4023f9c0 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(trc.o) + *fill* 0x4023f9f8 0x0 + .irom.text 0x4023f9f8 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(wdev.o) + *fill* 0x4023f9ff 0x0 + *fill* 0x4023f9ff 0x1 + .irom.text 0x4023fa00 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(esf_buf.o) + *fill* 0x4023fa0a 0x0 + *fill* 0x4023fa0a 0x6 + .irom.text 0x4023fa10 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(if_hwctrl.o) + *fill* 0x4023fa60 0x0 + .irom.text 0x4023fa60 0x2f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(lmac.o) + *fill* 0x4023fa8f 0x0 + *fill* 0x4023fa8f 0x1 + .irom.text 0x4023fa90 0x14d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm.o) + *fill* 0x4023fbdd 0x3 + .irom.text 0x4023fbe0 0x82 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x4023fbf0 ieee80211_opcap + *fill* 0x4023fc62 0xe + .irom.text 0x4023fc70 0x4d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + *fill* 0x4023fcbd 0x3 + .irom.text 0x4023fcc0 0x19 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_ht.o) + *fill* 0x4023fcd9 0x7 + .irom.text 0x4023fce0 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_input.o) + *fill* 0x4023fcf2 0xe + .irom.text 0x4023fd00 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + *fill* 0x4023fd3d 0x3 + .irom.text 0x4023fd40 0x89 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + *fill* 0x4023fdc9 0x7 + .irom.text 0x4023fdd0 0x26 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + *fill* 0x4023fdf6 0xa + .irom.text 0x4023fe00 0x1c7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + *fill* 0x4023ffc7 0x9 + .irom.text 0x4023ffd0 0xe3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action_vendor.o) + *fill* 0x402400b3 0x1 + .irom.text 0x402400b4 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_ccmp.o) + 0x402400b4 ccmp + *fill* 0x402400cc 0x4 + .irom.text 0x402400d0 0x1b8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_phy.o) .irom0.text.../../lwip/include/netif/etharp.h.188.51 - 0x4023ff28 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - 0x4023ff28 etharp_output - *fill* 0x4023ff2c 0x0 - *fill* 0x4023ff2c 0x0 - *fill* 0x4023ff2c 0x0 - *fill* 0x4023ff2c 0x0 - *fill* 0x4023ff2c 0x0 - *fill* 0x4023ff2c 0x0 - *fill* 0x4023ff2c 0x0 - *fill* 0x4023ff2c 0x0 - *fill* 0x4023ff2c 0x0 + 0x40240288 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x40240288 etharp_output + *fill* 0x4024028c 0x0 + *fill* 0x4024028c 0x0 + *fill* 0x4024028c 0x0 + *fill* 0x4024028c 0x0 + *fill* 0x4024028c 0x0 + *fill* 0x4024028c 0x0 + *fill* 0x4024028c 0x0 + *fill* 0x4024028c 0x0 + *fill* 0x4024028c 0x0 .irom0.text.../../lwip/include/lwip/pbuf.h.136.17 - 0x4023ff2c 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - 0x4023ff2c pbuf_ref - *fill* 0x4023ff36 0x2 + 0x4024028c 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x4024028c pbuf_ref + *fill* 0x40240296 0x2 .irom.text.glue-esp/lwip-esp.c.674.57 - 0x4023ff38 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x40240298 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) .irom.text.glue-esp/lwip-esp.c.410.56 - 0x4023ff54 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x402402b4 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) .irom.text.glue-esp/lwip-esp.c.402.55 - 0x4023ff68 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x402402c8 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) .irom.text.glue-lwip/lwip-git.c.156.0 - 0x4023ff7c 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - *fill* 0x4023ff92 0x0 - *fill* 0x4023ff92 0x2 + 0x402402dc 0x16 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + *fill* 0x402402f2 0x0 + *fill* 0x402402f2 0x2 .irom0.text.glue-lwip/esp-dhcpserver.c.50.1 - 0x4023ff94 0x3a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - 0x4023ff94 node_insert_to_list - *fill* 0x4023ffce 0x2 + 0x402402f4 0x3a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x402402f4 node_insert_to_list + *fill* 0x4024032e 0x2 .irom0.text.glue-lwip/esp-dhcpserver.c.90.2 - 0x4023ffd0 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - 0x4023ffd0 node_remove_from_list - *fill* 0x4023fff3 0x0 - *fill* 0x4023fff3 0x0 - *fill* 0x4023fff3 0x0 - *fill* 0x4023fff3 0x0 - *fill* 0x4023fff3 0x0 - *fill* 0x4023fff3 0x1 + 0x40240330 0x23 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x40240330 node_remove_from_list + *fill* 0x40240353 0x0 + *fill* 0x40240353 0x0 + *fill* 0x40240353 0x0 + *fill* 0x40240353 0x0 + *fill* 0x40240353 0x0 + *fill* 0x40240353 0x1 .irom.text.glue-lwip/esp-dhcpserver.c.743.15 - 0x4023fff4 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - *fill* 0x40240019 0x3 + 0x40240354 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + *fill* 0x40240379 0x3 .irom.text.glue-lwip/esp-dhcpserver.c.27.0 - 0x4024001c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - *fill* 0x40240020 0x0 - .irom.text 0x40240020 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(ap_config.o) - *fill* 0x4024002c 0x4 - .irom.text 0x40240030 0x9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) - *fill* 0x40240039 0x7 - .irom.text 0x40240040 0x74 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - *fill* 0x402400b4 0xc - .irom.text 0x402400c0 0xe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) - *fill* 0x402400ce 0x2 - .irom.text 0x402400d0 0x17 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) - *fill* 0x402400e7 0x9 - .irom.text 0x402400f0 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) - *fill* 0x4024010c 0x4 - .irom.text 0x40240110 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) - *fill* 0x40240177 0x9 - .irom.text 0x40240180 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal-enc.o) - *fill* 0x40240193 0x0 - *fill* 0x40240193 0xd - .irom.text 0x402401a0 0x530 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(app_main.o) - *fill* 0x402406d0 0x0 - .irom.text 0x402406d0 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(eagle_lwip_if.o) - *fill* 0x40240733 0x0 - *fill* 0x40240733 0xd - .irom.text 0x40240740 0x14c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(ets_timer.o) - *fill* 0x4024088c 0x4 - .irom.text 0x40240890 0x435 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(user_interface.o) - 0x402408b0 default_ssid - *fill* 0x40240cc5 0xb - .irom.text 0x40240cd0 0x12f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(spi_flash.o) - *fill* 0x40240dff 0x0 - *fill* 0x40240dff 0x0 - *fill* 0x40240dff 0x1 - .irom.text 0x40240e00 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_ana.o) - *fill* 0x40240e65 0x0 - *fill* 0x40240e65 0xb - .irom.text 0x40240e70 0x14c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6.o) - *fill* 0x40240fbc 0x4 - .irom.text 0x40240fc0 0x1f4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_cal.o) - .irom0.text 0x402411b4 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_unused.o) - 0x402411b4 chip_v6_set_sense - 0x402411b8 chip_v6_get_sense - 0x402411bc chip_v6_unset_chanfreq - *fill* 0x402411c0 0x0 - .irom.text 0x402411c0 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_tkip.o) - 0x402411c0 tkip - .irom.text 0x402411d8 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_wep.o) - 0x402411d8 wep - 0x402411f0 _irom0_text_end = ABSOLUTE (.) - 0x402411f0 _flash_code_end = ABSOLUTE (.) + 0x4024037c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + *fill* 0x40240380 0x0 + .irom.text 0x40240380 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(ap_config.o) + *fill* 0x4024038c 0x4 + .irom.text 0x40240390 0x9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(common.o) + *fill* 0x40240399 0x7 + .irom.text 0x402403a0 0x74 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + *fill* 0x40240414 0xc + .irom.text 0x40240420 0xe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth_ie.o) + *fill* 0x4024042e 0x2 + .irom.text 0x40240430 0x17 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + *fill* 0x40240447 0x9 + .irom.text 0x40240450 0x1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_common.o) + *fill* 0x4024046c 0x4 + .irom.text 0x40240470 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_main.o) + *fill* 0x402404d7 0x9 + .irom.text 0x402404e0 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libcrypto.a(aes-internal-enc.o) + *fill* 0x402404f3 0x0 + *fill* 0x402404f3 0xd + .irom.text 0x40240500 0x530 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(app_main.o) + *fill* 0x40240a30 0x0 + .irom.text 0x40240a30 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(eagle_lwip_if.o) + *fill* 0x40240a93 0x0 + *fill* 0x40240a93 0xd + .irom.text 0x40240aa0 0x14c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(ets_timer.o) + *fill* 0x40240bec 0x4 + .irom.text 0x40240bf0 0x435 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(user_interface.o) + 0x40240c10 default_ssid + *fill* 0x40241025 0xb + .irom.text 0x40241030 0x12f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(spi_flash.o) + *fill* 0x4024115f 0x0 + *fill* 0x4024115f 0x0 + *fill* 0x4024115f 0x1 + .irom.text 0x40241160 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_ana.o) + *fill* 0x402411c5 0x0 + *fill* 0x402411c5 0xb + .irom.text 0x402411d0 0x14c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6.o) + *fill* 0x4024131c 0x4 + .irom.text 0x40241320 0x1f4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_cal.o) + .irom0.text 0x40241514 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_unused.o) + 0x40241514 chip_v6_set_sense + 0x40241518 chip_v6_get_sense + 0x4024151c chip_v6_unset_chanfreq + *fill* 0x40241520 0x0 + .irom.text 0x40241520 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_tkip.o) + 0x40241520 tkip + .irom.text 0x40241538 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_wep.o) + 0x40241538 wep + 0x40241550 _irom0_text_end = ABSOLUTE (.) + 0x40241550 _flash_code_end = ABSOLUTE (.) .text 0x40100000 0x6c64 0x40100000 _stext = . @@ -15166,7 +15225,7 @@ END GROUP .literal._ZNSt14_Function_base13_Base_managerIPFvvEE10_M_managerERSt9_Any_dataRKS4_St18_Manager_operation 0x40106a40 0x0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .literal._ZNSt14_Function_baseD5Ev - 0x40106a40 0x0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x40106a40 0x0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .literal._ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE0EED5Ev 0x40106a40 0x0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .literal._ZNSt8functionIFvvEEC5ERKS1_ @@ -15438,124 +15497,125 @@ END GROUP 0x40106c64 _text_end = ABSOLUTE (.) 0x40106c64 _etext = . -.rodata 0x3ffe85f0 0xad0 - 0x3ffe85f0 _rodata_start = ABSOLUTE (.) +.rodata 0x3ffe8600 0xcb0 + 0x3ffe8600 _rodata_start = ABSOLUTE (.) *(.sdk.version) - .sdk.version 0x3ffe85f0 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(app_main.o) - 0x3ffe85f0 SDK_VERSION + .sdk.version 0x3ffe8600 0x13 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(app_main.o) + 0x3ffe8600 SDK_VERSION *(.rodata) - *fill* 0x3ffe8603 0x1 - .rodata 0x3ffe8604 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pp.o) - .rodata 0x3ffe860c 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) - .rodata 0x3ffe8614 0x9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) - *fill* 0x3ffe861d 0x3 - .rodata 0x3ffe8620 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) - .rodata 0x3ffe8640 0x70 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) - .rodata 0x3ffe86b0 0x101 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) - 0x3ffe86b0 _ctype_ - *fill* 0x3ffe87b1 0x3 - .rodata 0x3ffe87b4 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) - 0x3ffe87b4 __sf_fake_stderr - 0x3ffe87d4 __sf_fake_stdout - 0x3ffe87f4 __sf_fake_stdin - .rodata 0x3ffe8814 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) - 0x3ffe8814 _global_impure_ptr - .rodata 0x3ffe8818 0x128 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) - 0x3ffe8828 __mprec_tinytens - 0x3ffe8850 __mprec_bigtens - 0x3ffe8878 __mprec_tens - .rodata 0x3ffe8940 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6.o) + *fill* 0x3ffe8613 0x1 + .rodata 0x3ffe8614 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pp.o) + .rodata 0x3ffe861c 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + .rodata 0x3ffe8624 0x9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_output.o) + *fill* 0x3ffe862d 0x3 + .rodata 0x3ffe8630 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + .rodata 0x3ffe8650 0x70 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + .rodata 0x3ffe86c0 0x101 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) + 0x3ffe86c0 _ctype_ + *fill* 0x3ffe87c1 0x3 + .rodata 0x3ffe87c4 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + 0x3ffe87c4 __sf_fake_stderr + 0x3ffe87e4 __sf_fake_stdout + 0x3ffe8804 __sf_fake_stdin + .rodata 0x3ffe8824 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) + 0x3ffe8824 _global_impure_ptr + .rodata 0x3ffe8828 0x128 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + 0x3ffe8838 __mprec_tinytens + 0x3ffe8860 __mprec_bigtens + 0x3ffe8888 __mprec_tens + .rodata 0x3ffe8950 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6.o) *(.rodata.*) .rodata.str1.4 - 0x3ffe8948 0x97 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - *fill* 0x3ffe89df 0x1 + 0x3ffe8958 0x277 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x28f (size before relaxing) + *fill* 0x3ffe8bcf 0x1 .rodata.str1.4 - 0x3ffe89e0 0x1e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) - *fill* 0x3ffe89fe 0x2 + 0x3ffe8bd0 0x1e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + *fill* 0x3ffe8bee 0x2 .rodata.CSWTCH$90 - 0x3ffe8a00 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) - *fill* 0x3ffe8a06 0x2 + 0x3ffe8bf0 0x6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + *fill* 0x3ffe8bf6 0x2 .rodata._ZZN24BufferedStreamDataSourceI13ProgmemStreamE14release_bufferEPKhjE19__PRETTY_FUNCTION__ - 0x3ffe8a08 0x9e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - *fill* 0x3ffe8aa6 0x2 + 0x3ffe8bf8 0x9e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + *fill* 0x3ffe8c96 0x2 .rodata._ZZN24BufferedStreamDataSourceI13ProgmemStreamE10get_bufferEjE19__PRETTY_FUNCTION__ - 0x3ffe8aa8 0x94 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x3ffe8c98 0x94 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) .rodata._ZZN13ClientContext18_write_from_sourceEP10DataSourceE19__PRETTY_FUNCTION__ - 0x3ffe8b3c 0x36 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - *fill* 0x3ffe8b72 0x2 + 0x3ffe8d2c 0x36 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + *fill* 0x3ffe8d62 0x2 .rodata._ZZN13ClientContext10_connectedEP7tcp_pcblE19__PRETTY_FUNCTION__ - 0x3ffe8b74 0x31 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - *fill* 0x3ffe8ba5 0x3 + 0x3ffe8d64 0x31 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + *fill* 0x3ffe8d95 0x3 .rodata._ZZN16BufferDataSource14release_bufferEPKhjE19__PRETTY_FUNCTION__ - 0x3ffe8ba8 0x46 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - *fill* 0x3ffe8bee 0x2 + 0x3ffe8d98 0x46 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + *fill* 0x3ffe8dde 0x2 .rodata._ZZN16BufferDataSource10get_bufferEjE19__PRETTY_FUNCTION__ - 0x3ffe8bf0 0x3c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x3ffe8de0 0x3c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) .rodata.str1.4 - 0x3ffe8c2c 0x3a e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x3ffe8e1c 0x3a e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x42 (size before relaxing) - *fill* 0x3ffe8c66 0x2 + *fill* 0x3ffe8e56 0x2 .rodata.str1.4 - 0x3ffe8c68 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x3ffe8e58 0x15 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x1d (size before relaxing) - *fill* 0x3ffe8c7d 0x3 + *fill* 0x3ffe8e6d 0x3 .rodata.str1.4 - 0x3ffe8c80 0x89 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x3ffe8e70 0x89 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o 0x8d (size before relaxing) - *fill* 0x3ffe8d09 0x3 + *fill* 0x3ffe8ef9 0x3 .rodata.str1.4 - 0x3ffe8d0c 0x5f e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x3ffe8efc 0x5f e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0x63 (size before relaxing) - *fill* 0x3ffe8d6b 0x1 + *fill* 0x3ffe8f5b 0x1 .rodata.str1.4 - 0x3ffe8d6c 0x41 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) - *fill* 0x3ffe8dad 0x3 + 0x3ffe8f5c 0x41 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) + *fill* 0x3ffe8f9d 0x3 .rodata.CSWTCH$92 - 0x3ffe8db0 0x28 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x3ffe8fa0 0x28 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) .rodata.str1.4 - 0x3ffe8dd8 0x5 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) - *fill* 0x3ffe8ddd 0x3 + 0x3ffe8fc8 0x5 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + *fill* 0x3ffe8fcd 0x3 .rodata.str1.4 - 0x3ffe8de0 0xc e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x3ffe8fd0 0xc e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0x12 (size before relaxing) .rodata.str1.4 0x00000000 0x1 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) .rodata.str1.4 - 0x3ffe8dec 0x28 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x3ffe8fdc 0x28 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0x2c (size before relaxing) .rodata.str1.4 - 0x3ffe8e14 0x8 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x3ffe9004 0x8 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x9 (size before relaxing) .rodata._ZZSt25__throw_bad_function_callvE8__func__ - 0x3ffe8e1c 0x1a e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) - *fill* 0x3ffe8e36 0x2 + 0x3ffe900c 0x1a e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + *fill* 0x3ffe9026 0x2 .rodata._ZZ18__cxa_pure_virtualE8__func__ - 0x3ffe8e38 0x13 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) - *fill* 0x3ffe8e4b 0x1 + 0x3ffe9028 0x13 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + *fill* 0x3ffe903b 0x1 .rodata._ZZL9loop_taskP11ETSEventTagE8__func__ - 0x3ffe8e4c 0xa e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - *fill* 0x3ffe8e56 0x2 + 0x3ffe903c 0xa e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + *fill* 0x3ffe9046 0x2 .rodata._ZZ7__yieldE8__func__ - 0x3ffe8e58 0x8 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x3ffe9048 0x8 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) .rodata.str1.4 - 0x3ffe8e60 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm_for_bcn_only_mode.o) + 0x3ffe9050 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm_for_bcn_only_mode.o) .rodata.str1.4 - 0x3ffe8e6c 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pp.o) + 0x3ffe905c 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pp.o) 0x10 (size before relaxing) .rodata.str1.4 - 0x3ffe8e74 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(wdev.o) + 0x3ffe9064 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(wdev.o) 0xc (size before relaxing) .rodata.str1.4 - 0x3ffe8e78 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(esf_buf.o) + 0x3ffe9068 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(esf_buf.o) .rodata.str1.4 - 0x3ffe8e84 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(lmac.o) + 0x3ffe9074 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(lmac.o) 0xc (size before relaxing) .rodata.str1.4 - 0x3ffe8e88 0x3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm.o) + 0x3ffe9078 0x3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm.o) 0xb (size before relaxing) - *fill* 0x3ffe8e8b 0x1 + *fill* 0x3ffe907b 0x1 .rodata.str1.4 - 0x3ffe8e8c 0x3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x3ffe907c 0x3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) 0x8 (size before relaxing) .rodata.str1.4 0x00000000 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) @@ -15565,168 +15625,168 @@ END GROUP 0x00000000 0x0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x1 (size before relaxing) .rodata.CSWTCH$17 - 0x3ffe8e8f 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x3ffe907f 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) .rodata.CSWTCH$15 - 0x3ffe8e9f 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x3ffe908f 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) .rodata.ethbroadcast - 0x3ffe8eb0 0x6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - 0x3ffe8eb0 ethbroadcast + 0x3ffe90a0 0x6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x3ffe90a0 ethbroadcast .rodata.CSWTCH$12 - 0x3ffe8eb6 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x3ffe90a6 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) .rodata.CSWTCH$9 - 0x3ffe8ec7 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x3ffe90b7 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) .rodata.str1.1 - 0x3ffe8ed8 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x3ffe90c8 0x29 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) .rodata.ethzero - 0x3ffe8f01 0x6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) - 0x3ffe8f01 ethzero + 0x3ffe90f1 0x6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + 0x3ffe90f1 ethzero .rodata.ethbroadcast_LWIP2 - 0x3ffe8f07 0x6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) - 0x3ffe8f07 ethbroadcast_LWIP2 - *fill* 0x3ffe8f0d 0x3 + 0x3ffe90f7 0x6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + 0x3ffe90f7 ethbroadcast_LWIP2 + *fill* 0x3ffe90fd 0x3 .rodata.memp_pools - 0x3ffe8f10 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f10 memp_pools + 0x3ffe9100 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe9100 memp_pools .rodata.memp_PBUF_POOL - 0x3ffe8f38 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f38 memp_PBUF_POOL + 0x3ffe9128 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe9128 memp_PBUF_POOL .rodata.memp_PBUF - 0x3ffe8f3a 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f3a memp_PBUF + 0x3ffe912a 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe912a memp_PBUF .rodata.memp_SYS_TIMEOUT - 0x3ffe8f3c 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f3c memp_SYS_TIMEOUT + 0x3ffe912c 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe912c memp_SYS_TIMEOUT .rodata.memp_IGMP_GROUP - 0x3ffe8f3e 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f3e memp_IGMP_GROUP + 0x3ffe912e 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe912e memp_IGMP_GROUP .rodata.memp_REASSDATA - 0x3ffe8f40 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f40 memp_REASSDATA + 0x3ffe9130 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe9130 memp_REASSDATA .rodata.memp_TCP_SEG - 0x3ffe8f42 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f42 memp_TCP_SEG + 0x3ffe9132 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe9132 memp_TCP_SEG .rodata.memp_TCP_PCB_LISTEN - 0x3ffe8f44 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f44 memp_TCP_PCB_LISTEN + 0x3ffe9134 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe9134 memp_TCP_PCB_LISTEN .rodata.memp_TCP_PCB - 0x3ffe8f46 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f46 memp_TCP_PCB + 0x3ffe9136 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe9136 memp_TCP_PCB .rodata.memp_UDP_PCB - 0x3ffe8f48 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f48 memp_UDP_PCB + 0x3ffe9138 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe9138 memp_UDP_PCB .rodata.memp_RAW_PCB - 0x3ffe8f4a 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - 0x3ffe8f4a memp_RAW_PCB + 0x3ffe913a 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x3ffe913a memp_RAW_PCB .rodata.tcp_pcb_lists - 0x3ffe8f4c 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x3ffe8f4c tcp_pcb_lists + 0x3ffe913c 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x3ffe913c tcp_pcb_lists .rodata.tcp_persist_backoff - 0x3ffe8f5c 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x3ffe914c 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) .rodata.tcp_backoff - 0x3ffe8f63 0xd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x3ffe9153 0xd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) .rodata.str1.1 - 0x3ffe8f70 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - *fill* 0x3ffe8f77 0x1 + 0x3ffe9160 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + *fill* 0x3ffe9167 0x1 .rodata.dns_mquery_v4group - 0x3ffe8f78 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - 0x3ffe8f78 dns_mquery_v4group + 0x3ffe9168 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x3ffe9168 dns_mquery_v4group .rodata.lwip_cyclic_timers - 0x3ffe8f7c 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) - 0x3ffe8f7c lwip_cyclic_timers + 0x3ffe916c 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x3ffe916c lwip_cyclic_timers .rodata.tcp_input - 0x3ffe8fb4 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x3ffe91a4 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) .rodata.dhcp_discover_request_options - 0x3ffe8fd4 0x5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - *fill* 0x3ffe8fd9 0x3 + 0x3ffe91c4 0x5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + *fill* 0x3ffe91c9 0x3 .rodata.ip_addr_broadcast - 0x3ffe8fdc 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) - 0x3ffe8fdc ip_addr_broadcast + 0x3ffe91cc 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + 0x3ffe91cc ip_addr_broadcast .rodata.ip_addr_any - 0x3ffe8fe0 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) - 0x3ffe8fe0 ip_addr_any + 0x3ffe91d0 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + 0x3ffe91d0 ip_addr_any .rodata.str1.4 - 0x3ffe8fe4 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(app_main.o) + 0x3ffe91d4 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(app_main.o) 0xc (size before relaxing) .rodata.str1.4 - 0x3ffe8fe8 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(ets_timer.o) + 0x3ffe91d8 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(ets_timer.o) 0xc (size before relaxing) .rodata.str1.1 - 0x3ffe8fec 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + 0x3ffe91dc 0x12 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) .rodata.str1.1 - 0x3ffe8ffe 0x22 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + 0x3ffe91ee 0x22 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) .rodata.str1.1 - 0x3ffe9020 0x5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) + 0x3ffe9210 0x5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) .rodata.str1.1 0x00000000 0x5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) 0xc (size before relaxing) .rodata.str1.1 - 0x3ffe9025 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) + 0x3ffe9215 0x25 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) .rodata.str1.1 - 0x3ffe904a 0xd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + 0x3ffe923a 0xd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) 0xf (size before relaxing) .rodata.str1.1 - 0x3ffe9057 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) + 0x3ffe9247 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) .rodata.str1.1 - 0x3ffe9059 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) + 0x3ffe9249 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) 0xb (size before relaxing) .rodata.str1.1 - 0x3ffe9061 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) + 0x3ffe9251 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) .rodata.str1.1 0x00000000 0x11 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) *(.gnu.linkonce.r.*) *(.rodata1) - 0x3ffe9072 __XT_EXCEPTION_TABLE__ = ABSOLUTE (.) + 0x3ffe9262 __XT_EXCEPTION_TABLE__ = ABSOLUTE (.) *(.xt_except_table) *(.gcc_except_table) *(.gnu.linkonce.e.*) *(.gnu.version_r) *(.eh_frame) - 0x3ffe9074 . = ((. + 0x3) & 0xfffffffc) - *fill* 0x3ffe9072 0x2 - 0x3ffe9074 __init_array_start = ABSOLUTE (.) + 0x3ffe9264 . = ((. + 0x3) & 0xfffffffc) + *fill* 0x3ffe9262 0x2 + 0x3ffe9264 __init_array_start = ABSOLUTE (.) *crtbegin.o(.ctors) *(EXCLUDE_FILE(*crtend.o) .ctors) - .ctors 0x3ffe9074 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - .ctors 0x3ffe9078 0x4 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - .ctors 0x3ffe907c 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) - .ctors 0x3ffe9080 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - .ctors 0x3ffe9084 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - .ctors 0x3ffe9088 0x4 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - .ctors 0x3ffe908c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - .ctors 0x3ffe9090 0x4 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) - .ctors 0x3ffe9094 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - .ctors 0x3ffe9098 0x4 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + .ctors 0x3ffe9264 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .ctors 0x3ffe9268 0x4 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + .ctors 0x3ffe926c 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + .ctors 0x3ffe9270 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .ctors 0x3ffe9274 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + .ctors 0x3ffe9278 0x4 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + .ctors 0x3ffe927c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + .ctors 0x3ffe9280 0x4 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + .ctors 0x3ffe9284 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + .ctors 0x3ffe9288 0x4 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) *(SORT(.ctors.*)) *(.ctors) - 0x3ffe909c __init_array_end = ABSOLUTE (.) + 0x3ffe928c __init_array_end = ABSOLUTE (.) *crtbegin.o(.dtors) *(EXCLUDE_FILE(*crtend.o) .dtors) - .dtors 0x3ffe909c 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - .dtors 0x3ffe90a0 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - .dtors 0x3ffe90a4 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - .dtors 0x3ffe90a8 0x4 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - .dtors 0x3ffe90ac 0x4 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) - .dtors 0x3ffe90b0 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - .dtors 0x3ffe90b4 0x4 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + .dtors 0x3ffe928c 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .dtors 0x3ffe9290 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .dtors 0x3ffe9294 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + .dtors 0x3ffe9298 0x4 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + .dtors 0x3ffe929c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + .dtors 0x3ffe92a0 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + .dtors 0x3ffe92a4 0x4 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) *(SORT(.dtors.*)) *(.dtors) - 0x3ffe90b8 __XT_EXCEPTION_DESCS__ = ABSOLUTE (.) + 0x3ffe92a8 __XT_EXCEPTION_DESCS__ = ABSOLUTE (.) *(.xt_except_desc) *(.gnu.linkonce.h.*) - 0x3ffe90b8 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + 0x3ffe92a8 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) *(.xt_except_desc_end) *(.dynamic) *(.gnu.version_d) - 0x3ffe90b8 . = ALIGN (0x4) - 0x3ffe90b8 _bss_table_start = ABSOLUTE (.) - 0x3ffe90b8 0x4 LONG 0x3ffe90c0 _bss_start - 0x3ffe90bc 0x4 LONG 0x3ffef400 _bss_end - 0x3ffe90c0 _bss_table_end = ABSOLUTE (.) - 0x3ffe90c0 _rodata_end = ABSOLUTE (.) + 0x3ffe92a8 . = ALIGN (0x4) + 0x3ffe92a8 _bss_table_start = ABSOLUTE (.) + 0x3ffe92a8 0x4 LONG 0x3ffe92b0 _bss_start + 0x3ffe92ac 0x4 LONG 0x3ffef5e8 _bss_end + 0x3ffe92b0 _bss_table_end = ABSOLUTE (.) + 0x3ffe92b0 _rodata_end = ABSOLUTE (.) -.bss 0x3ffe90c0 0x6340 - 0x3ffe90c0 . = ALIGN (0x8) - 0x3ffe90c0 _bss_start = ABSOLUTE (.) +.bss 0x3ffe92b0 0x6338 + 0x3ffe92b0 . = ALIGN (0x8) + 0x3ffe92b0 _bss_start = ABSOLUTE (.) *(.dynsbss) *(.sbss) *(.sbss.*) @@ -15737,457 +15797,453 @@ END GROUP *(.gnu.linkonce.sb2.*) *(.dynbss) *(.bss) - .bss 0x3ffe90c0 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm_for_bcn_only_mode.o) - *fill* 0x3ffe90f8 0x8 - .bss 0x3ffe9100 0x342 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pp.o) - 0x3ffe9118 pend_flag_noise_check - 0x3ffe9120 pend_flag_periodic_cal - 0x3ffe9138 idle_timer_reopen_flag - 0x3ffe913a dbg_stop_sw_wdt - 0x3ffe913b dbg_stop_hw_wdt - 0x3ffe913d total_buffed_eb_num - 0x3ffe9140 freq_change_sta_scan - 0x3ffe9154 test_freq_val_force_flag - 0x3ffe9156 TestStaFreqCalValFilter - 0x3ffe9158 PktsNumInOneChk - 0x3ffe915c AllFreqOffsetInOneChk - 0x3ffe9160 AvgFreqOffsetInOneChk - 0x3ffe9162 HighestFreqOffsetInOneChk - 0x3ffe9164 LowestFreqOffsetInOneChk - 0x3ffe9166 pktnum_sta_freqcal - 0x3ffe9168 all_freqoffset_sta_freqcal - 0x3ffe916a avg_freqoffset_sta_freqcal - 0x3ffe916c DefFreqCalTimer - 0x3ffe9180 PktNumInOneChk - 0x3ffe9300 buffed_eb_arr - *fill* 0x3ffe9442 0xe - .bss 0x3ffe9450 0x100 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(rate_control.o) - .bss 0x3ffe9550 0x46c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(trc.o) - *fill* 0x3ffe99bc 0x4 - .bss 0x3ffe99c0 0x2f88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(wdev.o) - 0x3ffe99c0 wDevCtrl - 0x3ffe9b68 WdevTimOffSet - *fill* 0x3ffec948 0x8 - .bss 0x3ffec950 0xaa4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(esf_buf.o) - *fill* 0x3ffed3f4 0xc - .bss 0x3ffed400 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(if_hwctrl.o) - 0x3ffed400 interface_mask - 0x3ffed420 if_ctrl - .bss 0x3ffed440 0x150 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(lmac.o) - 0x3ffed444 lmacConfMib - 0x3ffed468 our_tx_eb - .bss 0x3ffed590 0x13a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm.o) - 0x3ffed590 pmc - *fill* 0x3ffed6ca 0x2 - .bss 0x3ffed6cc 0x6a8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) - 0x3ffed6cc g_ic - .bss 0x3ffedd74 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) - 0x3ffedd74 BcnEb_update - 0x3ffedd81 BcnWithMcastSendStart - 0x3ffedd82 BcnWithMcastSendCnt - 0x3ffedd9c PendFreeBcnEb - 0x3ffedd9e ap_freq_force_to_scan - 0x3ffedda0 ApFreqCalTimer - 0x3ffeddb4 APRecvBcnStartTick - *fill* 0x3ffeddbd 0x3 - .bss 0x3ffeddc0 0xcc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) - 0x3ffeddc0 gScanStruct - 0x3ffede6c freq_change_check_softap_link_enable - 0x3ffede6d FreqCalCntForScan - 0x3ffede6e TestStaFreqCalValInput - 0x3ffede70 TestStaFreqCalValDev - 0x3ffede72 connect_scan_flag - 0x3ffede73 auth_type - 0x3ffede74 scannum - *fill* 0x3ffede8c 0x4 - .bss 0x3ffede90 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) - .bss 0x3ffedeb8 0x54 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) - *fill* 0x3ffedf0c 0x4 - .bss 0x3ffedf10 0x3ac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) - 0x3ffee288 sta_con_timer - 0x3ffee29c backup_ni_connect_status - 0x3ffee2a0 g_cnx_probe_rc_list_cb - 0x3ffee2a4 reconnect_flag - 0x3ffee2a5 no_ap_found_index - *fill* 0x3ffee2bc 0x4 - .bss 0x3ffee2c0 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action_vendor.o) - *fill* 0x3ffee2d8 0x8 - .bss 0x3ffee2e0 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) - 0x3ffee2e4 resend_eapol - .bss 0x3ffee340 0x26a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) - *fill* 0x3ffee5aa 0x2 - .bss 0x3ffee5ac 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(app_main.o) - 0x3ffee5b0 info - 0x3ffee5d4 freq_trace_enable - 0x3ffee5d6 lwip_timer_interval - 0x3ffee5d8 check_timeouts_timer - 0x3ffee5ec rf_cal_sec - 0x3ffee5f0 user_init_flag - *fill* 0x3ffee5f1 0x3 - .bss 0x3ffee5f4 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(eagle_lwip_if.o) - 0x3ffee5f4 wifi_station_hostname - .bss 0x3ffee600 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(ets_timer.o) - 0x3ffee600 dbg_timer_flag - 0x3ffee604 timer_list - 0x3ffee608 debug_timer - 0x3ffee60c debug_timerfn - .bss 0x3ffee630 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(user_exceptions.o) - *fill* 0x3ffee634 0xc - .bss 0x3ffee640 0x262 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(user_interface.o) - 0x3ffee742 protect_flag - 0x3ffee750 deep_sleep_flag - 0x3ffee751 cpu_overclock - 0x3ffee754 event_cb - 0x3ffee758 status_led_output_level - 0x3ffee75c done_cb - 0x3ffee760 rst_if - 0x3ffee77c default_interface - 0x3ffee77d OpmodChgIsOnGoing - 0x3ffee780 promiscuous_cb - 0x3ffee7a0 event_TaskQueue - *fill* 0x3ffee8a2 0xe - .bss 0x3ffee8b0 0x1c0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(nmi-vector.o) - .bss 0x3ffeea70 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(spi_flash.o) - 0x3ffeea70 flash_read - .bss 0x3ffeea74 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) - .bss 0x3ffeea7c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy.o) - .bss 0x3ffeea80 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_ana.o) - 0x3ffeea80 tout_dis_txpwr_track - 0x3ffeea81 sleep_mode_flag - *fill* 0x3ffeea82 0x6 - .bss 0x3ffeea88 0x153 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6.o) - 0x3ffeea88 g_phyFuns - 0x3ffeea8c rxiq_compute_num - 0x3ffeea90 rx_table_renew_en - 0x3ffeea94 check_result - 0x3ffeea98 chip6_sleep_params - 0x3ffeeb2c chip6_phy_init_ctrl - 0x3ffeeba0 phy_freq_offset - 0x3ffeeba2 do_pwctrl_flag - 0x3ffeeba3 txbk_dpdby_flag - 0x3ffeeba5 sw_scan_mode - 0x3ffeeba6 rxmax_ext_level - 0x3ffeeba8 phy_rx_gain_dc_table - 0x3ffeebac tx_data1 - 0x3ffeebb0 tx_data2 - 0x3ffeebb4 tx_data3 - 0x3ffeebb8 tx_data4 - 0x3ffeebbc periodic_cal_flag - 0x3ffeebbd bbpll_cal_flag - 0x3ffeebbe phy_in_most_power - 0x3ffeebbf init_rf_no_cal - 0x3ffeebc0 test_print_time - 0x3ffeebc4 phy_in_vdd33_offset - 0x3ffeebc5 phy_set_most_tpw_disbg - 0x3ffeebc6 phy_set_most_tpw_index - 0x3ffeebc8 adc_rand_noise - 0x3ffeebcc phy_rx_gain_dc_flag - 0x3ffeebcd dpd_bypass_original - 0x3ffeebce phy_txpwr_diff_flash - 0x3ffeebd0 noise_array - *fill* 0x3ffeebdb 0x1 - .bss 0x3ffeebdc 0x9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_cal.o) - 0x3ffeebdc phy_tx_power_out - 0x3ffeebde phy_tx_pwr_error - 0x3ffeebe0 tx_pwctrl_track_num - 0x3ffeebe1 rxiq_cover_fail_num - 0x3ffeebe2 phy_meas_freq_offset - 0x3ffeebe4 tx_pwctrl_pk_num - *fill* 0x3ffeebe5 0x3 - .bss 0x3ffeebe8 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_sleep.o) - 0x3ffeebe8 periodic_cal_sat - 0x3ffeebea lslp_mem_opt_8266 - 0x3ffeebec software_slp_reject - 0x3ffeebed SDIO_slp_reject - 0x3ffeebee hardware_reject - *fill* 0x3ffeebef 0x1 - .bss 0x3ffeebf0 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_tkip.o) + .bss 0x3ffe92b0 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm_for_bcn_only_mode.o) + *fill* 0x3ffe92e8 0x8 + .bss 0x3ffe92f0 0x342 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pp.o) + 0x3ffe9308 pend_flag_noise_check + 0x3ffe9310 pend_flag_periodic_cal + 0x3ffe9328 idle_timer_reopen_flag + 0x3ffe932a dbg_stop_sw_wdt + 0x3ffe932b dbg_stop_hw_wdt + 0x3ffe932d total_buffed_eb_num + 0x3ffe9330 freq_change_sta_scan + 0x3ffe9344 test_freq_val_force_flag + 0x3ffe9346 TestStaFreqCalValFilter + 0x3ffe9348 PktsNumInOneChk + 0x3ffe934c AllFreqOffsetInOneChk + 0x3ffe9350 AvgFreqOffsetInOneChk + 0x3ffe9352 HighestFreqOffsetInOneChk + 0x3ffe9354 LowestFreqOffsetInOneChk + 0x3ffe9356 pktnum_sta_freqcal + 0x3ffe9358 all_freqoffset_sta_freqcal + 0x3ffe935a avg_freqoffset_sta_freqcal + 0x3ffe935c DefFreqCalTimer + 0x3ffe9370 PktNumInOneChk + 0x3ffe94f0 buffed_eb_arr + *fill* 0x3ffe9632 0xe + .bss 0x3ffe9640 0x100 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(rate_control.o) + .bss 0x3ffe9740 0x46c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(trc.o) + *fill* 0x3ffe9bac 0x4 + .bss 0x3ffe9bb0 0x2f88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(wdev.o) + 0x3ffe9bb0 wDevCtrl + 0x3ffe9d58 WdevTimOffSet + *fill* 0x3ffecb38 0x8 + .bss 0x3ffecb40 0xaa4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(esf_buf.o) + *fill* 0x3ffed5e4 0xc + .bss 0x3ffed5f0 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(if_hwctrl.o) + 0x3ffed5f0 interface_mask + 0x3ffed610 if_ctrl + .bss 0x3ffed630 0x150 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(lmac.o) + 0x3ffed634 lmacConfMib + 0x3ffed658 our_tx_eb + .bss 0x3ffed780 0x13a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libpp.a(pm.o) + 0x3ffed780 pmc + *fill* 0x3ffed8ba 0x2 + .bss 0x3ffed8bc 0x6a8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211.o) + 0x3ffed8bc g_ic + .bss 0x3ffedf64 0x49 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_hostap.o) + 0x3ffedf64 BcnEb_update + 0x3ffedf71 BcnWithMcastSendStart + 0x3ffedf72 BcnWithMcastSendCnt + 0x3ffedf8c PendFreeBcnEb + 0x3ffedf8e ap_freq_force_to_scan + 0x3ffedf90 ApFreqCalTimer + 0x3ffedfa4 APRecvBcnStartTick + *fill* 0x3ffedfad 0x3 + .bss 0x3ffedfb0 0xcc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_scan.o) + 0x3ffedfb0 gScanStruct + 0x3ffee05c freq_change_check_softap_link_enable + 0x3ffee05d FreqCalCntForScan + 0x3ffee05e TestStaFreqCalValInput + 0x3ffee060 TestStaFreqCalValDev + 0x3ffee062 connect_scan_flag + 0x3ffee063 auth_type + 0x3ffee064 scannum + *fill* 0x3ffee07c 0x4 + .bss 0x3ffee080 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_sta.o) + .bss 0x3ffee0a8 0x54 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_chm.o) + *fill* 0x3ffee0fc 0x4 + .bss 0x3ffee100 0x3ac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(wl_cnx.o) + 0x3ffee478 sta_con_timer + 0x3ffee48c backup_ni_connect_status + 0x3ffee490 g_cnx_probe_rc_list_cb + 0x3ffee494 reconnect_flag + 0x3ffee495 no_ap_found_index + *fill* 0x3ffee4ac 0x4 + .bss 0x3ffee4b0 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_action_vendor.o) + *fill* 0x3ffee4c8 0x8 + .bss 0x3ffee4d0 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa_auth.o) + 0x3ffee4d4 resend_eapol + .bss 0x3ffee530 0x26a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libwpa.a(wpa.o) + *fill* 0x3ffee79a 0x2 + .bss 0x3ffee79c 0x45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(app_main.o) + 0x3ffee7a0 info + 0x3ffee7c4 freq_trace_enable + 0x3ffee7c6 lwip_timer_interval + 0x3ffee7c8 check_timeouts_timer + 0x3ffee7dc rf_cal_sec + 0x3ffee7e0 user_init_flag + *fill* 0x3ffee7e1 0x3 + .bss 0x3ffee7e4 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(eagle_lwip_if.o) + 0x3ffee7e4 wifi_station_hostname + .bss 0x3ffee7f0 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(ets_timer.o) + 0x3ffee7f0 dbg_timer_flag + 0x3ffee7f4 timer_list + 0x3ffee7f8 debug_timer + 0x3ffee7fc debug_timerfn + .bss 0x3ffee820 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(user_exceptions.o) + *fill* 0x3ffee824 0xc + .bss 0x3ffee830 0x262 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(user_interface.o) + 0x3ffee932 protect_flag + 0x3ffee940 deep_sleep_flag + 0x3ffee941 cpu_overclock + 0x3ffee944 event_cb + 0x3ffee948 status_led_output_level + 0x3ffee94c done_cb + 0x3ffee950 rst_if + 0x3ffee96c default_interface + 0x3ffee96d OpmodChgIsOnGoing + 0x3ffee970 promiscuous_cb + 0x3ffee990 event_TaskQueue + *fill* 0x3ffeea92 0xe + .bss 0x3ffeeaa0 0x1c0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(nmi-vector.o) + .bss 0x3ffeec60 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libmain.a(spi_flash.o) + 0x3ffeec60 flash_read + .bss 0x3ffeec64 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + .bss 0x3ffeec6c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy.o) + .bss 0x3ffeec70 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_ana.o) + 0x3ffeec70 tout_dis_txpwr_track + 0x3ffeec71 sleep_mode_flag + *fill* 0x3ffeec72 0x6 + .bss 0x3ffeec78 0x153 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6.o) + 0x3ffeec78 g_phyFuns + 0x3ffeec7c rxiq_compute_num + 0x3ffeec80 rx_table_renew_en + 0x3ffeec84 check_result + 0x3ffeec88 chip6_sleep_params + 0x3ffeed1c chip6_phy_init_ctrl + 0x3ffeed90 phy_freq_offset + 0x3ffeed92 do_pwctrl_flag + 0x3ffeed93 txbk_dpdby_flag + 0x3ffeed95 sw_scan_mode + 0x3ffeed96 rxmax_ext_level + 0x3ffeed98 phy_rx_gain_dc_table + 0x3ffeed9c tx_data1 + 0x3ffeeda0 tx_data2 + 0x3ffeeda4 tx_data3 + 0x3ffeeda8 tx_data4 + 0x3ffeedac periodic_cal_flag + 0x3ffeedad bbpll_cal_flag + 0x3ffeedae phy_in_most_power + 0x3ffeedaf init_rf_no_cal + 0x3ffeedb0 test_print_time + 0x3ffeedb4 phy_in_vdd33_offset + 0x3ffeedb5 phy_set_most_tpw_disbg + 0x3ffeedb6 phy_set_most_tpw_index + 0x3ffeedb8 adc_rand_noise + 0x3ffeedbc phy_rx_gain_dc_flag + 0x3ffeedbd dpd_bypass_original + 0x3ffeedbe phy_txpwr_diff_flash + 0x3ffeedc0 noise_array + *fill* 0x3ffeedcb 0x1 + .bss 0x3ffeedcc 0x9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_chip_v6_cal.o) + 0x3ffeedcc phy_tx_power_out + 0x3ffeedce phy_tx_pwr_error + 0x3ffeedd0 tx_pwctrl_track_num + 0x3ffeedd1 rxiq_cover_fail_num + 0x3ffeedd2 phy_meas_freq_offset + 0x3ffeedd4 tx_pwctrl_pk_num + *fill* 0x3ffeedd5 0x3 + .bss 0x3ffeedd8 0x7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libphy.a(phy_sleep.o) + 0x3ffeedd8 periodic_cal_sat + 0x3ffeedda lslp_mem_opt_8266 + 0x3ffeeddc software_slp_reject + 0x3ffeeddd SDIO_slp_reject + 0x3ffeedde hardware_reject + *fill* 0x3ffeeddf 0x1 + .bss 0x3ffeede0 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libnet80211.a(ieee80211_crypto_tkip.o) *(.bss.*) .bss.httpUpdater - 0x3ffeebf8 0x30 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0x3ffeebf8 httpUpdater + 0x3ffeede8 0x30 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x3ffeede8 httpUpdater .bss.httpServer - 0x3ffeec28 0xe0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0x3ffeec28 httpServer - .bss.resetFunc - 0x3ffeed08 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0x3ffeed08 resetFunc - .bss.Mode 0x3ffeed0c 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0x3ffeed0c Mode - .bss.EEPROM 0x3ffeed10 0x10 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - 0x3ffeed10 EEPROM - .bss.WiFi 0x3ffeed20 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) - 0x3ffeed20 WiFi + 0x3ffeee18 0xe0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x3ffeee18 httpServer + .bss.Mode 0x3ffeeef8 0x4 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x3ffeeef8 Mode + .bss.EEPROM 0x3ffeeefc 0x10 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + 0x3ffeeefc EEPROM + .bss.WiFi 0x3ffeef0c 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + 0x3ffeef0c WiFi .bss._ZL19_dns_lookup_pending - 0x3ffeed21 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - *fill* 0x3ffeed22 0x2 + 0x3ffeef0d 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + *fill* 0x3ffeef0e 0x2 .bss._ZL12sCbEventList - 0x3ffeed24 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x3ffeef10 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .bss._ZN19ESP8266WiFiSTAClass15_useInsecureWEPE - 0x3ffeed2c 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) - 0x3ffeed2c ESP8266WiFiSTAClass::_useInsecureWEP + 0x3ffeef18 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + 0x3ffeef18 ESP8266WiFiSTAClass::_useInsecureWEP .bss._ZN19ESP8266WiFiSTAClass12_useStaticIpE - 0x3ffeed2d 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) - 0x3ffeed2d ESP8266WiFiSTAClass::_useStaticIp - *fill* 0x3ffeed2e 0x2 + 0x3ffeef19 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + 0x3ffeef19 ESP8266WiFiSTAClass::_useStaticIp + *fill* 0x3ffeef1a 0x2 .bss._ZN5SListI10WiFiClientE8_s_firstE - 0x3ffeed30 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x3ffeed30 SList::_s_first + 0x3ffeef1c 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x3ffeef1c SList::_s_first .bss._ZL11defaultSync - 0x3ffeed34 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x3ffeef20 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) .bss._ZL14defaultNoDelay - 0x3ffeed35 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x3ffeef21 0x1 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) .bss._ZN10WiFiClient10_localPortE - 0x3ffeed36 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - 0x3ffeed36 WiFiClient::_localPort - .bss.MDNS 0x3ffeed38 0x3c e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - 0x3ffeed38 MDNS + 0x3ffeef22 0x2 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x3ffeef22 WiFiClient::_localPort + .bss.MDNS 0x3ffeef24 0x3c e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x3ffeef24 MDNS .bss._ZL19MDNS_MULTICAST_ADDR - 0x3ffeed74 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x3ffeef60 0x8 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o .bss.spoof_init_data - 0x3ffeed7c 0x1 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) + 0x3ffeef68 0x1 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) .bss.s_abort_called - 0x3ffeed7d 0x1 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) - *fill* 0x3ffeed7e 0x2 + 0x3ffeef69 0x1 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + *fill* 0x3ffeef6a 0x2 .bss.s_panic_what - 0x3ffeed80 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + 0x3ffeef6c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) .bss.s_panic_func - 0x3ffeed84 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + 0x3ffeef70 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) .bss.s_panic_line - 0x3ffeed88 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + 0x3ffeef74 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) .bss.s_panic_file - 0x3ffeed8c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + 0x3ffeef78 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) .bss.micros_overflow_count - 0x3ffeed90 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + 0x3ffeef7c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) .bss.micros_at_last_overflow_tick - 0x3ffeed94 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + 0x3ffeef80 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) .bss.micros_overflow_timer - 0x3ffeed98 0x14 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + 0x3ffeef84 0x14 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) .bss.delay_timer - 0x3ffeedac 0x14 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + 0x3ffeef98 0x14 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) .bss.umm_last_fail_alloc_size - 0x3ffeedc0 0x4 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) - 0x3ffeedc0 umm_last_fail_alloc_size + 0x3ffeefac 0x4 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) + 0x3ffeefac umm_last_fail_alloc_size .bss.umm_last_fail_alloc_addr - 0x3ffeedc4 0x4 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) - 0x3ffeedc4 umm_last_fail_alloc_addr + 0x3ffeefb0 0x4 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) + 0x3ffeefb0 umm_last_fail_alloc_addr .bss.umm_numblocks - 0x3ffeedc8 0x2 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - 0x3ffeedc8 umm_numblocks - *fill* 0x3ffeedca 0x2 - .bss.umm_heap 0x3ffeedcc 0x4 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - 0x3ffeedcc umm_heap + 0x3ffeefb4 0x2 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + 0x3ffeefb4 umm_numblocks + *fill* 0x3ffeefb6 0x2 + .bss.umm_heap 0x3ffeefb8 0x4 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + 0x3ffeefb8 umm_heap .bss._ZZN8EspClass13getSketchSizeEvE6result - 0x3ffeedd0 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - .bss.ESP 0x3ffeedd4 0x1 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - 0x3ffeedd4 ESP - *fill* 0x3ffeedd5 0x3 - .bss.Serial1 0x3ffeedd8 0x1c e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - 0x3ffeedd8 Serial1 - .bss.Serial 0x3ffeedf4 0x1c e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - 0x3ffeedf4 Serial + 0x3ffeefbc 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + .bss.ESP 0x3ffeefc0 0x1 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x3ffeefc0 ESP + *fill* 0x3ffeefc1 0x3 + .bss.Serial1 0x3ffeefc4 0x1c e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x3ffeefc4 Serial1 + .bss.Serial 0x3ffeefe0 0x1c e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x3ffeefe0 Serial .bss.INADDR_NONE - 0x3ffeee10 0x8 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - 0x3ffeee10 INADDR_NONE + 0x3ffeeffc 0x8 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + 0x3ffeeffc INADDR_NONE .bss._ZL11sLastUnused - 0x3ffeee18 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + 0x3ffef004 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) .bss._ZL12sFirstUnused - 0x3ffeee1c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + 0x3ffef008 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) .bss._ZL5sLast - 0x3ffeee20 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + 0x3ffef00c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) .bss._ZL6sFirst - 0x3ffeee24 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + 0x3ffef010 0x4 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) .bss._ZN18ScheduledFunctions18scheduledFunctionsE - 0x3ffeee28 0x8 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) - 0x3ffeee28 ScheduledFunctions::scheduledFunctions - .bss.Update 0x3ffeee30 0x9c e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - 0x3ffeee30 Update + 0x3ffef014 0x8 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + 0x3ffef014 ScheduledFunctions::scheduledFunctions + .bss.Update 0x3ffef01c 0x9c e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x3ffef01c Update .bss._ZZN6StringixEjE19dummy_writable_char - 0x3ffeeecc 0x1 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - *fill* 0x3ffeeecd 0x3 + 0x3ffef0b8 0x1 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + *fill* 0x3ffef0b9 0x3 .bss.emptyString - 0x3ffeeed0 0xc e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - 0x3ffeeed0 emptyString + 0x3ffef0bc 0xc e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x3ffef0bc emptyString .bss._ZZL12loop_wrappervE10setup_done - 0x3ffeeedc 0x1 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - *fill* 0x3ffeeedd 0x3 + 0x3ffef0c8 0x1 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + *fill* 0x3ffef0c9 0x3 .bss._ZL22s_micros_at_task_start - 0x3ffeeee0 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x3ffef0cc 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) .bss._ZL12s_loop_queue - 0x3ffeeee4 0x8 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x3ffef0d0 0x8 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) .bss.resetInfo - 0x3ffeeeec 0x1c e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - 0x3ffeeeec resetInfo + 0x3ffef0d8 0x1c e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x3ffef0d8 resetInfo .bss.stack_thunk_save - 0x3ffeef08 0x4 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) - 0x3ffeef08 stack_thunk_save + 0x3ffef0f4 0x4 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + 0x3ffef0f4 stack_thunk_save .bss.stack_thunk_top - 0x3ffeef0c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) - 0x3ffeef0c stack_thunk_top + 0x3ffef0f8 0x4 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + 0x3ffef0f8 stack_thunk_top .bss.stack_thunk_ptr - 0x3ffeef10 0x4 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) - 0x3ffeef10 stack_thunk_ptr + 0x3ffef0fc 0x4 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + 0x3ffef0fc stack_thunk_ptr .bss.timer1_user_cb - 0x3ffeef14 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) + 0x3ffef100 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) .bss.timerRunning - 0x3ffeef18 0x1 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) - *fill* 0x3ffeef19 0x3 - .bss.timer1CB 0x3ffeef1c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + 0x3ffef104 0x1 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + *fill* 0x3ffef105 0x3 + .bss.timer1CB 0x3ffef108 0x4 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) .bss.s_uart_debug_nr - 0x3ffeef20 0x4 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) + 0x3ffef10c 0x4 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) .bss.pbuf_wrapper_head - 0x3ffeef24 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x3ffef110 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) .bss.netif_esp - 0x3ffeef28 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x3ffef114 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) .bss.phy_capture - 0x3ffeef30 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - 0x3ffeef30 phy_capture - .bss.renew 0x3ffeef34 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - *fill* 0x3ffeef35 0x3 - .bss.plist 0x3ffeef38 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x3ffef11c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x3ffef11c phy_capture + .bss.renew 0x3ffef120 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + *fill* 0x3ffef121 0x3 + .bss.plist 0x3ffef124 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) .bss.dhcps_lease - 0x3ffeef3c 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x3ffef128 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) .bss.client_address - 0x3ffeef48 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x3ffef134 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) .bss.server_address - 0x3ffeef4c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x3ffef138 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) .bss.broadcast_dhcps - 0x3ffeef50 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x3ffef13c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) .bss.pcb_dhcps - 0x3ffeef54 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x3ffef140 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) .bss.tcp_timer_ctr - 0x3ffeef58 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x3ffef144 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) .bss.tcp_timer - 0x3ffeef59 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - *fill* 0x3ffeef5a 0x2 + 0x3ffef145 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + *fill* 0x3ffef146 0x2 .bss.dns_servers - 0x3ffeef5c 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x3ffef148 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) .bss.dns_requests - 0x3ffeef64 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x3ffef150 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) .bss.dns_table - 0x3ffeef7c 0x1b0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x3ffef168 0x1b0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) .bss.dns_seqno - 0x3ffef12c 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - *fill* 0x3ffef12d 0x3 - .bss.dns_pcbs 0x3ffef130 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - .bss.dns_txid 0x3ffef134 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - *fill* 0x3ffef136 0x2 + 0x3ffef318 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + *fill* 0x3ffef319 0x3 + .bss.dns_pcbs 0x3ffef31c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + .bss.dns_txid 0x3ffef320 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + *fill* 0x3ffef322 0x2 .bss.tcpip_tcp_timer_active - 0x3ffef138 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x3ffef324 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) .bss.current_timeout_due_time - 0x3ffef13c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x3ffef328 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) .bss.next_timeout - 0x3ffef140 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x3ffef32c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) .bss.recv_data - 0x3ffef144 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x3ffef330 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) .bss.recv_flags - 0x3ffef148 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .bss.flags 0x3ffef149 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .bss.tcplen 0x3ffef14a 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x3ffef334 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .bss.flags 0x3ffef335 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .bss.tcplen 0x3ffef336 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) .bss.recv_acked - 0x3ffef14c 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - *fill* 0x3ffef14e 0x2 - .bss.ackno 0x3ffef150 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .bss.seqno 0x3ffef154 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x3ffef338 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + *fill* 0x3ffef33a 0x2 + .bss.ackno 0x3ffef33c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .bss.seqno 0x3ffef340 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) .bss.tcp_optidx - 0x3ffef158 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - *fill* 0x3ffef15a 0x2 + 0x3ffef344 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + *fill* 0x3ffef346 0x2 .bss.tcphdr_opt2 - 0x3ffef15c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x3ffef348 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) .bss.tcphdr_opt1len - 0x3ffef160 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x3ffef34c 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) .bss.tcphdr_optlen - 0x3ffef162 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .bss.tcphdr 0x3ffef164 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .bss.inseg 0x3ffef168 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x3ffef34e 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .bss.tcphdr 0x3ffef350 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .bss.inseg 0x3ffef354 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) .bss.netif_num - 0x3ffef178 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - *fill* 0x3ffef179 0x1 + 0x3ffef364 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + *fill* 0x3ffef365 0x1 .bss.ip_reass_pbufcount - 0x3ffef17a 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + 0x3ffef366 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) .bss.reassdatagrams - 0x3ffef17c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) - .bss.xid$4246 0x3ffef180 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x3ffef368 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + .bss.xid$4246 0x3ffef36c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) .bss.dhcp_pcb_refcount - 0x3ffef184 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - *fill* 0x3ffef185 0x3 - .bss.dhcp_pcb 0x3ffef188 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x3ffef370 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + *fill* 0x3ffef371 0x3 + .bss.dhcp_pcb 0x3ffef374 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) .bss.etharp_cached_entry - 0x3ffef18c 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) - *fill* 0x3ffef18d 0x3 + 0x3ffef378 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + *fill* 0x3ffef379 0x3 .bss.arp_table - 0x3ffef190 0xf0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x3ffef37c 0xf0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) .bss.allrouters - 0x3ffef280 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x3ffef46c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) .bss.allsystems - 0x3ffef284 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x3ffef470 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) .bss.ip4_default_multicast_netif - 0x3ffef288 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) - .bss.ip_id 0x3ffef28c 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) - *fill* 0x3ffef28e 0x2 + 0x3ffef474 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + .bss.ip_id 0x3ffef478 0x2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + *fill* 0x3ffef47a 0x2 .bss.sntp_retry_timeout - 0x3ffef290 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x3ffef47c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) .bss.sntp_set_servers_from_dhcp - 0x3ffef294 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) - *fill* 0x3ffef295 0x3 + 0x3ffef480 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + *fill* 0x3ffef481 0x3 .bss.sntp_servers - 0x3ffef298 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) - .bss.sntp_pcb 0x3ffef2a4 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x3ffef484 0xc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + .bss.sntp_pcb 0x3ffef490 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) .bss.sntp_opmode - 0x3ffef2a8 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) - *fill* 0x3ffef2a9 0x3 - .bss.raw_pcbs 0x3ffef2ac 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + 0x3ffef494 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + *fill* 0x3ffef495 0x3 + .bss.raw_pcbs 0x3ffef498 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) .bss._ZN5SListI7WiFiUDPE8_s_firstE - 0x3ffef2b0 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) - 0x3ffef2b0 SList::_s_first + 0x3ffef49c 0x4 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) + 0x3ffef49c SList::_s_first .bss.sntp_timer - 0x3ffef2b4 0x14 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) - .bss.dst 0x3ffef2c8 0x2 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) - *fill* 0x3ffef2ca 0x2 + 0x3ffef4a0 0x14 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + .bss.dst 0x3ffef4b4 0x2 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + *fill* 0x3ffef4b6 0x2 .bss.realtime_stamp - 0x3ffef2cc 0x4 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + 0x3ffef4b8 0x4 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) .bss._settimeofday_cb - 0x3ffef2d0 0x4 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) - *fill* 0x3ffef2d4 0x4 + 0x3ffef4bc 0x4 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) .bss.timeshift64 - 0x3ffef2d8 0x8 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) + 0x3ffef4c0 0x8 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) .bss.timeshift64_is_set - 0x3ffef2e0 0x1 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) - 0x3ffef2e0 timeshift64_is_set + 0x3ffef4c8 0x1 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) + 0x3ffef4c8 timeshift64_is_set *(.gnu.linkonce.b.*) *(COMMON) - *fill* 0x3ffef2e1 0x3 - COMMON 0x3ffef2e4 0x14 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - 0x3ffef2e4 ummHeapInfo - COMMON 0x3ffef2f8 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - 0x3ffef2f8 netif_default - COMMON 0x3ffef2fc 0x88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - 0x3ffef2fc netif_git - COMMON 0x3ffef384 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - 0x3ffef384 tcp_active_pcbs_changed - 0x3ffef388 tcp_active_pcbs - 0x3ffef38c tcp_ticks - 0x3ffef390 tcp_listen_pcbs - 0x3ffef394 tcp_bound_pcbs - 0x3ffef398 tcp_tw_pcbs - COMMON 0x3ffef39c 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - 0x3ffef39c tcp_input_pcb - COMMON 0x3ffef3a0 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - 0x3ffef3a0 netif_list - 0x3ffef3a4 netif_default_LWIP2 - COMMON 0x3ffef3a8 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) - 0x3ffef3a8 pbuf_free_ooseq_pending - *fill* 0x3ffef3a9 0x3 - COMMON 0x3ffef3ac 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) - 0x3ffef3ac udp_pcbs - COMMON 0x3ffef3b0 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - 0x3ffef3b0 dhcp_rx_options_given - 0x3ffef3bc dhcp_rx_options_val - COMMON 0x3ffef3e8 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) - 0x3ffef3e8 ip_data - 0x3ffef400 . = ALIGN (0x8) - 0x3ffef400 _bss_end = ABSOLUTE (.) - 0x3ffef400 _heap_start = ABSOLUTE (.) + *fill* 0x3ffef4c9 0x3 + COMMON 0x3ffef4cc 0x14 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + 0x3ffef4cc ummHeapInfo + COMMON 0x3ffef4e0 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x3ffef4e0 netif_default + COMMON 0x3ffef4e4 0x88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x3ffef4e4 netif_git + COMMON 0x3ffef56c 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x3ffef56c tcp_active_pcbs_changed + 0x3ffef570 tcp_active_pcbs + 0x3ffef574 tcp_ticks + 0x3ffef578 tcp_listen_pcbs + 0x3ffef57c tcp_bound_pcbs + 0x3ffef580 tcp_tw_pcbs + COMMON 0x3ffef584 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x3ffef584 tcp_input_pcb + COMMON 0x3ffef588 0x8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x3ffef588 netif_list + 0x3ffef58c netif_default_LWIP2 + COMMON 0x3ffef590 0x1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x3ffef590 pbuf_free_ooseq_pending + *fill* 0x3ffef591 0x3 + COMMON 0x3ffef594 0x4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x3ffef594 udp_pcbs + COMMON 0x3ffef598 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x3ffef598 dhcp_rx_options_given + 0x3ffef5a4 dhcp_rx_options_val + COMMON 0x3ffef5d0 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) + 0x3ffef5d0 ip_data + 0x3ffef5e8 . = ALIGN (0x8) + 0x3ffef5e8 _bss_end = ABSOLUTE (.) + 0x3ffef5e8 _heap_start = ABSOLUTE (.) .lit4 0x40106c64 0x0 0x40106c64 _lit4_start = ABSOLUTE (.) @@ -16546,1358 +16602,1358 @@ END GROUP 0x3fffc714 PROVIDE (flashchip, 0x3fffc714) OUTPUT(e:\Arduino_project\wIoT\bin/wemos_D1_mini.ino.elf elf32-xtensa-le) -.debug_frame 0x00000000 0xbdd8 - .debug_frame 0x00000000 0x180 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - .debug_frame 0x00000180 0xe0 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - .debug_frame 0x00000260 0x50 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) - .debug_frame 0x000002b0 0x130 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) - .debug_frame 0x000003e0 0x8d0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - .debug_frame 0x00000cb0 0x400 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) - .debug_frame 0x000010b0 0x830 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - .debug_frame 0x000018e0 0x8b0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - .debug_frame 0x00002190 0x204 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - .debug_frame 0x00002394 0x538 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - .debug_frame 0x000028cc 0x150 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - .debug_frame 0x00002a1c 0xa0 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) - .debug_frame 0x00002abc 0xc0 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) - .debug_frame 0x00002b7c 0x110 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) - .debug_frame 0x00002c8c 0xf0 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) - .debug_frame 0x00002d7c 0x20 e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) - .debug_frame 0x00002d9c 0x180 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) - .debug_frame 0x00002f1c 0xa0 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) - .debug_frame 0x00002fbc 0x1b0 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - .debug_frame 0x0000316c 0x610 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - .debug_frame 0x0000377c 0x460 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) - .debug_frame 0x00003bdc 0x130 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) - .debug_frame 0x00003d0c 0x240 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - .debug_frame 0x00003f4c 0x130 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - .debug_frame 0x0000407c 0x120 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) - .debug_frame 0x0000419c 0x3c0 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - .debug_frame 0x0000455c 0x90 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) - .debug_frame 0x000045ec 0x320 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) - .debug_frame 0x0000490c 0x230 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) - .debug_frame 0x00004b3c 0xd0 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) - .debug_frame 0x00004c0c 0x1b0 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - .debug_frame 0x00004dbc 0xa40 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - .debug_frame 0x000057fc 0x1b0 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) - .debug_frame 0x000059ac 0x170 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - .debug_frame 0x00005b1c 0x1e0 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) - .debug_frame 0x00005cfc 0xd0 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) - .debug_frame 0x00005dcc 0x70 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) - .debug_frame 0x00005e3c 0x90 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) - .debug_frame 0x00005ecc 0x80 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) - .debug_frame 0x00005f4c 0x140 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) - .debug_frame 0x0000608c 0xb0 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) - .debug_frame 0x0000613c 0x108 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) - .debug_frame 0x00006244 0x320 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) - .debug_frame 0x00006564 0x30c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - .debug_frame 0x00006870 0x280 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - .debug_frame 0x00006af0 0x244 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - .debug_frame 0x00006d34 0x70 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) - .debug_frame 0x00006da4 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) - .debug_frame 0x00006dd4 0xd8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - .debug_frame 0x00006eac 0x588 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - .debug_frame 0x00007434 0x16c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - .debug_frame 0x000075a0 0x180 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) - .debug_frame 0x00007720 0x138 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .debug_frame 0x00007858 0xa4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) - .debug_frame 0x000078fc 0x290 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - .debug_frame 0x00007b8c 0x458 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) - .debug_frame 0x00007fe4 0x1d0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) - .debug_frame 0x000081b4 0x320 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) - .debug_frame 0x000084d4 0x10c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) - .debug_frame 0x000085e0 0x3ac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - .debug_frame 0x0000898c 0x200 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) - .debug_frame 0x00008b8c 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) - .debug_frame 0x00008c5c 0x238 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) - .debug_frame 0x00008e94 0x130 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) - .debug_frame 0x00008fc4 0xa8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) - .debug_frame 0x0000906c 0x1dc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) - .debug_frame 0x00009248 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) - .debug_frame 0x000092d8 0x124 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) - .debug_frame 0x000093fc 0x180 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) - .debug_frame 0x0000957c 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) - .debug_frame 0x000095dc 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) - .debug_frame 0x000095fc 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) - .debug_frame 0x0000962c 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) - .debug_frame 0x0000967c 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) - .debug_frame 0x000096cc 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) - .debug_frame 0x000096ec 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) - .debug_frame 0x0000973c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) - .debug_frame 0x0000975c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) - .debug_frame 0x0000977c 0x8c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) - .debug_frame 0x00009808 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) - .debug_frame 0x00009870 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) - .debug_frame 0x000098ac 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) - .debug_frame 0x0000990c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) - .debug_frame 0x0000992c 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) - .debug_frame 0x0000998c 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) - .debug_frame 0x000099dc 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) - .debug_frame 0x000099fc 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) - .debug_frame 0x00009a1c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) - .debug_frame 0x00009a3c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) - .debug_frame 0x00009a5c 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) - .debug_frame 0x00009a90 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) - .debug_frame 0x00009ab0 0xb8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) - .debug_frame 0x00009b68 0x5c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) - .debug_frame 0x00009bc4 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) - .debug_frame 0x00009be4 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) - .debug_frame 0x00009c04 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) - .debug_frame 0x00009c64 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) - .debug_frame 0x00009cc4 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) - .debug_frame 0x00009d1c 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) - .debug_frame 0x00009d84 0x1f8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) - .debug_frame 0x00009f7c 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) - .debug_frame 0x00009fe4 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) - .debug_frame 0x0000a03c 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) - .debug_frame 0x0000a08c 0xb4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) - .debug_frame 0x0000a140 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) - .debug_frame 0x0000a160 0x2b4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) - .debug_frame 0x0000a414 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) - .debug_frame 0x0000a4a4 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) - .debug_frame 0x0000a574 0xbc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) - .debug_frame 0x0000a630 0x54 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) - .debug_frame 0x0000a684 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) - .debug_frame 0x0000a6c4 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) - .debug_frame 0x0000a6f4 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) - .debug_frame 0x0000a74c 0x88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) - .debug_frame 0x0000a7d4 0x94 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) - .debug_frame 0x0000a868 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) - .debug_frame 0x0000a8a4 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) - .debug_frame 0x0000a8e4 0x5c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) - .debug_frame 0x0000a940 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) - .debug_frame 0x0000a990 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) - .debug_frame 0x0000a9c0 0x280 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) - .debug_frame 0x0000ac40 0x370 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) - .debug_frame 0x0000afb0 0x170 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) - .debug_frame 0x0000b120 0xb0 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) - .debug_frame 0x0000b1d0 0x498 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) - .debug_frame 0x0000b668 0x1f4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) - .debug_frame 0x0000b85c 0x444 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) - .debug_frame 0x0000bca0 0x138 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) +.debug_frame 0x00000000 0xbe58 + .debug_frame 0x00000000 0x200 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .debug_frame 0x00000200 0xe0 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + .debug_frame 0x000002e0 0x50 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + .debug_frame 0x00000330 0x130 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) + .debug_frame 0x00000460 0x8d0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .debug_frame 0x00000d30 0x400 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + .debug_frame 0x00001130 0x830 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + .debug_frame 0x00001960 0x8b0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + .debug_frame 0x00002210 0x204 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + .debug_frame 0x00002414 0x538 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + .debug_frame 0x0000294c 0x150 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + .debug_frame 0x00002a9c 0xa0 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) + .debug_frame 0x00002b3c 0xc0 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + .debug_frame 0x00002bfc 0x110 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + .debug_frame 0x00002d0c 0xf0 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) + .debug_frame 0x00002dfc 0x20 e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) + .debug_frame 0x00002e1c 0x180 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) + .debug_frame 0x00002f9c 0xa0 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) + .debug_frame 0x0000303c 0x1b0 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + .debug_frame 0x000031ec 0x610 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + .debug_frame 0x000037fc 0x460 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) + .debug_frame 0x00003c5c 0x130 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) + .debug_frame 0x00003d8c 0x240 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + .debug_frame 0x00003fcc 0x130 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + .debug_frame 0x000040fc 0x120 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + .debug_frame 0x0000421c 0x3c0 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + .debug_frame 0x000045dc 0x90 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + .debug_frame 0x0000466c 0x320 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + .debug_frame 0x0000498c 0x230 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + .debug_frame 0x00004bbc 0xd0 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + .debug_frame 0x00004c8c 0x1b0 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + .debug_frame 0x00004e3c 0xa40 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + .debug_frame 0x0000587c 0x1b0 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + .debug_frame 0x00005a2c 0x170 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + .debug_frame 0x00005b9c 0x1e0 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + .debug_frame 0x00005d7c 0xd0 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + .debug_frame 0x00005e4c 0x70 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) + .debug_frame 0x00005ebc 0x90 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) + .debug_frame 0x00005f4c 0x80 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) + .debug_frame 0x00005fcc 0x140 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) + .debug_frame 0x0000610c 0xb0 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + .debug_frame 0x000061bc 0x108 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) + .debug_frame 0x000062c4 0x320 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) + .debug_frame 0x000065e4 0x30c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + .debug_frame 0x000068f0 0x280 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + .debug_frame 0x00006b70 0x244 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + .debug_frame 0x00006db4 0x70 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + .debug_frame 0x00006e24 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) + .debug_frame 0x00006e54 0xd8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + .debug_frame 0x00006f2c 0x588 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + .debug_frame 0x000074b4 0x16c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + .debug_frame 0x00007620 0x180 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + .debug_frame 0x000077a0 0x138 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .debug_frame 0x000078d8 0xa4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + .debug_frame 0x0000797c 0x290 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + .debug_frame 0x00007c0c 0x458 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + .debug_frame 0x00008064 0x1d0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + .debug_frame 0x00008234 0x320 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + .debug_frame 0x00008554 0x10c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + .debug_frame 0x00008660 0x3ac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + .debug_frame 0x00008a0c 0x200 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + .debug_frame 0x00008c0c 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + .debug_frame 0x00008cdc 0x238 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + .debug_frame 0x00008f14 0x130 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + .debug_frame 0x00009044 0xa8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + .debug_frame 0x000090ec 0x1dc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + .debug_frame 0x000092c8 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + .debug_frame 0x00009358 0x124 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + .debug_frame 0x0000947c 0x180 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + .debug_frame 0x000095fc 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) + .debug_frame 0x0000965c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) + .debug_frame 0x0000967c 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) + .debug_frame 0x000096ac 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) + .debug_frame 0x000096fc 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) + .debug_frame 0x0000974c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) + .debug_frame 0x0000976c 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) + .debug_frame 0x000097bc 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) + .debug_frame 0x000097dc 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) + .debug_frame 0x000097fc 0x8c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + .debug_frame 0x00009888 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + .debug_frame 0x000098f0 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) + .debug_frame 0x0000992c 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) + .debug_frame 0x0000998c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) + .debug_frame 0x000099ac 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) + .debug_frame 0x00009a0c 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) + .debug_frame 0x00009a5c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) + .debug_frame 0x00009a7c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) + .debug_frame 0x00009a9c 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) + .debug_frame 0x00009abc 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) + .debug_frame 0x00009adc 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) + .debug_frame 0x00009b10 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) + .debug_frame 0x00009b30 0xb8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + .debug_frame 0x00009be8 0x5c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) + .debug_frame 0x00009c44 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) + .debug_frame 0x00009c64 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) + .debug_frame 0x00009c84 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) + .debug_frame 0x00009ce4 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) + .debug_frame 0x00009d44 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) + .debug_frame 0x00009d9c 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + .debug_frame 0x00009e04 0x1f8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + .debug_frame 0x00009ffc 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) + .debug_frame 0x0000a064 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) + .debug_frame 0x0000a0bc 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) + .debug_frame 0x0000a10c 0xb4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) + .debug_frame 0x0000a1c0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) + .debug_frame 0x0000a1e0 0x2b4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + .debug_frame 0x0000a494 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) + .debug_frame 0x0000a524 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) + .debug_frame 0x0000a5f4 0xbc C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) + .debug_frame 0x0000a6b0 0x54 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) + .debug_frame 0x0000a704 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) + .debug_frame 0x0000a744 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) + .debug_frame 0x0000a774 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) + .debug_frame 0x0000a7cc 0x88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) + .debug_frame 0x0000a854 0x94 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) + .debug_frame 0x0000a8e8 0x3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) + .debug_frame 0x0000a924 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) + .debug_frame 0x0000a964 0x5c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) + .debug_frame 0x0000a9c0 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) + .debug_frame 0x0000aa10 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) + .debug_frame 0x0000aa40 0x280 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + .debug_frame 0x0000acc0 0x370 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) + .debug_frame 0x0000b030 0x170 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + .debug_frame 0x0000b1a0 0xb0 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) + .debug_frame 0x0000b250 0x498 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) + .debug_frame 0x0000b6e8 0x1f4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) + .debug_frame 0x0000b8dc 0x444 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) + .debug_frame 0x0000bd20 0x138 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) -.debug_info 0x00000000 0x109b04 - .debug_info 0x00000000 0x6bbc e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - .debug_info 0x00006bbc 0x2b38 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - .debug_info 0x000096f4 0x5057 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) - .debug_info 0x0000e74b 0x572e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) - .debug_info 0x00013e79 0x1808a e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - .debug_info 0x0002bf03 0x6444 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) - .debug_info 0x00032347 0xb940 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - .debug_info 0x0003dc87 0xdb79 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - .debug_info 0x0004b800 0x9e93 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - .debug_info 0x00055693 0x603 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) - .debug_info 0x00055c96 0xe0d7 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - .debug_info 0x00063d6d 0x7f13 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - .debug_info 0x0006bc80 0x381 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) - .debug_info 0x0006c001 0x11e2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) - .debug_info 0x0006d1e3 0x628 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) - .debug_info 0x0006d80b 0x73c e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) - .debug_info 0x0006df47 0x8f e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) - .debug_info 0x0006dfd6 0xc64 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) - .debug_info 0x0006ec3a 0x357 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) - .debug_info 0x0006ef91 0xd00 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - .debug_info 0x0006fc91 0x6f82 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - .debug_info 0x00076c13 0x6833 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) - .debug_info 0x0007d446 0x56e0 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) - .debug_info 0x00082b26 0x33b8 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - .debug_info 0x00085ede 0x3e93 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - .debug_info 0x00089d71 0x3c41 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) - .debug_info 0x0008d9b2 0x4e17 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - .debug_info 0x000927c9 0x24bb e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) - .debug_info 0x00094c84 0x9475 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) - .debug_info 0x0009e0f9 0x4179 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) - .debug_info 0x000a2272 0x389b e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) - .debug_info 0x000a5b0d 0x506b e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - .debug_info 0x000aab78 0x625b e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - .debug_info 0x000b0dd3 0x2d46 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) - .debug_info 0x000b3b19 0x2d07 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - .debug_info 0x000b6820 0xaff e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) - .debug_info 0x000b731f 0xc3 e:\Arduino_project\wIoT\bin\core\core.a(cont.S.o) - .debug_info 0x000b73e2 0x290 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) - .debug_info 0x000b7672 0x30b e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) - .debug_info 0x000b797d 0x2de e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) - .debug_info 0x000b7c5b 0x395 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) - .debug_info 0x000b7ff0 0x496 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) - .debug_info 0x000b8486 0x853 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) - .debug_info 0x000b8cd9 0xcd9 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) - .debug_info 0x000b99b2 0x16d3 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) - .debug_info 0x000bb085 0x1313 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - .debug_info 0x000bc398 0x1224 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - .debug_info 0x000bd5bc 0x1ef1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - .debug_info 0x000bf4ad 0x87c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) - .debug_info 0x000bfd29 0x177 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) - .debug_info 0x000bfea0 0x529 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - .debug_info 0x000c03c9 0x25ce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - .debug_info 0x000c2997 0x157b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - .debug_info 0x000c3f12 0xd1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) - .debug_info 0x000c4c2e 0x226c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .debug_info 0x000c6e9a 0x3ea C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) - .debug_info 0x000c7284 0x10e5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - .debug_info 0x000c8369 0x1d45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) - .debug_info 0x000ca0ae 0x1216 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) - .debug_info 0x000cb2c4 0x22d0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) - .debug_info 0x000cd594 0x114e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) - .debug_info 0x000ce6e2 0x2b15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - .debug_info 0x000d11f7 0x12e1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) - .debug_info 0x000d24d8 0x753 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) - .debug_info 0x000d2c2b 0xfc2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) - .debug_info 0x000d3bed 0x115a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) - .debug_info 0x000d4d47 0xbea C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) - .debug_info 0x000d5931 0x1070 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) - .debug_info 0x000d69a1 0x258 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) - .debug_info 0x000d6bf9 0x73c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) - .debug_info 0x000d7335 0x546 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) - .debug_info 0x000d787b 0xefb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) - .debug_info 0x000d8776 0x3fe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) - .debug_info 0x000d8b74 0x142 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) - .debug_info 0x000d8cb6 0xef C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) - .debug_info 0x000d8da5 0x8c2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) - .debug_info 0x000d9667 0x8c2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) - .debug_info 0x000d9f29 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) - .debug_info 0x000d9f9a 0x16d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) - .debug_info 0x000da107 0xef C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) - .debug_info 0x000da1f6 0xac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcpy.o) - .debug_info 0x000da2a2 0x102 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) - .debug_info 0x000da3a4 0xac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memset.o) - .debug_info 0x000da450 0x1153 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) - .debug_info 0x000db5a3 0xc2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) - .debug_info 0x000dc1cf 0xbe4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) - .debug_info 0x000dcdb3 0x978 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) - .debug_info 0x000dd72b 0xce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) - .debug_info 0x000dd7f9 0x9a8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) - .debug_info 0x000de1a1 0x97f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) - .debug_info 0x000deb20 0x159 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) - .debug_info 0x000dec79 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) - .debug_info 0x000ded41 0xe3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) - .debug_info 0x000dee24 0xac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) - .debug_info 0x000deed0 0xac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) - .debug_info 0x000def7c 0xac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) - .debug_info 0x000df028 0xcf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) - .debug_info 0x000df0f7 0xad C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncpy.o) - .debug_info 0x000df1a4 0x101 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) - .debug_info 0x000df2a5 0xe1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) - .debug_info 0x000df386 0x1740 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) - .debug_info 0x000e0ac6 0x92a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) - .debug_info 0x000e13f0 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) - .debug_info 0x000e1461 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) - .debug_info 0x000e14d2 0x1c8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) - .debug_info 0x000e169a 0x95c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) - .debug_info 0x000e1ff6 0x980 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) - .debug_info 0x000e2976 0x6f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) - .debug_info 0x000e29e5 0x12f5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) - .debug_info 0x000e3cda 0xf1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) - .debug_info 0x000e4bf6 0x919 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) - .debug_info 0x000e550f 0x109d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) - .debug_info 0x000e65ac 0x2c4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) - .debug_info 0x000e6870 0x8a8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) - .debug_info 0x000e7118 0xb63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) - .debug_info 0x000e7c7b 0xf8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) - .debug_info 0x000e7d73 0x1657 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) - .debug_info 0x000e93ca 0xed5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) - .debug_info 0x000ea29f 0x1076 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) - .debug_info 0x000eb315 0xb0a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) - .debug_info 0x000ebe1f 0x9eb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) - .debug_info 0x000ec80a 0x957 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) - .debug_info 0x000ed161 0x86 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) - .debug_info 0x000ed1e7 0xa91 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) - .debug_info 0x000edc78 0xb31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) - .debug_info 0x000ee7a9 0xb24 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) - .debug_info 0x000ef2cd 0xba6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) - .debug_info 0x000efe73 0xa67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) - .debug_info 0x000f08da 0x959 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) - .debug_info 0x000f1233 0x936 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) - .debug_info 0x000f1b69 0x9ce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) - .debug_info 0x000f2537 0xf3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_modsi3.o) - .debug_info 0x000f262a 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_mulsf3.o) - .debug_info 0x000f271e 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpsf2.o) - .debug_info 0x000f2812 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpdf2.o) - .debug_info 0x000f2906 0x69de e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) - .debug_info 0x000f92e4 0x7bbd e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) - .debug_info 0x00100ea1 0x9f4 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) - .debug_info 0x00101895 0xc05 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) - .debug_info 0x0010249a 0xcf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libhal.a(int_asm--set_intclear.o) - .debug_info 0x00102569 0x21ce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) - .debug_info 0x00104737 0xc83 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) - .debug_info 0x001053ba 0x2df1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) - .debug_info 0x001081ab 0x167e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) - .debug_info 0x00109829 0xf3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_ashrdi3.o) - .debug_info 0x0010991c 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_divsf3.o) - .debug_info 0x00109a10 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_fixsfsi.o) +.debug_info 0x00000000 0x10a188 + .debug_info 0x00000000 0x7240 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .debug_info 0x00007240 0x2b38 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + .debug_info 0x00009d78 0x5057 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + .debug_info 0x0000edcf 0x572e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) + .debug_info 0x000144fd 0x1808a e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .debug_info 0x0002c587 0x6444 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + .debug_info 0x000329cb 0xb940 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + .debug_info 0x0003e30b 0xdb79 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + .debug_info 0x0004be84 0x9e93 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + .debug_info 0x00055d17 0x603 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) + .debug_info 0x0005631a 0xe0d7 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + .debug_info 0x000643f1 0x7f13 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + .debug_info 0x0006c304 0x381 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) + .debug_info 0x0006c685 0x11e2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + .debug_info 0x0006d867 0x628 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + .debug_info 0x0006de8f 0x73c e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) + .debug_info 0x0006e5cb 0x8f e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) + .debug_info 0x0006e65a 0xc64 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) + .debug_info 0x0006f2be 0x357 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) + .debug_info 0x0006f615 0xd00 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + .debug_info 0x00070315 0x6f82 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + .debug_info 0x00077297 0x6833 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) + .debug_info 0x0007daca 0x56e0 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) + .debug_info 0x000831aa 0x33b8 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + .debug_info 0x00086562 0x3e93 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + .debug_info 0x0008a3f5 0x3c41 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + .debug_info 0x0008e036 0x4e17 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + .debug_info 0x00092e4d 0x24bb e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + .debug_info 0x00095308 0x9475 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + .debug_info 0x0009e77d 0x4179 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + .debug_info 0x000a28f6 0x389b e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + .debug_info 0x000a6191 0x506b e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + .debug_info 0x000ab1fc 0x625b e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + .debug_info 0x000b1457 0x2d46 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + .debug_info 0x000b419d 0x2d07 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + .debug_info 0x000b6ea4 0xaff e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + .debug_info 0x000b79a3 0xc3 e:\Arduino_project\wIoT\bin\core\core.a(cont.S.o) + .debug_info 0x000b7a66 0x290 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + .debug_info 0x000b7cf6 0x30b e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) + .debug_info 0x000b8001 0x2de e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) + .debug_info 0x000b82df 0x395 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) + .debug_info 0x000b8674 0x496 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) + .debug_info 0x000b8b0a 0x853 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + .debug_info 0x000b935d 0xcd9 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) + .debug_info 0x000ba036 0x16d3 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) + .debug_info 0x000bb709 0x1313 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + .debug_info 0x000bca1c 0x1224 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + .debug_info 0x000bdc40 0x1ef1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + .debug_info 0x000bfb31 0x87c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + .debug_info 0x000c03ad 0x177 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) + .debug_info 0x000c0524 0x529 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + .debug_info 0x000c0a4d 0x25ce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + .debug_info 0x000c301b 0x157b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + .debug_info 0x000c4596 0xd1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + .debug_info 0x000c52b2 0x226c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .debug_info 0x000c751e 0x3ea C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + .debug_info 0x000c7908 0x10e5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + .debug_info 0x000c89ed 0x1d45 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + .debug_info 0x000ca732 0x1216 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + .debug_info 0x000cb948 0x22d0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + .debug_info 0x000cdc18 0x114e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + .debug_info 0x000ced66 0x2b15 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + .debug_info 0x000d187b 0x12e1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + .debug_info 0x000d2b5c 0x753 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + .debug_info 0x000d32af 0xfc2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + .debug_info 0x000d4271 0x115a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + .debug_info 0x000d53cb 0xbea C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + .debug_info 0x000d5fb5 0x1070 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + .debug_info 0x000d7025 0x258 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + .debug_info 0x000d727d 0x73c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + .debug_info 0x000d79b9 0x546 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) + .debug_info 0x000d7eff 0xefb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + .debug_info 0x000d8dfa 0x3fe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) + .debug_info 0x000d91f8 0x142 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) + .debug_info 0x000d933a 0xef C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) + .debug_info 0x000d9429 0x8c2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) + .debug_info 0x000d9ceb 0x8c2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) + .debug_info 0x000da5ad 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) + .debug_info 0x000da61e 0x16d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) + .debug_info 0x000da78b 0xef C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) + .debug_info 0x000da87a 0xac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcpy.o) + .debug_info 0x000da926 0x102 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) + .debug_info 0x000daa28 0xac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memset.o) + .debug_info 0x000daad4 0x1153 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + .debug_info 0x000dbc27 0xc2c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + .debug_info 0x000dc853 0xbe4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) + .debug_info 0x000dd437 0x978 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) + .debug_info 0x000dddaf 0xce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) + .debug_info 0x000dde7d 0x9a8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) + .debug_info 0x000de825 0x97f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) + .debug_info 0x000df1a4 0x159 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) + .debug_info 0x000df2fd 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) + .debug_info 0x000df3c5 0xe3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) + .debug_info 0x000df4a8 0xac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) + .debug_info 0x000df554 0xac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) + .debug_info 0x000df600 0xac C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) + .debug_info 0x000df6ac 0xcf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) + .debug_info 0x000df77b 0xad C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncpy.o) + .debug_info 0x000df828 0x101 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) + .debug_info 0x000df929 0xe1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) + .debug_info 0x000dfa0a 0x1740 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + .debug_info 0x000e114a 0x92a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) + .debug_info 0x000e1a74 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) + .debug_info 0x000e1ae5 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) + .debug_info 0x000e1b56 0x1c8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) + .debug_info 0x000e1d1e 0x95c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) + .debug_info 0x000e267a 0x980 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) + .debug_info 0x000e2ffa 0x6f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) + .debug_info 0x000e3069 0x12f5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + .debug_info 0x000e435e 0xf1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + .debug_info 0x000e527a 0x919 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) + .debug_info 0x000e5b93 0x109d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) + .debug_info 0x000e6c30 0x2c4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) + .debug_info 0x000e6ef4 0x8a8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) + .debug_info 0x000e779c 0xb63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) + .debug_info 0x000e82ff 0xf8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) + .debug_info 0x000e83f7 0x1657 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + .debug_info 0x000e9a4e 0xed5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) + .debug_info 0x000ea923 0x1076 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) + .debug_info 0x000eb999 0xb0a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) + .debug_info 0x000ec4a3 0x9eb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) + .debug_info 0x000ece8e 0x957 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) + .debug_info 0x000ed7e5 0x86 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) + .debug_info 0x000ed86b 0xa91 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) + .debug_info 0x000ee2fc 0xb31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) + .debug_info 0x000eee2d 0xb24 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) + .debug_info 0x000ef951 0xba6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) + .debug_info 0x000f04f7 0xa67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) + .debug_info 0x000f0f5e 0x959 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) + .debug_info 0x000f18b7 0x936 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) + .debug_info 0x000f21ed 0x9ce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) + .debug_info 0x000f2bbb 0xf3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_modsi3.o) + .debug_info 0x000f2cae 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_mulsf3.o) + .debug_info 0x000f2da2 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpsf2.o) + .debug_info 0x000f2e96 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpdf2.o) + .debug_info 0x000f2f8a 0x69de e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + .debug_info 0x000f9968 0x7bbd e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) + .debug_info 0x00101525 0x9f4 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + .debug_info 0x00101f19 0xc05 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) + .debug_info 0x00102b1e 0xcf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libhal.a(int_asm--set_intclear.o) + .debug_info 0x00102bed 0x21ce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) + .debug_info 0x00104dbb 0xc83 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) + .debug_info 0x00105a3e 0x2df1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) + .debug_info 0x0010882f 0x167e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) + .debug_info 0x00109ead 0xf3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_ashrdi3.o) + .debug_info 0x00109fa0 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_divsf3.o) + .debug_info 0x0010a094 0xf4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_fixsfsi.o) -.debug_abbrev 0x00000000 0x1f99f - .debug_abbrev 0x00000000 0xb49 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - .debug_abbrev 0x00000b49 0x6be e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - .debug_abbrev 0x00001207 0x865 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) - .debug_abbrev 0x00001a6c 0x92b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) - .debug_abbrev 0x00002397 0xfc5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - .debug_abbrev 0x0000335c 0x9ce e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) - .debug_abbrev 0x00003d2a 0xd06 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - .debug_abbrev 0x00004a30 0xdb6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - .debug_abbrev 0x000057e6 0xc6d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - .debug_abbrev 0x00006453 0xb0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) - .debug_abbrev 0x00006503 0xf1f e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - .debug_abbrev 0x00007422 0xc18 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - .debug_abbrev 0x0000803a 0x1f6 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) - .debug_abbrev 0x00008230 0x366 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) - .debug_abbrev 0x00008596 0x228 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) - .debug_abbrev 0x000087be 0x264 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) - .debug_abbrev 0x00008a22 0x42 e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) - .debug_abbrev 0x00008a64 0x212 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) - .debug_abbrev 0x00008c76 0x1b2 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) - .debug_abbrev 0x00008e28 0x330 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - .debug_abbrev 0x00009158 0xb30 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - .debug_abbrev 0x00009c88 0x9a7 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) - .debug_abbrev 0x0000a62f 0xa73 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) - .debug_abbrev 0x0000b0a2 0x733 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - .debug_abbrev 0x0000b7d5 0x82f e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - .debug_abbrev 0x0000c004 0x772 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) - .debug_abbrev 0x0000c776 0x8ea e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - .debug_abbrev 0x0000d060 0x661 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) - .debug_abbrev 0x0000d6c1 0xca3 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) - .debug_abbrev 0x0000e364 0x7b8 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) - .debug_abbrev 0x0000eb1c 0x739 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) - .debug_abbrev 0x0000f255 0x89f e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - .debug_abbrev 0x0000faf4 0x898 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - .debug_abbrev 0x0001038c 0x6c6 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) - .debug_abbrev 0x00010a52 0x6ea e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - .debug_abbrev 0x0001113c 0x23d e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) - .debug_abbrev 0x00011379 0x14 e:\Arduino_project\wIoT\bin\core\core.a(cont.S.o) - .debug_abbrev 0x0001138d 0x13f e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) - .debug_abbrev 0x000114cc 0x19d e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) - .debug_abbrev 0x00011669 0x14f e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) - .debug_abbrev 0x000117b8 0x136 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) - .debug_abbrev 0x000118ee 0x16e e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) - .debug_abbrev 0x00011a5c 0x347 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) - .debug_abbrev 0x00011da3 0x214 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) - .debug_abbrev 0x00011fb7 0x43d e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) - .debug_abbrev 0x000123f4 0x39f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - .debug_abbrev 0x00012793 0x3b3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - .debug_abbrev 0x00012b46 0x468 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - .debug_abbrev 0x00012fae 0x253 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) - .debug_abbrev 0x00013201 0xbe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) - .debug_abbrev 0x000132bf 0x278 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - .debug_abbrev 0x00013537 0x493 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - .debug_abbrev 0x000139ca 0x370 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - .debug_abbrev 0x00013d3a 0x2e1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) - .debug_abbrev 0x0001401b 0x40b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .debug_abbrev 0x00014426 0x13a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) - .debug_abbrev 0x00014560 0x3b0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - .debug_abbrev 0x00014910 0x452 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) - .debug_abbrev 0x00014d62 0x390 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) - .debug_abbrev 0x000150f2 0x429 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) - .debug_abbrev 0x0001551b 0x38a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) - .debug_abbrev 0x000158a5 0x4ba C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - .debug_abbrev 0x00015d5f 0x387 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) - .debug_abbrev 0x000160e6 0x246 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) - .debug_abbrev 0x0001632c 0x420 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) - .debug_abbrev 0x0001674c 0x30f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) - .debug_abbrev 0x00016a5b 0x2d4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) - .debug_abbrev 0x00016d2f 0x34d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) - .debug_abbrev 0x0001707c 0x19f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) - .debug_abbrev 0x0001721b 0x202 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) - .debug_abbrev 0x0001741d 0x114 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) - .debug_abbrev 0x00017531 0x341 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) - .debug_abbrev 0x00017872 0x212 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) - .debug_abbrev 0x00017a84 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) - .debug_abbrev 0x00017b4c 0x98 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) - .debug_abbrev 0x00017be4 0x198 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) - .debug_abbrev 0x00017d7c 0x198 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) - .debug_abbrev 0x00017f14 0x76 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) - .debug_abbrev 0x00017f8a 0xc7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) - .debug_abbrev 0x00018051 0x8e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) - .debug_abbrev 0x000180df 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcpy.o) - .debug_abbrev 0x000180f3 0x9c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) - .debug_abbrev 0x0001818f 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memset.o) - .debug_abbrev 0x000181a3 0x288 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) - .debug_abbrev 0x0001842b 0x22f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) - .debug_abbrev 0x0001865a 0x237 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) - .debug_abbrev 0x00018891 0x1f5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) - .debug_abbrev 0x00018a86 0x72 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) - .debug_abbrev 0x00018af8 0x1c8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) - .debug_abbrev 0x00018cc0 0x1c6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) - .debug_abbrev 0x00018e86 0xc6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) - .debug_abbrev 0x00018f4c 0x72 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) - .debug_abbrev 0x00018fbe 0x83 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) - .debug_abbrev 0x00019041 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) - .debug_abbrev 0x00019055 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) - .debug_abbrev 0x00019069 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) - .debug_abbrev 0x0001907d 0x70 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) - .debug_abbrev 0x000190ed 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncpy.o) - .debug_abbrev 0x00019101 0xb2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) - .debug_abbrev 0x000191b3 0x88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) - .debug_abbrev 0x0001923b 0x38d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) - .debug_abbrev 0x000195c8 0x1db C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) - .debug_abbrev 0x000197a3 0x76 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) - .debug_abbrev 0x00019819 0x76 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) - .debug_abbrev 0x0001988f 0x10a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) - .debug_abbrev 0x00019999 0x1f0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) - .debug_abbrev 0x00019b89 0x1d2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) - .debug_abbrev 0x00019d5b 0x4e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) - .debug_abbrev 0x00019da9 0x2cd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) - .debug_abbrev 0x0001a076 0x2ff C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) - .debug_abbrev 0x0001a375 0x18c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) - .debug_abbrev 0x0001a501 0x2fd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) - .debug_abbrev 0x0001a7fe 0x150 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) - .debug_abbrev 0x0001a94e 0x15b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) - .debug_abbrev 0x0001aaa9 0x25f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) - .debug_abbrev 0x0001ad08 0xab C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) - .debug_abbrev 0x0001adb3 0x30e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) - .debug_abbrev 0x0001b0c1 0x2a3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) - .debug_abbrev 0x0001b364 0x303 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) - .debug_abbrev 0x0001b667 0x1f5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) - .debug_abbrev 0x0001b85c 0x20e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) - .debug_abbrev 0x0001ba6a 0x1dd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) - .debug_abbrev 0x0001bc47 0x87 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) - .debug_abbrev 0x0001bcce 0x244 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) - .debug_abbrev 0x0001bf12 0x263 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) - .debug_abbrev 0x0001c175 0x232 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) - .debug_abbrev 0x0001c3a7 0x213 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) - .debug_abbrev 0x0001c5ba 0x1e5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) - .debug_abbrev 0x0001c79f 0x1d7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) - .debug_abbrev 0x0001c976 0x1cd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) - .debug_abbrev 0x0001cb43 0x194 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) - .debug_abbrev 0x0001ccd7 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_modsi3.o) - .debug_abbrev 0x0001cceb 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_mulsf3.o) - .debug_abbrev 0x0001ccff 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpsf2.o) - .debug_abbrev 0x0001cd13 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpdf2.o) - .debug_abbrev 0x0001cd27 0xb50 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) - .debug_abbrev 0x0001d877 0xbca e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) - .debug_abbrev 0x0001e441 0x32a e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) - .debug_abbrev 0x0001e76b 0x2de e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) - .debug_abbrev 0x0001ea49 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libhal.a(int_asm--set_intclear.o) - .debug_abbrev 0x0001ea5d 0x403 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) - .debug_abbrev 0x0001ee60 0x2d5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) - .debug_abbrev 0x0001f135 0x4b3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) - .debug_abbrev 0x0001f5e8 0x37b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) - .debug_abbrev 0x0001f963 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_ashrdi3.o) - .debug_abbrev 0x0001f977 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_divsf3.o) - .debug_abbrev 0x0001f98b 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_fixsfsi.o) +.debug_abbrev 0x00000000 0x1fa26 + .debug_abbrev 0x00000000 0xbd0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .debug_abbrev 0x00000bd0 0x6be e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + .debug_abbrev 0x0000128e 0x865 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + .debug_abbrev 0x00001af3 0x92b e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) + .debug_abbrev 0x0000241e 0xfc5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .debug_abbrev 0x000033e3 0x9ce e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + .debug_abbrev 0x00003db1 0xd06 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + .debug_abbrev 0x00004ab7 0xdb6 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + .debug_abbrev 0x0000586d 0xc6d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + .debug_abbrev 0x000064da 0xb0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) + .debug_abbrev 0x0000658a 0xf1f e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + .debug_abbrev 0x000074a9 0xc18 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + .debug_abbrev 0x000080c1 0x1f6 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) + .debug_abbrev 0x000082b7 0x366 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + .debug_abbrev 0x0000861d 0x228 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + .debug_abbrev 0x00008845 0x264 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) + .debug_abbrev 0x00008aa9 0x42 e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) + .debug_abbrev 0x00008aeb 0x212 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) + .debug_abbrev 0x00008cfd 0x1b2 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) + .debug_abbrev 0x00008eaf 0x330 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + .debug_abbrev 0x000091df 0xb30 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + .debug_abbrev 0x00009d0f 0x9a7 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) + .debug_abbrev 0x0000a6b6 0xa73 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) + .debug_abbrev 0x0000b129 0x733 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + .debug_abbrev 0x0000b85c 0x82f e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + .debug_abbrev 0x0000c08b 0x772 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + .debug_abbrev 0x0000c7fd 0x8ea e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + .debug_abbrev 0x0000d0e7 0x661 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + .debug_abbrev 0x0000d748 0xca3 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + .debug_abbrev 0x0000e3eb 0x7b8 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + .debug_abbrev 0x0000eba3 0x739 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + .debug_abbrev 0x0000f2dc 0x89f e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + .debug_abbrev 0x0000fb7b 0x898 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + .debug_abbrev 0x00010413 0x6c6 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + .debug_abbrev 0x00010ad9 0x6ea e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + .debug_abbrev 0x000111c3 0x23d e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + .debug_abbrev 0x00011400 0x14 e:\Arduino_project\wIoT\bin\core\core.a(cont.S.o) + .debug_abbrev 0x00011414 0x13f e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + .debug_abbrev 0x00011553 0x19d e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) + .debug_abbrev 0x000116f0 0x14f e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) + .debug_abbrev 0x0001183f 0x136 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) + .debug_abbrev 0x00011975 0x16e e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) + .debug_abbrev 0x00011ae3 0x347 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + .debug_abbrev 0x00011e2a 0x214 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) + .debug_abbrev 0x0001203e 0x43d e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) + .debug_abbrev 0x0001247b 0x39f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + .debug_abbrev 0x0001281a 0x3b3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + .debug_abbrev 0x00012bcd 0x468 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + .debug_abbrev 0x00013035 0x253 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + .debug_abbrev 0x00013288 0xbe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) + .debug_abbrev 0x00013346 0x278 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + .debug_abbrev 0x000135be 0x493 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + .debug_abbrev 0x00013a51 0x370 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + .debug_abbrev 0x00013dc1 0x2e1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + .debug_abbrev 0x000140a2 0x40b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .debug_abbrev 0x000144ad 0x13a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + .debug_abbrev 0x000145e7 0x3b0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + .debug_abbrev 0x00014997 0x452 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + .debug_abbrev 0x00014de9 0x390 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + .debug_abbrev 0x00015179 0x429 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + .debug_abbrev 0x000155a2 0x38a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + .debug_abbrev 0x0001592c 0x4ba C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + .debug_abbrev 0x00015de6 0x387 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + .debug_abbrev 0x0001616d 0x246 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + .debug_abbrev 0x000163b3 0x420 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + .debug_abbrev 0x000167d3 0x30f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + .debug_abbrev 0x00016ae2 0x2d4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + .debug_abbrev 0x00016db6 0x34d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + .debug_abbrev 0x00017103 0x19f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + .debug_abbrev 0x000172a2 0x202 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + .debug_abbrev 0x000174a4 0x114 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) + .debug_abbrev 0x000175b8 0x341 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + .debug_abbrev 0x000178f9 0x212 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) + .debug_abbrev 0x00017b0b 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) + .debug_abbrev 0x00017bd3 0x98 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) + .debug_abbrev 0x00017c6b 0x198 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) + .debug_abbrev 0x00017e03 0x198 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) + .debug_abbrev 0x00017f9b 0x76 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) + .debug_abbrev 0x00018011 0xc7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) + .debug_abbrev 0x000180d8 0x8e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) + .debug_abbrev 0x00018166 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcpy.o) + .debug_abbrev 0x0001817a 0x9c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) + .debug_abbrev 0x00018216 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memset.o) + .debug_abbrev 0x0001822a 0x288 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + .debug_abbrev 0x000184b2 0x22f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + .debug_abbrev 0x000186e1 0x237 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) + .debug_abbrev 0x00018918 0x1f5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) + .debug_abbrev 0x00018b0d 0x72 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) + .debug_abbrev 0x00018b7f 0x1c8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) + .debug_abbrev 0x00018d47 0x1c6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) + .debug_abbrev 0x00018f0d 0xc6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) + .debug_abbrev 0x00018fd3 0x72 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) + .debug_abbrev 0x00019045 0x83 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) + .debug_abbrev 0x000190c8 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) + .debug_abbrev 0x000190dc 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) + .debug_abbrev 0x000190f0 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) + .debug_abbrev 0x00019104 0x70 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) + .debug_abbrev 0x00019174 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncpy.o) + .debug_abbrev 0x00019188 0xb2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) + .debug_abbrev 0x0001923a 0x88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) + .debug_abbrev 0x000192c2 0x38d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + .debug_abbrev 0x0001964f 0x1db C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) + .debug_abbrev 0x0001982a 0x76 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) + .debug_abbrev 0x000198a0 0x76 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) + .debug_abbrev 0x00019916 0x10a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) + .debug_abbrev 0x00019a20 0x1f0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) + .debug_abbrev 0x00019c10 0x1d2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) + .debug_abbrev 0x00019de2 0x4e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) + .debug_abbrev 0x00019e30 0x2cd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + .debug_abbrev 0x0001a0fd 0x2ff C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + .debug_abbrev 0x0001a3fc 0x18c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) + .debug_abbrev 0x0001a588 0x2fd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) + .debug_abbrev 0x0001a885 0x150 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) + .debug_abbrev 0x0001a9d5 0x15b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) + .debug_abbrev 0x0001ab30 0x25f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) + .debug_abbrev 0x0001ad8f 0xab C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) + .debug_abbrev 0x0001ae3a 0x30e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + .debug_abbrev 0x0001b148 0x2a3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) + .debug_abbrev 0x0001b3eb 0x303 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) + .debug_abbrev 0x0001b6ee 0x1f5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) + .debug_abbrev 0x0001b8e3 0x20e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) + .debug_abbrev 0x0001baf1 0x1dd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) + .debug_abbrev 0x0001bcce 0x87 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) + .debug_abbrev 0x0001bd55 0x244 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) + .debug_abbrev 0x0001bf99 0x263 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) + .debug_abbrev 0x0001c1fc 0x232 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) + .debug_abbrev 0x0001c42e 0x213 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) + .debug_abbrev 0x0001c641 0x1e5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) + .debug_abbrev 0x0001c826 0x1d7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) + .debug_abbrev 0x0001c9fd 0x1cd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) + .debug_abbrev 0x0001cbca 0x194 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) + .debug_abbrev 0x0001cd5e 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_modsi3.o) + .debug_abbrev 0x0001cd72 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_mulsf3.o) + .debug_abbrev 0x0001cd86 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpsf2.o) + .debug_abbrev 0x0001cd9a 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpdf2.o) + .debug_abbrev 0x0001cdae 0xb50 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + .debug_abbrev 0x0001d8fe 0xbca e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) + .debug_abbrev 0x0001e4c8 0x32a e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + .debug_abbrev 0x0001e7f2 0x2de e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) + .debug_abbrev 0x0001ead0 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libhal.a(int_asm--set_intclear.o) + .debug_abbrev 0x0001eae4 0x403 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) + .debug_abbrev 0x0001eee7 0x2d5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) + .debug_abbrev 0x0001f1bc 0x4b3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) + .debug_abbrev 0x0001f66f 0x37b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) + .debug_abbrev 0x0001f9ea 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_ashrdi3.o) + .debug_abbrev 0x0001f9fe 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_divsf3.o) + .debug_abbrev 0x0001fa12 0x14 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_fixsfsi.o) -.debug_loc 0x00000000 0x44d62 - .debug_loc 0x00000000 0x1ed e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - .debug_loc 0x000001ed 0x21e e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - .debug_loc 0x0000040b 0xdd e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) - .debug_loc 0x000004e8 0x53e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) - .debug_loc 0x00000a26 0x6862 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - .debug_loc 0x00007288 0xb3e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) - .debug_loc 0x00007dc6 0x26ec e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - .debug_loc 0x0000a4b2 0x3956 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - .debug_loc 0x0000de08 0x3dc5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - .debug_loc 0x00011bcd 0x2eca e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - .debug_loc 0x00014a97 0xa98 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - .debug_loc 0x0001552f 0xb3 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) - .debug_loc 0x000155e2 0x822 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) - .debug_loc 0x00015e04 0x2d2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) - .debug_loc 0x000160d6 0x395 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) - .debug_loc 0x0001646b 0x3eb e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) - .debug_loc 0x00016856 0x593 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) - .debug_loc 0x00016de9 0x71f e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - .debug_loc 0x00017508 0xf24 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - .debug_loc 0x0001842c 0xdb0 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) - .debug_loc 0x000191dc 0xa38 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) - .debug_loc 0x00019c14 0x49b e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - .debug_loc 0x0001a0af 0x350 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - .debug_loc 0x0001a3ff 0x4ca e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) - .debug_loc 0x0001a8c9 0x1417 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - .debug_loc 0x0001bce0 0x284 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) - .debug_loc 0x0001bf64 0x100b e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) - .debug_loc 0x0001cf6f 0xa5d e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) - .debug_loc 0x0001d9cc 0x3b8 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) - .debug_loc 0x0001dd84 0x9e9 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - .debug_loc 0x0001e76d 0x247d e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - .debug_loc 0x00020bea 0x1ad e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) - .debug_loc 0x00020d97 0x94 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - .debug_loc 0x00020e2b 0xdad e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) - .debug_loc 0x00021bd8 0x46 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) - .debug_loc 0x00021c1e 0x162 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) - .debug_loc 0x00021d80 0x1ed e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) - .debug_loc 0x00021f6d 0x56e e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) - .debug_loc 0x000224db 0x126 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) - .debug_loc 0x00022601 0x5a2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) - .debug_loc 0x00022ba3 0x2af e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) - .debug_loc 0x00022e52 0xddd e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) - .debug_loc 0x00023c2f 0x992 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - .debug_loc 0x000245c1 0x644 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - .debug_loc 0x00024c05 0x13cb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - .debug_loc 0x00025fd0 0x197 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) - .debug_loc 0x00026167 0x1a9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - .debug_loc 0x00026310 0x18f3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - .debug_loc 0x00027c03 0xb1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - .debug_loc 0x0002871f 0x32e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) - .debug_loc 0x00028a4d 0xfd6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .debug_loc 0x00029a23 0x611 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) - .debug_loc 0x0002a034 0x93e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - .debug_loc 0x0002a972 0x1abe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) - .debug_loc 0x0002c430 0xc21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) - .debug_loc 0x0002d051 0x1887 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) - .debug_loc 0x0002e8d8 0xae5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) - .debug_loc 0x0002f3bd 0x20c4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - .debug_loc 0x00031481 0xbd1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) - .debug_loc 0x00032052 0x56a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) - .debug_loc 0x000325bc 0x7a6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) - .debug_loc 0x00032d62 0xa30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) - .debug_loc 0x00033792 0x25f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) - .debug_loc 0x000339f1 0x4de C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) - .debug_loc 0x00033ecf 0x97 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) - .debug_loc 0x00033f66 0x871 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) - .debug_loc 0x000347d7 0x72d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) - .debug_loc 0x00034f04 0x1f8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) - .debug_loc 0x000350fc 0x86 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) - .debug_loc 0x00035182 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) - .debug_loc 0x000351a3 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) - .debug_loc 0x00035206 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) - .debug_loc 0x00035269 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) - .debug_loc 0x0003528a 0x14d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) - .debug_loc 0x000353d7 0x12d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) - .debug_loc 0x00035504 0x121 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) - .debug_loc 0x00035625 0x703 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) - .debug_loc 0x00035d28 0x5c0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) - .debug_loc 0x000362e8 0x4c1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) - .debug_loc 0x000367a9 0x97 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) - .debug_loc 0x00036840 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) - .debug_loc 0x00036861 0x1ad C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) - .debug_loc 0x00036a0e 0xe2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) - .debug_loc 0x00036af0 0x1c0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) - .debug_loc 0x00036cb0 0x75 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) - .debug_loc 0x00036d25 0x55 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) - .debug_loc 0x00036d7a 0x8c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) - .debug_loc 0x00036e06 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) - .debug_loc 0x00036ed6 0x6b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) - .debug_loc 0x00036f41 0x1377 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) - .debug_loc 0x000382b8 0x38d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) - .debug_loc 0x00038645 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) - .debug_loc 0x00038665 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) - .debug_loc 0x00038685 0x1e5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) - .debug_loc 0x0003886a 0x97 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) - .debug_loc 0x00038901 0x15e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) - .debug_loc 0x00038a5f 0x1882 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) - .debug_loc 0x0003a2e1 0x20a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) - .debug_loc 0x0003a4eb 0x14a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) - .debug_loc 0x0003a635 0xba0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) - .debug_loc 0x0003b1d5 0x345 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) - .debug_loc 0x0003b51a 0x12f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) - .debug_loc 0x0003b649 0x86 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) - .debug_loc 0x0003b6cf 0x1797 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) - .debug_loc 0x0003ce66 0x5d0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) - .debug_loc 0x0003d436 0x4f9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) - .debug_loc 0x0003d92f 0x231 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) - .debug_loc 0x0003db60 0x113 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) - .debug_loc 0x0003dc73 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) - .debug_loc 0x0003dcd0 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) - .debug_loc 0x0003dcf1 0xde C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) - .debug_loc 0x0003ddcf 0x26e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) - .debug_loc 0x0003e03d 0x20d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) - .debug_loc 0x0003e24a 0x4c3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) - .debug_loc 0x0003e70d 0xed C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) - .debug_loc 0x0003e7fa 0x18a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) - .debug_loc 0x0003e984 0x150 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) - .debug_loc 0x0003ead4 0x42 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) - .debug_loc 0x0003eb16 0x724 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) - .debug_loc 0x0003f23a 0x1222 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) - .debug_loc 0x0004045c 0x655 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) - .debug_loc 0x00040ab1 0x266 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) - .debug_loc 0x00040d17 0x16b2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) - .debug_loc 0x000423c9 0x6ae C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) - .debug_loc 0x00042a77 0x1953 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) - .debug_loc 0x000443ca 0x998 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) +.debug_loc 0x00000000 0x44f2a + .debug_loc 0x00000000 0x3b5 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .debug_loc 0x000003b5 0x21e e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + .debug_loc 0x000005d3 0xdd e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + .debug_loc 0x000006b0 0x53e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) + .debug_loc 0x00000bee 0x6862 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .debug_loc 0x00007450 0xb3e e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + .debug_loc 0x00007f8e 0x26ec e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + .debug_loc 0x0000a67a 0x3956 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + .debug_loc 0x0000dfd0 0x3dc5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + .debug_loc 0x00011d95 0x2eca e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + .debug_loc 0x00014c5f 0xa98 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + .debug_loc 0x000156f7 0xb3 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) + .debug_loc 0x000157aa 0x822 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + .debug_loc 0x00015fcc 0x2d2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + .debug_loc 0x0001629e 0x395 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) + .debug_loc 0x00016633 0x3eb e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) + .debug_loc 0x00016a1e 0x593 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) + .debug_loc 0x00016fb1 0x71f e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + .debug_loc 0x000176d0 0xf24 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + .debug_loc 0x000185f4 0xdb0 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) + .debug_loc 0x000193a4 0xa38 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) + .debug_loc 0x00019ddc 0x49b e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + .debug_loc 0x0001a277 0x350 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + .debug_loc 0x0001a5c7 0x4ca e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + .debug_loc 0x0001aa91 0x1417 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + .debug_loc 0x0001bea8 0x284 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + .debug_loc 0x0001c12c 0x100b e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + .debug_loc 0x0001d137 0xa5d e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + .debug_loc 0x0001db94 0x3b8 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + .debug_loc 0x0001df4c 0x9e9 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + .debug_loc 0x0001e935 0x247d e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + .debug_loc 0x00020db2 0x1ad e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + .debug_loc 0x00020f5f 0x94 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + .debug_loc 0x00020ff3 0xdad e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + .debug_loc 0x00021da0 0x46 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + .debug_loc 0x00021de6 0x162 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) + .debug_loc 0x00021f48 0x1ed e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) + .debug_loc 0x00022135 0x56e e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) + .debug_loc 0x000226a3 0x126 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) + .debug_loc 0x000227c9 0x5a2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + .debug_loc 0x00022d6b 0x2af e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) + .debug_loc 0x0002301a 0xddd e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) + .debug_loc 0x00023df7 0x992 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + .debug_loc 0x00024789 0x644 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + .debug_loc 0x00024dcd 0x13cb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + .debug_loc 0x00026198 0x197 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + .debug_loc 0x0002632f 0x1a9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + .debug_loc 0x000264d8 0x18f3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + .debug_loc 0x00027dcb 0xb1c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + .debug_loc 0x000288e7 0x32e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + .debug_loc 0x00028c15 0xfd6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .debug_loc 0x00029beb 0x611 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + .debug_loc 0x0002a1fc 0x93e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + .debug_loc 0x0002ab3a 0x1abe C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + .debug_loc 0x0002c5f8 0xc21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + .debug_loc 0x0002d219 0x1887 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + .debug_loc 0x0002eaa0 0xae5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + .debug_loc 0x0002f585 0x20c4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + .debug_loc 0x00031649 0xbd1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + .debug_loc 0x0003221a 0x56a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + .debug_loc 0x00032784 0x7a6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + .debug_loc 0x00032f2a 0xa30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + .debug_loc 0x0003395a 0x25f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + .debug_loc 0x00033bb9 0x4de C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + .debug_loc 0x00034097 0x97 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + .debug_loc 0x0003412e 0x871 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + .debug_loc 0x0003499f 0x72d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + .debug_loc 0x000350cc 0x1f8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) + .debug_loc 0x000352c4 0x86 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) + .debug_loc 0x0003534a 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) + .debug_loc 0x0003536b 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) + .debug_loc 0x000353ce 0x63 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) + .debug_loc 0x00035431 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) + .debug_loc 0x00035452 0x14d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) + .debug_loc 0x0003559f 0x12d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) + .debug_loc 0x000356cc 0x121 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) + .debug_loc 0x000357ed 0x703 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + .debug_loc 0x00035ef0 0x5c0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + .debug_loc 0x000364b0 0x4c1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) + .debug_loc 0x00036971 0x97 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) + .debug_loc 0x00036a08 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) + .debug_loc 0x00036a29 0x1ad C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) + .debug_loc 0x00036bd6 0xe2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) + .debug_loc 0x00036cb8 0x1c0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) + .debug_loc 0x00036e78 0x75 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) + .debug_loc 0x00036eed 0x55 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) + .debug_loc 0x00036f42 0x8c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) + .debug_loc 0x00036fce 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) + .debug_loc 0x0003709e 0x6b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) + .debug_loc 0x00037109 0x1377 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + .debug_loc 0x00038480 0x38d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) + .debug_loc 0x0003880d 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) + .debug_loc 0x0003882d 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) + .debug_loc 0x0003884d 0x1e5 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) + .debug_loc 0x00038a32 0x97 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) + .debug_loc 0x00038ac9 0x15e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) + .debug_loc 0x00038c27 0x1882 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + .debug_loc 0x0003a4a9 0x20a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + .debug_loc 0x0003a6b3 0x14a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) + .debug_loc 0x0003a7fd 0xba0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) + .debug_loc 0x0003b39d 0x345 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) + .debug_loc 0x0003b6e2 0x12f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) + .debug_loc 0x0003b811 0x86 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) + .debug_loc 0x0003b897 0x1797 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + .debug_loc 0x0003d02e 0x5d0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) + .debug_loc 0x0003d5fe 0x4f9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) + .debug_loc 0x0003daf7 0x231 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) + .debug_loc 0x0003dd28 0x113 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) + .debug_loc 0x0003de3b 0x5d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) + .debug_loc 0x0003de98 0x21 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) + .debug_loc 0x0003deb9 0xde C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) + .debug_loc 0x0003df97 0x26e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) + .debug_loc 0x0003e205 0x20d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) + .debug_loc 0x0003e412 0x4c3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) + .debug_loc 0x0003e8d5 0xed C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) + .debug_loc 0x0003e9c2 0x18a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) + .debug_loc 0x0003eb4c 0x150 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) + .debug_loc 0x0003ec9c 0x42 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) + .debug_loc 0x0003ecde 0x724 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + .debug_loc 0x0003f402 0x1222 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) + .debug_loc 0x00040624 0x655 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + .debug_loc 0x00040c79 0x266 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) + .debug_loc 0x00040edf 0x16b2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) + .debug_loc 0x00042591 0x6ae C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) + .debug_loc 0x00042c3f 0x1953 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) + .debug_loc 0x00044592 0x998 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) -.debug_aranges 0x00000000 0x3bb8 +.debug_aranges 0x00000000 0x3bd8 .debug_aranges - 0x00000000 0x78 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x00000000 0x98 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o .debug_aranges - 0x00000078 0x68 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + 0x00000098 0x68 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o .debug_aranges - 0x000000e0 0x28 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + 0x00000100 0x28 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) .debug_aranges - 0x00000108 0x60 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) + 0x00000128 0x60 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) .debug_aranges - 0x00000168 0x260 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + 0x00000188 0x260 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) .debug_aranges - 0x000003c8 0x118 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + 0x000003e8 0x118 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) .debug_aranges - 0x000004e0 0x280 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + 0x00000500 0x280 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) .debug_aranges - 0x00000760 0x278 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + 0x00000780 0x278 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) .debug_aranges - 0x000009d8 0x98 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + 0x000009f8 0x98 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) .debug_aranges - 0x00000a70 0x18 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) + 0x00000a90 0x18 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) .debug_aranges - 0x00000a88 0x170 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + 0x00000aa8 0x170 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o .debug_aranges - 0x00000bf8 0x68 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + 0x00000c18 0x68 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) .debug_aranges - 0x00000c60 0x50 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) + 0x00000c80 0x50 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) .debug_aranges - 0x00000cb0 0x58 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + 0x00000cd0 0x58 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) .debug_aranges - 0x00000d08 0x58 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + 0x00000d28 0x58 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) .debug_aranges - 0x00000d60 0x58 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) + 0x00000d80 0x58 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) .debug_aranges - 0x00000db8 0x20 e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) + 0x00000dd8 0x20 e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) .debug_aranges - 0x00000dd8 0x78 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) + 0x00000df8 0x78 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) .debug_aranges - 0x00000e50 0x48 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) + 0x00000e70 0x48 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) .debug_aranges - 0x00000e98 0x90 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + 0x00000eb8 0x90 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) .debug_aranges - 0x00000f28 0x1c0 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + 0x00000f48 0x1c0 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) .debug_aranges - 0x000010e8 0x138 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) + 0x00001108 0x138 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) .debug_aranges - 0x00001220 0x60 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) + 0x00001240 0x60 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) .debug_aranges - 0x00001280 0xb0 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + 0x000012a0 0xb0 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) .debug_aranges - 0x00001330 0x80 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + 0x00001350 0x80 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) .debug_aranges - 0x000013b0 0x60 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + 0x000013d0 0x60 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) .debug_aranges - 0x00001410 0x108 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + 0x00001430 0x108 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) .debug_aranges - 0x00001518 0x38 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + 0x00001538 0x38 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) .debug_aranges - 0x00001550 0xf8 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + 0x00001570 0xf8 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) .debug_aranges - 0x00001648 0xa8 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + 0x00001668 0xa8 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) .debug_aranges - 0x000016f0 0x50 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + 0x00001710 0x50 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) .debug_aranges - 0x00001740 0x88 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + 0x00001760 0x88 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) .debug_aranges - 0x000017c8 0x2c0 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + 0x000017e8 0x2c0 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) .debug_aranges - 0x00001a88 0xa0 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + 0x00001aa8 0xa0 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) .debug_aranges - 0x00001b28 0x78 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + 0x00001b48 0x78 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) .debug_aranges - 0x00001ba0 0x90 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + 0x00001bc0 0x90 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) .debug_aranges - 0x00001c30 0x20 e:\Arduino_project\wIoT\bin\core\core.a(cont.S.o) + 0x00001c50 0x20 e:\Arduino_project\wIoT\bin\core\core.a(cont.S.o) .debug_aranges - 0x00001c50 0x60 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + 0x00001c70 0x60 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) .debug_aranges - 0x00001cb0 0x40 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) + 0x00001cd0 0x40 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) .debug_aranges - 0x00001cf0 0x40 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) + 0x00001d10 0x40 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) .debug_aranges - 0x00001d30 0x38 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) + 0x00001d50 0x38 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) .debug_aranges - 0x00001d68 0x70 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) + 0x00001d88 0x70 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) .debug_aranges - 0x00001dd8 0x40 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + 0x00001df8 0x40 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) .debug_aranges - 0x00001e18 0x70 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) + 0x00001e38 0x70 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) .debug_aranges - 0x00001e88 0x100 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) + 0x00001ea8 0x100 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) .debug_aranges - 0x00001f88 0xe0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + 0x00001fa8 0xe0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) .debug_aranges - 0x00002068 0xb0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + 0x00002088 0xb0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) .debug_aranges - 0x00002118 0x98 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + 0x00002138 0x98 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) .debug_aranges - 0x000021b0 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + 0x000021d0 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) .debug_aranges - 0x000021d8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) + 0x000021f8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) .debug_aranges - 0x000021f8 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + 0x00002218 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) .debug_aranges - 0x00002248 0x190 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + 0x00002268 0x190 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) .debug_aranges - 0x000023d8 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + 0x000023f8 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) .debug_aranges - 0x00002440 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + 0x00002460 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) .debug_aranges - 0x000024a8 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + 0x000024c8 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) .debug_aranges - 0x00002500 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + 0x00002520 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) .debug_aranges - 0x00002548 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + 0x00002568 0xc8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) .debug_aranges - 0x00002610 0x118 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + 0x00002630 0x118 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) .debug_aranges - 0x00002728 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + 0x00002748 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) .debug_aranges - 0x000027b8 0xb0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + 0x000027d8 0xb0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) .debug_aranges - 0x00002868 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + 0x00002888 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) .debug_aranges - 0x000028b0 0xe8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + 0x000028d0 0xe8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) .debug_aranges - 0x00002998 0x78 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + 0x000029b8 0x78 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) .debug_aranges - 0x00002a10 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + 0x00002a30 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) .debug_aranges - 0x00002a58 0x88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + 0x00002a78 0x88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) .debug_aranges - 0x00002ae0 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + 0x00002b00 0x60 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) .debug_aranges - 0x00002b40 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + 0x00002b60 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) .debug_aranges - 0x00002b78 0xa0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + 0x00002b98 0xa0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) .debug_aranges - 0x00002c18 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + 0x00002c38 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) .debug_aranges - 0x00002c58 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + 0x00002c78 0x50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) .debug_aranges - 0x00002ca8 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) + 0x00002cc8 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) .debug_aranges - 0x00002cc0 0x80 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + 0x00002ce0 0x80 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) .debug_aranges - 0x00002d40 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) + 0x00002d60 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) .debug_aranges - 0x00002d80 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) + 0x00002da0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) .debug_aranges - 0x00002da0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) + 0x00002dc0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) .debug_aranges - 0x00002dc0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) + 0x00002de0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) .debug_aranges - 0x00002de0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) + 0x00002e00 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) .debug_aranges - 0x00002e00 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) + 0x00002e20 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) .debug_aranges - 0x00002e20 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) + 0x00002e40 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) .debug_aranges - 0x00002e40 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) + 0x00002e60 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) .debug_aranges - 0x00002e60 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcpy.o) + 0x00002e80 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcpy.o) .debug_aranges - 0x00002e80 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) + 0x00002ea0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) .debug_aranges - 0x00002ea0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memset.o) + 0x00002ec0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memset.o) .debug_aranges - 0x00002ec0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + 0x00002ee0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) .debug_aranges - 0x00002ee0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + 0x00002f00 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) .debug_aranges - 0x00002f00 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) + 0x00002f20 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) .debug_aranges - 0x00002f20 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) + 0x00002f40 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) .debug_aranges - 0x00002f40 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) + 0x00002f60 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) .debug_aranges - 0x00002f60 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) + 0x00002f80 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) .debug_aranges - 0x00002f80 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) + 0x00002fa0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) .debug_aranges - 0x00002fa0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) + 0x00002fc0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) .debug_aranges - 0x00002fc0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) + 0x00002fe0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) .debug_aranges - 0x00002fe0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) + 0x00003000 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) .debug_aranges - 0x00003000 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) + 0x00003020 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) .debug_aranges - 0x00003020 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) + 0x00003040 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) .debug_aranges - 0x00003040 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) + 0x00003060 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) .debug_aranges - 0x00003060 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) + 0x00003080 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) .debug_aranges - 0x00003080 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncpy.o) + 0x000030a0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncpy.o) .debug_aranges - 0x000030a0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) + 0x000030c0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) .debug_aranges - 0x000030c0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) + 0x000030e0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) .debug_aranges - 0x000030e0 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + 0x00003100 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) .debug_aranges - 0x00003108 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) + 0x00003128 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) .debug_aranges - 0x00003128 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) + 0x00003148 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) .debug_aranges - 0x00003148 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) + 0x00003168 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) .debug_aranges - 0x00003168 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) + 0x00003188 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) .debug_aranges - 0x00003188 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) + 0x000031a8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) .debug_aranges - 0x000031a8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) + 0x000031c8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) .debug_aranges - 0x000031c8 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) + 0x000031e8 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) .debug_aranges - 0x000031e0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + 0x00003200 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) .debug_aranges - 0x00003200 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + 0x00003220 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) .debug_aranges - 0x00003220 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) + 0x00003240 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) .debug_aranges - 0x00003240 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) + 0x00003260 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) .debug_aranges - 0x00003260 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) + 0x00003280 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) .debug_aranges - 0x00003280 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) + 0x000032a0 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) .debug_aranges - 0x00003298 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) + 0x000032b8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) .debug_aranges - 0x000032b8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) + 0x000032d8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) .debug_aranges - 0x000032d8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + 0x000032f8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) .debug_aranges - 0x000032f8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) + 0x00003318 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) .debug_aranges - 0x00003318 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) + 0x00003338 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) .debug_aranges - 0x00003338 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) + 0x00003358 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) .debug_aranges - 0x00003358 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) + 0x00003378 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) .debug_aranges - 0x00003378 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) + 0x00003398 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) .debug_aranges - 0x00003398 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) + 0x000033b8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) .debug_aranges - 0x000033b8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) + 0x000033d8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) .debug_aranges - 0x000033d8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) + 0x000033f8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) .debug_aranges - 0x000033f8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) + 0x00003418 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) .debug_aranges - 0x00003418 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) + 0x00003438 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) .debug_aranges - 0x00003438 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) + 0x00003458 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) .debug_aranges - 0x00003458 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) + 0x00003478 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) .debug_aranges - 0x00003478 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) + 0x00003498 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) .debug_aranges - 0x00003498 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) + 0x000034b8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) .debug_aranges - 0x000034b8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_modsi3.o) + 0x000034d8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_modsi3.o) .debug_aranges - 0x000034d8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_mulsf3.o) + 0x000034f8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_mulsf3.o) .debug_aranges - 0x000034f8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpsf2.o) + 0x00003518 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpsf2.o) .debug_aranges - 0x00003518 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpdf2.o) + 0x00003538 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpdf2.o) .debug_aranges - 0x00003538 0xd8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + 0x00003558 0xd8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) .debug_aranges - 0x00003610 0x108 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) + 0x00003630 0x108 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) .debug_aranges - 0x00003718 0x88 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + 0x00003738 0x88 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) .debug_aranges - 0x000037a0 0x40 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) + 0x000037c0 0x40 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) .debug_aranges - 0x000037e0 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libhal.a(int_asm--set_intclear.o) + 0x00003800 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libhal.a(int_asm--set_intclear.o) .debug_aranges - 0x00003800 0x170 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) + 0x00003820 0x170 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) .debug_aranges - 0x00003970 0x98 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) + 0x00003990 0x98 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) .debug_aranges - 0x00003a08 0xf8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) + 0x00003a28 0xf8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) .debug_aranges - 0x00003b00 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) + 0x00003b20 0x58 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) .debug_aranges - 0x00003b58 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_ashrdi3.o) + 0x00003b78 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_ashrdi3.o) .debug_aranges - 0x00003b78 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_divsf3.o) + 0x00003b98 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_divsf3.o) .debug_aranges - 0x00003b98 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_fixsfsi.o) + 0x00003bb8 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_fixsfsi.o) -.debug_ranges 0x00000000 0x8028 - .debug_ranges 0x00000000 0x108 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - .debug_ranges 0x00000108 0x70 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - .debug_ranges 0x00000178 0x70 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) - .debug_ranges 0x000001e8 0x118 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) - .debug_ranges 0x00000300 0x11b0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - .debug_ranges 0x000014b0 0x2c0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) - .debug_ranges 0x00001770 0x770 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - .debug_ranges 0x00001ee0 0x6d0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - .debug_ranges 0x000025b0 0x348 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - .debug_ranges 0x000028f8 0x8d8 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - .debug_ranges 0x000031d0 0x238 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - .debug_ranges 0x00003408 0x40 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) - .debug_ranges 0x00003448 0x80 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) - .debug_ranges 0x000034c8 0x48 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) - .debug_ranges 0x00003510 0x60 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) - .debug_ranges 0x00003570 0x10 e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) - .debug_ranges 0x00003580 0x68 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) - .debug_ranges 0x000035e8 0x50 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) - .debug_ranges 0x00003638 0xa0 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - .debug_ranges 0x000036d8 0x310 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - .debug_ranges 0x000039e8 0x238 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) - .debug_ranges 0x00003c20 0x2c8 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) - .debug_ranges 0x00003ee8 0x128 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - .debug_ranges 0x00004010 0x150 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - .debug_ranges 0x00004160 0xb0 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) - .debug_ranges 0x00004210 0x230 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - .debug_ranges 0x00004440 0x178 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) - .debug_ranges 0x000045b8 0x3e0 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) - .debug_ranges 0x00004998 0x128 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) - .debug_ranges 0x00004ac0 0x88 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) - .debug_ranges 0x00004b48 0x1d0 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - .debug_ranges 0x00004d18 0x728 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - .debug_ranges 0x00005440 0x1d0 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) - .debug_ranges 0x00005610 0xa0 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - .debug_ranges 0x000056b0 0x200 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) - .debug_ranges 0x000058b0 0x50 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) - .debug_ranges 0x00005900 0x60 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) - .debug_ranges 0x00005960 0x48 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) - .debug_ranges 0x000059a8 0x78 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) - .debug_ranges 0x00005a20 0x60 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) - .debug_ranges 0x00005a80 0x198 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) - .debug_ranges 0x00005c18 0x60 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) - .debug_ranges 0x00005c78 0x1e0 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) - .debug_ranges 0x00005e58 0x198 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - .debug_ranges 0x00005ff0 0x140 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - .debug_ranges 0x00006130 0x110 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - .debug_ranges 0x00006240 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) - .debug_ranges 0x00006258 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) - .debug_ranges 0x00006268 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - .debug_ranges 0x000062a8 0x270 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - .debug_ranges 0x00006518 0xd8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - .debug_ranges 0x000065f0 0x70 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) - .debug_ranges 0x00006660 0xe8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .debug_ranges 0x00006748 0x78 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) - .debug_ranges 0x000067c0 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - .debug_ranges 0x00006890 0x1e8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) - .debug_ranges 0x00006a78 0xb8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) - .debug_ranges 0x00006b30 0x180 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) - .debug_ranges 0x00006cb0 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) - .debug_ranges 0x00006d18 0x270 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - .debug_ranges 0x00006f88 0x100 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) - .debug_ranges 0x00007088 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) - .debug_ranges 0x000070c0 0xa8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) - .debug_ranges 0x00007168 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) - .debug_ranges 0x000071f8 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) - .debug_ranges 0x00007220 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) - .debug_ranges 0x000072b0 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) - .debug_ranges 0x000072e0 0x70 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) - .debug_ranges 0x00007350 0x88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) - .debug_ranges 0x000073d8 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) - .debug_ranges 0x00007408 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) - .debug_ranges 0x00007420 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) - .debug_ranges 0x000074f0 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) - .debug_ranges 0x00007538 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) - .debug_ranges 0x00007550 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) - .debug_ranges 0x00007568 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) - .debug_ranges 0x00007598 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) - .debug_ranges 0x000075b8 0x1e0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) - .debug_ranges 0x00007798 0x368 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) - .debug_ranges 0x00007b00 0x90 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) - .debug_ranges 0x00007b90 0x30 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) - .debug_ranges 0x00007bc0 0x178 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) - .debug_ranges 0x00007d38 0x148 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) - .debug_ranges 0x00007e80 0x160 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) - .debug_ranges 0x00007fe0 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) +.debug_ranges 0x00000000 0x80f0 + .debug_ranges 0x00000000 0x1d0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .debug_ranges 0x000001d0 0x70 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + .debug_ranges 0x00000240 0x70 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + .debug_ranges 0x000002b0 0x118 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) + .debug_ranges 0x000003c8 0x11b0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .debug_ranges 0x00001578 0x2c0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + .debug_ranges 0x00001838 0x770 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + .debug_ranges 0x00001fa8 0x6d0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + .debug_ranges 0x00002678 0x348 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + .debug_ranges 0x000029c0 0x8d8 e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + .debug_ranges 0x00003298 0x238 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + .debug_ranges 0x000034d0 0x40 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) + .debug_ranges 0x00003510 0x80 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + .debug_ranges 0x00003590 0x48 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + .debug_ranges 0x000035d8 0x60 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) + .debug_ranges 0x00003638 0x10 e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) + .debug_ranges 0x00003648 0x68 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) + .debug_ranges 0x000036b0 0x50 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) + .debug_ranges 0x00003700 0xa0 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + .debug_ranges 0x000037a0 0x310 e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + .debug_ranges 0x00003ab0 0x238 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) + .debug_ranges 0x00003ce8 0x2c8 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) + .debug_ranges 0x00003fb0 0x128 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + .debug_ranges 0x000040d8 0x150 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + .debug_ranges 0x00004228 0xb0 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + .debug_ranges 0x000042d8 0x230 e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + .debug_ranges 0x00004508 0x178 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + .debug_ranges 0x00004680 0x3e0 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + .debug_ranges 0x00004a60 0x128 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + .debug_ranges 0x00004b88 0x88 e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + .debug_ranges 0x00004c10 0x1d0 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + .debug_ranges 0x00004de0 0x728 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + .debug_ranges 0x00005508 0x1d0 e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + .debug_ranges 0x000056d8 0xa0 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + .debug_ranges 0x00005778 0x200 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + .debug_ranges 0x00005978 0x50 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + .debug_ranges 0x000059c8 0x60 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) + .debug_ranges 0x00005a28 0x48 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) + .debug_ranges 0x00005a70 0x78 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) + .debug_ranges 0x00005ae8 0x60 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) + .debug_ranges 0x00005b48 0x198 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + .debug_ranges 0x00005ce0 0x60 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) + .debug_ranges 0x00005d40 0x1e0 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) + .debug_ranges 0x00005f20 0x198 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + .debug_ranges 0x000060b8 0x140 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + .debug_ranges 0x000061f8 0x110 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + .debug_ranges 0x00006308 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + .debug_ranges 0x00006320 0x10 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) + .debug_ranges 0x00006330 0x40 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + .debug_ranges 0x00006370 0x270 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + .debug_ranges 0x000065e0 0xd8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + .debug_ranges 0x000066b8 0x70 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + .debug_ranges 0x00006728 0xe8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .debug_ranges 0x00006810 0x78 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + .debug_ranges 0x00006888 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + .debug_ranges 0x00006958 0x1e8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + .debug_ranges 0x00006b40 0xb8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + .debug_ranges 0x00006bf8 0x180 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + .debug_ranges 0x00006d78 0x68 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + .debug_ranges 0x00006de0 0x270 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + .debug_ranges 0x00007050 0x100 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + .debug_ranges 0x00007150 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + .debug_ranges 0x00007188 0xa8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + .debug_ranges 0x00007230 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + .debug_ranges 0x000072c0 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + .debug_ranges 0x000072e8 0x90 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + .debug_ranges 0x00007378 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + .debug_ranges 0x000073a8 0x70 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + .debug_ranges 0x00007418 0x88 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + .debug_ranges 0x000074a0 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) + .debug_ranges 0x000074d0 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) + .debug_ranges 0x000074e8 0xd0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + .debug_ranges 0x000075b8 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + .debug_ranges 0x00007600 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + .debug_ranges 0x00007618 0x18 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + .debug_ranges 0x00007630 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + .debug_ranges 0x00007660 0x20 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) + .debug_ranges 0x00007680 0x1e0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + .debug_ranges 0x00007860 0x368 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) + .debug_ranges 0x00007bc8 0x90 e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + .debug_ranges 0x00007c58 0x30 e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) + .debug_ranges 0x00007c88 0x178 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) + .debug_ranges 0x00007e00 0x148 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) + .debug_ranges 0x00007f48 0x160 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) + .debug_ranges 0x000080a8 0x48 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) -.debug_line 0x00000000 0x46b9e - .debug_line 0x00000000 0xef0 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - .debug_line 0x00000ef0 0xa3c e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o - .debug_line 0x0000192c 0xab8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) - .debug_line 0x000023e4 0xe2c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) - .debug_line 0x00003210 0x2ae5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - .debug_line 0x00005cf5 0x1446 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) - .debug_line 0x0000713b 0x2346 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) - .debug_line 0x00009481 0x2588 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) - .debug_line 0x0000ba09 0x1a47 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) - .debug_line 0x0000d450 0x9d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) - .debug_line 0x0000d4ed 0x2a5a e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o - .debug_line 0x0000ff47 0xfe0 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) - .debug_line 0x00010f27 0x360 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) - .debug_line 0x00011287 0x85c e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) - .debug_line 0x00011ae3 0x554 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) - .debug_line 0x00012037 0x8c3 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) - .debug_line 0x000128fa 0x8a e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) - .debug_line 0x00012984 0x444 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) - .debug_line 0x00012dc8 0x326 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) - .debug_line 0x000130ee 0x9b9 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) - .debug_line 0x00013aa7 0x13dd e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) - .debug_line 0x00014e84 0x10b4 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) - .debug_line 0x00015f38 0xc33 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) - .debug_line 0x00016b6b 0xb0b e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) - .debug_line 0x00017676 0xa83 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) - .debug_line 0x000180f9 0x9d5 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) - .debug_line 0x00018ace 0xf5f e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) - .debug_line 0x00019a2d 0x859 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) - .debug_line 0x0001a286 0xfe2 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) - .debug_line 0x0001b268 0xc88 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) - .debug_line 0x0001bef0 0x90b e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) - .debug_line 0x0001c7fb 0x107e e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) - .debug_line 0x0001d879 0x1e0b e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) - .debug_line 0x0001f684 0xa2d e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) - .debug_line 0x000200b1 0xa38 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) - .debug_line 0x00020ae9 0x7b7 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) - .debug_line 0x000212a0 0x1c3 e:\Arduino_project\wIoT\bin\core\core.a(cont.S.o) - .debug_line 0x00021463 0x410 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) - .debug_line 0x00021873 0x336 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) - .debug_line 0x00021ba9 0x346 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) - .debug_line 0x00021eef 0x48e e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) - .debug_line 0x0002237d 0x4bd e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) - .debug_line 0x0002283a 0x703 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) - .debug_line 0x00022f3d 0x449 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) - .debug_line 0x00023386 0x1127 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) - .debug_line 0x000244ad 0x92b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) - .debug_line 0x00024dd8 0x7f3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) - .debug_line 0x000255cb 0x1028 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) - .debug_line 0x000265f3 0x2db C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) - .debug_line 0x000268ce 0x16f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) - .debug_line 0x00026a3d 0x270 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) - .debug_line 0x00026cad 0x1832 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) - .debug_line 0x000284df 0x916 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) - .debug_line 0x00028df5 0x4db C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) - .debug_line 0x000292d0 0x165a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) - .debug_line 0x0002a92a 0x36d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) - .debug_line 0x0002ac97 0x89c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) - .debug_line 0x0002b533 0xe50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) - .debug_line 0x0002c383 0x993 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) - .debug_line 0x0002cd16 0x104a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) - .debug_line 0x0002dd60 0x927 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) - .debug_line 0x0002e687 0x15ba C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) - .debug_line 0x0002fc41 0x958 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) - .debug_line 0x00030599 0x4e2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) - .debug_line 0x00030a7b 0x8eb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) - .debug_line 0x00031366 0x740 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) - .debug_line 0x00031aa6 0x3f3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) - .debug_line 0x00031e99 0x74e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) - .debug_line 0x000325e7 0x1c3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) - .debug_line 0x000327aa 0x467 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) - .debug_line 0x00032c11 0x144 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) - .debug_line 0x00032d55 0x650 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) - .debug_line 0x000333a5 0x49a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) - .debug_line 0x0003383f 0x18d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) - .debug_line 0x000339cc 0xb4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) - .debug_line 0x00033a80 0x1e4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) - .debug_line 0x00033c64 0x1e3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) - .debug_line 0x00033e47 0xa8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) - .debug_line 0x00033eef 0xfb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) - .debug_line 0x00033fea 0x12f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) - .debug_line 0x00034119 0x354 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcpy.o) - .debug_line 0x0003446d 0x154 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) - .debug_line 0x000345c1 0x179 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memset.o) - .debug_line 0x0003473a 0x81b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) - .debug_line 0x00034f55 0x739 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) - .debug_line 0x0003568e 0x5c6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) - .debug_line 0x00035c54 0x263 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) - .debug_line 0x00035eb7 0x9f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) - .debug_line 0x00035f56 0x2e8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) - .debug_line 0x0003623e 0x2be C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) - .debug_line 0x000364fc 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) - .debug_line 0x000365d3 0xc4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) - .debug_line 0x00036697 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) - .debug_line 0x0003676e 0x283 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) - .debug_line 0x000369f1 0x17f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) - .debug_line 0x00036b70 0x12b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) - .debug_line 0x00036c9b 0x14d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) - .debug_line 0x00036de8 0x29a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncpy.o) - .debug_line 0x00037082 0xc6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) - .debug_line 0x00037148 0x153 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) - .debug_line 0x0003729b 0xe6c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) - .debug_line 0x00038107 0x37f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) - .debug_line 0x00038486 0xa8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) - .debug_line 0x0003852e 0xa8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) - .debug_line 0x000385d6 0x16d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) - .debug_line 0x00038743 0x22e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) - .debug_line 0x00038971 0x277 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) - .debug_line 0x00038be8 0x5f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) - .debug_line 0x00038c47 0x1004 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) - .debug_line 0x00039c4b 0x552 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) - .debug_line 0x0003a19d 0x284 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) - .debug_line 0x0003a421 0x7fd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) - .debug_line 0x0003ac1e 0x25a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) - .debug_line 0x0003ae78 0x15b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) - .debug_line 0x0003afd3 0x27e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) - .debug_line 0x0003b251 0x136 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) - .debug_line 0x0003b387 0xe3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) - .debug_line 0x0003c1c3 0x723 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) - .debug_line 0x0003c8e6 0x687 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) - .debug_line 0x0003cf6d 0x2a0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) - .debug_line 0x0003d20d 0x2e8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) - .debug_line 0x0003d4f5 0x2f2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) - .debug_line 0x0003d7e7 0xa1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) - .debug_line 0x0003d888 0x2ff C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) - .debug_line 0x0003db87 0x461 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) - .debug_line 0x0003dfe8 0x339 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) - .debug_line 0x0003e321 0x531 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) - .debug_line 0x0003e852 0x2ce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) - .debug_line 0x0003eb20 0x226 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) - .debug_line 0x0003ed46 0x233 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) - .debug_line 0x0003ef79 0x1ce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) - .debug_line 0x0003f147 0x11a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_modsi3.o) - .debug_line 0x0003f261 0x37f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_mulsf3.o) - .debug_line 0x0003f5e0 0x2fb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpsf2.o) - .debug_line 0x0003f8db 0x391 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpdf2.o) - .debug_line 0x0003fc6c 0xf91 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) - .debug_line 0x00040bfd 0x1709 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) - .debug_line 0x00042306 0xa4f e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) - .debug_line 0x00042d55 0x4ac e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) - .debug_line 0x00043201 0x8a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libhal.a(int_asm--set_intclear.o) - .debug_line 0x0004328b 0x1239 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) - .debug_line 0x000444c4 0x68c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) - .debug_line 0x00044b50 0x1443 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) - .debug_line 0x00045f93 0x723 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) - .debug_line 0x000466b6 0xba C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_ashrdi3.o) - .debug_line 0x00046770 0x319 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_divsf3.o) - .debug_line 0x00046a89 0x115 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_fixsfsi.o) +.debug_line 0x00000000 0x46daf + .debug_line 0x00000000 0x1101 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .debug_line 0x00001101 0xa3c e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o + .debug_line 0x00001b3d 0xab8 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + .debug_line 0x000025f5 0xe2c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) + .debug_line 0x00003421 0x2ae5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .debug_line 0x00005f06 0x1446 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + .debug_line 0x0000734c 0x2346 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + .debug_line 0x00009692 0x2588 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + .debug_line 0x0000bc1a 0x1a47 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + .debug_line 0x0000d661 0x9d e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) + .debug_line 0x0000d6fe 0x2a5a e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + .debug_line 0x00010158 0xfe0 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + .debug_line 0x00011138 0x360 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) + .debug_line 0x00011498 0x85c e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + .debug_line 0x00011cf4 0x554 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + .debug_line 0x00012248 0x8c3 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) + .debug_line 0x00012b0b 0x8a e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) + .debug_line 0x00012b95 0x444 e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) + .debug_line 0x00012fd9 0x326 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) + .debug_line 0x000132ff 0x9b9 e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + .debug_line 0x00013cb8 0x13dd e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + .debug_line 0x00015095 0x10b4 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) + .debug_line 0x00016149 0xc33 e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) + .debug_line 0x00016d7c 0xb0b e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + .debug_line 0x00017887 0xa83 e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + .debug_line 0x0001830a 0x9d5 e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + .debug_line 0x00018cdf 0xf5f e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + .debug_line 0x00019c3e 0x859 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + .debug_line 0x0001a497 0xfe2 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + .debug_line 0x0001b479 0xc88 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + .debug_line 0x0001c101 0x90b e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + .debug_line 0x0001ca0c 0x107e e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + .debug_line 0x0001da8a 0x1e0b e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + .debug_line 0x0001f895 0xa2d e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + .debug_line 0x000202c2 0xa38 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + .debug_line 0x00020cfa 0x7b7 e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + .debug_line 0x000214b1 0x1c3 e:\Arduino_project\wIoT\bin\core\core.a(cont.S.o) + .debug_line 0x00021674 0x410 e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + .debug_line 0x00021a84 0x336 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) + .debug_line 0x00021dba 0x346 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) + .debug_line 0x00022100 0x48e e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) + .debug_line 0x0002258e 0x4bd e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) + .debug_line 0x00022a4b 0x703 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + .debug_line 0x0002314e 0x449 e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) + .debug_line 0x00023597 0x1127 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) + .debug_line 0x000246be 0x92b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + .debug_line 0x00024fe9 0x7f3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + .debug_line 0x000257dc 0x1028 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + .debug_line 0x00026804 0x2db C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + .debug_line 0x00026adf 0x16f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) + .debug_line 0x00026c4e 0x270 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + .debug_line 0x00026ebe 0x1832 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + .debug_line 0x000286f0 0x916 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + .debug_line 0x00029006 0x4db C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + .debug_line 0x000294e1 0x165a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .debug_line 0x0002ab3b 0x36d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + .debug_line 0x0002aea8 0x89c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + .debug_line 0x0002b744 0xe50 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + .debug_line 0x0002c594 0x993 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + .debug_line 0x0002cf27 0x104a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + .debug_line 0x0002df71 0x927 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + .debug_line 0x0002e898 0x15ba C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + .debug_line 0x0002fe52 0x958 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + .debug_line 0x000307aa 0x4e2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + .debug_line 0x00030c8c 0x8eb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + .debug_line 0x00031577 0x740 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + .debug_line 0x00031cb7 0x3f3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + .debug_line 0x000320aa 0x74e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + .debug_line 0x000327f8 0x1c3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + .debug_line 0x000329bb 0x467 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + .debug_line 0x00032e22 0x144 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) + .debug_line 0x00032f66 0x650 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + .debug_line 0x000335b6 0x49a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) + .debug_line 0x00033a50 0x18d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) + .debug_line 0x00033bdd 0xb4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) + .debug_line 0x00033c91 0x1e4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) + .debug_line 0x00033e75 0x1e3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) + .debug_line 0x00034058 0xa8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) + .debug_line 0x00034100 0xfb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) + .debug_line 0x000341fb 0x12f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) + .debug_line 0x0003432a 0x354 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcpy.o) + .debug_line 0x0003467e 0x154 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) + .debug_line 0x000347d2 0x179 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memset.o) + .debug_line 0x0003494b 0x81b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + .debug_line 0x00035166 0x739 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + .debug_line 0x0003589f 0x5c6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) + .debug_line 0x00035e65 0x263 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) + .debug_line 0x000360c8 0x9f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) + .debug_line 0x00036167 0x2e8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) + .debug_line 0x0003644f 0x2be C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) + .debug_line 0x0003670d 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) + .debug_line 0x000367e4 0xc4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) + .debug_line 0x000368a8 0xd7 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) + .debug_line 0x0003697f 0x283 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcmp.o) + .debug_line 0x00036c02 0x17f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcpy.o) + .debug_line 0x00036d81 0x12b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strlen.o) + .debug_line 0x00036eac 0x14d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) + .debug_line 0x00036ff9 0x29a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncpy.o) + .debug_line 0x00037293 0xc6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) + .debug_line 0x00037359 0x153 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) + .debug_line 0x000374ac 0xe6c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + .debug_line 0x00038318 0x37f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) + .debug_line 0x00038697 0xa8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) + .debug_line 0x0003873f 0xa8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) + .debug_line 0x000387e7 0x16d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) + .debug_line 0x00038954 0x22e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) + .debug_line 0x00038b82 0x277 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) + .debug_line 0x00038df9 0x5f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) + .debug_line 0x00038e58 0x1004 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + .debug_line 0x00039e5c 0x552 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + .debug_line 0x0003a3ae 0x284 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) + .debug_line 0x0003a632 0x7fd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) + .debug_line 0x0003ae2f 0x25a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) + .debug_line 0x0003b089 0x15b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) + .debug_line 0x0003b1e4 0x27e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) + .debug_line 0x0003b462 0x136 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) + .debug_line 0x0003b598 0xe3c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + .debug_line 0x0003c3d4 0x723 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) + .debug_line 0x0003caf7 0x687 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) + .debug_line 0x0003d17e 0x2a0 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) + .debug_line 0x0003d41e 0x2e8 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) + .debug_line 0x0003d706 0x2f2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) + .debug_line 0x0003d9f8 0xa1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) + .debug_line 0x0003da99 0x2ff C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) + .debug_line 0x0003dd98 0x461 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) + .debug_line 0x0003e1f9 0x339 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) + .debug_line 0x0003e532 0x531 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) + .debug_line 0x0003ea63 0x2ce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) + .debug_line 0x0003ed31 0x226 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) + .debug_line 0x0003ef57 0x233 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) + .debug_line 0x0003f18a 0x1ce C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) + .debug_line 0x0003f358 0x11a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_modsi3.o) + .debug_line 0x0003f472 0x37f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_mulsf3.o) + .debug_line 0x0003f7f1 0x2fb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpsf2.o) + .debug_line 0x0003faec 0x391 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_cmpdf2.o) + .debug_line 0x0003fe7d 0xf91 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + .debug_line 0x00040e0e 0x1709 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) + .debug_line 0x00042517 0xa4f e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + .debug_line 0x00042f66 0x4ac e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) + .debug_line 0x00043412 0x8a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libhal.a(int_asm--set_intclear.o) + .debug_line 0x0004349c 0x1239 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) + .debug_line 0x000446d5 0x68c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) + .debug_line 0x00044d61 0x1443 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) + .debug_line 0x000461a4 0x723 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) + .debug_line 0x000468c7 0xba C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_ashrdi3.o) + .debug_line 0x00046981 0x319 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_divsf3.o) + .debug_line 0x00046c9a 0x115 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libgcc.a(_fixsfsi.o) -.debug_str 0x00000000 0x2f94f - .debug_str 0x00000000 0x5733 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o - 0x5e3b (size before relaxing) - .debug_str 0x00005733 0x154 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o +.debug_str 0x00000000 0x2f9d1 + .debug_str 0x00000000 0x5806 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + 0x5f1a (size before relaxing) + .debug_str 0x00005806 0x154 e:\Arduino_project\wIoT\bin\libraries\EEPROM\EEPROM.cpp.o 0x1cab (size before relaxing) - .debug_str 0x00005887 0x2fe e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) + .debug_str 0x0000595a 0x2d5 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFi.cpp.o) 0x47d0 (size before relaxing) - .debug_str 0x00005b85 0x389 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) + .debug_str 0x00005c2f 0x389 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiAP.cpp.o) 0x4878 (size before relaxing) - .debug_str 0x00005f0e 0xca66 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) + .debug_str 0x00005fb8 0xca4c e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0x1229e (size before relaxing) - .debug_str 0x00012974 0x3f0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) + .debug_str 0x00012a04 0x3f0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiSTA.cpp.o) 0x4bd0 (size before relaxing) - .debug_str 0x00012d64 0x2d61 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) + .debug_str 0x00012df4 0x2d61 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiClient.cpp.o) 0x7642 (size before relaxing) - .debug_str 0x00015ac5 0x31fd e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) + .debug_str 0x00015b55 0x3202 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(ESP8266WebServer.cpp.o) 0x6ccb (size before relaxing) - .debug_str 0x00018cc2 0xf92 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) + .debug_str 0x00018d57 0xf92 e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(Parsing.cpp.o) 0x51a2 (size before relaxing) - .debug_str 0x00019c54 0x6e e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) + .debug_str 0x00019ce9 0x6e e:\Arduino_project\wIoT\bin\libraries\ESP8266WebServer\ESP8266WebServer.a(mimetable.cpp.o) 0x27f (size before relaxing) - .debug_str 0x00019cc2 0x2a4b e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o + .debug_str 0x00019d57 0x2a4b e:\Arduino_project\wIoT\bin\libraries\ESP8266mDNS\ESP8266mDNS.cpp.o 0x8c33 (size before relaxing) - .debug_str 0x0001c70d 0x1855 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) + .debug_str 0x0001c7a2 0x1855 e:\Arduino_project\wIoT\bin\libraries\ESP8266HTTPUpdateServer\ESP8266HTTPUpdateServer.a(ESP8266HTTPUpdateServer.cpp.o) 0x5cb5 (size before relaxing) - .debug_str 0x0001df62 0x251 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) + .debug_str 0x0001dff7 0x251 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_phy.c.o) 0x38e (size before relaxing) - .debug_str 0x0001e1b3 0x3a7 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) + .debug_str 0x0001e248 0x3a7 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_postmortem.c.o) 0x5fb (size before relaxing) - .debug_str 0x0001e55a 0x1c7 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) + .debug_str 0x0001e5ef 0x1c7 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring.c.o) 0x431 (size before relaxing) - .debug_str 0x0001e721 0x1d2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) + .debug_str 0x0001e7b6 0x1d2 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_wiring_digital.c.o) 0x42d (size before relaxing) - .debug_str 0x0001e8f3 0x60 e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) + .debug_str 0x0001e988 0x60 e:\Arduino_project\wIoT\bin\core\core.a(gdb_hooks.c.o) 0x1c3 (size before relaxing) - .debug_str 0x0001e953 0x10e e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) + .debug_str 0x0001e9e8 0x10e e:\Arduino_project\wIoT\bin\core\core.a(heap.c.o) 0x6b1 (size before relaxing) - .debug_str 0x0001ea61 0x188 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) + .debug_str 0x0001eaf6 0x188 e:\Arduino_project\wIoT\bin\core\core.a(cencode.c.o) 0x244 (size before relaxing) - .debug_str 0x0001ebe9 0x28d e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) + .debug_str 0x0001ec7e 0x28d e:\Arduino_project\wIoT\bin\core\core.a(umm_malloc.c.o) 0x4f0 (size before relaxing) - .debug_str 0x0001ee76 0x60e e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) + .debug_str 0x0001ef0b 0x60e e:\Arduino_project\wIoT\bin\core\core.a(Esp.cpp.o) 0x4872 (size before relaxing) - .debug_str 0x0001f484 0x5d0 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) + .debug_str 0x0001f519 0x5d0 e:\Arduino_project\wIoT\bin\core\core.a(FS.cpp.o) 0x4051 (size before relaxing) - .debug_str 0x0001fa54 0x132d e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) + .debug_str 0x0001fae9 0x132d e:\Arduino_project\wIoT\bin\core\core.a(FunctionalInterrupt.cpp.o) 0x3773 (size before relaxing) - .debug_str 0x00020d81 0x623 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) + .debug_str 0x00020e16 0x623 e:\Arduino_project\wIoT\bin\core\core.a(HardwareSerial.cpp.o) 0x22c4 (size before relaxing) - .debug_str 0x000213a4 0x23a e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) + .debug_str 0x00021439 0x23a e:\Arduino_project\wIoT\bin\core\core.a(IPAddress.cpp.o) 0x26c7 (size before relaxing) - .debug_str 0x000215de 0xcf e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) + .debug_str 0x00021673 0xcf e:\Arduino_project\wIoT\bin\core\core.a(MD5Builder.cpp.o) 0x25db (size before relaxing) - .debug_str 0x000216ad 0x35d e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) + .debug_str 0x00021742 0x34a e:\Arduino_project\wIoT\bin\core\core.a(Print.cpp.o) 0x27b4 (size before relaxing) - .debug_str 0x00021a0a 0x106 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) + .debug_str 0x00021a8c 0x106 e:\Arduino_project\wIoT\bin\core\core.a(Schedule.cpp.o) 0x153a (size before relaxing) - .debug_str 0x00021b10 0x53b3 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) + .debug_str 0x00021b92 0x53b3 e:\Arduino_project\wIoT\bin\core\core.a(ScheduledFunctions.cpp.o) 0x852a (size before relaxing) - .debug_str 0x00026ec3 0x341 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) + .debug_str 0x00026f45 0x341 e:\Arduino_project\wIoT\bin\core\core.a(Stream.cpp.o) 0x26f6 (size before relaxing) - .debug_str 0x00027204 0xfa e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) + .debug_str 0x00027286 0xfa e:\Arduino_project\wIoT\bin\core\core.a(StreamString.cpp.o) 0x242e (size before relaxing) - .debug_str 0x000272fe 0x1d2 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) + .debug_str 0x00027380 0x1d2 e:\Arduino_project\wIoT\bin\core\core.a(Updater.cpp.o) 0x35e5 (size before relaxing) - .debug_str 0x000274d0 0x327 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) + .debug_str 0x00027552 0x327 e:\Arduino_project\wIoT\bin\core\core.a(WString.cpp.o) 0x27a1 (size before relaxing) - .debug_str 0x000277f7 0x40c e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) + .debug_str 0x00027879 0x40c e:\Arduino_project\wIoT\bin\core\core.a(abi.cpp.o) 0x1e86 (size before relaxing) - .debug_str 0x00027c03 0x277 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) + .debug_str 0x00027c85 0x277 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_main.cpp.o) 0x1d61 (size before relaxing) - .debug_str 0x00027e7a 0x12c e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) + .debug_str 0x00027efc 0x12c e:\Arduino_project\wIoT\bin\core\core.a(pgmspace.cpp.o) 0x435 (size before relaxing) - .debug_str 0x00027fa6 0x11d e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) + .debug_str 0x00028028 0x11d e:\Arduino_project\wIoT\bin\core\core.a(StackThunk.c.o) 0x2bd (size before relaxing) - .debug_str 0x000280c3 0x79 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) + .debug_str 0x00028145 0x79 e:\Arduino_project\wIoT\bin\core\core.a(cont_util.c.o) 0x2e0 (size before relaxing) - .debug_str 0x0002813c 0xbe e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) + .debug_str 0x000281be 0xbe e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_eboot_command.c.o) 0x262 (size before relaxing) - .debug_str 0x000281fa 0x9d e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) + .debug_str 0x0002827c 0x9d e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_noniso.c.o) 0x255 (size before relaxing) - .debug_str 0x00028297 0x162 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) + .debug_str 0x00028319 0x162 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_timer.c.o) 0x3c3 (size before relaxing) - .debug_str 0x000283f9 0x1d9 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) + .debug_str 0x0002847b 0x1d9 e:\Arduino_project\wIoT\bin\core\core.a(core_esp8266_waveform.c.o) 0x4ac (size before relaxing) - .debug_str 0x000285d2 0x16b e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) + .debug_str 0x00028654 0x16b e:\Arduino_project\wIoT\bin\core\core.a(libc_replacements.c.o) 0x721 (size before relaxing) - .debug_str 0x0002873d 0x2c9 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) + .debug_str 0x000287bf 0x2c9 e:\Arduino_project\wIoT\bin\core\core.a(uart.c.o) 0x6e9 (size before relaxing) - .debug_str 0x00028a06 0x526 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) + .debug_str 0x00028a88 0x526 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-esp.o) 0x8a4 (size before relaxing) - .debug_str 0x00028f2c 0x2f2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) + .debug_str 0x00028fae 0x2f2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(lwip-git.o) 0xabd (size before relaxing) - .debug_str 0x0002921e 0x400 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) + .debug_str 0x000292a0 0x400 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(esp-dhcpserver.o) 0xc17 (size before relaxing) - .debug_str 0x0002961e 0x1fb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) + .debug_str 0x000296a0 0x1fb C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ethernet.o) 0x705 (size before relaxing) - .debug_str 0x00029819 0x61 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) + .debug_str 0x0002989b 0x61 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(init.o) 0x1fc (size before relaxing) - .debug_str 0x0002987a 0x112 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) + .debug_str 0x000298fc 0x112 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(memp.o) 0x43a (size before relaxing) - .debug_str 0x0002998c 0x5e3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) + .debug_str 0x00029a0e 0x5e3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp.o) 0xf63 (size before relaxing) - .debug_str 0x00029f6f 0x376 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) + .debug_str 0x00029ff1 0x376 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dns.o) 0x95f (size before relaxing) - .debug_str 0x0002a2e5 0x19a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) + .debug_str 0x0002a367 0x19a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(timeouts.o) 0x8ad (size before relaxing) - .debug_str 0x0002a47f 0x38a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) + .debug_str 0x0002a501 0x38a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_in.o) 0xe5e (size before relaxing) - .debug_str 0x0002a809 0x51 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) + .debug_str 0x0002a88b 0x51 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(def.o) 0x24f (size before relaxing) - .debug_str 0x0002a85a 0x216 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) + .debug_str 0x0002a8dc 0x216 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(netif.o) 0x85a (size before relaxing) - .debug_str 0x0002aa70 0x2ae C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) + .debug_str 0x0002aaf2 0x2ae C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(pbuf.o) 0xc10 (size before relaxing) - .debug_str 0x0002ad1e 0x171 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) + .debug_str 0x0002ada0 0x171 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(udp.o) 0x9fd (size before relaxing) - .debug_str 0x0002ae8f 0x21d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) + .debug_str 0x0002af11 0x21d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(tcp_out.o) 0xc87 (size before relaxing) - .debug_str 0x0002b0ac 0x241 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) + .debug_str 0x0002b12e 0x241 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_frag.o) 0x96b (size before relaxing) - .debug_str 0x0002b2ed 0x86d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) + .debug_str 0x0002b36f 0x86d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(dhcp.o) 0x117b (size before relaxing) - .debug_str 0x0002bb5a 0x2f6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) + .debug_str 0x0002bbdc 0x2f6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(etharp.o) 0xa92 (size before relaxing) - .debug_str 0x0002be50 0x6e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) + .debug_str 0x0002bed2 0x6e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4_addr.o) 0x52c (size before relaxing) - .debug_str 0x0002bebe 0x1b1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) + .debug_str 0x0002bf40 0x1b1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(igmp.o) 0x81c (size before relaxing) - .debug_str 0x0002c06f 0x14a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) + .debug_str 0x0002c0f1 0x14a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip4.o) 0xaba (size before relaxing) - .debug_str 0x0002c1b9 0x69 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) + .debug_str 0x0002c23b 0x69 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(icmp.o) 0x707 (size before relaxing) - .debug_str 0x0002c222 0x26e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) + .debug_str 0x0002c2a4 0x26e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(sntp.o) 0xac3 (size before relaxing) - .debug_str 0x0002c490 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) + .debug_str 0x0002c512 0x1b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(mem.o) 0x213 (size before relaxing) - .debug_str 0x0002c4ab 0xc9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) + .debug_str 0x0002c52d 0xc9 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(inet_chksum.o) 0x308 (size before relaxing) - .debug_str 0x0002c574 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) + .debug_str 0x0002c5f6 0xa C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(ip.o) 0x53d (size before relaxing) - .debug_str 0x0002c57e 0xe3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) + .debug_str 0x0002c600 0xe3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(raw.o) 0x8f2 (size before relaxing) - .debug_str 0x0002c661 0x1bd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) + .debug_str 0x0002c6e3 0x1bd C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\libstdc++.a(list.o) 0x3ec (size before relaxing) - .debug_str 0x0002c81e 0xc3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) + .debug_str 0x0002c8a0 0xc3 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libm.a(lib_a-s_fpclassify.o) 0x193 (size before relaxing) - .debug_str 0x0002c8e1 0x6f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) + .debug_str 0x0002c963 0x6f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atof.o) 0x144 (size before relaxing) - .debug_str 0x0002c950 0x3a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) + .debug_str 0x0002c9d2 0x3a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atoi.o) 0x505 (size before relaxing) - .debug_str 0x0002c98a 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) + .debug_str 0x0002ca0c 0x30 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-atol.o) 0x505 (size before relaxing) - .debug_str 0x0002c9ba 0x7e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) + .debug_str 0x0002ca3c 0x7e C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-isspace.o) 0xbb (size before relaxing) - .debug_str 0x0002ca38 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) + .debug_str 0x0002caba 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-itoa.o) 0x156 (size before relaxing) - .debug_str 0x0002ca75 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) + .debug_str 0x0002caf7 0x71 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memcmp.o) 0x141 (size before relaxing) - .debug_str 0x0002cae6 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) + .debug_str 0x0002cb68 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memmove.o) 0x15c (size before relaxing) - .debug_str 0x0002cb23 0x1b1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) + .debug_str 0x0002cba5 0x1b1 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_float.o) 0x838 (size before relaxing) - .debug_str 0x0002ccd4 0x6a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) + .debug_str 0x0002cd56 0x6a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf_i.o) 0x637 (size before relaxing) - .debug_str 0x0002cd3e 0xdf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) + .debug_str 0x0002cdc0 0xdf C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfscanf_float.o) 0x640 (size before relaxing) - .debug_str 0x0002ce1d 0x47 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) + .debug_str 0x0002ce9f 0x47 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-printf.o) 0x55d (size before relaxing) - .debug_str 0x0002ce64 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) + .debug_str 0x0002cee6 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sf_nan.o) 0x158 (size before relaxing) - .debug_str 0x0002ce8e 0x44 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) + .debug_str 0x0002cf10 0x44 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-snprintf.o) 0x568 (size before relaxing) - .debug_str 0x0002ced2 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) + .debug_str 0x0002cf54 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-sprintf.o) 0x559 (size before relaxing) - .debug_str 0x0002cf07 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) + .debug_str 0x0002cf89 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcasecmp.o) 0x15a (size before relaxing) - .debug_str 0x0002cf3f 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) + .debug_str 0x0002cfc1 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strcat.o) 0x13a (size before relaxing) - .debug_str 0x0002cf69 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) + .debug_str 0x0002cfeb 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strchr.o) 0x13a (size before relaxing) - .debug_str 0x0002cf93 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) + .debug_str 0x0002d015 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strncmp.o) 0x143 (size before relaxing) - .debug_str 0x0002cfbe 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) + .debug_str 0x0002d040 0x2b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strrchr.o) 0x148 (size before relaxing) - .debug_str 0x0002cfe9 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) + .debug_str 0x0002d06b 0x3b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strstr.o) 0x152 (size before relaxing) - .debug_str 0x0002d024 0x230 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) + .debug_str 0x0002d0a6 0x230 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtod.o) 0x920 (size before relaxing) - .debug_str 0x0002d254 0x44 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) + .debug_str 0x0002d2d6 0x44 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-strtol.o) 0x538 (size before relaxing) - .debug_str 0x0002d298 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) + .debug_str 0x0002d31a 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-tolower.o) 0xbb (size before relaxing) - .debug_str 0x0002d2c2 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) + .debug_str 0x0002d344 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-toupper.o) 0xbb (size before relaxing) - .debug_str 0x0002d2ec 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) + .debug_str 0x0002d36e 0x28 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-utoa.o) 0x160 (size before relaxing) - .debug_str 0x0002d314 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) + .debug_str 0x0002d396 0x35 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vprintf.o) 0x566 (size before relaxing) - .debug_str 0x0002d349 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) + .debug_str 0x0002d3cb 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-vsnprintf.o) 0x56b (size before relaxing) - .debug_str 0x0002d382 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) + .debug_str 0x0002d404 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-ctype_.o) 0xc3 (size before relaxing) - .debug_str 0x0002d3b3 0xd4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) + .debug_str 0x0002d435 0xd4 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-dtoa.o) 0x66b (size before relaxing) - .debug_str 0x0002d487 0x21a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) + .debug_str 0x0002d509 0x21a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-findfp.o) 0x742 (size before relaxing) - .debug_str 0x0002d6a1 0x37 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) + .debug_str 0x0002d723 0x37 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fwalk.o) 0x517 (size before relaxing) - .debug_str 0x0002d6d8 0xc2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) + .debug_str 0x0002d75a 0xc2 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-gethex.o) 0x88c (size before relaxing) - .debug_str 0x0002d79a 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) + .debug_str 0x0002d81c 0x38 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-gdtoa-hexnan.o) 0x274 (size before relaxing) - .debug_str 0x0002d7d2 0x7b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) + .debug_str 0x0002d854 0x7b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-impure.o) 0x551 (size before relaxing) - .debug_str 0x0002d84d 0x13c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) + .debug_str 0x0002d8cf 0x13c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-locale.o) 0x76f (size before relaxing) - .debug_str 0x0002d989 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) + .debug_str 0x0002da0b 0x2a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-memchr.o) 0x151 (size before relaxing) - .debug_str 0x0002d9b3 0x62 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) + .debug_str 0x0002da35 0x62 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-mprec.o) 0x625 (size before relaxing) - .debug_str 0x0002da15 0xab C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) + .debug_str 0x0002da97 0xab C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-svfprintf.o) 0x698 (size before relaxing) - .debug_str 0x0002dac0 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) + .debug_str 0x0002db42 0x67 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-nano-vfprintf.o) 0x743 (size before relaxing) - .debug_str 0x0002db27 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) + .debug_str 0x0002dba9 0x65 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-stdio.o) 0x56d (size before relaxing) - .debug_str 0x0002db8c 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) + .debug_str 0x0002dc0e 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wbuf.o) 0x575 (size before relaxing) - .debug_str 0x0002dbc5 0x36 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) + .debug_str 0x0002dc47 0x36 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wsetup.o) 0x570 (size before relaxing) - .debug_str 0x0002dbfb 0x98 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) + .debug_str 0x0002dc7d 0x98 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lock.o) 0xd5 (size before relaxing) - .debug_str 0x0002dc93 0x54 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) + .debug_str 0x0002dd15 0x54 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fclose.o) 0x5e4 (size before relaxing) - .debug_str 0x0002dce7 0x3a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) + .debug_str 0x0002dd69 0x3a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fflush.o) 0x5e1 (size before relaxing) - .debug_str 0x0002dd21 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) + .debug_str 0x0002dda3 0x3d C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fputwc.o) 0x5e1 (size before relaxing) - .debug_str 0x0002dd5e 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) + .debug_str 0x0002dde0 0x39 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-fvwrite.o) 0x5a4 (size before relaxing) - .debug_str 0x0002dd97 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) + .debug_str 0x0002de19 0x3f C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-makebuf.o) 0x614 (size before relaxing) - .debug_str 0x0002ddd6 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) + .debug_str 0x0002de58 0x34 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wcrtomb.o) 0x543 (size before relaxing) - .debug_str 0x0002de0a 0x4c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) + .debug_str 0x0002de8c 0x4c C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(lib_a-wctomb_r.o) 0x552 (size before relaxing) - .debug_str 0x0002de56 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) + .debug_str 0x0002ded8 0x31 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/libc/xtensa-lx106-elf/lib\libc.a(isatty.o) 0x5ed (size before relaxing) - .debug_str 0x0002de87 0x2dc e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) + .debug_str 0x0002df09 0x2dc e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiServer.cpp.o) 0x4898 (size before relaxing) - .debug_str 0x0002e163 0x576 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) + .debug_str 0x0002e1e5 0x576 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(WiFiUdp.cpp.o) 0x57aa (size before relaxing) - .debug_str 0x0002e6d9 0x24a e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) + .debug_str 0x0002e75b 0x24a e:\Arduino_project\wIoT\bin\core\core.a(sntp-lwip2.c.o) 0x58e (size before relaxing) - .debug_str 0x0002e923 0xfc e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) + .debug_str 0x0002e9a5 0xfc e:\Arduino_project\wIoT\bin\core\core.a(time.c.o) 0x73c (size before relaxing) - .debug_str 0x0002ea1f 0x885 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) + .debug_str 0x0002eaa1 0x885 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn.o) 0x11d9 (size before relaxing) - .debug_str 0x0002f2a4 0x12b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) + .debug_str 0x0002f326 0x12b C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_buf.o) 0x374 (size before relaxing) - .debug_str 0x0002f3cf 0x49a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) + .debug_str 0x0002f451 0x49a C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_tcp.o) 0x133c (size before relaxing) - .debug_str 0x0002f869 0xe6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) + .debug_str 0x0002f8eb 0xe6 C:\Users\lymia\Documents\Arduino\hardware\esp8266\esp8266/tools/sdk/lib\liblwip2-536-feat.a(espconn_udp.o) 0xb97 (size before relaxing) .comment 0x00000000 0x15c6 @@ -18383,17 +18439,17 @@ OUTPUT(e:\Arduino_project\wIoT\bin/wemos_D1_mini.ino.elf elf32-xtensa-le) .xt.prop._ZNSt14_Function_base13_Base_managerIPFvvEE10_M_managerERSt9_Any_dataRKS4_St18_Manager_operation 0x00000000 0x48 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o +.xt.prop._ZNSt14_Function_baseD2Ev + 0x00000000 0x24 + .xt.prop._ZNSt14_Function_baseD2Ev + 0x00000000 0x24 e:\Arduino_project\wIoT\bin\sketch\wemos_D1_mini.ino.cpp.o + .xt.lit._ZNSt10_List_baseISt10shared_ptrI22WiFiEventHandlerOpaqueESaIS2_EE8_M_clearEv 0x00000000 0x0 .xt.lit._ZNSt10_List_baseISt10shared_ptrI22WiFiEventHandlerOpaqueESaIS2_EE8_M_clearEv 0x00000000 0x0 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) 0x8 (size before relaxing) -.xt.prop._ZNSt14_Function_baseD2Ev - 0x00000000 0x24 - .xt.prop._ZNSt14_Function_baseD2Ev - 0x00000000 0x24 e:\Arduino_project\wIoT\bin\libraries\ESP8266WiFi\ESP8266WiFi.a(ESP8266WiFiGeneric.cpp.o) - .xt.prop._ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE0EED2Ev 0x00000000 0x24 .xt.prop._ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE0EED2Ev diff --git a/client/wemos_D1_mini/ap.html b/client/wemos_D1_mini/ap.html new file mode 100644 index 0000000..0a00187 --- /dev/null +++ b/client/wemos_D1_mini/ap.html @@ -0,0 +1,18 @@ + + +wIoT Config + + +

wIoT Client

+

MAC Address:

+

wIoT Version:

+
+

Please Input the SSID of your WIFI:

+
+

Please Input the Password of your WIFI:

+

+ +
+

You Only have ONE chance!! Please be Careful!!

+ + \ No newline at end of file diff --git a/client/wemos_D1_mini/wemos_D1_mini.ino b/client/wemos_D1_mini/wemos_D1_mini.ino index c66a4f6..952072b 100644 --- a/client/wemos_D1_mini/wemos_D1_mini.ino +++ b/client/wemos_D1_mini/wemos_D1_mini.ino @@ -1,3 +1,9 @@ +/* + * @Author: IoTcat (https://iotcat.me) + * @Date: 2019-05-02 22:17:45 + * @Last Modified by: + * @Last Modified time: 2019-05-03 00:20:51 + */ #define WIFI_STA_SSID "yimian-iot" #define WIFI_STA_PSK "1234567890." @@ -12,5 +18,3 @@ - - diff --git a/client/wemos_D1_mini/wiot.h b/client/wemos_D1_mini/wiot.h index 0090fe0..f0ba32d 100644 --- a/client/wemos_D1_mini/wiot.h +++ b/client/wemos_D1_mini/wiot.h @@ -1,3 +1,10 @@ +/* + * @Author: IoTcat (https://iotcat.me) + * @Date: 2019-05-02 21:20:48 + * @Last Modified by: + * @Last Modified time: 2019-05-03 00:12:37 + */ + #include #include #include @@ -18,11 +25,12 @@ const char* ssid = WIFI_STA_SSID; const char* password = WIFI_STA_PSK; +const char* wiot_version = "v0.0.1"; enum ModeType{AP, STA}; ModeType Mode; -void(* resetFunc) (void) = 0; +//void(* resetFunc) (void) = 0; /********** Web Server ***********/ ESP8266WebServer httpServer(WEB_PORT); @@ -30,7 +38,6 @@ ESP8266HTTPUpdateServer httpUpdater; - void serial_setup(){ Serial.begin(115200); @@ -45,6 +52,34 @@ void eeprom_setup(){ EEPROM.commit(); } +void eeprom_insertStr(int start, int end, const String& s){ +Serial.println("Write"); + const char *c = s.c_str(); + int i, t; + for(i = 0; c[i] != '\0' && i < end - start - 1; i++){ + + t = *(c+i); + EEPROM.write(start + i, t); + Serial.println(t); + } + EEPROM.write(start + i, 0x00); + EEPROM.commit(); +} + +String eeprom_readStr(int start, int end){ + + Serial.println("Read"); + int t[end-start]; + int i; + for(i = 0; i < end - start - 1; i++){ + + t[i] = EEPROM.read(start + i); + Serial.println(t[i]); + } + t[i] = 0; + + return ""; +} void wifi_setup(){ @@ -72,12 +107,22 @@ void wifi_setup(){ void http_ap_root(){ - String s = httpServer.arg("abc"); - if(s == "reset") resetFunc(); - httpServer.send(200, "text/html", "wIoT Config"+s+""); + httpServer.send(200, "text/html", "wIoT Config

wIoT Client

MAC Address: "+WiFi.macAddress()+"

wIoT Version: "+wiot_version+"

Please Input the SSID of your WIFI:


Please Input the Password of your WIFI:



You Only have ONE chance!! Please be Careful!!

"); } +void http_ap_cmd(){ + + String t_ssid = httpServer.arg("ssid"); + String t_psk = httpServer.arg("passwd"); + + eeprom_insertStr(255, 355, t_ssid); + eeprom_insertStr(355, 455, t_psk); + String s = eeprom_readStr(255,270); + //if(s == "reset") ESP.restart(); + httpServer.send(200, "text/html", "wIoT Config"+t_ssid+"||"+t_psk+"||"+s+""); +} + void http_setup(){ if(Mode == STA){ @@ -90,6 +135,7 @@ void http_setup(){ //MDNS.begin("wiot"); //MDNS.addService("http", "tcp", WEB_PORT); httpServer.on("/", http_ap_root); + httpServer.on("/cmd", http_ap_cmd); } //httpserver begin @@ -101,20 +147,37 @@ void http_setup(){ - +int address = 4000; +int value = 55; void setup() { serial_setup(); wifi_setup(); http_setup(); + + } void loop() { -httpServer.handleClient();/* +httpServer.handleClient(); + + EEPROM.write(address, 1+EEPROM.read(address)); + value = EEPROM.read(address); + EEPROM.commit(); +Serial.print(value,DEC); +Serial.print("\n"); +delay(1000); + + + + + + +/* EEPROM.write(0x01, 0x02); static String res = ""; static String to = "";