jerryscript-project / jerryscript

Ultra-lightweight JavaScript engine for the Internet of Things.
https://jerryscript.net
Apache License 2.0
6.92k stars 669 forks source link

Question: Ways to decrease the initial heap consumption? #1224

Closed slaff closed 7 years ago

slaff commented 8 years ago

I am trying to use JerryScript on ESP8266 device. This device has around 40K free. My app, without JerryScript compiled in it, has around 35032 bytes free heap. Just by adding JerryScript with CONFIG_MEM_HEAP_AREA_SIZE = 10K my free heap decreased to 8976 bytes. I tried to use all compact options and decrease the CONFIG_MEM_HEAP_AREA_SIZE to 4K and ended up with 14680 bytes free heap. Decreasing CONFIG_MEM_HEAP_AREA_SIZE further down did not bring any improvement. Which means that minimum initial heap usage from JerryScript for me was 35032 - 14680 = 20352 bytes.

My question is - are there other options to decrease the initial heap usage from JerryScript? Why JerryScript is reserving so much initial memory? Is it possible to decrease the initial heap size and expand it when it is needed?

zherczeg commented 8 years ago

There is a static property cache, which consumes 2K memory and can be disabled by CONFIG_ECMA_LCACHE_DISABLE. Also a there are some globals around 100 bytes. So in your configuration Jerry consumes around 12K. I have not idea about the rest of the memory consumption, perhaps your compiler does not support const arrays, and load them into the RAM instead of just keeping them in the ROM.

tilmannOSG commented 8 years ago

@slaff When running on an ARM Thumb-2 device our base footprint of JerryScript is at around ~3.5KB of RAM (when executing JerryScript on an empty .js file). I know the ESP8266 uses an Xtensa CPU but I would assume the memory consumption should be quite similar, did you get a chance to measure the base memory footprint with an empty .js file yet?

slaff commented 8 years ago

There is a static property cache, which consumes 2K memory and can be disabled by CONFIG_ECMA_LCACHE_DISABLE

@zherczeg Thanks for the hint. I will try it later and report if it worked for me.

on an ARM Thumb-2 device our base footprint of JerryScript is at around ~3.5KB of RAM (when executing JerryScript on an empty .js file).

@tilmannOSG I checked the heap before loading a file and after parsing and evaling a file and there was negligible difference in the heap usage.

I am compiling JerryScript core only and I am using the math library from microc/gcc. Is it recommended to use JerryScript's math (jerry-libm)?

Also I am compiling JerryScript core with the following Makefile. Can it be that I am doing something wrong here?

-include Makefile.local

TOOLCHAIN_PREFIX := xtensa-lx106-elf-
CC := $(TOOLCHAIN_PREFIX)gcc
AR := $(TOOLCHAIN_PREFIX)ar
LD := $(TOOLCHAIN_PREFIX)gcc
AR := $(TOOLCHAIN_PREFIX)ar
OBJCOPY := $(TOOLCHAIN_PREFIX)objcopy

XTENSA_LIBS ?= $(shell $(CC) -print-sysroot)
ifeq ($(XTENSA_LIBS),)
    XTENSA_LIBS = $(ESP_HOME)/xtensa-lx106-elf/
endif

BUILD_BASE  = out/build

SRC_DIR := jerry-core \
            jerry-core/ecma/base \
            jerry-core/ecma/builtin-objects \
            jerry-core/ecma/operations \
            jerry-core/jmem \
            jerry-core/jrt \
            jerry-core/lit \
            jerry-core/parser/js \
            jerry-core/parser/regexp \
            jerry-core/vm

SRC         := $(foreach sdir,$(SRC_DIR),$(wildcard $(sdir)/*.c*))
BUILD_DIR   := $(addprefix $(BUILD_BASE)/,$(SRC_DIR))
OBJ_FILES   := $(patsubst %.c,%.o,$(SRC))

INCDIR      := $(addprefix -I,$(SRC_DIR))

LDFLAGS  += -L$(XTENSA_LIBS)/lib \
            -L$(XTENSA_LIBS)/arch/lib \

CFLAGS+=-std=c99 -D__TARGET_ESP8266

# CFLAGS += -Wall -Os -g -O2 -Wpointer-arith -Wno-implicit-function-declaration -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mno-text-section-literals  -D__ets__ -DICACHE_FLASH

CFLAGS += -fno-builtin -fno-stack-protector -g -gdwarf-4 -Wall -Werror=all -Wextra -Werror=extra -Wformat-nonliteral -Werror=format-nonliteral -Winit-self -Werror=init-self -Wconversion -Werror=conversion -Wsign-conversion -Werror=sign-conversion -Wformat-security -Werror=format-security -Wmissing-declarations -Werror=missing-declarations -Wno-stack-protector -Wno-attributes -Wlogical-op -Werror=logical-op  -D__attr_always_inline___= -Wl,-EL -fno-inline-functions -ffunction-sections -fdata-sections -mlongcalls -mtext-section-literals -mno-serialize-volatile -pedantic -Os
#ifeq ($(COMPACT),"1")
    CFLAGS += -DCONFIG_ECMA_COMPACT_PROFILE
#endif 

CFLAGS += -DCONFIG_ECMA_NUMBER_TYPE=CONFIG_ECMA_NUMBER_FLOAT32 -DCONFIG_MEM_HEAP_AREA_SIZE=4096 \
          -DJERRY_ENABLE_SNAPSHOT_EXEC -DJERRY_ENABLE_SNAPSHOT_SAVE -DJERRY_NDEBUG -D_BSD_SOURCE \
          -D__TARGET_ESP8266 -D__attr_always_inline___=

CFLAGS += $(INCDIR) $(SDK_INCDIR)

BIN_DIR := bin
AXTLS_AR := $(BIN_DIR)/libjerrycore.a

V ?= $(VERBOSE)
ifeq ("$(V)","1")
Q :=
vecho := @true
else
Q := @
vecho := @echo
endif

all: patchjmp $(AXTLS_AR) $(BUILD_DIR)
rebuild: clean all

$(BUILD_DIR):
    $(Q) mkdir -p $@

$(AXTLS_AR): | $(BIN_DIR)

$(AXTLS_AR): $(OBJ_FILES)
    for file in $(OBJ_FILES); do \
        $(OBJCOPY) \
        --rename-section .text=.irom0.text \
        --rename-section .literal=.irom0.literal \
        $$file; \
    done
    $(AR) cru $@ $^

patchjmp: $(AXTLS_AR)
    $(Q) $(AR) x ${XTENSA_TOOLS_ROOT}/../xtensa-lx106-elf/sysroot/lib/libcirom.a lib_a-setjmp.o
    $(Q) $(AR) r ${AXTLS_AR} lib_a-setjmp.o
    $(Q) rm lib_a-setjmp.o

$(BIN_DIR):
    $(Q) mkdir -p $(BIN_DIR)

clean:
    $(Q) rm -rf $(OBJ_FILES) $(AXTLS_AR) $(BUILD_DIR)

.PHONY: all clean
tilmannOSG commented 8 years ago

@slaff Looking closer at the ESP8266 hardware I think what's happening is that some constant data ends up in the data memory (which could be offloaded to flash memory on an STM32F4 board). My understanding is that the flash in the ESP8266 only allows for aligned 32-bit reads and that's why the linker puts it in data memory instead.
Can you please run "readelf" on your binary so we can see where the different sections end up?

zherczeg commented 8 years ago

Jerry has a large amount of const data (mainly strings which cannot be read as 32 bit words) which is usually put into the NOR flash section on ARM platforms, so it can be accessed without using RAM (similar to instructions). So no RAM is wasted on such data.

I checked some discussions in forums, and it seems your compiler puts const data into RAM by default, and not easy to force it to do otherwise. This is a big surprise for me, I thought all low-memory platforms try to optimize read-only data.

slaff commented 8 years ago

@tilmannOSG readelf with output of all data looks like this

ELF Header:
  Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 
  Class:                             ELF32
  Data:                              2's complement, little endian
  Version:                           1 (current)
  OS/ABI:                            UNIX - System V
  ABI Version:                       0
  Type:                              EXEC (Executable file)
  Machine:                           Tensilica Xtensa Processor
  Version:                           0x1
  Entry point address:               0x40100004
  Start of program headers:          52 (bytes into file)
  Start of section headers:          3072780 (bytes into file)
  Flags:                             0x300
  Size of this header:               52 (bytes)
  Size of program headers:           32 (bytes)
  Number of program headers:         5
  Size of section headers:           40 (bytes)
  Number of section headers:         248
  Section header string table index: 245

Symbol table '.symtab' contains 3538 entries:
   Num:    Value  Size Type    Bind   Vis      Ndx Name
     0: 00000000     0 NOTYPE  LOCAL  DEFAULT  UND 
     1: 3ffe8000     0 SECTION LOCAL  DEFAULT    1 
     2: 3ffe8390     0 SECTION LOCAL  DEFAULT    2 
     3: 3ffef028     0 SECTION LOCAL  DEFAULT    3 
     4: 40202010     0 SECTION LOCAL  DEFAULT    4 
     5: 40100000     0 SECTION LOCAL  DEFAULT    5 
     6: 00000000     0 SECTION LOCAL  DEFAULT    6 
     7: 00000000     0 SECTION LOCAL  DEFAULT    7 
     8: 00000000     0 SECTION LOCAL  DEFAULT    8 
     9: 00000000     0 SECTION LOCAL  DEFAULT    9 
    10: 00000000     0 SECTION LOCAL  DEFAULT   10 
    11: 00000000     0 SECTION LOCAL  DEFAULT   11 
    12: 00000000     0 SECTION LOCAL  DEFAULT   12 
    13: 00000000     0 SECTION LOCAL  DEFAULT   13 
    14: 00000000     0 SECTION LOCAL  DEFAULT   14 
    15: 00000000     0 SECTION LOCAL  DEFAULT   15 
    16: 00000000     0 SECTION LOCAL  DEFAULT   16 
    17: 00000000     0 SECTION LOCAL  DEFAULT   17 
    18: 00000000     0 SECTION LOCAL  DEFAULT   18 
    19: 00000000     0 SECTION LOCAL  DEFAULT   19 
    20: 00000000     0 SECTION LOCAL  DEFAULT   20 
    21: 00000000     0 SECTION LOCAL  DEFAULT   21 
    22: 00000000     0 SECTION LOCAL  DEFAULT   22 
    23: 00000000     0 SECTION LOCAL  DEFAULT   23 
    24: 00000000     0 SECTION LOCAL  DEFAULT   24 
    25: 00000000     0 SECTION LOCAL  DEFAULT   25 
    26: 00000000     0 SECTION LOCAL  DEFAULT   26 
    27: 00000000     0 SECTION LOCAL  DEFAULT   27 
    28: 00000000     0 SECTION LOCAL  DEFAULT   28 
    29: 00000000     0 SECTION LOCAL  DEFAULT   29 
    30: 00000000     0 SECTION LOCAL  DEFAULT   30 
    31: 00000000     0 SECTION LOCAL  DEFAULT   31 
    32: 00000000     0 SECTION LOCAL  DEFAULT   32 
    33: 00000000     0 SECTION LOCAL  DEFAULT   33 
    34: 00000000     0 SECTION LOCAL  DEFAULT   34 
    35: 00000000     0 SECTION LOCAL  DEFAULT   35 
    36: 00000000     0 SECTION LOCAL  DEFAULT   36 
    37: 00000000     0 SECTION LOCAL  DEFAULT   37 
    38: 00000000     0 SECTION LOCAL  DEFAULT   38 
    39: 00000000     0 SECTION LOCAL  DEFAULT   39 
    40: 00000000     0 SECTION LOCAL  DEFAULT   40 
    41: 00000000     0 SECTION LOCAL  DEFAULT   41 
    42: 00000000     0 SECTION LOCAL  DEFAULT   42 
    43: 00000000     0 SECTION LOCAL  DEFAULT   43 
    44: 00000000     0 SECTION LOCAL  DEFAULT   44 
    45: 00000000     0 SECTION LOCAL  DEFAULT   45 
    46: 00000000     0 SECTION LOCAL  DEFAULT   46 
    47: 00000000     0 SECTION LOCAL  DEFAULT   47 
    48: 00000000     0 SECTION LOCAL  DEFAULT   48 
    49: 00000000     0 SECTION LOCAL  DEFAULT   49 
    50: 00000000     0 SECTION LOCAL  DEFAULT   50 
    51: 00000000     0 SECTION LOCAL  DEFAULT   51 
    52: 00000000     0 SECTION LOCAL  DEFAULT   52 
    53: 00000000     0 SECTION LOCAL  DEFAULT   53 
    54: 00000000     0 SECTION LOCAL  DEFAULT   54 
    55: 00000000     0 SECTION LOCAL  DEFAULT   55 
    56: 00000000     0 SECTION LOCAL  DEFAULT   56 
    57: 00000000     0 SECTION LOCAL  DEFAULT   57 
    58: 00000000     0 SECTION LOCAL  DEFAULT   58 
    59: 00000000     0 SECTION LOCAL  DEFAULT   59 
    60: 00000000     0 SECTION LOCAL  DEFAULT   60 
    61: 00000000     0 SECTION LOCAL  DEFAULT   61 
    62: 00000000     0 SECTION LOCAL  DEFAULT   62 
    63: 00000000     0 SECTION LOCAL  DEFAULT   63 
    64: 00000000     0 SECTION LOCAL  DEFAULT   64 
    65: 00000000     0 SECTION LOCAL  DEFAULT   65 
    66: 00000000     0 SECTION LOCAL  DEFAULT   66 
    67: 00000000     0 SECTION LOCAL  DEFAULT   67 
    68: 00000000     0 SECTION LOCAL  DEFAULT   68 
    69: 00000000     0 SECTION LOCAL  DEFAULT   69 
    70: 00000000     0 SECTION LOCAL  DEFAULT   70 
    71: 00000000     0 SECTION LOCAL  DEFAULT   71 
    72: 00000000     0 SECTION LOCAL  DEFAULT   72 
    73: 00000000     0 SECTION LOCAL  DEFAULT   73 
    74: 00000000     0 SECTION LOCAL  DEFAULT   74 
    75: 00000000     0 SECTION LOCAL  DEFAULT   75 
    76: 00000000     0 SECTION LOCAL  DEFAULT   76 
    77: 00000000     0 SECTION LOCAL  DEFAULT   77 
    78: 00000000     0 SECTION LOCAL  DEFAULT   78 
    79: 00000000     0 SECTION LOCAL  DEFAULT   79 
    80: 00000000     0 SECTION LOCAL  DEFAULT   80 
    81: 00000000     0 SECTION LOCAL  DEFAULT   81 
    82: 00000000     0 SECTION LOCAL  DEFAULT   82 
    83: 00000000     0 SECTION LOCAL  DEFAULT   83 
    84: 00000000     0 SECTION LOCAL  DEFAULT   84 
    85: 00000000     0 SECTION LOCAL  DEFAULT   85 
    86: 00000000     0 SECTION LOCAL  DEFAULT   86 
    87: 00000000     0 SECTION LOCAL  DEFAULT   87 
    88: 00000000     0 SECTION LOCAL  DEFAULT   88 
    89: 00000000     0 SECTION LOCAL  DEFAULT   89 
    90: 00000000     0 SECTION LOCAL  DEFAULT   90 
    91: 00000000     0 SECTION LOCAL  DEFAULT   91 
    92: 00000000     0 SECTION LOCAL  DEFAULT   92 
    93: 00000000     0 SECTION LOCAL  DEFAULT   93 
    94: 00000000     0 SECTION LOCAL  DEFAULT   94 
    95: 00000000     0 SECTION LOCAL  DEFAULT   95 
    96: 00000000     0 SECTION LOCAL  DEFAULT   96 
    97: 00000000     0 SECTION LOCAL  DEFAULT   97 
    98: 00000000     0 SECTION LOCAL  DEFAULT   98 
    99: 00000000     0 SECTION LOCAL  DEFAULT   99 
   100: 00000000     0 SECTION LOCAL  DEFAULT  100 
   101: 00000000     0 SECTION LOCAL  DEFAULT  101 
   102: 00000000     0 SECTION LOCAL  DEFAULT  102 
   103: 00000000     0 SECTION LOCAL  DEFAULT  103 
   104: 00000000     0 SECTION LOCAL  DEFAULT  104 
   105: 00000000     0 SECTION LOCAL  DEFAULT  105 
   106: 00000000     0 SECTION LOCAL  DEFAULT  106 
   107: 00000000     0 SECTION LOCAL  DEFAULT  107 
   108: 00000000     0 SECTION LOCAL  DEFAULT  108 
   109: 00000000     0 SECTION LOCAL  DEFAULT  109 
   110: 00000000     0 SECTION LOCAL  DEFAULT  110 
   111: 00000000     0 SECTION LOCAL  DEFAULT  111 
   112: 00000000     0 SECTION LOCAL  DEFAULT  112 
   113: 00000000     0 SECTION LOCAL  DEFAULT  113 
   114: 00000000     0 SECTION LOCAL  DEFAULT  114 
   115: 00000000     0 SECTION LOCAL  DEFAULT  115 
   116: 00000000     0 SECTION LOCAL  DEFAULT  116 
   117: 00000000     0 SECTION LOCAL  DEFAULT  117 
   118: 00000000     0 SECTION LOCAL  DEFAULT  118 
   119: 00000000     0 SECTION LOCAL  DEFAULT  119 
   120: 00000000     0 SECTION LOCAL  DEFAULT  120 
   121: 00000000     0 SECTION LOCAL  DEFAULT  121 
   122: 00000000     0 SECTION LOCAL  DEFAULT  122 
   123: 00000000     0 SECTION LOCAL  DEFAULT  123 
   124: 00000000     0 SECTION LOCAL  DEFAULT  124 
   125: 00000000     0 SECTION LOCAL  DEFAULT  125 
   126: 00000000     0 SECTION LOCAL  DEFAULT  126 
   127: 00000000     0 SECTION LOCAL  DEFAULT  127 
   128: 00000000     0 SECTION LOCAL  DEFAULT  128 
   129: 00000000     0 SECTION LOCAL  DEFAULT  129 
   130: 00000000     0 SECTION LOCAL  DEFAULT  130 
   131: 00000000     0 SECTION LOCAL  DEFAULT  131 
   132: 00000000     0 SECTION LOCAL  DEFAULT  132 
   133: 00000000     0 SECTION LOCAL  DEFAULT  133 
   134: 00000000     0 SECTION LOCAL  DEFAULT  134 
   135: 00000000     0 SECTION LOCAL  DEFAULT  135 
   136: 00000000     0 SECTION LOCAL  DEFAULT  136 
   137: 00000000     0 SECTION LOCAL  DEFAULT  137 
   138: 00000000     0 SECTION LOCAL  DEFAULT  138 
   139: 00000000     0 SECTION LOCAL  DEFAULT  139 
   140: 00000000     0 SECTION LOCAL  DEFAULT  140 
   141: 00000000     0 SECTION LOCAL  DEFAULT  141 
   142: 00000000     0 SECTION LOCAL  DEFAULT  142 
   143: 00000000     0 SECTION LOCAL  DEFAULT  143 
   144: 00000000     0 SECTION LOCAL  DEFAULT  144 
   145: 00000000     0 SECTION LOCAL  DEFAULT  145 
   146: 00000000     0 SECTION LOCAL  DEFAULT  146 
   147: 00000000     0 SECTION LOCAL  DEFAULT  147 
   148: 00000000     0 SECTION LOCAL  DEFAULT  148 
   149: 00000000     0 SECTION LOCAL  DEFAULT  149 
   150: 00000000     0 SECTION LOCAL  DEFAULT  150 
   151: 00000000     0 SECTION LOCAL  DEFAULT  151 
   152: 00000000     0 SECTION LOCAL  DEFAULT  152 
   153: 00000000     0 SECTION LOCAL  DEFAULT  153 
   154: 00000000     0 SECTION LOCAL  DEFAULT  154 
   155: 00000000     0 SECTION LOCAL  DEFAULT  155 
   156: 00000000     0 SECTION LOCAL  DEFAULT  156 
   157: 00000000     0 SECTION LOCAL  DEFAULT  157 
   158: 00000000     0 SECTION LOCAL  DEFAULT  158 
   159: 00000000     0 SECTION LOCAL  DEFAULT  159 
   160: 00000000     0 SECTION LOCAL  DEFAULT  160 
   161: 00000000     0 SECTION LOCAL  DEFAULT  161 
   162: 00000000     0 SECTION LOCAL  DEFAULT  162 
   163: 00000000     0 SECTION LOCAL  DEFAULT  163 
   164: 00000000     0 SECTION LOCAL  DEFAULT  164 
   165: 00000000     0 SECTION LOCAL  DEFAULT  165 
   166: 00000000     0 SECTION LOCAL  DEFAULT  166 
   167: 00000000     0 SECTION LOCAL  DEFAULT  167 
   168: 00000000     0 SECTION LOCAL  DEFAULT  168 
   169: 00000000     0 SECTION LOCAL  DEFAULT  169 
   170: 00000000     0 SECTION LOCAL  DEFAULT  170 
   171: 00000000     0 SECTION LOCAL  DEFAULT  171 
   172: 00000000     0 SECTION LOCAL  DEFAULT  172 
   173: 00000000     0 SECTION LOCAL  DEFAULT  173 
   174: 00000000     0 SECTION LOCAL  DEFAULT  174 
   175: 00000000     0 SECTION LOCAL  DEFAULT  175 
   176: 00000000     0 SECTION LOCAL  DEFAULT  176 
   177: 00000000     0 SECTION LOCAL  DEFAULT  177 
   178: 00000000     0 SECTION LOCAL  DEFAULT  178 
   179: 00000000     0 SECTION LOCAL  DEFAULT  179 
   180: 00000000     0 SECTION LOCAL  DEFAULT  180 
   181: 00000000     0 SECTION LOCAL  DEFAULT  181 
   182: 00000000     0 SECTION LOCAL  DEFAULT  182 
   183: 00000000     0 SECTION LOCAL  DEFAULT  183 
   184: 00000000     0 SECTION LOCAL  DEFAULT  184 
   185: 00000000     0 SECTION LOCAL  DEFAULT  185 
   186: 00000000     0 SECTION LOCAL  DEFAULT  186 
   187: 00000000     0 SECTION LOCAL  DEFAULT  187 
   188: 00000000     0 SECTION LOCAL  DEFAULT  188 
   189: 00000000     0 SECTION LOCAL  DEFAULT  189 
   190: 00000000     0 SECTION LOCAL  DEFAULT  190 
   191: 00000000     0 SECTION LOCAL  DEFAULT  191 
   192: 00000000     0 SECTION LOCAL  DEFAULT  192 
   193: 00000000     0 SECTION LOCAL  DEFAULT  193 
   194: 00000000     0 SECTION LOCAL  DEFAULT  194 
   195: 00000000     0 SECTION LOCAL  DEFAULT  195 
   196: 00000000     0 SECTION LOCAL  DEFAULT  196 
   197: 00000000     0 SECTION LOCAL  DEFAULT  197 
   198: 00000000     0 SECTION LOCAL  DEFAULT  198 
   199: 00000000     0 SECTION LOCAL  DEFAULT  199 
   200: 00000000     0 SECTION LOCAL  DEFAULT  200 
   201: 00000000     0 SECTION LOCAL  DEFAULT  201 
   202: 00000000     0 SECTION LOCAL  DEFAULT  202 
   203: 00000000     0 SECTION LOCAL  DEFAULT  203 
   204: 00000000     0 SECTION LOCAL  DEFAULT  204 
   205: 00000000     0 SECTION LOCAL  DEFAULT  205 
   206: 00000000     0 SECTION LOCAL  DEFAULT  206 
   207: 00000000     0 SECTION LOCAL  DEFAULT  207 
   208: 00000000     0 SECTION LOCAL  DEFAULT  208 
   209: 00000000     0 SECTION LOCAL  DEFAULT  209 
   210: 00000000     0 SECTION LOCAL  DEFAULT  210 
   211: 00000000     0 SECTION LOCAL  DEFAULT  211 
   212: 00000000     0 SECTION LOCAL  DEFAULT  212 
   213: 00000000     0 SECTION LOCAL  DEFAULT  213 
   214: 00000000     0 SECTION LOCAL  DEFAULT  214 
   215: 00000000     0 SECTION LOCAL  DEFAULT  215 
   216: 00000000     0 SECTION LOCAL  DEFAULT  216 
   217: 00000000     0 SECTION LOCAL  DEFAULT  217 
   218: 00000000     0 SECTION LOCAL  DEFAULT  218 
   219: 00000000     0 SECTION LOCAL  DEFAULT  219 
   220: 00000000     0 SECTION LOCAL  DEFAULT  220 
   221: 00000000     0 SECTION LOCAL  DEFAULT  221 
   222: 00000000     0 SECTION LOCAL  DEFAULT  222 
   223: 00000000     0 SECTION LOCAL  DEFAULT  223 
   224: 00000000     0 SECTION LOCAL  DEFAULT  224 
   225: 00000000     0 SECTION LOCAL  DEFAULT  225 
   226: 00000000     0 SECTION LOCAL  DEFAULT  226 
   227: 00000000     0 SECTION LOCAL  DEFAULT  227 
   228: 00000000     0 SECTION LOCAL  DEFAULT  228 
   229: 00000000     0 SECTION LOCAL  DEFAULT  229 
   230: 00000000     0 SECTION LOCAL  DEFAULT  230 
   231: 00000000     0 SECTION LOCAL  DEFAULT  231 
   232: 00000000     0 SECTION LOCAL  DEFAULT  232 
   233: 00000000     0 SECTION LOCAL  DEFAULT  233 
   234: 00000000     0 SECTION LOCAL  DEFAULT  234 
   235: 00000000     0 SECTION LOCAL  DEFAULT  235 
   236: 00000000     0 SECTION LOCAL  DEFAULT  236 
   237: 00000000     0 SECTION LOCAL  DEFAULT  237 
   238: 00000000     0 SECTION LOCAL  DEFAULT  238 
   239: 00000000     0 SECTION LOCAL  DEFAULT  239 
   240: 00000000     0 SECTION LOCAL  DEFAULT  240 
   241: 00000000     0 SECTION LOCAL  DEFAULT  241 
   242: 00000000     0 SECTION LOCAL  DEFAULT  242 
   243: 00000000     0 SECTION LOCAL  DEFAULT  243 
   244: 00000000     0 SECTION LOCAL  DEFAULT  244 
   245: 00000000     0 FILE    LOCAL  DEFAULT  ABS rboot-bigflash.c
   246: 00000000     0 FILE    LOCAL  DEFAULT  ABS m_printf.cpp
   247: 3fff5594     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   248: 3fff5564    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   249: 40249750    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I_cbc_printc
   250: 00000000     0 FILE    LOCAL  DEFAULT  ABS application.cpp
   251: 3fff5638     1 OBJECT  LOCAL  DEFAULT    3 _ZZ19smartConfigCallback9
   252: 3fff57ac     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   253: 3fff577c    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   254: 40246e30   119 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I_start
   255: 40246eac    55 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_D_start
   256: 00000000     0 FILE    LOCAL  DEFAULT  ABS app-data.cpp
   257: 3fff57e4     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   258: 3fff57b4    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   259: 40247064    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN7AppDat
   260: 00000000     0 FILE    LOCAL  DEFAULT  ABS gdbstub.c
   261: 40247f34   241 FUNC    LOCAL  DEFAULT    4 gdb_exception_handler
   262: 00000000     0 FILE    LOCAL  DEFAULT  ABS intscan.c
   263: 3ffe8451   257 OBJECT  LOCAL  DEFAULT    2 table
   264: 00000000     0 FILE    LOCAL  DEFAULT  ABS tls1.c
   265: 40233f1c   230 FUNC    LOCAL  DEFAULT    4 add_hmac_digest
   266: 40234004   174 FUNC    LOCAL  DEFAULT    4 crypt_new$isra$1
   267: 402340b4    49 FUNC    LOCAL  DEFAULT    4 disposable_new$part$2
   268: 3ffe8788    84 OBJECT  LOCAL  DEFAULT    2 CSWTCH$100
   269: 402340e8    80 FUNC    LOCAL  DEFAULT    4 DISPLAY_STATE$part$3
   270: 40234138   190 FUNC    LOCAL  DEFAULT    4 DISPLAY_ALERT$part$4
   271: 402341f8   469 FUNC    LOCAL  DEFAULT    4 prf$constprop$5
   272: 3ffe87ec    40 OBJECT  LOCAL  DEFAULT    2 cipher_info
   273: 40234894   530 FUNC    LOCAL  DEFAULT    4 set_key_block
   274: 3ffe87dc    16 OBJECT  LOCAL  DEFAULT    2 CSWTCH$95
   275: 3ffe881c     4 OBJECT  LOCAL  DEFAULT    2 g_hello_request
   276: 3ffe8818     1 OBJECT  LOCAL  DEFAULT    2 g_chg_cipher_spec_pkt
   277: 00000000     0 FILE    LOCAL  DEFAULT  ABS tls1_clnt.c
   278: 40235b9c   131 FUNC    LOCAL  DEFAULT    4 send_client_key_xchg
   279: 00000000     0 FILE    LOCAL  DEFAULT  ABS tls1_svr.c
   280: 402360b0   136 FUNC    LOCAL  DEFAULT    4 process_cert_verify
   281: 40236138   203 FUNC    LOCAL  DEFAULT    4 process_client_key_xchg
   282: 3ffe88c8     8 OBJECT  LOCAL  DEFAULT    2 g_cert_request
   283: 3ffe88d0     4 OBJECT  LOCAL  DEFAULT    2 g_hello_done
   284: 00000000     0 FILE    LOCAL  DEFAULT  ABS x509.c
   285: 3ffe8934    40 OBJECT  LOCAL  DEFAULT    2 CSWTCH$39
   286: 00000000     0 FILE    LOCAL  DEFAULT  ABS crypto_misc.c
   287: 3fff53cc     4 OBJECT  LOCAL  DEFAULT    3 column$2818
   288: 3ffe895c   128 OBJECT  LOCAL  DEFAULT    2 map
   289: 00000000     0 FILE    LOCAL  DEFAULT  ABS aes.c
   290: 3ffe89e0    30 OBJECT  LOCAL  DEFAULT    2 Rcon
   291: 3ffe8b00   256 OBJECT  LOCAL  DEFAULT    2 aes_sbox
   292: 3ffe8a00   256 OBJECT  LOCAL  DEFAULT    2 aes_isbox
   293: 00000000     0 FILE    LOCAL  DEFAULT  ABS md5.c
   294: 40238e48    42 FUNC    LOCAL  DEFAULT    4 Encode
   295: 40238e74  1948 FUNC    LOCAL  DEFAULT    4 MD5Transform
   296: 3ffe8c00    64 OBJECT  LOCAL  DEFAULT    2 PADDING
   297: 00000000     0 FILE    LOCAL  DEFAULT  ABS sha256.c
   298: 40239e80 10817 FUNC    LOCAL  DEFAULT    4 SHA256_Process
   299: 3ffe8c40    64 OBJECT  LOCAL  DEFAULT    2 sha256_padding
   300: 00000000     0 FILE    LOCAL  DEFAULT  ABS sha512.c
   301: 3ffe8c80   640 OBJECT  LOCAL  DEFAULT    2 k
   302: 4023cb80  1163 FUNC    LOCAL  DEFAULT    4 SHA512_Process
   303: 3ffe8f00   128 OBJECT  LOCAL  DEFAULT    2 padding
   304: 00000000     0 FILE    LOCAL  DEFAULT  ABS asn1.c
   305: 4023d26c   402 FUNC    LOCAL  DEFAULT    4 asn1_get_utc_time
   306: 3ffe8f80     3 OBJECT  LOCAL  DEFAULT    2 sig_subject_alt_name
   307: 3ffe8fa8     5 OBJECT  LOCAL  DEFAULT    2 sig_sha1WithRSAEncrypt
   308: 3ffe8f9c     9 OBJECT  LOCAL  DEFAULT    2 sig_sha256
   309: 3ffe8f90     9 OBJECT  LOCAL  DEFAULT    2 sig_sha384
   310: 3ffe8f84     9 OBJECT  LOCAL  DEFAULT    2 sig_sha512
   311: 3ffe8fb0     8 OBJECT  LOCAL  DEFAULT    2 sig_oid_prefix
   312: 00000000     0 FILE    LOCAL  DEFAULT  ABS loader.c
   313: 4023dcb0   464 FUNC    LOCAL  DEFAULT    4 pem_decrypt
   314: 4023de80    76 FUNC    LOCAL  DEFAULT    4 do_obj$isra$0
   315: 3ffe8fc8    16 OBJECT  LOCAL  DEFAULT    2 begins
   316: 3ffe8fb8    16 OBJECT  LOCAL  DEFAULT    2 ends
   317: 00000000     0 FILE    LOCAL  DEFAULT  ABS atan.c
   318: 3ffe8ff8    32 OBJECT  LOCAL  DEFAULT    2 atanhi
   319: 3ffe8fd8    32 OBJECT  LOCAL  DEFAULT    2 atanlo
   320: 00000000     0 FILE    LOCAL  DEFAULT  ABS exp.c
   321: 3ffe9018    16 OBJECT  LOCAL  DEFAULT    2 half
   322: 00000000     0 FILE    LOCAL  DEFAULT  ABS pow.c
   323: 3ffe9048    16 OBJECT  LOCAL  DEFAULT    2 bp
   324: 3ffe9028    16 OBJECT  LOCAL  DEFAULT    2 dp_l
   325: 3ffe9038    16 OBJECT  LOCAL  DEFAULT    2 dp_h
   326: 00000000     0 FILE    LOCAL  DEFAULT  ABS __rem_pio2_large.c
   327: 3ffe91a0    16 OBJECT  LOCAL  DEFAULT    2 init_jk
   328: 3ffe9098   264 OBJECT  LOCAL  DEFAULT    2 ipio2
   329: 3ffe9058    64 OBJECT  LOCAL  DEFAULT    2 PIo2
   330: 00000000     0 FILE    LOCAL  DEFAULT  ABS umm_malloc.c
   331: 4024886c    94 FUNC    LOCAL  DEFAULT    4 umm_disconnect_from_free_
   332: 402488cc   130 FUNC    LOCAL  DEFAULT    4 umm_assimilate_up
   333: 40248950    85 FUNC    LOCAL  DEFAULT    4 umm_assimilate_down
   334: 402489b4   195 FUNC    LOCAL  DEFAULT    4 _umm_free
   335: 40248a78    90 FUNC    LOCAL  DEFAULT    4 umm_make_new_block$constp
   336: 40248b60   315 FUNC    LOCAL  DEFAULT    4 _umm_malloc
   337: 00000000     0 FILE    LOCAL  DEFAULT  ABS user_main.cpp
   338: 3ffe939c   192 OBJECT  LOCAL  DEFAULT    2 _ZL14EspDigitalPins
   339: 3fff5530     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   340: 3fff5500    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   341: 40248ed0    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I_user_main_
   342: 00000000     0 FILE    LOCAL  DEFAULT  ABS System.cpp
   343: 402492fc    21 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I_System
   344: 40249318    26 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_D_System
   345: 00000000     0 FILE    LOCAL  DEFAULT  ABS esp_cplusplus.cpp
   346: 00000000     0 FILE    LOCAL  DEFAULT  ABS stringconversion.cpp
   347: 00000000     0 FILE    LOCAL  DEFAULT  ABS IPAddress.cpp
   348: 3fff55cc     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   349: 3fff559c    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   350: 40249d3c    43 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN9IPAddr
   351: 00000000     0 FILE    LOCAL  DEFAULT  ABS Digital.cpp
   352: 3ffe9540   192 OBJECT  LOCAL  DEFAULT    2 _ZL14EspDigitalPins
   353: 3fff5630     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   354: 4024a5bc    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__Z7pinMode
   355: 00000000     0 FILE    LOCAL  DEFAULT  ABS cli.cpp
   356: 3fff581c     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   357: 3fff57ec    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   358: 402473f4    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN3Cli4in
   359: 00000000     0 FILE    LOCAL  DEFAULT  ABS scproto.cpp
   360: 3fff5854     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   361: 3fff5824    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   362: 4024778c    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN7ScProt
   363: 00000000     0 FILE    LOCAL  DEFAULT  ABS updater.cpp
   364: 3fff588c     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   365: 3fff585c    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   366: 40247ee4    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN9FwUpda
   367: 00000000     0 FILE    LOCAL  DEFAULT  ABS jsvm.cpp
   368: 3fff58c8     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   369: 3fff5898    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   370: 40248204    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN4JsvmC2
   371: 00000000     0 FILE    LOCAL  DEFAULT  ABS tsb.cpp
   372: 3fff5900     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   373: 3fff58d0    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   374: 40248588    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN3TsbC2E
   375: 00000000     0 FILE    LOCAL  DEFAULT  ABS spiffs_sming.c
   376: 4024a5e4    59 FUNC    LOCAL  DEFAULT    4 api_spiffs_erase
   377: 4024a620    30 FUNC    LOCAL  DEFAULT    4 api_spiffs_read
   378: 4024a640    30 FUNC    LOCAL  DEFAULT    4 api_spiffs_write
   379: 3fff5e68   512 OBJECT  LOCAL  DEFAULT    3 spiffs_work_buf
   380: 3fff5d88   224 OBJECT  LOCAL  DEFAULT    3 spiffs_fds
   381: 3fff5908  1152 OBJECT  LOCAL  DEFAULT    3 spiffs_cache
   382: 4024a754   191 FUNC    LOCAL  DEFAULT    4 spiffs_mount_internal
   383: 00000000     0 FILE    LOCAL  DEFAULT  ABS FileSystem.cpp
   384: 00000000     0 FILE    LOCAL  DEFAULT  ABS HardwareSerial.cpp
   385: 4024af44    71 FUNC    LOCAL  DEFAULT    4 _Z41__static_initializati
   386: 3fff60b0     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   387: 4024b214    45 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN14Hardw
   388: 4024b244    15 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_D__ZN14Hardw
   389: 00000000     0 FILE    LOCAL  DEFAULT  ABS MqttClient.cpp
   390: 3fff60e8     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   391: 3fff60b8    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   392: 4024b858    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN10MqttC
   393: 00000000     0 FILE    LOCAL  DEFAULT  ABS rBootHttpUpdate.cpp
   394: 3fff60f0     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   395: 4024c1f8    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN15rBoot
   396: 00000000     0 FILE    LOCAL  DEFAULT  ABS TcpClient.cpp
   397: 3fff60f8     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   398: 4024c3e4    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN9TcpCli
   399: 00000000     0 FILE    LOCAL  DEFAULT  ABS TcpConnection.cpp
   400: 3fff6100     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   401: 4024d1b4    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN13TcpCo
   402: 00000000     0 FILE    LOCAL  DEFAULT  ABS URL.cpp
   403: 00000000     0 FILE    LOCAL  DEFAULT  ABS AccessPoint.cpp
   404: 3fff6140     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   405: 3fff6110    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   406: 4024d4dc    41 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I_WifiAccess
   407: 4024d508    10 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_D_WifiAccess
   408: 00000000     0 FILE    LOCAL  DEFAULT  ABS Station.cpp
   409: 3fff619c     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   410: 3fff616c    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   411: 4024dee0    41 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I_WifiStatio
   412: 4024df0c    21 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_D_WifiStatio
   413: 00000000     0 FILE    LOCAL  DEFAULT  ABS WDT.cpp
   414: 4024df84    10 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I_WDT
   415: 4024df90    10 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_D_WDT
   416: 00000000     0 FILE    LOCAL  DEFAULT  ABS CommandExecutor.cpp
   417: 3fff61ac     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   418: 4024e18c    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN15Comma
   419: 00000000     0 FILE    LOCAL  DEFAULT  ABS CommandHandler.cpp
   420: 3fff61d0     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   421: 4024e630    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN14Comma
   422: 4024e650    21 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_D__ZN14Comma
   423: 00000000     0 FILE    LOCAL  DEFAULT  ABS flashmem.c
   424: 00000000     0 FILE    LOCAL  DEFAULT  ABS libemqtt.c
   425: 00000000     0 FILE    LOCAL  DEFAULT  ABS DataSourceStream.cpp
   426: 3fff61e0     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   427: 40252aac    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN16Memor
   428: 00000000     0 FILE    LOCAL  DEFAULT  ABS HttpClient.cpp
   429: 3fff6238     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   430: 3fff6208    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   431: 402531bc    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN10HttpC
   432: 00000000     0 FILE    LOCAL  DEFAULT  ABS jerry.c
   433: 3fff62c4     1 OBJECT  LOCAL  DEFAULT    3 jerry_api_available
   434: 40254d94    32 FUNC    LOCAL  DEFAULT    4 jerry_assert_api_availabl
   435: 40254db4   145 FUNC    LOCAL  DEFAULT    4 jerry_invoke_function
   436: 3fff62c8     4 OBJECT  LOCAL  DEFAULT    3 jerry_init_flags
   437: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-gc.c
   438: 3fff62d4     1 OBJECT  LOCAL  DEFAULT    3 ecma_gc_visited_flip_flag
   439: 4025505c    30 FUNC    LOCAL  DEFAULT    4 ecma_gc_set_object_visite
   440: 40255080   219 FUNC    LOCAL  DEFAULT    4 ecma_gc_mark_property
   441: 4025515c    37 FUNC    LOCAL  DEFAULT    4 ecma_gc_set_object_next$i
   442: 3fff62d0     4 OBJECT  LOCAL  DEFAULT    3 ecma_gc_objects_number
   443: 3fff62cc     4 OBJECT  LOCAL  DEFAULT    3 ecma_gc_new_objects_since
   444: 3fff62d8     8 OBJECT  LOCAL  DEFAULT    3 ecma_gc_objects_lists
   445: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-helpers.c
   446: 402554b8   209 FUNC    LOCAL  DEFAULT    4 ecma_create_property
   447: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-helpers-string.c
   448: 40256c10   243 FUNC    LOCAL  DEFAULT    4 ecma_compare_ecma_strings
   449: 3ffebb08    40 OBJECT  LOCAL  DEFAULT    2 nums_with_ascending_lengt
   450: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-property-hashmap.c
   451: 3ffebb30    32 OBJECT  LOCAL  DEFAULT    2 ecma_property_hashmap_ste
   452: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-builtins.c
   453: 40258630    55 FUNC    LOCAL  DEFAULT    4 ecma_builtin_init_object
   454: 3fff6ae8    32 OBJECT  LOCAL  DEFAULT    3 ecma_builtin_objects
   455: 40258674   261 FUNC    LOCAL  DEFAULT    4 ecma_instantiate_builtin
   456: 3ffebc3c    32 OBJECT  LOCAL  DEFAULT    2 ecma_builtin_property_lis
   457: 3ffebc14    40 OBJECT  LOCAL  DEFAULT    2 builtin_number_list$3431
   458: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-builtin-type-error-t
   459: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-objects.c
   460: 4025a3c0   135 FUNC    LOCAL  DEFAULT    4 ecma_op_object_get_own_pr
   461: 00000000     0 FILE    LOCAL  DEFAULT  ABS jrt-fatals.c
   462: 00000000     0 FILE    LOCAL  DEFAULT  ABS lit-char-helpers.c
   463: 402670fc    49 FUNC    LOCAL  DEFAULT    4 search_char_in_char_array
   464: 40267130    58 FUNC    LOCAL  DEFAULT    4 search_char_in_interval_a
   465: 3ffebf4e   424 OBJECT  LOCAL  DEFAULT    2 unicode_letter_interv_sps
   466: 3ffebe7a   212 OBJECT  LOCAL  DEFAULT    2 unicode_letter_interv_len
   467: 3ffebe0a   112 OBJECT  LOCAL  DEFAULT    2 unicode_letter_chars
   468: 4025b5e8    52 FUNC    LOCAL  DEFAULT    4 lit_char_is_unicode_lette
   469: 3ffebca2    10 OBJECT  LOCAL  DEFAULT    2 unicode_separator_chars
   470: 3ffebd46   196 OBJECT  LOCAL  DEFAULT    2 unicode_non_letter_ident_
   471: 3ffebce4    98 OBJECT  LOCAL  DEFAULT    2 unicode_non_letter_ident_
   472: 3ffebcac    56 OBJECT  LOCAL  DEFAULT    2 unicode_non_letter_ident_
   473: 00000000     0 FILE    LOCAL  DEFAULT  ABS lit-magic-strings.c
   474: 3fff6b18     4 OBJECT  LOCAL  DEFAULT    3 lit_magic_string_ex_array
   475: 3fff6b14     4 OBJECT  LOCAL  DEFAULT    3 lit_magic_string_ex_count
   476: 3fff6b10     4 OBJECT  LOCAL  DEFAULT    3 lit_magic_string_ex_sizes
   477: 3ffec940   928 OBJECT  LOCAL  DEFAULT    2 magic_strings$2425
   478: 3ffec0f6   232 OBJECT  LOCAL  DEFAULT    2 lit_magic_string_sizes$24
   479: 00000000     0 FILE    LOCAL  DEFAULT  ABS js-parser-statm.c
   480: 4025d378    75 FUNC    LOCAL  DEFAULT    4 parser_parse_enclosed_exp
   481: 4025d3c4    94 FUNC    LOCAL  DEFAULT    4 parser_parse_var_statemen
   482: 4025d424   452 FUNC    LOCAL  DEFAULT    4 parser_parse_switch_state
   483: 4025d5e8   244 FUNC    LOCAL  DEFAULT    4 parser_parse_while_statem
   484: 4025d6dc   306 FUNC    LOCAL  DEFAULT    4 parser_parse_for_statemen
   485: 3ffecd40    12 OBJECT  LOCAL  DEFAULT    2 statement_lengths$3695
   486: 00000000     0 FILE    LOCAL  DEFAULT  ABS js-parser-util.c
   487: 4025e85c   114 FUNC    LOCAL  DEFAULT    4 parser_emit_two_bytes
   488: 3ffed654   276 OBJECT  LOCAL  DEFAULT    2 CSWTCH$26
   489: 00000000     0 FILE    LOCAL  DEFAULT  ABS vm.c
   490: 4025eec8    67 FUNC    LOCAL  DEFAULT    4 vm_construct_literal_obje
   491: 3ffed900   610 OBJECT  LOCAL  DEFAULT    2 vm_decode_table
   492: 3fff6b1c     1 OBJECT  LOCAL  DEFAULT    3 is_direct_eval_form_call
   493: 4025ef44  5553 FUNC    LOCAL  DEFAULT    4 vm_loop
   494: 3fff6b20     4 OBJECT  LOCAL  DEFAULT    3 vm_top_context_p
   495: 402604fc   978 FUNC    LOCAL  DEFAULT    4 vm_execute
   496: 402608d0    19 FUNC    LOCAL  DEFAULT    4 vm_run_with_inline_stack
   497: 402608e4    43 FUNC    LOCAL  DEFAULT    4 vm_run_with_alloca
   498: 00000000     0 FILE    LOCAL  DEFAULT  ABS vm-stack.c
   499: 4026749c    31 FUNC    LOCAL  DEFAULT    4 vm_decode_branch_offset
   500: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-builtin-compact-prof
   501: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-builtin-function.c
   502: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-builtin-function-pro
   503: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-builtin-global.c
   504: 402674bc    22 FUNC    LOCAL  DEFAULT    4 ecma_builtin_global_objec
   505: 402674d4    53 FUNC    LOCAL  DEFAULT    4 ecma_builtin_global_objec
   506: 3ffedc08    16 OBJECT  LOCAL  DEFAULT    2 unescaped_uri_component_s
   507: 40261318   609 FUNC    LOCAL  DEFAULT    4 ecma_builtin_global_objec
   508: 4026157c   457 FUNC    LOCAL  DEFAULT    4 ecma_builtin_global_objec
   509: 3ffedc18    16 OBJECT  LOCAL  DEFAULT    2 unescaped_uri_set
   510: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-builtin-math.c
   511: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-builtin-object.c
   512: 40262910   366 FUNC    LOCAL  DEFAULT    4 ecma_builtin_object_objec
   513: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-builtin-object-proto
   514: 00000000     0 FILE    LOCAL  DEFAULT  ABS byte-code.c
   515: 00000000     0 FILE    LOCAL  DEFAULT  ABS js-lexer.c
   516: 40263b30   457 FUNC    LOCAL  DEFAULT    4 skip_spaces
   517: 40263cfc   496 FUNC    LOCAL  DEFAULT    4 lexer_parse_number
   518: 3ffee0ac    36 OBJECT  LOCAL  DEFAULT    2 keyword_string_list
   519: 40263f64   396 FUNC    LOCAL  DEFAULT    4 lexer_parse_identifier
   520: 402640f0   653 FUNC    LOCAL  DEFAULT    4 lexer_parse_string
   521: 3ffee0a4     8 OBJECT  LOCAL  DEFAULT    2 lexer_get_literal
   522: 3ffee09c     8 OBJECT  LOCAL  DEFAULT    2 lexer_set_literal
   523: 3ffee260    32 OBJECT  LOCAL  DEFAULT    2 keyword_length_2
   524: 3ffee230    48 OBJECT  LOCAL  DEFAULT    2 keyword_length_3
   525: 3ffee1e8    72 OBJECT  LOCAL  DEFAULT    2 keyword_length_4
   526: 3ffee198    80 OBJECT  LOCAL  DEFAULT    2 keyword_length_5
   527: 3ffee150    72 OBJECT  LOCAL  DEFAULT    2 keyword_length_6
   528: 3ffee120    48 OBJECT  LOCAL  DEFAULT    2 keyword_length_7
   529: 3ffee100    32 OBJECT  LOCAL  DEFAULT    2 keyword_length_8
   530: 3ffee0e8    24 OBJECT  LOCAL  DEFAULT    2 keyword_length_9
   531: 3ffee0d0    24 OBJECT  LOCAL  DEFAULT    2 keyword_length_10
   532: 00000000     0 FILE    LOCAL  DEFAULT  ABS js-parser-expr.c
   533: 40265078   187 FUNC    LOCAL  DEFAULT    4 parser_append_object_lite
   534: 40265134   126 FUNC    LOCAL  DEFAULT    4 parser_push_result
   535: 402651b4   283 FUNC    LOCAL  DEFAULT    4 parser_emit_unary_lvalue_
   536: 3ffee280    36 OBJECT  LOCAL  DEFAULT    2 parser_binary_precedence_
   537: 00000000     0 FILE    LOCAL  DEFAULT  ABS js-parser-scanner.c
   538: 00000000     0 FILE    LOCAL  DEFAULT  ABS opcodes-ecma-bitwise.c
   539: 00000000     0 FILE    LOCAL  DEFAULT  ABS bigint.c
   540: 4023783c    92 FUNC    LOCAL  DEFAULT    4 more_comps
   541: 40237898    43 FUNC    LOCAL  DEFAULT    4 check$isra$0
   542: 402378c4    71 FUNC    LOCAL  DEFAULT    4 trim
   543: 4023790c    97 FUNC    LOCAL  DEFAULT    4 comp_right_shift
   544: 40237970    91 FUNC    LOCAL  DEFAULT    4 exp_bit_is_one
   545: 402379cc   142 FUNC    LOCAL  DEFAULT    4 alloc
   546: 40237bec   160 FUNC    LOCAL  DEFAULT    4 bi_int_multiply
   547: 40237c8c   329 FUNC    LOCAL  DEFAULT    4 regular_multiply
   548: 00000000     0 FILE    LOCAL  DEFAULT  ABS rsa.c
   549: 00000000     0 FILE    LOCAL  DEFAULT  ABS Print.cpp
   550: 3fff55d4     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   551: 40249f4c    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN5Print5
   552: 00000000     0 FILE    LOCAL  DEFAULT  ABS WString.cpp
   553: 3fff55dc     1 OBJECT  LOCAL  DEFAULT    3 _ZZN6StringixEjE19dummy_w
   554: 3fff55e0     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   555: 4024a3c8    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN6String
   556: 00000000     0 FILE    LOCAL  DEFAULT  ABS Interrupts.cpp
   557: 4024a3f0    63 FUNC    LOCAL  DEFAULT    4 _Z41__static_initializati
   558: 3fff5628     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   559: 4024a45c    45 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__gpioInter
   560: 4024a48c    15 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_D__gpioInter
   561: 00000000     0 FILE    LOCAL  DEFAULT  ABS Stream.cpp
   562: 3fff6070     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   563: 4024a9d4    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN6Stream
   564: 00000000     0 FILE    LOCAL  DEFAULT  ABS Clock.cpp
   565: 3fff6078     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   566: 4024aa38    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__Z6millisv
   567: 00000000     0 FILE    LOCAL  DEFAULT  ABS CommandOutput.cpp
   568: 3fff61d8     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   569: 4024e66c    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN13Comma
   570: 00000000     0 FILE    LOCAL  DEFAULT  ABS SystemClock.cpp
   571: 3fff6200     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   572: 40252b50    55 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN16Syste
   573: 00000000     0 FILE    LOCAL  DEFAULT  ABS WebSocket.cpp
   574: 3fff6240     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   575: 40253474    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN9WebSoc
   576: 00000000     0 FILE    LOCAL  DEFAULT  ABS RTC.cpp
   577: 402534bc    21 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN8RtcCla
   578: 00000000     0 FILE    LOCAL  DEFAULT  ABS ArduinoJson.cpp
   579: 402534dc    18 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN11Ardui
   580: 00000000     0 FILE    LOCAL  DEFAULT  ABS CommandDelegate.cpp
   581: 3fff625c     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   582: 402535c4    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN15Comma
   583: 00000000     0 FILE    LOCAL  DEFAULT  ABS DateTime.cpp
   584: 3fff6294     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   585: 3fff6264    48 OBJECT  LOCAL  DEFAULT    3 _ZL5ESP01
   586: 402535ec    32 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN8DateTi
   587: 00000000     0 FILE    LOCAL  DEFAULT  ABS HttpRequest.cpp
   588: 3fff629c     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   589: 402545d4    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN11HttpR
   590: 00000000     0 FILE    LOCAL  DEFAULT  ABS HttpResponse.cpp
   591: 3fff62a4     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   592: 402545f8    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN12HttpR
   593: 00000000     0 FILE    LOCAL  DEFAULT  ABS HttpServer.cpp
   594: 3fff62ac     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   595: 4025461c    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN10HttpS
   596: 00000000     0 FILE    LOCAL  DEFAULT  ABS TcpServer.cpp
   597: 3fff62b4     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   598: 40254640    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN9TcpSer
   599: 00000000     0 FILE    LOCAL  DEFAULT  ABS HttpServerConnection.cpp
   600: 3fff62bc     8 OBJECT  LOCAL  DEFAULT    3 _ZL11INADDR_NONE
   601: 40254664    29 FUNC    LOCAL  DEFAULT    4 _GLOBAL__sub_I__ZN20HttpS
   602: 00000000     0 FILE    LOCAL  DEFAULT  ABS s_fpclassify.c
   603: 00000000     0 FILE    LOCAL  DEFAULT  ABS strtol.c
   604: 40207880   123 FUNC    LOCAL  DEFAULT    4 strtox
   605: 00000000     0 FILE    LOCAL  DEFAULT  ABS strchr.c
   606: 00000000     0 FILE    LOCAL  DEFAULT  ABS strchrnul.c
   607: 00000000     0 FILE    LOCAL  DEFAULT  ABS shgetc.c
   608: 00000000     0 FILE    LOCAL  DEFAULT  ABS __uflow.c
   609: 00000000     0 FILE    LOCAL  DEFAULT  ABS __toread.c
   610: 00000000     0 FILE    LOCAL  DEFAULT  ABS scalbn.c
   611: 00000000     0 FILE    LOCAL  DEFAULT  ABS __errno_location.c
   612: 3ffef4d0     4 OBJECT  LOCAL  DEFAULT    3 _____e
   613: 00000000     0 FILE    LOCAL  DEFAULT  ABS hmac.c
   614: 00000000     0 FILE    LOCAL  DEFAULT  ABS sha1.c
   615: 40239b24   467 FUNC    LOCAL  DEFAULT    4 SHA1ProcessMessageBlock
   616: 00000000     0 FILE    LOCAL  DEFAULT  ABS sha384.c
   617: 00000000     0 FILE    LOCAL  DEFAULT  ABS sprintf.c
   618: 00000000     0 FILE    LOCAL  DEFAULT  ABS vsprintf.c
   619: 00000000     0 FILE    LOCAL  DEFAULT  ABS acos.c
   620: 4023e218   313 FUNC    LOCAL  DEFAULT    4 R
   621: 00000000     0 FILE    LOCAL  DEFAULT  ABS asin.c
   622: 4023e54c   313 FUNC    LOCAL  DEFAULT    4 R
   623: 00000000     0 FILE    LOCAL  DEFAULT  ABS atan2.c
   624: 00000000     0 FILE    LOCAL  DEFAULT  ABS ceil.c
   625: 00000000     0 FILE    LOCAL  DEFAULT  ABS cos.c
   626: 00000000     0 FILE    LOCAL  DEFAULT  ABS fabs.c
   627: 00000000     0 FILE    LOCAL  DEFAULT  ABS floor.c
   628: 00000000     0 FILE    LOCAL  DEFAULT  ABS log.c
   629: 00000000     0 FILE    LOCAL  DEFAULT  ABS nextafter.c
   630: 00000000     0 FILE    LOCAL  DEFAULT  ABS sin.c
   631: 00000000     0 FILE    LOCAL  DEFAULT  ABS sqrt.c
   632: 00000000     0 FILE    LOCAL  DEFAULT  ABS tan.c
   633: 00000000     0 FILE    LOCAL  DEFAULT  ABS strdup.c
   634: 00000000     0 FILE    LOCAL  DEFAULT  ABS __cos.c
   635: 00000000     0 FILE    LOCAL  DEFAULT  ABS __rem_pio2.c
   636: 00000000     0 FILE    LOCAL  DEFAULT  ABS rboot-api.c
   637: 00000000     0 FILE    LOCAL  DEFAULT  ABS __tan.c
   638: 00000000     0 FILE    LOCAL  DEFAULT  ABS _divsf3.o
   639: 40241c00     0 NOTYPE  LOCAL  DEFAULT    4 __divsf3_aux
   640: 00000000     0 FILE    LOCAL  DEFAULT  ABS __sin.c
   641: 00000000     0 FILE    LOCAL  DEFAULT  ABS isspace.c
   642: 00000000     0 FILE    LOCAL  DEFAULT  ABS tolower.c
   643: 00000000     0 FILE    LOCAL  DEFAULT  ABS toupper.c
   644: 00000000     0 FILE    LOCAL  DEFAULT  ABS atoi.c
   645: 00000000     0 FILE    LOCAL  DEFAULT  ABS __stdio_exit.c
   646: 00000000     0 FILE    LOCAL  DEFAULT  ABS rc4.c
   647: 00000000     0 FILE    LOCAL  DEFAULT  ABS isprint.c
   648: 00000000     0 FILE    LOCAL  DEFAULT  ABS jerry-port.c
   649: 3fff5894     1 OBJECT  LOCAL  DEFAULT    3 abort_on_fail
   650: 00000000     0 FILE    LOCAL  DEFAULT  ABS heap.c
   651: 00000000     0 FILE    LOCAL  DEFAULT  ABS time.c
   652: 3fff606c     4 OBJECT  LOCAL  DEFAULT    3 errno_var
   653: 3fff6068     4 OBJECT  LOCAL  DEFAULT    3 s_bootTime
   654: 00000000     0 FILE    LOCAL  DEFAULT  ABS Timer.cpp
   655: 00000000     0 FILE    LOCAL  DEFAULT  ABS spiffs_hydrogen.c
   656: 4024efe4   230 FUNC    LOCAL  DEFAULT    4 spiffs_stat_pix
   657: 4024f0d4   206 FUNC    LOCAL  DEFAULT    4 spiffs_read_dir_v
   658: 4024f1a4   103 FUNC    LOCAL  DEFAULT    4 spiffs_hydro_write$isra$0
   659: 4024f20c   135 FUNC    LOCAL  DEFAULT    4 spiffs_fflush_cache
   660: 00000000     0 FILE    LOCAL  DEFAULT  ABS spiffs_nucleus.c
   661: 4024fb8c   177 FUNC    LOCAL  DEFAULT    4 spiffs_obj_lu_find_id_and
   662: 4024fc60   238 FUNC    LOCAL  DEFAULT    4 spiffs_page_index_check
   663: 4024fd54   188 FUNC    LOCAL  DEFAULT    4 spiffs_object_find_object
   664: 4024fe14   253 FUNC    LOCAL  DEFAULT    4 spiffs_obj_lu_find_free_o
   665: 4024ff14    49 FUNC    LOCAL  DEFAULT    4 spiffs_obj_lu_scan_v
   666: 4024ff5c   226 FUNC    LOCAL  DEFAULT    4 spiffs_page_data_check$is
   667: 40250040   224 FUNC    LOCAL  DEFAULT    4 spiffs_obj_lu_find_free_o
   668: 00000000     0 FILE    LOCAL  DEFAULT  ABS lwipr_compat.c
   669: 00000000     0 FILE    LOCAL  DEFAULT  ABS NetUtils.cpp
   670: 00000000     0 FILE    LOCAL  DEFAULT  ABS spiffs_cache.c
   671: 40254c54    70 FUNC    LOCAL  DEFAULT    4 spiffs_cache_page_get
   672: 40254c9c   110 FUNC    LOCAL  DEFAULT    4 spiffs_cache_page_free
   673: 40254d0c    61 FUNC    LOCAL  DEFAULT    4 spiffs_cache_page_allocat
   674: 4025360c    99 FUNC    LOCAL  DEFAULT    4 spiffs_cache_page_remove_
   675: 00000000     0 FILE    LOCAL  DEFAULT  ABS spiffs_gc.c
   676: 40253988    81 FUNC    LOCAL  DEFAULT    4 spiffs_gc_erase_block
   677: 00000000     0 FILE    LOCAL  DEFAULT  ABS mem.c
   678: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-helpers-conversion.c
   679: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-helpers-errol.c
   680: 402563cc    93 FUNC    LOCAL  DEFAULT    4 ecma_normalize_high_prec_
   681: 40256430   179 FUNC    LOCAL  DEFAULT    4 ecma_multiply_high_prec_b
   682: 402564e4   183 FUNC    LOCAL  DEFAULT    4 ecma_divide_high_prec_by_
   683: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-helpers-external-poi
   684: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-helpers-number.c
   685: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-helpers-value.c
   686: 402578f8    66 FUNC    LOCAL  DEFAULT    4 ecma_value_assign_float_n
   687: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-helpers-values-colle
   688: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-init-finalize.c
   689: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-lcache.c
   690: 3fff62e0  2048 OBJECT  LOCAL  DEFAULT    3 ecma_lcache_hash_table
   691: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-literal-storage.c
   692: 3fff6ae4     4 OBJECT  LOCAL  DEFAULT    3 string_list_first_p
   693: 3fff6ae0     4 OBJECT  LOCAL  DEFAULT    3 number_list_first_p
   694: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-builtin-helpers.c
   695: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-array-object.c
   696: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-conversion.c
   697: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-eval.c
   698: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-exceptions.c
   699: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-function-object.c
   700: 40259a3c   112 FUNC    LOCAL  DEFAULT    4 ecma_function_bind_merge_
   701: 40259f3c   195 FUNC    LOCAL  DEFAULT    4 ecma_op_function_construc
   702: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-lex-env.c
   703: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-number-object.c
   704: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-objects-general.c
   705: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-string-object.c
   706: 00000000     0 FILE    LOCAL  DEFAULT  ABS jmem-allocator.c
   707: 3fff6b0c     4 OBJECT  LOCAL  DEFAULT    3 jmem_free_unused_memory_c
   708: 00000000     0 FILE    LOCAL  DEFAULT  ABS jmem-heap.c
   709: 4025b330   151 FUNC    LOCAL  DEFAULT    4 jmem_heap_alloc_block_int
   710: 00000000     0 FILE    LOCAL  DEFAULT  ABS jmem-poolman.c
   711: 00000000     0 FILE    LOCAL  DEFAULT  ABS lit-strings.c
   712: 00000000     0 FILE    LOCAL  DEFAULT  ABS js-parser.c
   713: 4025be24    46 FUNC    LOCAL  DEFAULT    4 parser_free_literals
   714: 402673a8    49 FUNC    LOCAL  DEFAULT    4 parser_encode_literal
   715: 4025bec4  3067 FUNC    LOCAL  DEFAULT    4 parser_post_processing
   716: 4025cac8   243 FUNC    LOCAL  DEFAULT    4 parser_parse_source
   717: 00000000     0 FILE    LOCAL  DEFAULT  ABS js-parser-mem.c
   718: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-alloc.c
   719: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-boolean-object.c
   720: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-comparison.c
   721: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-get-put-value.c
   722: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-number-arithmetic.c
   723: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-objects-arguments.c
   724: 402637d8    57 FUNC    LOCAL  DEFAULT    4 ecma_arguments_get_mapped
   725: 00000000     0 FILE    LOCAL  DEFAULT  ABS ecma-reference.c
   726: 00000000     0 FILE    LOCAL  DEFAULT  ABS common.c
   727: 00000000     0 FILE    LOCAL  DEFAULT  ABS opcodes.c
   728: 00000000     0 FILE    LOCAL  DEFAULT  ABS opcodes-ecma-arithmetics.
   729: 00000000     0 FILE    LOCAL  DEFAULT  ABS opcodes-ecma-equality.c
   730: 00000000     0 FILE    LOCAL  DEFAULT  ABS opcodes-ecma-relational.c
   731: 00000000     0 FILE    LOCAL  DEFAULT  ABS int_asm--set_intclear.o
   732: 00000000     0 NOTYPE  LOCAL  DEFAULT  ABS .callsz
   733: 00000000     0 NOTYPE  LOCAL  DEFAULT  ABS .locsz
   734: 00000000     0 FILE    LOCAL  DEFAULT  ABS atof.c
   735: 00000000     0 FILE    LOCAL  DEFAULT  ABS strtod.c
   736: 00000000     0 FILE    LOCAL  DEFAULT  ABS strrchr.c
   737: 00000000     0 FILE    LOCAL  DEFAULT  ABS floatscan.c
   738: 00000000     0 FILE    LOCAL  DEFAULT  ABS fmodl.c
   739: 00000000     0 FILE    LOCAL  DEFAULT  ABS scalbnl.c
   740: 00000000     0 FILE    LOCAL  DEFAULT  ABS fmod.c
   741: 00000000     0 FILE    LOCAL  DEFAULT  ABS SplitString.cpp
   742: 00000000     0 FILE    LOCAL  DEFAULT  ABS websocket.cpp
   743: 00000000     0 FILE    LOCAL  DEFAULT  ABS base64.cpp
   744: 00000000     0 FILE    LOCAL  DEFAULT  ABS spiffs_check.c
   745: 00000000     0 FILE    LOCAL  DEFAULT  ABS escape.cpp
   746: 00000000     0 FILE    LOCAL  DEFAULT  ABS jrt.c
   747: 00000000     0 FILE    LOCAL  DEFAULT  ABS isxdigit.c
   748: 00000000     0 FILE    LOCAL  DEFAULT  ABS atol.c
   749: 00000000     0 FILE    LOCAL  DEFAULT  ABS memchr.c
   750: 00000000     0 FILE    LOCAL  DEFAULT  ABS 
   751: 2222211f     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_wt_trap
   752: 2222211f     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_wb_trap
   753: fffff11f     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_wt_stri
   754: 2222211f     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_wba_tra
   755: 00000110     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_wt_base
   756: 2222211f     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_wbna_tr
   757: 40267509     0 NOTYPE  LOCAL  DEFAULT  ABS _flash_code_end
   758: 00000110     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_wb_base
   759: fffff22f     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_bp_stri
   760: 22222222     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_bp_allv
   761: fffff11f     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_wb_stri
   762: 2222222f     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_bp_trap
   763: 40002544     0 NOTYPE  LOCAL  DEFAULT  ABS ets_uart_printf
   764: fffff00f     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_unused_
   765: 00000220     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_bp_base
   766: 40004d90     0 NOTYPE  LOCAL  DEFAULT  ABS gpio_pin_intr_state_set
   767: 22222112     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_wb_allv
   768: 22222112     0 NOTYPE  LOCAL  DEFAULT  ABS _memmap_cacheattr_wt_allv
   769: 40266fb8    17 FUNC    GLOBAL DEFAULT    4 ecma_is_value_false
   770: 402578c0    56 FUNC    GLOBAL DEFAULT    4 ecma_free_value
   771: 40260c20    15 FUNC    GLOBAL DEFAULT    4 ecma_alloc_number
   772: 4024b564    98 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClientD1Ev
   773: 3ffef5f8     2 OBJECT  GLOBAL DEFAULT    3 phy_freq_offset
   774: 4023e208    15 FUNC    GLOBAL DEFAULT    4 vsprintf
   775: 40266cfc    62 FUNC    GLOBAL DEFAULT    4 opfunc_instanceof
   776: 4024a8d0    21 FUNC    GLOBAL DEFAULT    4 ctime
   777: 40248388   244 FUNC    GLOBAL DEFAULT    4 _ZN3Tsb8checkHexEPKhi
   778: 4025ac70   373 FUNC    GLOBAL DEFAULT    4 ecma_op_general_object_pu
   779: 4024c630    53 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient7onErrorEa
   780: 40259a28    19 FUNC    GLOBAL DEFAULT    4 ecma_raise_uri_error
   781: 40229018    20 FUNC    GLOBAL DEFAULT    4 icmp_dest_unreach
   782: 4024c378    28 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient10sendString
   783: 40254acc     5 FUNC    GLOBAL DEFAULT    4 SPIFFS_errno
   784: 4020fcb8   160 FUNC    GLOBAL DEFAULT    4 pm_set_sleep_btco
   785: 40103690   223 FUNC    GLOBAL DEFAULT    5 rcGetSched
   786: 4021de94   136 FUNC    GLOBAL DEFAULT    4 cnx_rc_update_rssi
   787: 4025b7c4    35 FUNC    GLOBAL DEFAULT    4 lit_char_is_identifier_pa
   788: 40204394    80 FUNC    GLOBAL DEFAULT    4 wifi_station_ap_number_se
   789: 40254b4c    17 FUNC    GLOBAL DEFAULT    4 _ZN16MemoryDataStream4see
   790: 40266eec     2 FUNC    GLOBAL DEFAULT    4 ecma_free_external_pointe
   791: 4021af7c     2 FUNC    GLOBAL DEFAULT    4 ieee80211_wme_initparams
   792: 4020d08c    44 FUNC    GLOBAL DEFAULT    4 set_rf_gain_stage10
   793: 40238898   673 FUNC    GLOBAL DEFAULT    4 bi_mod_power
   794: 40250980   412 FUNC    GLOBAL DEFAULT    4 spiffs_page_move
   795: 4025ab64    41 FUNC    GLOBAL DEFAULT    4 ecma_op_create_object_obj
   796: 40228918    54 FUNC    GLOBAL DEFAULT    4 espconn_port
   797: 4025ec5c   346 FUNC    GLOBAL DEFAULT    4 parser_emit_cbc_backward_
   798: 402673e8    26 FUNC    GLOBAL DEFAULT    4 parser_list_init
   799: 4024c21c   143 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClientD2Ev
   800: 40254c34    30 FUNC    GLOBAL DEFAULT    4 _ZN8DateTimeC1Ev
   801: 4020f8d8   116 FUNC    GLOBAL DEFAULT    4 pm_sdio_nidle
   802: 40214700    72 FUNC    GLOBAL DEFAULT    4 rcAttach
   803: 4025b8f0    73 FUNC    GLOBAL DEFAULT    4 lit_is_ex_utf8_string_mag
   804: 40252830   129 FUNC    WEAK   DEFAULT    4 _ZNK7HashMapI6StringS0_E8
   805: 3ffedea2   235 OBJECT  GLOBAL DEFAULT    2 cbc_flags
   806: 40259234   147 FUNC    GLOBAL DEFAULT    4 ecma_op_to_boolean
   807: 4000ce60     0 NOTYPE  GLOBAL DEFAULT  ABS __divdi3
   808: 402159bc    25 FUNC    GLOBAL DEFAULT    4 ieee80211_user_ie_init
   809: 40229968    29 FUNC    GLOBAL DEFAULT    4 inc_byte_array
   810: 40103c9c   181 FUNC    GLOBAL DEFAULT    5 trc_NeedRTS
   811: 401057b0    25 FUNC    GLOBAL DEFAULT    5 _ZN6StringC2ERKS_
   812: 3ffef4d8     1 OBJECT  GLOBAL DEFAULT    3 tout_dis_txpwr_track
   813: 4024dc94    29 FUNC    WEAK   DEFAULT    4 _ZN6VectorI7BssInfoED0Ev
   814: 40239d1c    82 FUNC    GLOBAL DEFAULT    4 SHA1_Update
   815: 4024f938   119 FUNC    GLOBAL DEFAULT    4 SPIFFS_fremove
   816: 40261300    20 FUNC    GLOBAL DEFAULT    4 ecma_builtin_function_pro
   817: 4000dea8     0 NOTYPE  GLOBAL DEFAULT  ABS memcmp
   818: 4024b254    30 FUNC    GLOBAL DEFAULT    4 _ZN5TimerC2Ev
   819: 4022a0fc     9 FUNC    GLOBAL DEFAULT    4 wpa_auth_sta_no_wpa
   820: 4020e9b4   478 FUNC    GLOBAL DEFAULT    4 ram_cal_tos_v60
   821: 4021b004    53 FUNC    GLOBAL DEFAULT    4 ieee80211_rfid_locp_recv_
   822: 40224718    72 FUNC    GLOBAL DEFAULT    4 raw_new
   823: 402558f4    15 FUNC    GLOBAL DEFAULT    4 ecma_get_named_property
   824: 40247098    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJR6
   825: 4021fe38   210 FUNC    GLOBAL DEFAULT    4 dhcp_renew
   826: 4021f1e0    56 FUNC    GLOBAL DEFAULT    4 ieee80211_add_ie_vendor_e
   827: 3ffef61c     4 OBJECT  GLOBAL DEFAULT    3 test_print_time
   828: 3ff00000     0 NOTYPE  GLOBAL DEFAULT  ABS _dport0_literal_end
   829: 40226470    44 FUNC    GLOBAL DEFAULT    4 tcp_seg_free
   830: 3ffefb10    40 OBJECT  GLOBAL DEFAULT    3 buffed_eb_arr
   831: 4020a2c4    52 FUNC    GLOBAL DEFAULT    4 do_noisefloor_lsleep_v50
   832: 40105684     9 FUNC    GLOBAL DEFAULT    5 xPortWantedSizeAlign
   833: 402104a8    13 FUNC    GLOBAL DEFAULT    4 ic_interface_is_p2p
   834: 4022f4c8    52 FUNC    GLOBAL DEFAULT    4 esptouch_set_timeout
   835: 4020e3cc   910 FUNC    GLOBAL DEFAULT    4 tx_pwctrl_cal
   836: 40245d1c    94 FUNC    GLOBAL DEFAULT    4 _Z9getDevUIDv
   837: 4024cf68    69 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection18inter
   838: 4025abd4    81 FUNC    GLOBAL DEFAULT    4 ecma_op_general_object_ge
   839: 4021a428   328 FUNC    GLOBAL DEFAULT    4 ieee80211_send_proberesp
   840: 40210204    31 FUNC    GLOBAL DEFAULT    4 sleep_opt_8266
   841: 4024a860     5 FUNC    GLOBAL DEFAULT    4 __errno
   842: 4022ce80   371 FUNC    GLOBAL DEFAULT    4 wpa_sm_rx_eapol
   843: 4024bcf8    96 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdateC2Ev
   844: 4021eb54    48 FUNC    GLOBAL DEFAULT    4 ieee80211_recv_action_reg
   845: 4025b2d8    15 FUNC    GLOBAL DEFAULT    4 jmem_compress_pointer
   846: 402065ec    27 FUNC    GLOBAL DEFAULT    4 bit_popcount
   847: 4022e388    64 FUNC    GLOBAL DEFAULT    4 wpa_sm_alloc_eapol
   848: 4025bd5c    31 FUNC    GLOBAL DEFAULT    4 lit_convert_surrogate_pai
   849: 40254928     4 FUNC    WEAK   DEFAULT    4 _ZNK6VectorI19rBootHttpUp
   850: 40239a20    31 FUNC    GLOBAL DEFAULT    4 RSA_public
   851: 40221bd8   124 FUNC    GLOBAL DEFAULT    4 espconn_kill_pcb
   852: 40205fe0    50 FUNC    GLOBAL DEFAULT    4 system_uart_de_swap
   853: 402599ec    19 FUNC    GLOBAL DEFAULT    4 ecma_raise_reference_erro
   854: 3ffeb1a0    20 OBJECT  WEAK   DEFAULT    2 _ZTV8WDTClass
   855: 402103a0    79 FUNC    GLOBAL DEFAULT    4 ic_enable_interface
   856: 40102b78    35 FUNC    GLOBAL DEFAULT    5 ppRollBackTxQ
   857: 40250b20   103 FUNC    GLOBAL DEFAULT    4 spiffs_cb_object_event
   858: 4023db90   286 FUNC    GLOBAL DEFAULT    4 asn1_signature_type
   859: 40234cb0   202 FUNC    GLOBAL DEFAULT    4 process_certificate
   860: 4025a350   107 FUNC    GLOBAL DEFAULT    4 ecma_op_create_number_obj
   861: 40245fac    49 FUNC    GLOBAL DEFAULT    4 _Z14respondAndHalt6String
   862: 40228d8c    55 FUNC    GLOBAL DEFAULT    4 espconn_udp_disconnect
   863: 4022e13c   377 FUNC    GLOBAL DEFAULT    4 eagle_auth_done
   864: 4021dd78    75 FUNC    GLOBAL DEFAULT    4 cnx_remove_all_rc
   865: 4024ae84    63 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerial4readE
   866: 40221444    48 FUNC    GLOBAL DEFAULT    4 wifi_softap_set_dhcps_lea
   867: 4024b74c   127 FUNC    WEAK   DEFAULT    4 _ZN7HashMapIt8DelegateIFv
   868: 402108d4    51 FUNC    GLOBAL DEFAULT    4 pm_rtc_clock_cali_proc
   869: 40214ae8    23 FUNC    GLOBAL DEFAULT    4 wDev_Enable_Beacon_Tsf
   870: 4022dbbc    17 FUNC    GLOBAL DEFAULT    4 wpa_snprintf_hex
   871: 4024884c     3 FUNC    GLOBAL DEFAULT    4 abort
   872: 40226698     4 FUNC    GLOBAL DEFAULT    4 tcp_arg
   873: 40209e00   110 FUNC    GLOBAL DEFAULT    4 pbus_set_rxbbgain
   874: 40204928    78 FUNC    GLOBAL DEFAULT    4 wifi_station_set_auto_con
   875: 40203658    18 FUNC    GLOBAL DEFAULT    4 system_phy_set_rfoption
   876: 4025b5bc    31 FUNC    GLOBAL DEFAULT    4 jerry_unimplemented
   877: 4021e658   113 FUNC    GLOBAL DEFAULT    4 cnx_node_search
   878: 402075bc   117 FUNC    GLOBAL DEFAULT    4 rboot_set_config
   879: 3ff00000     0 NOTYPE  GLOBAL DEFAULT  ABS _dport0_rodata_end
   880: 4000443c     0 NOTYPE  GLOBAL DEFAULT  ABS SPI_write_enable
   881: 40223e5c    36 FUNC    GLOBAL DEFAULT    4 netif_set_down
   882: 4000a2cc     0 NOTYPE  GLOBAL DEFAULT  ABS hmac_md5
   883: 402178cc    61 FUNC    GLOBAL DEFAULT    4 ieee80211_ht_node_init
   884: 4024a200    49 FUNC    GLOBAL DEFAULT    4 _ZNK6String7indexOfEcj
   885: 4022970c   132 FUNC    GLOBAL DEFAULT    4 hostapd_config_defaults
   886: 40202ed0    83 FUNC    GLOBAL DEFAULT    4 system_restart
   887: 4022df04   318 FUNC    GLOBAL DEFAULT    4 ppInstallKey
   888: 401013cc    15 FUNC    GLOBAL DEFAULT    5 lmacIsActive
   889: 3fff42c0     4 OBJECT  GLOBAL DEFAULT    3 APRecvBcnStartTick
   890: 40000f74     0 NOTYPE  GLOBAL DEFAULT  ABS ets_intr_lock
   891: 4025a448    45 FUNC    GLOBAL DEFAULT    4 ecma_op_object_get
   892: 40233044   870 FUNC    GLOBAL DEFAULT    4 TOUCH_Find_sync_ht40
   893: 40266fa4    17 FUNC    GLOBAL DEFAULT    4 ecma_is_value_true
   894: 4026366c    26 FUNC    GLOBAL DEFAULT    4 ecma_op_get_value_lex_env
   895: 4022f420   150 FUNC    GLOBAL DEFAULT    4 smartconfig_get_status
   896: 4025a5dc    31 FUNC    GLOBAL DEFAULT    4 ecma_op_object_is_prototy
   897: 40221198   105 FUNC    GLOBAL DEFAULT    4 dhcps_stop
   898: 40004400     0 NOTYPE  GLOBAL DEFAULT  ABS SPI_write_status
   899: 3ffef218     2 OBJECT  GLOBAL DEFAULT    3 lwip_timer_interval
   900: 40266ef8    27 FUNC    GLOBAL DEFAULT    4 ecma_string_is_empty
   901: 40248ce0   363 FUNC    GLOBAL DEFAULT    4 realloc
   902: 4020f568   124 FUNC    GLOBAL DEFAULT    4 dpd_mem_write
   903: 40250f54  1388 FUNC    GLOBAL DEFAULT    4 spiffs_object_append
   904: 40266e34    15 FUNC    GLOBAL DEFAULT    4 ecma_set_named_data_prope
   905: 3ffedb8c    18 OBJECT  GLOBAL DEFAULT    2 ecma_builtin_function_pro
   906: 40260c00    15 FUNC    GLOBAL DEFAULT    4 ecma_alloc_object
   907: 40257164    15 FUNC    GLOBAL DEFAULT    4 ecma_string_to_utf8_bytes
   908: 400047f0     0 NOTYPE  GLOBAL DEFAULT  ABS Cache_Read_Disable
   909: 4000b8b4     0 NOTYPE  GLOBAL DEFAULT  ABS hmac_sha1_vector
   910: 40215b20    41 FUNC    GLOBAL DEFAULT    4 ieee80211_find_channel_by
   911: 3fff7c2c     4 OBJECT  GLOBAL DEFAULT    3 hex_index
   912: 40205ea8    17 FUNC    GLOBAL DEFAULT    4 wifi_set_status_led_outpu
   913: 4022338c    64 FUNC    GLOBAL DEFAULT    4 ip4_addr_netmask_valid
   914: 40100eec   107 FUNC    GLOBAL DEFAULT    5 system_deep_sleep_local_2
   915: 40249cac    19 FUNC    GLOBAL DEFAULT    4 _ZN9IPAddressC2Ehhhh
   916: 3fff4769     1 OBJECT  GLOBAL DEFAULT    3 no_ap_found_index
   917: 3ffef000     0 NOTYPE  GLOBAL DEFAULT  ABS __init_array_end
   918: 402244cc    81 FUNC    GLOBAL DEFAULT    4 pbuf_memfind
   919: 4024f4ec   195 FUNC    GLOBAL DEFAULT    4 SPIFFS_read
   920: 40263a3c   189 FUNC    GLOBAL DEFAULT    4 ecma_op_resolve_reference
   921: 4021e7fc    47 FUNC    GLOBAL DEFAULT    4 wifi_softap_toomany_deny
   922: 3fff428e     1 OBJECT  GLOBAL DEFAULT    3 BcnWithMcastSendCnt
   923: 40205cc8     8 FUNC    GLOBAL DEFAULT    4 wifi_enable_6m_rate
   924: 4025621c    37 FUNC    GLOBAL DEFAULT    4 ecma_number_to_decimal
   925: 3ffef3a5     1 OBJECT  GLOBAL DEFAULT    3 OpmodChgIsOnGoing
   926: 40236958   531 FUNC    GLOBAL DEFAULT    4 x509_verify
   927: 40254a0c    60 FUNC    WEAK   DEFAULT    4 _ZN8DelegateIFv6StringP13
   928: 4020f94c    29 FUNC    GLOBAL DEFAULT    4 chg_lslp_mem_opt_8266
   929: 4021e7d4    39 FUNC    GLOBAL DEFAULT    4 wifi_softap_staconnected_
   930: 4021f3cc    77 FUNC    GLOBAL DEFAULT    4 ieee80211_add_ie_vendor_e
   931: 4025bdac   117 FUNC    GLOBAL DEFAULT    4 lit_compare_utf8_strings_
   932: 4021b314    45 FUNC    GLOBAL DEFAULT    4 scan_pm_channel_op_cb
   933: 40266ed0    27 FUNC    GLOBAL DEFAULT    4 ecma_set_property_lcached
   934: 40205b4c    94 FUNC    GLOBAL DEFAULT    4 wifi_get_macaddr
   935: 4024fa98   108 FUNC    GLOBAL DEFAULT    4 SPIFFS_readdir
   936: 40217f54    27 FUNC    GLOBAL DEFAULT    4 ieee80211_add_htcap
   937: 4024d7ec    49 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass5getIPEv
   938: 402530e8   203 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClient12parseHea
   939: 4021b860    18 FUNC    GLOBAL DEFAULT    4 cannel_scan_connect_state
   940: 402286ac   144 FUNC    GLOBAL DEFAULT    4 espconn_get_packet_info
   941: 3fff42d8   156 OBJECT  GLOBAL DEFAULT    3 gScanStruct
   942: 40202bcc     8 FUNC    GLOBAL DEFAULT    4 system_get_os_print
   943: 40105640    19 FUNC    GLOBAL DEFAULT    5 pvPortCalloc
   944: 40256ec8   129 FUNC    GLOBAL DEFAULT    4 ecma_new_ecma_string_from
   945: 40266e10    18 FUNC    GLOBAL DEFAULT    4 ecma_get_lex_env_provide_
   946: 40254790    58 FUNC    WEAK   DEFAULT    4 _ZN8DelegateIFvvEEaSEOS1_
   947: 40252354    54 FUNC    GLOBAL DEFAULT    4 spiffs_fd_return
   948: 4024e20c    31 FUNC    GLOBAL DEFAULT    4 _ZN14CommandHandlerD1Ev
   949: 40227c5c   321 FUNC    GLOBAL DEFAULT    4 udp_sendto_if
   950: 3ffef96a     1 OBJECT  GLOBAL DEFAULT    3 dbg_stop_sw_wdt
   951: 4024b0f8    31 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerial17syst
   952: 402281cc    68 FUNC    GLOBAL DEFAULT    4 espconn_create
   953: 40105340     0 FUNC    GLOBAL HIDDEN     5 __ltsf2
   954: 40203f70    17 FUNC    GLOBAL DEFAULT    4 wifi_set_opmode
   955: 4020f628    35 FUNC    GLOBAL DEFAULT    4 pm_set_sleep_cycles
   956: 40100f78    47 FUNC    GLOBAL DEFAULT    5 system_os_post
   957: 40224460   108 FUNC    GLOBAL DEFAULT    4 pbuf_memcmp
   958: 40100fac    86 FUNC    GLOBAL DEFAULT    5 system_rtc_mem_write
   959: 4020f7e0    63 FUNC    GLOBAL DEFAULT    4 pm_sleep_opt_bb_off
   960: 3ffef5fa     1 OBJECT  GLOBAL DEFAULT    3 do_pwctrl_flag
   961: 402107a4    37 FUNC    GLOBAL DEFAULT    4 ic_get_rssi
   962: 4023973c   123 FUNC    GLOBAL DEFAULT    4 RSA_free
   963: 4020ab1c    82 FUNC    GLOBAL DEFAULT    4 ram_set_noise_floor
   964: 3ffef377     1 OBJECT  GLOBAL DEFAULT    3 deep_sleep_flag
   965: 4020ebc4   446 FUNC    GLOBAL DEFAULT    4 ram_rfcal_txcap
   966: 40249cc0    36 FUNC    GLOBAL DEFAULT    4 _ZN9IPAddressC2E7ip_addr
   967: 4024d3a4     7 FUNC    WEAK   DEFAULT    4 _ZN19ISystemReadyHandlerD
   968: 40252e7c    97 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClientD1Ev
   969: 40266f90    17 FUNC    GLOBAL DEFAULT    4 ecma_is_value_boolean
   970: 40254b78    60 FUNC    WEAK   DEFAULT    4 _ZN8DelegateIFvR10HttpCli
   971: 40234d7c   151 FUNC    GLOBAL DEFAULT    4 ssl_match_fingerprint
   972: 3ffede5c    70 OBJECT  GLOBAL DEFAULT    2 cbc_ext_flags
   973: 40245734     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvI9s
   974: 402143b0    74 FUNC    GLOBAL DEFAULT    4 RC_SetBasicRate
   975: 40225fc8    90 FUNC    GLOBAL DEFAULT    4 tcp_recved
   976: 40255a3c    75 FUNC    GLOBAL DEFAULT    4 ecma_free_property_descri
   977: 4024575c     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvti
   978: 401026f0   156 FUNC    GLOBAL DEFAULT    5 lmacProcessTxRtsError
   979: 40210734    92 FUNC    GLOBAL DEFAULT    4 ic_set_key
   980: 402404f0   164 FUNC    GLOBAL DEFAULT    4 tan
   981: 3ffef621     1 OBJECT  GLOBAL DEFAULT    3 phy_in_vdd33_offset
   982: 40203724    47 FUNC    GLOBAL DEFAULT    4 system_restoreclock
   983: 40226714    99 FUNC    GLOBAL DEFAULT    4 tcp_pcb_remove
   984: 402264a4    66 FUNC    GLOBAL DEFAULT    4 tcp_seg_copy
   985: 40228860   110 FUNC    GLOBAL DEFAULT    4 espconn_get_keepalive
   986: 40004cd0     0 NOTYPE  GLOBAL DEFAULT  ABS gpio_output_set
   987: 4020a3ac    44 FUNC    GLOBAL DEFAULT    4 stop_dig_rx
   988: 40223e18     7 FUNC    GLOBAL DEFAULT    4 netif_set_default
   989: 40203920    18 FUNC    GLOBAL DEFAULT    4 system_get_free_heap_size
   990: 4024f298   239 FUNC    GLOBAL DEFAULT    4 SPIFFS_mount
   991: 40217b3c   204 FUNC    GLOBAL DEFAULT    4 ieee80211_setup_htrates
   992: 40237af0    55 FUNC    GLOBAL DEFAULT    4 bi_initialize
   993: 4010528c     0 FUNC    GLOBAL HIDDEN     5 __eqsf2
   994: 4024c404    83 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient7connectE6St
   995: 40246aac   109 FUNC    WEAK   DEFAULT    4 _ZN7HashMapIc6StringE5cle
   996: 402352bc   177 FUNC    GLOBAL DEFAULT    4 send_certificate
   997: 40238bd4   179 FUNC    GLOBAL DEFAULT    4 bi_crt
   998: 40242de0    17 OBJECT  GLOBAL DEFAULT    4 default_ssid
   999: 4022dbd8    37 FUNC    GLOBAL DEFAULT    4 wpa_parse_wpa_ie
  1000: 40212238   117 FUNC    GLOBAL DEFAULT    4 fpm_close
  1001: 4024e0e4   161 FUNC    GLOBAL DEFAULT    4 _ZN15CommandExecutor15exe
  1002: 401008e0    84 FUNC    GLOBAL DEFAULT    5 ets_timer_disarm
  1003: 402591fc    56 FUNC    GLOBAL DEFAULT    4 ecma_op_to_primitive
  1004: 40223df8    13 FUNC    GLOBAL DEFAULT    4 netif_set_gw
  1005: 4024d150    61 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnectionD2Ev
  1006: 40256d68    17 FUNC    GLOBAL DEFAULT    4 ecma_init_ecma_length_str
  1007: 40211f3c    18 FUNC    GLOBAL DEFAULT    4 pm_scan_unlocked
  1008: 4023e174   101 FUNC    GLOBAL DEFAULT    4 ssl_obj_memory_load
  1009: 40219920    78 FUNC    GLOBAL DEFAULT    4 ieee80211_add_rates
  1010: 402077d8    47 FUNC    GLOBAL DEFAULT    4 rboot_set_rtc_data
  1011: 4023805c   148 FUNC    GLOBAL DEFAULT    4 bi_print
  1012: 3ffef647     1 OBJECT  GLOBAL DEFAULT    3 rxiq_cover_fail_num
  1013: 402505c8   132 FUNC    GLOBAL DEFAULT    4 spiffs_obj_lu_find_free
  1014: 40207fb4    15 FUNC    GLOBAL DEFAULT    4 __toread_needs_stdio_exit
  1015: 401045e0    71 FUNC    GLOBAL DEFAULT    5 wDev_SetWaitingQueue
  1016: 40219024   622 FUNC    GLOBAL DEFAULT    4 ieee80211_output_pbuf
  1017: 4025b848    12 FUNC    GLOBAL DEFAULT    4 lit_get_magic_string_ex_s
  1018: 401048fc    31 FUNC    GLOBAL DEFAULT    5 wDevDisableRx
  1019: 40216488   187 FUNC    GLOBAL DEFAULT    4 ieee80211_hostap_attach
  1020: 40227718    48 FUNC    GLOBAL DEFAULT    4 tcp_timer_needed
  1021: 4022f670    61 FUNC    GLOBAL DEFAULT    4 KISS_Free_Glob
  1022: 4024aef8    67 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerial12dele
  1023: 4024a8ec   107 FUNC    GLOBAL DEFAULT    4 gettimeofday
  1024: 3fff6098    24 OBJECT  GLOBAL DEFAULT    3 _ZN14HardwareSerial10memb
  1025: 3ffe800a     1 OBJECT  GLOBAL DEFAULT    1 dhcps_flag
  1026: 4021bc94   881 FUNC    GLOBAL DEFAULT    4 scan_parse_beacon
  1027: 40260c80    15 FUNC    GLOBAL DEFAULT    4 ecma_alloc_string
  1028: 3ffef972     2 OBJECT  GLOBAL DEFAULT    3 LowestFreqOffsetInOneChk
  1029: 4021d248    48 FUNC    GLOBAL DEFAULT    4 chm_set_current_channel
  1030: 40211260     2 FUNC    GLOBAL DEFAULT    4 pm_idle_sleep
  1031: 4024a270   105 FUNC    GLOBAL DEFAULT    4 _ZNK6String9substringEjj
  1032: 40267004    14 FUNC    GLOBAL DEFAULT    4 ecma_is_value_float_numbe
  1033: 3ffef968     1 OBJECT  GLOBAL DEFAULT    3 idle_timer_reopen_flag
  1034: 40251f40   548 FUNC    GLOBAL DEFAULT    4 spiffs_object_read
  1035: 40245728     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIEE
  1036: 3ffea010    20 OBJECT  WEAK   DEFAULT    2 _ZTV12MethodCallerIM3CliF
  1037: 3fff4df4     4 OBJECT  GLOBAL DEFAULT    3 current_iphdr_src
  1038: 40247dcc   269 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdater6updateEP7Ha
  1039: 4000e2ac     0 NOTYPE  GLOBAL DEFAULT  ABS __floatsisf
  1040: 3ffedcdc   162 OBJECT  GLOBAL DEFAULT    2 ecma_builtin_math_propert
  1041: 402212f0    61 FUNC    GLOBAL DEFAULT    4 wifi_softap_get_dhcps_lea
  1042: 4025492c    36 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM15rBoo
  1043: 4025b854    31 FUNC    GLOBAL DEFAULT    4 lit_compare_utf8_string_a
  1044: 402291cc    32 FUNC    GLOBAL DEFAULT    4 igmp_lookfor_group
  1045: 40260c60    15 FUNC    GLOBAL DEFAULT    4 ecma_alloc_collection_chu
  1046: 40205e24    18 FUNC    GLOBAL DEFAULT    4 wifi_register_rfid_locp_r
  1047: 40250708   443 FUNC    GLOBAL DEFAULT    4 spiffs_page_allocate_data
  1048: 40252b2c    21 FUNC    GLOBAL DEFAULT    4 _ZThn8_N16MemoryDataStrea
  1049: 4020ab78    65 FUNC    GLOBAL DEFAULT    4 ram_start_noisefloor
  1050: 3fff7c30     4 OBJECT  GLOBAL DEFAULT    3 hex_finish
  1051: 402477b0     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJR1
  1052: 3ffea900    20 OBJECT  WEAK   DEFAULT    2 _ZTV12MethodCallerIM15rBo
  1053: 4021af2c    21 FUNC    GLOBAL DEFAULT    4 ieee80211_set_shortslotti
  1054: 4022decc    49 FUNC    GLOBAL DEFAULT    4 wpa_gen_wpa_ie
  1055: 40207984   117 FUNC    GLOBAL DEFAULT    4 __strchrnul
  1056: 4024df44    15 FUNC    GLOBAL DEFAULT    4 _ZN8WDTClass5aliveEv
  1057: 4020c7fc   294 FUNC    GLOBAL DEFAULT    4 change_bbpll160_sleep
  1058: 40210380    10 FUNC    GLOBAL DEFAULT    4 ic_get_addr
  1059: 40239d70   272 FUNC    GLOBAL DEFAULT    4 SHA1_Final
  1060: 4024d99c    27 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass25static
  1061: 400025e0     0 NOTYPE  GLOBAL DEFAULT  ABS rtc_get_reset_reason
  1062: 40244070    40 OBJECT  GLOBAL DEFAULT    4 memp_sizes
  1063: 402528b8   215 FUNC    WEAK   DEFAULT    4 _ZN7HashMapI6StringS0_E8a
  1064: 402207d0    53 FUNC    GLOBAL DEFAULT    4 node_insert_to_list
  1065: 402148e4    67 FUNC    GLOBAL DEFAULT    4 rc_get_sta_trc
  1066: 3ffe9eb0    20 OBJECT  WEAK   DEFAULT    2 _ZTV15IDelegateCallerIvIc
  1067: 40202a84   165 FUNC    GLOBAL DEFAULT    4 ets_timer_handler_isr
  1068: 40101218    11 FUNC    GLOBAL DEFAULT    5 phy_get_mactime
  1069: 40264c84   122 FUNC    GLOBAL DEFAULT    4 lexer_construct_function_
  1070: 40203a88    38 FUNC    GLOBAL DEFAULT    4 system_get_data_of_array_
  1071: 40105a64   107 FUNC    GLOBAL DEFAULT    5 _Z12digitalWriteth
  1072: 3ffea2c8    20 OBJECT  WEAK   DEFAULT    2 _ZTV12MethodCallerIM9FwUp
  1073: 3fff6b34   100 OBJECT  GLOBAL DEFAULT    3 gdbstub_savedRegs
  1074: 4020c460   146 FUNC    GLOBAL DEFAULT    4 bbpll_cal
  1075: 40264b48   314 FUNC    GLOBAL DEFAULT    4 lexer_construct_number_ob
  1076: 4025ee70    54 FUNC    GLOBAL DEFAULT    4 parser_set_continues_to_c
  1077: 4021e1bc   250 FUNC    GLOBAL DEFAULT    4 cnx_sta_leave
  1078: 40213438    44 FUNC    GLOBAL DEFAULT    4 ppUnregisterTxCallback
  1079: 402032ac     8 FUNC    GLOBAL DEFAULT    4 system_upgrade_flag_check
  1080: 40226684    17 FUNC    GLOBAL DEFAULT    4 tcp_new
  1081: 402398b0    31 FUNC    GLOBAL DEFAULT    4 RSA_private
  1082: 4021af04    39 FUNC    GLOBAL DEFAULT    4 ieee80211_proto_attach
  1083: 40228320    33 FUNC    GLOBAL DEFAULT    4 espconn_tcp_get_wnd
  1084: 40234c64     5 FUNC    GLOBAL DEFAULT    4 ssl_get_session_id_size
  1085: 4020409c   165 FUNC    GLOBAL DEFAULT    4 system_param_save_with_pr
  1086: 40247ba4   203 FUNC    WEAK   DEFAULT    4 _ZN7HashMapI6FwType6Strin
  1087: 402091b8    89 FUNC    GLOBAL DEFAULT    4 chip_v6_set_chan_wakeup
  1088: 4025cf68    45 FUNC    GLOBAL DEFAULT    4 parser_cbc_stream_alloc_p
  1089: 4020376c    14 FUNC    GLOBAL DEFAULT    4 system_relative_time
  1090: 4025b508    11 FUNC    GLOBAL DEFAULT    4 jmem_heap_compress_pointe
  1091: 40249014    15 FUNC    GLOBAL DEFAULT    4 _ZN11SystemClass7restartE
  1092: 4021476c    18 FUNC    GLOBAL DEFAULT    4 trc_onScanDone
  1093: 4020fb40   131 FUNC    GLOBAL DEFAULT    4 pm_sleep_set_mac
  1094: 40202fec    31 FUNC    GLOBAL DEFAULT    4 system_get_test_result
  1095: 402669d8   103 FUNC    GLOBAL DEFAULT    4 opfunc_unary_minus
  1096: 40002ab8     0 NOTYPE  GLOBAL DEFAULT  ABS ets_strncmp
  1097: 40223cf8    89 FUNC    GLOBAL DEFAULT    4 netif_remove
  1098: 4024d450    18 FUNC    GLOBAL DEFAULT    4 _ZN16AccessPointClass9isE
  1099: 40245a70    34 FUNC    WEAK   DEFAULT    4 _ZNK6VectorI6StringEixEj
  1100: 40202dc0    21 FUNC    GLOBAL DEFAULT    4 system_get_vdd33
  1101: 402055b4    99 FUNC    GLOBAL DEFAULT    4 wifi_softap_set_beacon_on
  1102: 4020afa0   119 FUNC    GLOBAL DEFAULT    4 sdt_on_noise_start
  1103: 40002ac8     0 NOTYPE  GLOBAL DEFAULT  ABS ets_strlen
  1104: 40214418   233 FUNC    GLOBAL DEFAULT    4 rc_set_rate_limit_id
  1105: 4020f768    46 FUNC    GLOBAL DEFAULT    4 pm_wakeup_opt
  1106: 402460d0   171 FUNC    GLOBAL DEFAULT    4 _Z13cmdEventSmokecPc
  1107: 40101094     0 FUNC    GLOBAL HIDDEN     5 __gtdf2
  1108: 40255b9c    34 FUNC    GLOBAL DEFAULT    4 ecma_bytecode_ref
  1109: 40254950    60 FUNC    WEAK   DEFAULT    4 _ZN8DelegateIFvR15rBootHt
  1110: 402122b4   100 FUNC    GLOBAL DEFAULT    4 fpm_open
  1111: 4025936c   197 FUNC    GLOBAL DEFAULT    4 ecma_op_to_string
  1112: 40254774    27 FUNC    GLOBAL DEFAULT    4 _ZN5Print5printERK6String
  1113: 40248104    20 FUNC    GLOBAL DEFAULT    4 _ZN4JsvmC2E17jerry_init_f
  1114: 4024d3b4    23 FUNC    WEAK   DEFAULT    4 _ZN19ISystemReadyHandlerD
  1115: 4020395c    18 FUNC    GLOBAL DEFAULT    4 system_rtc_clock_cali_pro
  1116: 40214758    18 FUNC    GLOBAL DEFAULT    4 trc_onScanStart
  1117: 40229c80    15 FUNC    GLOBAL DEFAULT    4 os_random
  1118: 402021f8   151 FUNC    GLOBAL DEFAULT    4 wdt_init
  1119: 402456b4    14 FUNC    GLOBAL DEFAULT    4 isprint
  1120: 4020af4c    79 FUNC    GLOBAL DEFAULT    4 target_power_backoff
  1121: 4024180c  1012 FUNC    GLOBAL DEFAULT    4 __tan
  1122: 402485a8     4 FUNC    WEAK   DEFAULT    4 _ZNK6VectorI6StringE5coun
  1123: 3fff5408     4 OBJECT  GLOBAL DEFAULT    3 __tznorth
  1124: 40210cc0   237 FUNC    GLOBAL DEFAULT    4 pm_set_sleep_type_from_up
  1125: 4025ade8    81 FUNC    GLOBAL DEFAULT    4 ecma_op_general_object_de
  1126: 4021b074    27 FUNC    GLOBAL DEFAULT    4 ieee80211_rfid_locp_recv
  1127: 4024c198    29 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdateD0Ev
  1128: 40217878    77 FUNC    GLOBAL DEFAULT    4 ieee80211_ht_attach
  1129: 4020daac    58 FUNC    GLOBAL DEFAULT    4 get_fcc_1m2m_pwr_offset
  1130: 402036e0    21 FUNC    GLOBAL DEFAULT    4 system_get_cpu_freq
  1131: 402106d8    90 FUNC    GLOBAL DEFAULT    4 ic_bss_info_update
  1132: 40260cf0    16 FUNC    GLOBAL DEFAULT    4 ecma_builtin_compact_prof
  1133: 4020d464    27 FUNC    GLOBAL DEFAULT    4 dcoindex2txbbgain
  1134: 402288d0    61 FUNC    GLOBAL DEFAULT    4 espconn_delete
  1135: 4020d324    20 FUNC    GLOBAL DEFAULT    4 phy_get_rand
  1136: 40223a2c    25 FUNC    GLOBAL DEFAULT    4 ip_output_if
  1137: 4021ec94   236 FUNC    GLOBAL DEFAULT    4 ieee80211_alloc_action_ve
  1138: 40205d78    23 FUNC    GLOBAL DEFAULT    4 wifi_set_user_limit_rate_
  1139: 402492e4    21 FUNC    GLOBAL DEFAULT    4 _ZN11SystemClass18staticR
  1140: 4024574c     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJcP
  1141: 40100b78    85 FUNC    GLOBAL DEFAULT    5 spi_flash_get_id
  1142: 40257a34    77 FUNC    GLOBAL DEFAULT    4 ecma_value_assign_value
  1143: 40203f84    17 FUNC    GLOBAL DEFAULT    4 wifi_set_opmode_current
  1144: 40228360     5 FUNC    GLOBAL DEFAULT    4 espconn_tcp_get_mss
  1145: 4026330c   319 FUNC    GLOBAL DEFAULT    4 ecma_op_abstract_equality
  1146: 40266f14    21 FUNC    GLOBAL DEFAULT    4 ecma_is_string_magic
  1147: 40203684    86 FUNC    GLOBAL DEFAULT    4 system_update_cpu_freq
  1148: 40204bb0    22 FUNC    GLOBAL DEFAULT    4 wifi_station_set_reconnec
  1149: 40205454    69 FUNC    GLOBAL DEFAULT    4 wifi_softap_free_station_
  1150: 40101140     0 FUNC    GLOBAL HIDDEN     5 __ltdf2
  1151: 40260d30    16 FUNC    GLOBAL DEFAULT    4 ecma_builtin_function_dis
  1152: 40208140    22 FUNC    GLOBAL DEFAULT    4 phy_set_sense
  1153: 40214e60   149 FUNC    GLOBAL DEFAULT    4 wDev_SetMacAddress
  1154: 40205e38    18 FUNC    GLOBAL DEFAULT    4 wifi_unregister_rfid_locp
  1155: 40209460    76 FUNC    GLOBAL DEFAULT    4 low_power_set
  1156: 4010566c    23 FUNC    GLOBAL DEFAULT    5 pvPortZalloc
  1157: 3ffef3a4     1 OBJECT  GLOBAL DEFAULT    3 default_interface
  1158: 402485ac    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvcP
  1159: 402153b8    73 FUNC    GLOBAL DEFAULT    4 wdev_set_sniffer_addr
  1160: 4023f614   271 FUNC    GLOBAL DEFAULT    4 nextafter
  1161: 4023962c   181 FUNC    GLOBAL DEFAULT    4 MD5_Update
  1162: 40248104    20 FUNC    GLOBAL DEFAULT    4 _ZN4JsvmC1E17jerry_init_f
  1163: 40254ad4     6 FUNC    GLOBAL DEFAULT    4 ax_get_file
  1164: 40204170   105 FUNC    GLOBAL DEFAULT    4 system_param_load
  1165: 40249234    37 FUNC    WEAK   DEFAULT    4 _ZN6VectorIP19ISystemRead
  1166: 4024ca70    50 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection13stati
  1167: 40217944    69 FUNC    GLOBAL DEFAULT    4 ieee80211_parse_htcap
  1168: 3ffef974    20 OBJECT  GLOBAL DEFAULT    3 DefFreqCalTimer
  1169: 40247088     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIR6
  1170: 40105764    28 FUNC    GLOBAL DEFAULT    5 _ZN6StringC2EO15StringSum
  1171: 4023d460   113 FUNC    GLOBAL DEFAULT    4 asn1_get_int
  1172: 4023eee4   192 FUNC    GLOBAL DEFAULT    4 cos
  1173: 4025485c    60 FUNC    WEAK   DEFAULT    4 _ZN8DelegateIFv6StringS0_
  1174: 40214928   111 FUNC    GLOBAL DEFAULT    4 rc_get_trc
  1175: 4000bdc8     0 NOTYPE  GLOBAL DEFAULT  ABS strcmp
  1176: 401052d4     0 FUNC    GLOBAL HIDDEN     5 __lesf2
  1177: 40245970    79 FUNC    WEAK   DEFAULT    4 _ZN6VectorI6StringED2Ev
  1178: 40203cbc    13 FUNC    GLOBAL DEFAULT    4 wifi_station_dhcpc_set_ma
  1179: 4020d780   139 FUNC    GLOBAL DEFAULT    4 get_sar_dout
  1180: 40237ac0    48 FUNC    GLOBAL DEFAULT    4 bi_permanent
  1181: 4024dc6c    37 FUNC    WEAK   DEFAULT    4 _ZN6VectorI7BssInfoED2Ev
  1182: 3ffeb168    20 OBJECT  WEAK   DEFAULT    2 _ZTV12StationClass
  1183: 400030f0     0 NOTYPE  GLOBAL DEFAULT  ABS ets_wdt_disable
  1184: 40009410     0 NOTYPE  GLOBAL DEFAULT  ABS aes_unwrap
  1185: 40204a2c   143 FUNC    GLOBAL DEFAULT    4 wifi_station_connect
  1186: 40254f28    29 FUNC    GLOBAL DEFAULT    4 jerry_create_string_sz
  1187: 40207790    69 FUNC    GLOBAL DEFAULT    4 rboot_get_rtc_data
  1188: 40212e90    51 FUNC    GLOBAL DEFAULT    4 pp_try_enable_idle_timer
  1189: 40237f58   118 FUNC    GLOBAL DEFAULT    4 bi_import
  1190: 40102820   295 FUNC    GLOBAL DEFAULT    5 lmacTxFrame
  1191: 402159d8    89 FUNC    GLOBAL DEFAULT    4 ieee80211_ifattach
  1192: 40245740     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIti
  1193: 40252acc    21 FUNC    GLOBAL DEFAULT    4 _ZThn8_N16MemoryDataStrea
  1194: 4024a8b0    29 FUNC    GLOBAL DEFAULT    4 time
  1195: 40215a3c    92 FUNC    GLOBAL DEFAULT    4 ieee80211_mhz2ieee
  1196: 40212ca8    31 FUNC    GLOBAL DEFAULT    4 TxNodeNum
  1197: 4024d1ec   433 FUNC    GLOBAL DEFAULT    4 _ZN3URLC1E6String
  1198: 40262a84  1496 FUNC    GLOBAL DEFAULT    4 ecma_builtin_object_dispa
  1199: 40103774   153 FUNC    GLOBAL DEFAULT    5 rcGetRate
  1200: 40234c90    29 FUNC    GLOBAL DEFAULT    4 ssl_verify_cert
  1201: 402237d4   600 FUNC    GLOBAL DEFAULT    4 ip_input
  1202: 40258c3c   248 FUNC    GLOBAL DEFAULT    4 ecma_op_create_array_obje
  1203: 402491b8    37 FUNC    WEAK   DEFAULT    4 _ZN6VectorI8DelegateIFvvE
  1204: 40263814    77 FUNC    GLOBAL DEFAULT    4 ecma_op_arguments_object_
  1205: 40261f44  2506 FUNC    GLOBAL DEFAULT    4 ecma_builtin_math_dispatc
  1206: 40248034    65 FUNC    GLOBAL DEFAULT    4 gdbstub_init
  1207: 40205310    17 FUNC    GLOBAL DEFAULT    4 wifi_softap_set_config
  1208: 402264e8    49 FUNC    GLOBAL DEFAULT    4 tcp_recv_null
  1209: 40246f34   171 FUNC    GLOBAL DEFAULT    4 _ZN7AppData4loadEv
  1210: 40253f3c  1298 FUNC    GLOBAL DEFAULT    4 spiffs_gc_clean
  1211: 40103c84    21 FUNC    GLOBAL DEFAULT    5 rcReachRetryLimit
  1212: 402485f4    17 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvvE
  1213: 40104db8    72 FUNC    GLOBAL DEFAULT    5 esf_rx_buf_alloc
  1214: 4025b550    11 FUNC    GLOBAL DEFAULT    4 jmem_pools_free
  1215: 402263d8   121 FUNC    GLOBAL DEFAULT    4 tcp_fasttmr
  1216: 4024d684    26 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass10enable
  1217: 4020f97c   331 FUNC    GLOBAL DEFAULT    4 pm_goto_sleep
  1218: 3ffe8384     1 OBJECT  GLOBAL DEFAULT    1 time_zone
  1219: 402345e8    24 FUNC    GLOBAL DEFAULT    4 ssl_find
  1220: 4020c1f4    24 FUNC    GLOBAL DEFAULT    4 tx_cont_cfg
  1221: 4020d1e4   205 FUNC    GLOBAL DEFAULT    4 set_most_pwr_reg
  1222: 40223cd0    39 FUNC    GLOBAL DEFAULT    4 netif_set_addr
  1223: 40101004    86 FUNC    GLOBAL DEFAULT    5 system_rtc_mem_read
  1224: 4026716c    25 FUNC    GLOBAL DEFAULT    4 lit_char_is_decimal_digit
  1225: 4025d048    88 FUNC    GLOBAL DEFAULT    4 parser_stack_push_uint8
  1226: 4022f504    64 FUNC    GLOBAL DEFAULT    4 smartconfig_set_type
  1227: 40221c54   154 FUNC    GLOBAL DEFAULT    4 espconn_find_current_pcb
  1228: 40100000     0 NOTYPE  GLOBAL DEFAULT    5 _stext
  1229: 4024ce54   268 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection5writeE
  1230: 402266b4     4 FUNC    GLOBAL DEFAULT    4 tcp_accept
  1231: 40239a40   225 FUNC    GLOBAL DEFAULT    4 RSA_encrypt
  1232: 4023e1dc     4 FUNC    GLOBAL DEFAULT    4 load_key_certs
  1233: 4022f1cc   230 FUNC    GLOBAL DEFAULT    4 smartconfig_start
  1234: 3ffef96b     1 OBJECT  GLOBAL DEFAULT    3 dbg_stop_hw_wdt
  1235: 40214754     2 FUNC    GLOBAL DEFAULT    4 trc_onDisconnect
  1236: 40211220    62 FUNC    GLOBAL DEFAULT    4 pm_reset_idle_sleep
  1237: 3ffef61a     1 OBJECT  GLOBAL DEFAULT    3 phy_in_most_power
  1238: 401056b8    44 FUNC    GLOBAL DEFAULT    5 _ZN6String12changeBufferE
  1239: 3ffef628     1 OBJECT  GLOBAL DEFAULT    3 dpd_bypass_original
  1240: 40218e24   248 FUNC    GLOBAL DEFAULT    4 ieee80211_mesh_quick_set
  1241: 4022cff8    43 FUNC    GLOBAL DEFAULT    4 wpa_register
  1242: 40102b9c    15 FUNC    GLOBAL DEFAULT    5 ppRecordBarRRC
  1243: 40260c30    15 FUNC    GLOBAL DEFAULT    4 ecma_dealloc_number
  1244: 4000e190     0 NOTYPE  GLOBAL DEFAULT  ABS memset
  1245: 40203d44    17 FUNC    GLOBAL DEFAULT    4 wifi_get_opmode
  1246: 402557b0    95 FUNC    GLOBAL DEFAULT    4 ecma_create_named_accesso
  1247: 4010111c     0 FUNC    GLOBAL HIDDEN     5 __gedf2
  1248: 4022dba8    17 FUNC    GLOBAL DEFAULT    4 wpa_snprintf_hex_uppercas
  1249: 40257a1c    21 FUNC    GLOBAL DEFAULT    4 ecma_free_value_if_not_ob
  1250: 40207e88    30 FUNC    GLOBAL DEFAULT    4 __shlim
  1251: 3ff00000     0 NOTYPE  GLOBAL DEFAULT  ABS _dport0_literal_start
  1252: 40229bd8    70 FUNC    GLOBAL DEFAULT    4 dup_binstr
  1253: 4024a2dc    40 FUNC    GLOBAL DEFAULT    4 _ZN6String11toLowerCaseEv
  1254: 4022e95c    43 FUNC    GLOBAL DEFAULT    4 aes_encrypt_deinit
  1255: 4000242c     0 NOTYPE  GLOBAL DEFAULT  ABS ets_install_putc1
  1256: 40229ad4   257 FUNC    GLOBAL DEFAULT    4 wpa_config_parse_string
  1257: 40229c90    92 FUNC    GLOBAL DEFAULT    4 os_get_random
  1258: 4020ff8c    85 FUNC    GLOBAL DEFAULT    4 pm_unmask_bt
  1259: 40256b70    79 FUNC    GLOBAL DEFAULT    4 ecma_number_calc_remainde
  1260: 3fff0378     4 OBJECT  GLOBAL DEFAULT    3 WdevTimOffSet
  1261: 3fff56f8   120 OBJECT  GLOBAL DEFAULT    3 appData
  1262: 40256bfc    15 FUNC    GLOBAL DEFAULT    4 ecma_number_divide
  1263: 3ffea788    60 OBJECT  WEAK   DEFAULT    2 _ZTV10MqttClient
  1264: 40251988   161 FUNC    GLOBAL DEFAULT    4 spiffs_object_find_object
  1265: 4020cb94    54 FUNC    GLOBAL DEFAULT    4 write_data_to_rtc
  1266: 4022d6a0   389 FUNC    GLOBAL DEFAULT    4 wpa_parse_wpa_ie_wpa
  1267: 4020c218   349 FUNC    GLOBAL DEFAULT    4 chip_v6_initialize_bb
  1268: 40204978   176 FUNC    GLOBAL DEFAULT    4 wifi_station_save_pmk2cac
  1269: 40266e6c    27 FUNC    GLOBAL DEFAULT    4 ecma_set_property_writabl
  1270: 3fff54f8     2 OBJECT  GLOBAL DEFAULT    3 umm_numblocks
  1271: 4024c4d0   129 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient9onReceiveEP
  1272: 4024985c   182 FUNC    GLOBAL DEFAULT    4 ultoa_wp
  1273: 4025cbc4   724 FUNC    GLOBAL DEFAULT    4 parser_parse_function
  1274: 4026702c    15 FUNC    GLOBAL DEFAULT    4 ecma_is_value_string
  1275: 4021cf84   108 FUNC    GLOBAL DEFAULT    4 wifi_station_start
  1276: 4024acb4   222 FUNC    GLOBAL DEFAULT    4 _Z8fileListv
  1277: 40258c14    20 FUNC    GLOBAL DEFAULT    4 ecma_builtin_type_error_t
  1278: 4024c5ec    67 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient6onSentEt
  1279: 40266de8     8 FUNC    GLOBAL DEFAULT    4 ecma_get_object_type
  1280: 4024e4b0   165 FUNC    WEAK   DEFAULT    4 _ZN7HashMapI6String15Comm
  1281: 40002be8     0 NOTYPE  GLOBAL DEFAULT  ABS ets_putc
  1282: 4021d728    33 FUNC    GLOBAL DEFAULT    4 cnx_assoc_timeout
  1283: 40004a00     0 NOTYPE  GLOBAL DEFAULT  ABS SPIEraseSector
  1284: 3fff428d     1 OBJECT  GLOBAL DEFAULT    3 BcnWithMcastSendStart
  1285: 40212214    23 FUNC    GLOBAL DEFAULT    4 fpm_allow_tx
  1286: 4025b304    26 FUNC    GLOBAL DEFAULT    4 jmem_run_free_unused_memo
  1287: 4024e854   169 FUNC    GLOBAL DEFAULT    4 flashmem_read
  1288: 4025a2c0    83 FUNC    GLOBAL DEFAULT    4 ecma_op_delete_binding
  1289: 4020b7c0    75 FUNC    GLOBAL DEFAULT    4 chip_v6_rxmax_ext_dig
  1290: 40105628    19 FUNC    GLOBAL DEFAULT    5 vPortFree
  1291: 4026663c    59 FUNC    GLOBAL DEFAULT    4 vm_op_delete_var
  1292: 40264da4   239 FUNC    GLOBAL DEFAULT    4 lexer_compare_identifier_
  1293: 40267014    21 FUNC    GLOBAL DEFAULT    4 ecma_is_value_number
  1294: 401011f8     7 FUNC    GLOBAL DEFAULT    5 register_get_phy_addr
  1295: 4020f820    63 FUNC    GLOBAL DEFAULT    4 pm_sleep_opt_bb_on
  1296: 4024b1cc    65 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerialC1Ei
  1297: 40263764   113 FUNC    GLOBAL DEFAULT    4 ecma_op_number_remainder
  1298: 401003c8    99 FUNC    GLOBAL DEFAULT    5 wdt_feed
  1299: 4025808c   360 FUNC    GLOBAL DEFAULT    4 ecma_property_hashmap_cre
  1300: 4025cfc4    73 FUNC    GLOBAL DEFAULT    4 parser_list_append
  1301: 4000cdfc     0 NOTYPE  GLOBAL DEFAULT  ABS __extendsfdf2
  1302: 4023decc    33 FUNC    GLOBAL DEFAULT    4 ssl_obj_free
  1303: 40214dd4   104 FUNC    GLOBAL DEFAULT    4 wDev_Initialize
  1304: 40254d4c    66 FUNC    GLOBAL DEFAULT    4 spiffs_cache_page_get_by_
  1305: 3fff5678     4 OBJECT  GLOBAL DEFAULT    3 mqtt
  1306: 40247418   203 FUNC    WEAK   DEFAULT    4 _ZN7HashMapIi6StringE8all
  1307: 3fff5384    20 OBJECT  GLOBAL DEFAULT    3 TouchRestart_ht40_timer
  1308: 402266c0    83 FUNC    GLOBAL DEFAULT    4 tcp_pcb_purge
  1309: 4024d5bc    34 FUNC    WEAK   DEFAULT    4 _ZN6VectorI7BssInfoEixEj
  1310: 40259040    51 FUNC    GLOBAL DEFAULT    4 ecma_op_check_object_coer
  1311: 40226024   258 FUNC    GLOBAL DEFAULT    4 tcp_connect
  1312: 40248ae0   125 FUNC    GLOBAL DEFAULT    4 umm_init
  1313: 4021b84c    10 FUNC    GLOBAL DEFAULT    4 scan_set_desChan
  1314: 402398d0   267 FUNC    GLOBAL DEFAULT    4 RSA_decrypt
  1315: 4026742c    12 FUNC    GLOBAL DEFAULT    4 parser_list_iterator_init
  1316: 3ffef4e4     4 OBJECT  GLOBAL DEFAULT    3 rxiq_compute_num
  1317: 40105e34    63 FUNC    GLOBAL DEFAULT    5 _ZN5Timer11setCallbackE8D
  1318: 40237e30   157 FUNC    GLOBAL DEFAULT    4 bi_add
  1319: 40248c9c    15 FUNC    GLOBAL DEFAULT    4 malloc
  1320: 40212dfc    15 FUNC    GLOBAL DEFAULT    4 pp_noise_test
  1321: 4023d224    69 FUNC    GLOBAL DEFAULT    4 get_asn1_length
  1322: 40202bbc    13 FUNC    GLOBAL DEFAULT    4 system_set_os_print
  1323: 402266ac     5 FUNC    GLOBAL DEFAULT    4 tcp_err
  1324: 402094b4   374 FUNC    GLOBAL DEFAULT    4 test_tout
  1325: 40260a20     8 FUNC    GLOBAL DEFAULT    4 vm_is_direct_eval_form_ca
  1326: 4021eae8    89 FUNC    GLOBAL DEFAULT    4 ieee80211_send_action
  1327: 4020989c   163 FUNC    GLOBAL DEFAULT    4 set_cal_rxdc
  1328: 40221a14    87 FUNC    GLOBAL DEFAULT    4 dns_gethostbyname
  1329: 402030ac    26 FUNC    GLOBAL DEFAULT    4 system_get_boot_mode
  1330: 40252b14    21 FUNC    GLOBAL DEFAULT    4 _ZThn8_N16MemoryDataStrea
  1331: 4025498c    69 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient10onFinished
  1332: 40250490   252 FUNC    GLOBAL DEFAULT    4 spiffs_obj_lu_scan
  1333: 4024aec4    48 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerial4peekE
  1334: 40237bb0    57 FUNC    GLOBAL DEFAULT    4 bi_terminate
  1335: 402284e0   197 FUNC    GLOBAL DEFAULT    4 espconn_get_connection_in
  1336: 40257d08    36 FUNC    GLOBAL DEFAULT    4 ecma_init
  1337: 4024925c    29 FUNC    WEAK   DEFAULT    4 _ZN6VectorIP19ISystemRead
  1338: 4022e3ec     2 FUNC    GLOBAL DEFAULT    4 wpa_sm_disassociate
  1339: 40257178   142 FUNC    GLOBAL DEFAULT    4 ecma_string_raw_chars
  1340: 40247088     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJR6
  1341: 402427a0    20 FUNC    GLOBAL DEFAULT    4 sntp_getserver
  1342: 3ffebc5c    12 OBJECT  GLOBAL DEFAULT    2 ecma_builtin_type_error_t
  1343: 401052b4     0 FUNC    GLOBAL HIDDEN     5 __gtsf2
  1344: 40266fcc    17 FUNC    GLOBAL DEFAULT    4 ecma_is_value_array_hole
  1345: 4025238c    48 FUNC    GLOBAL DEFAULT    4 spiffs_fd_get
  1346: 40105bb4    41 FUNC    GLOBAL DEFAULT    5 _ZN5Timer4stopEv
  1347: 40248f38    34 FUNC    WEAK   DEFAULT    4 _ZNK6VectorIP19ISystemRea
  1348: 3ffeddb4    96 OBJECT  GLOBAL DEFAULT    2 ecma_builtin_object_prope
  1349: 402283c8    24 FUNC    GLOBAL DEFAULT    4 espconn_tcp_set_max_syn
  1350: 40215d54    88 FUNC    GLOBAL DEFAULT    4 ieee80211_crypto_encap
  1351: 4021a6ec   478 FUNC    GLOBAL DEFAULT    4 ieee80211_freedom_output
  1352: 40256130    90 FUNC    GLOBAL DEFAULT    4 ecma_uint32_to_utf8_strin
  1353: 3fff6b08     4 OBJECT  GLOBAL DEFAULT    3 ecma_global_lex_env_p
  1354: 40260d18    24 FUNC    GLOBAL DEFAULT    4 ecma_builtin_compact_prof
  1355: 3fff4388     1 OBJECT  GLOBAL DEFAULT    3 auth_type
  1356: 40101b7c    11 FUNC    GLOBAL DEFAULT    5 GetAccess
  1357: 40247090     7 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM3CliFv
  1358: 40226790    51 FUNC    GLOBAL DEFAULT    4 tcp_eff_send_mss
  1359: 3ffe9e98    20 OBJECT  WEAK   DEFAULT    2 _ZTV14FunctionCallerIPFvt
  1360: 40105cc8    29 FUNC    GLOBAL DEFAULT    5 _ZN5Timer7restartEv
  1361: 4022ba34   262 FUNC    GLOBAL DEFAULT    4 wpa_write_rsn_ie
  1362: 4022be48   154 FUNC    GLOBAL DEFAULT    4 wpa_parse_kde_ies
  1363: 4000e04c     0 NOTYPE  GLOBAL DEFAULT  ABS memmove
  1364: 40205d4c    35 FUNC    GLOBAL DEFAULT    4 wifi_set_user_rate_limit
  1365: 3ffef642     2 OBJECT  GLOBAL DEFAULT    3 loop_pwctrl_pwdet_error_a
  1366: 4021a250   471 FUNC    GLOBAL DEFAULT    4 ieee80211_alloc_proberesp
  1367: 40254bb4    64 FUNC    GLOBAL DEFAULT    4 _ZN8NetUtils12pbufFindCha
  1368: 4025bb9c    33 FUNC    GLOBAL DEFAULT    4 lit_utf8_string_hash_comb
  1369: 40226ec4   137 FUNC    GLOBAL DEFAULT    4 tcp_send_empty_ack
  1370: 40236d20     2 FUNC    GLOBAL DEFAULT    4 RNG_terminate
  1371: 40247930    23 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdater9clearMarkEv
  1372: 3ffef020     0 NOTYPE  GLOBAL DEFAULT  ABS _bss_table_start
  1373: 3ffeef5c     0 NOTYPE  GLOBAL DEFAULT  ABS __XT_EXCEPTION_TABLE__
  1374: 4010528c     0 FUNC    GLOBAL HIDDEN     5 __nesf2
  1375: 400031b4     0 NOTYPE  GLOBAL DEFAULT  ABS roundup2
  1376: 40204d58    94 FUNC    GLOBAL DEFAULT    4 wifi_softap_cacl_mac
  1377: 4025766c    15 FUNC    GLOBAL DEFAULT    4 ecma_get_magic_string
  1378: 402457a4    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIti
  1379: 40215154    60 FUNC    GLOBAL DEFAULT    4 wDev_remove_KeyEntry
  1380: 40234584    48 FUNC    GLOBAL DEFAULT    4 ssl_get_cert_dn
  1381: 4024bf5c    98 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdate11app
  1382: 40249360    15 FUNC    GLOBAL DEFAULT    4 _Znwj
  1383: 40245754     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvcP
  1384: 4024436c    23 FUNC    GLOBAL DEFAULT    4 inet_chksum
  1385: 4021f01c    62 FUNC    GLOBAL DEFAULT    4 ieee80211_action_vendor_s
  1386: 4020ed88   532 FUNC    GLOBAL DEFAULT    4 ram_rfcal_pwrctrl
  1387: 3fff4e54     4 OBJECT  GLOBAL DEFAULT    3 tcp_tw_pcbs
  1388: 40248f88   101 FUNC    GLOBAL DEFAULT    4 _ZN11SystemClassC1Ev
  1389: 4023746c   976 FUNC    GLOBAL DEFAULT    4 AES_cbc_decrypt
  1390: 402583ac   180 FUNC    GLOBAL DEFAULT    4 ecma_property_hashmap_fin
  1391: 40000600     0 NOTYPE  GLOBAL DEFAULT  ABS rand
  1392: 40100268    21 FUNC    GLOBAL DEFAULT    5 call_user_start_local
  1393: 40204ac0   190 FUNC    GLOBAL DEFAULT    4 wifi_station_disconnect
  1394: 402396e4    85 FUNC    GLOBAL DEFAULT    4 MD5_Final
  1395: 4020aad0    28 FUNC    GLOBAL DEFAULT    4 ram_get_noisefloor
  1396: 402487e0    79 FUNC    WEAK   DEFAULT    4 _ZNK7HashMapI6FwType6Stri
  1397: 40101224    44 FUNC    GLOBAL DEFAULT    5 unsign_to_sign
  1398: 401046b0   322 FUNC    GLOBAL DEFAULT    5 wDev_AppendRxBlocks
  1399: 4023f370   673 FUNC    GLOBAL DEFAULT    4 log
  1400: 4021f698    71 FUNC    GLOBAL DEFAULT    4 dhcp_coarse_tmr
  1401: 4022a228   961 FUNC    GLOBAL DEFAULT    4 wpa_receive
  1402: 4021661c  1103 FUNC    GLOBAL DEFAULT    4 hostap_input
  1403: 40228b38   363 FUNC    GLOBAL DEFAULT    4 espconn_udp_sendto
  1404: 3ffedc28   108 OBJECT  GLOBAL DEFAULT    2 ecma_builtin_global_prope
  1405: 40266a48   465 FUNC    GLOBAL DEFAULT    4 do_number_bitwise_logic
  1406: 4000bfa8     0 NOTYPE  GLOBAL DEFAULT  ABS strncmp
  1407: 40210db0    18 FUNC    GLOBAL DEFAULT    4 pm_get_sleep_type
  1408: 3ffef988     2 OBJECT  GLOBAL DEFAULT    3 PktNumInOneChk
  1409: 4024583c    41 FUNC    GLOBAL DEFAULT    4 _Z7cmdTestcPc
  1410: 3fff4e60     4 OBJECT  GLOBAL DEFAULT    3 tcp_ticks
  1411: 402343d0    97 FUNC    GLOBAL DEFAULT    4 ssl_ctx_new
  1412: 4024e22c    28 FUNC    GLOBAL DEFAULT    4 _ZN14CommandHandler16getC
  1413: 40248248   319 FUNC    GLOBAL DEFAULT    4 _ZN3Tsb10writeFlashEPhi
  1414: 4024a148    31 FUNC    GLOBAL DEFAULT    4 _ZN6String6concatEc
  1415: 4020a604   346 FUNC    GLOBAL DEFAULT    4 tx_pwctrl_init_cal
  1416: 402479d0   269 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdater14updateCall
  1417: 40255810   227 FUNC    GLOBAL DEFAULT    4 ecma_find_named_property
  1418: 40221204   233 FUNC    GLOBAL DEFAULT    4 wifi_softap_set_dhcps_lea
  1419: 40266f40    17 FUNC    GLOBAL DEFAULT    4 ecma_is_value_simple
  1420: 40212238   117 FUNC    GLOBAL DEFAULT    4 wifi_fpm_close
  1421: 4024a168    51 FUNC    GLOBAL DEFAULT    4 _ZN6String6concatEh
  1422: 40103618    89 FUNC    GLOBAL DEFAULT    5 rcUpdateRxDone
  1423: 3ffef950     1 OBJECT  GLOBAL DEFAULT    3 pend_flag_periodic_cal
  1424: 4010015c     0 NOTYPE  GLOBAL DEFAULT    5 _UserExceptionVector_1
  1425: 40255914    33 FUNC    GLOBAL DEFAULT    4 ecma_named_data_property_
  1426: 3fff5238    20 OBJECT  GLOBAL DEFAULT    3 KissRes_ht20_timer
  1427: 4025998c    73 FUNC    GLOBAL DEFAULT    4 ecma_raise_standard_error
  1428: 4024dcb4   173 FUNC    WEAK   DEFAULT    4 _ZN6VectorI7BssInfoEC1ERK
  1429: 402539dc   420 FUNC    GLOBAL DEFAULT    4 spiffs_gc_quick
  1430: 40246eec    59 FUNC    GLOBAL DEFAULT    4 _ZN7AppDataC2E6String
  1431: 4020d0bc   113 FUNC    GLOBAL DEFAULT    4 get_vdd33_offset
  1432: 40104590    35 FUNC    GLOBAL DEFAULT    5 wDev_ProcessCollision
  1433: 4022f558    78 FUNC    GLOBAL DEFAULT    4 KISS_Init_guide_glob
  1434: 40210f34     2 FUNC    GLOBAL DEFAULT    4 uart_tx_flush
  1435: 40105f14     0 NOTYPE  GLOBAL DEFAULT  ABS _lit4_start
  1436: 3fff5404     4 OBJECT  GLOBAL DEFAULT    3 __tzyear
  1437: 3ffef96d     1 OBJECT  GLOBAL DEFAULT    3 total_buffed_eb_num
  1438: 3ffef600     4 OBJECT  GLOBAL DEFAULT    3 phy_rx_gain_dc_table
  1439: 40250650   181 FUNC    GLOBAL DEFAULT    4 spiffs_obj_lu_find_id_and
  1440: 402108b0    28 FUNC    GLOBAL DEFAULT    4 lmacSetRetryLimit
  1441: 402477c0    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJR1
  1442: 4000bec8     0 NOTYPE  GLOBAL DEFAULT  ABS strcpy
  1443: 4022e3e4     4 FUNC    GLOBAL DEFAULT    4 wpa_sm_mlme_setprotection
  1444: 40237148   803 FUNC    GLOBAL DEFAULT    4 AES_cbc_encrypt
  1445: 4023c8f4   171 FUNC    GLOBAL DEFAULT    4 SHA256_Update
  1446: 4025a10c    29 FUNC    GLOBAL DEFAULT    4 ecma_get_global_environme
  1447: 40249d68    46 FUNC    WEAK   DEFAULT    4 _ZN5Print5writeEPKc
  1448: 402458f4    41 FUNC    GLOBAL DEFAULT    4 _Z5blinkv
  1449: 40249ce8    73 FUNC    GLOBAL DEFAULT    4 _ZN9IPAddress8toStringEv
  1450: 40223758   114 FUNC    GLOBAL DEFAULT    4 ip_router
  1451: 40254a98     5 FUNC    GLOBAL DEFAULT    4 mqtt_set_alive
  1452: 40245728     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJEE
  1453: 40267404    12 FUNC    GLOBAL DEFAULT    4 parser_list_reset
  1454: 3ffe9e20    20 OBJECT  WEAK   DEFAULT    2 _ZTV15IDelegateCallerIvIE
  1455: 402666f4   251 FUNC    GLOBAL DEFAULT    4 do_number_arithmetic
  1456: 4024dc10    21 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass21static
  1457: 4000d770     0 NOTYPE  GLOBAL DEFAULT  ABS __umoddi3
  1458: 40246180    68 FUNC    GLOBAL DEFAULT    4 _Z17persistWifiConfigv
  1459: 40248e60    59 FUNC    WEAK   DEFAULT    4 _ZN17ESP01_DescriptionC2E
  1460: 4020c928    48 FUNC    GLOBAL DEFAULT    4 change_bbpll160
  1461: 40002f0c     0 NOTYPE  GLOBAL DEFAULT  ABS ets_get_cpu_frequency
  1462: 4021b4b4    50 FUNC    GLOBAL DEFAULT    4 scan_cancel
  1463: 4024a304    40 FUNC    GLOBAL DEFAULT    4 _ZN6String11toUpperCaseEv
  1464: 40105914    18 FUNC    GLOBAL DEFAULT    5 _ZN6String9setCharAtEjc
  1465: 402194b0   317 FUNC    GLOBAL DEFAULT    4 ieee80211_send_nulldata
  1466: 40263864    95 FUNC    GLOBAL DEFAULT    4 ecma_op_arguments_object_
  1467: 40266484   115 FUNC    GLOBAL DEFAULT    4 opfunc_typeof
  1468: 40212500     7 FUNC    GLOBAL DEFAULT    4 fpm_set_wakeup_cb
  1469: 3ff00000     0 NOTYPE  GLOBAL DEFAULT  ABS _dport0_rodata_start
  1470: 40245764     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFv9s
  1471: 40229810    46 FUNC    GLOBAL DEFAULT    4 hostapd_setup_wpa_psk
  1472: 3fff5208    16 OBJECT  GLOBAL DEFAULT    3 SnifGlob
  1473: 4024c8ac   105 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection5closeE
  1474: 4026305c    33 FUNC    GLOBAL DEFAULT    4 ecma_builtin_object_dispa
  1475: 40248858    15 FUNC    GLOBAL DEFAULT    4 xPortGetFreeHeapSize
  1476: 40229790    20 FUNC    GLOBAL DEFAULT    4 hostapd_mac_comp
  1477: 4025b47c   111 FUNC    GLOBAL DEFAULT    4 jmem_heap_free_block
  1478: 40249f84    53 FUNC    GLOBAL DEFAULT    4 _ZN6String7reserveEj
  1479: 401057cc    51 FUNC    GLOBAL DEFAULT    5 _ZN6StringaSEPKc
  1480: 40248728    60 FUNC    WEAK   DEFAULT    4 _ZN8DelegateIFvcPcEE4copy
  1481: 40206894   107 FUNC    GLOBAL DEFAULT    4 eagle_lwip_if_free
  1482: 40214b58    54 FUNC    GLOBAL DEFAULT    4 wDev_Get_Next_TBTT
  1483: 4024847c    40 FUNC    GLOBAL DEFAULT    4 _ZN3Tsb3runEv
  1484: 402457a4    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJti
  1485: 4024d9bc   104 FUNC    GLOBAL DEFAULT    4 _ZN7BssInfoC2EP8bss_info
  1486: 40267200    26 FUNC    GLOBAL DEFAULT    4 lit_char_get_utf8_length
  1487: 4024bc34    34 FUNC    WEAK   DEFAULT    4 _ZN6VectorI19rBootHttpUpd
  1488: 40226130   679 FUNC    GLOBAL DEFAULT    4 tcp_slowtmr
  1489: 4025384c    51 FUNC    GLOBAL DEFAULT    4 spiffs_cache_page_allocat
  1490: 4020d650    40 FUNC    GLOBAL DEFAULT    4 get_rf_gain_qdb
  1491: 4024dfb4   298 FUNC    GLOBAL DEFAULT    4 _ZN15CommandExecutor18pro
  1492: 4025770c    62 FUNC    GLOBAL DEFAULT    4 ecma_make_int32_value
  1493: 3fff01d0    64 OBJECT  GLOBAL DEFAULT    3 wDevCtrl
  1494: 4024a07c    29 FUNC    GLOBAL DEFAULT    4 _ZN6StringaSEOS_
  1495: 402646e8  1114 FUNC    GLOBAL DEFAULT    4 lexer_construct_literal_o
  1496: 40214b20     7 FUNC    GLOBAL DEFAULT    4 wDev_Set_Beacon_Int
  1497: 40252c10    85 FUNC    WEAK   DEFAULT    4 _ZN3URL16getPathWithQuery
  1498: 3ffef3a8     4 OBJECT  GLOBAL DEFAULT    3 promiscuous_cb
  1499: 3fff4e70     4 OBJECT  GLOBAL DEFAULT    3 udp_pcbs
  1500: 402405c4   431 FUNC    GLOBAL DEFAULT    4 __cos
  1501: 4024e750    67 FUNC    GLOBAL DEFAULT    4 flashmem_read_internal
  1502: 40234aa8    19 FUNC    GLOBAL DEFAULT    4 disposable_new
  1503: 4021dfac    48 FUNC    GLOBAL DEFAULT    4 cnx_update_bss
  1504: 4021d31c    73 FUNC    GLOBAL DEFAULT    4 cnx_sta_connect_led_timer
  1505: 4021b0a4    10 FUNC    GLOBAL DEFAULT    4 unregister_ieee80211_rfid
  1506: 40215b70   469 FUNC    GLOBAL DEFAULT    4 wifi_mode_set
  1507: 402638c4   199 FUNC    GLOBAL DEFAULT    4 ecma_op_arguments_object_
  1508: 40257788    38 FUNC    GLOBAL DEFAULT    4 ecma_get_number_from_valu
  1509: 402274bc    87 FUNC    GLOBAL DEFAULT    4 tcp_rexmit_fast
  1510: 4021fa48   169 FUNC    GLOBAL DEFAULT    4 dhcp_inform
  1511: 3ffe9ff8    20 OBJECT  WEAK   DEFAULT    2 _ZTV15IDelegateCallerIvIR
  1512: 40263080    70 FUNC    GLOBAL DEFAULT    4 ecma_builtin_object_dispa
  1513: 40219294   305 FUNC    GLOBAL DEFAULT    4 ieee80211_send_setup
  1514: 4025bb0c    19 FUNC    GLOBAL DEFAULT    4 lit_zt_utf8_string_size
  1515: 402493bc     7 FUNC    GLOBAL DEFAULT    4 _Z20setMPrintfPrinterCbcP
  1516: 4022da84    96 FUNC    GLOBAL DEFAULT    4 rsn_cipher_put_suites
  1517: 4026398c   123 FUNC    GLOBAL DEFAULT    4 ecma_op_arguments_object_
  1518: 4024e6bc    10 FUNC    GLOBAL DEFAULT    4 flashmem_get_sector_of_ad
  1519: 4020fc60    87 FUNC    GLOBAL DEFAULT    4 pm_check_mac_idle
  1520: 3ffef4f0   148 OBJECT  GLOBAL DEFAULT    3 chip6_sleep_params
  1521: 40205db0    73 FUNC    GLOBAL DEFAULT    4 wifi_send_pkt_freedom
  1522: 402555f8    65 FUNC    GLOBAL DEFAULT    4 ecma_create_decl_lex_env
  1523: 4024fa08    91 FUNC    GLOBAL DEFAULT    4 SPIFFS_close
  1524: 402485f4    17 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvvE
  1525: 4025cf34    15 FUNC    GLOBAL DEFAULT    4 parser_free_local
  1526: 4023e354   501 FUNC    GLOBAL DEFAULT    4 acos
  1527: 40205a48     8 FUNC    GLOBAL DEFAULT    4 wifi_set_promiscuous_rx_c
  1528: 4024df24     7 FUNC    WEAK   DEFAULT    4 _ZN8WDTClassD1Ev
  1529: 402670e8    17 FUNC    GLOBAL DEFAULT    4 ecma_builtin_function_is_
  1530: 4021d19c    52 FUNC    GLOBAL DEFAULT    4 chm_end_op
  1531: 402475cc   437 FUNC    GLOBAL DEFAULT    4 _ZN7ScProto5parseEPKcPhi
  1532: 40100cbc    79 FUNC    GLOBAL DEFAULT    5 spi_flash_write
  1533: 3ffef4d9     1 OBJECT  GLOBAL DEFAULT    3 sleep_mode_flag
  1534: 40267090     7 FUNC    GLOBAL DEFAULT    4 ecma_make_error_obj_value
  1535: 40211ec0    26 FUNC    GLOBAL DEFAULT    4 pm_force_scan_unlock
  1536: 40105748    28 FUNC    GLOBAL DEFAULT    5 _ZN6StringC2EOS_
  1537: 4025cecc    43 FUNC    GLOBAL DEFAULT    4 parser_malloc
  1538: 40204c20   101 FUNC    GLOBAL DEFAULT    4 wifi_station_set_default_
  1539: 3ffef388    28 OBJECT  GLOBAL DEFAULT    3 rst_if
  1540: 4025badc    21 FUNC    GLOBAL DEFAULT    4 lit_is_code_point_utf16_l
  1541: 4024c134    29 FUNC    WEAK   DEFAULT    4 _ZN6VectorI19rBootHttpUpd
  1542: 402266b8     8 FUNC    GLOBAL DEFAULT    4 tcp_poll
  1543: 40223288    34 FUNC    GLOBAL DEFAULT    4 etharp_request
  1544: 402664f8   177 FUNC    GLOBAL DEFAULT    4 opfunc_set_accessor
  1545: 40104548    69 FUNC    GLOBAL DEFAULT    5 Tx_Copy2Queue
  1546: 3fff4e50     4 OBJECT  GLOBAL DEFAULT    3 tcp_tmp_pcb
  1547: 4024e1b4    87 FUNC    GLOBAL DEFAULT    4 _ZN14CommandHandlerC2Ev
  1548: 402220c8    64 FUNC    GLOBAL DEFAULT    4 espconn_recv_hold
  1549: 3fffc714     0 NOTYPE  GLOBAL DEFAULT  ABS flashchip
  1550: 40254898    84 FUNC    WEAK   DEFAULT    4 _ZNK7HashMapIt8DelegateIF
  1551: 40240358   407 FUNC    GLOBAL DEFAULT    4 sqrt
  1552: 402455d8    16 FUNC    GLOBAL DEFAULT    4 setjmp
  1553: 4020b230   856 FUNC    GLOBAL DEFAULT    4 phy_dig_spur_set
  1554: 4020caa4    98 FUNC    GLOBAL DEFAULT    4 reduce_current_init
  1555: 4024ab74    27 FUNC    GLOBAL DEFAULT    4 _Z10fileDeletes
  1556: 3ffe8074     4 OBJECT  GLOBAL DEFAULT    1 chip_version
  1557: 4025b6d4    67 FUNC    GLOBAL DEFAULT    4 lit_char_is_identifier_st
  1558: 4020366c    18 FUNC    GLOBAL DEFAULT    4 system_phy_set_powerup_op
  1559: 402386f4   189 FUNC    GLOBAL DEFAULT    4 bi_set_mod
  1560: 40248ea0    40 FUNC    WEAK   DEFAULT    4 user_init
  1561: 4024e2d0    67 FUNC    WEAK   DEFAULT    4 _ZN15CommandDelegateC2ERK
  1562: 40221b54   130 FUNC    GLOBAL DEFAULT    4 espconn_kill_oldest_pcb
  1563: 40212c90    24 FUNC    GLOBAL DEFAULT    4 RxNodeNum
  1564: 40246cc0   306 FUNC    GLOBAL DEFAULT    4 _Z8cmdEventcPc
  1565: 4025e8d0   314 FUNC    GLOBAL DEFAULT    4 parser_flush_cbc
  1566: 40266f34    12 FUNC    GLOBAL DEFAULT    4 ecma_is_value_direct
  1567: 4025edb8   110 FUNC    GLOBAL DEFAULT    4 parser_set_branch_to_curr
  1568: 40105a08    38 FUNC    GLOBAL DEFAULT    5 _Z6pullupt
  1569: 4024d3ac     7 FUNC    WEAK   DEFAULT    4 _ZN16AccessPointClassD1Ev
  1570: 40226aa4   828 FUNC    GLOBAL DEFAULT    4 tcp_write
  1571: 40260d40   469 FUNC    GLOBAL DEFAULT    4 ecma_builtin_function_dis
  1572: 40205bac   283 FUNC    GLOBAL DEFAULT    4 wifi_set_macaddr
  1573: 4025eaac    47 FUNC    GLOBAL DEFAULT    4 parser_emit_cbc_call
  1574: 40221130   101 FUNC    GLOBAL DEFAULT    4 dhcps_start
  1575: 4020e370    72 FUNC    GLOBAL DEFAULT    4 get_pwctrl_correct
  1576: 4024a670   170 FUNC    GLOBAL DEFAULT    4 spiffs_format_internal
  1577: 4021d2a0    46 FUNC    GLOBAL DEFAULT    4 chm_check_same_channel
  1578: 4025bc10    59 FUNC    GLOBAL DEFAULT    4 lit_utf8_string_length
  1579: 3fff4e5c     4 OBJECT  GLOBAL DEFAULT    3 tcp_listen_pcbs
  1580: 40000e04     0 NOTYPE  GLOBAL DEFAULT  ABS ets_run
  1581: 4025ac38    53 FUNC    GLOBAL DEFAULT    4 ecma_op_general_object_ge
  1582: 402548ec    60 FUNC    WEAK   DEFAULT    4 _ZN8DelegateIFvtiEE4copyE
  1583: 402632a4   103 FUNC    GLOBAL DEFAULT    4 ecma_op_create_boolean_ob
  1584: 3fff6c18     4 OBJECT  GLOBAL DEFAULT    3 jmem_heap_allocated_size
  1585: 40254f10    24 FUNC    GLOBAL DEFAULT    4 jerry_release_value
  1586: 40244290   217 FUNC    GLOBAL DEFAULT    4 inet_chksum_pseudo_partia
  1587: 3fff5300     4 OBJECT  GLOBAL DEFAULT    3 pCHListTral
  1588: 3fff52fc     4 OBJECT  GLOBAL DEFAULT    3 pCHListHead
  1589: 40223c68   102 FUNC    GLOBAL DEFAULT    4 netif_add
  1590: 4021dc8c    83 FUNC    GLOBAL DEFAULT    4 cnx_rc_search
  1591: 40236db8   231 FUNC    GLOBAL DEFAULT    4 print_blob
  1592: 4021d370   188 FUNC    GLOBAL DEFAULT    4 cnx_sta_connect_cmd
  1593: 4024787c    84 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdater9storeMarkE1
  1594: 4026721c    82 FUNC    GLOBAL DEFAULT    4 lit_read_code_unit_from_h
  1595: 40266c44    43 FUNC    GLOBAL DEFAULT    4 opfunc_less_than
  1596: 3ffe8022     2 OBJECT  GLOBAL DEFAULT    1 tx_rf_ana_gain
  1597: 40249f30    21 FUNC    GLOBAL DEFAULT    4 _ZN5Print5printEhi
  1598: 40259c40   207 FUNC    GLOBAL DEFAULT    4 ecma_op_function_object_g
  1599: 4021ae18   175 FUNC    GLOBAL DEFAULT    4 pwrsave_flushq
  1600: 4024b5c8    29 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClientD0Ev
  1601: 4021d78c    17 FUNC    GLOBAL DEFAULT    4 cnx_start_handoff_cb
  1602: 40240594    47 FUNC    WEAK   DEFAULT    4 strdup
  1603: 4021044c    28 FUNC    GLOBAL DEFAULT    4 ic_is_pure_sta
  1604: 402279a4   600 FUNC    GLOBAL DEFAULT    4 udp_input
  1605: 40209834     2 FUNC    GLOBAL DEFAULT    4 ram_tx_mac_enable
  1606: 40257a84   184 FUNC    GLOBAL DEFAULT    4 ecma_new_values_collectio
  1607: 4021d688   121 FUNC    GLOBAL DEFAULT    4 cnx_connect_timeout
  1608: 40255d08   227 FUNC    GLOBAL DEFAULT    4 ecma_delete_property
  1609: 402233cc    26 FUNC    GLOBAL DEFAULT    4 ipaddr_addr
  1610: 4020d2b8    26 FUNC    GLOBAL DEFAULT    4 phy_set_most_tpw
  1611: 4020c960   117 FUNC    GLOBAL DEFAULT    4 set_crystal_uart
  1612: 4020cb48    29 FUNC    GLOBAL DEFAULT    4 phy_afterwake_set_rfoptio
  1613: 4025bbe0    46 FUNC    GLOBAL DEFAULT    4 lit_utf8_string_code_unit
  1614: 4021faf4    71 FUNC    GLOBAL DEFAULT    4 dhcp_network_changed
  1615: 40234710    33 FUNC    GLOBAL DEFAULT    4 add_private_key
  1616: 4024d3e8    38 FUNC    GLOBAL DEFAULT    4 _ZN16AccessPointClassC2Ev
  1617: 40204cb8   154 FUNC    GLOBAL DEFAULT    4 wifi_station_set_hostname
  1618: 402236dc   117 FUNC    GLOBAL DEFAULT    4 ip_route
  1619: 40203408   401 FUNC    GLOBAL DEFAULT    4 system_deep_sleep_instant
  1620: 40204dc8    93 FUNC    GLOBAL DEFAULT    4 wifi_softap_set_default_s
  1621: 40206b48    28 FUNC    GLOBAL DEFAULT    4 umm_free_heap_size
  1622: 4024d670    18 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass9isEnabl
  1623: 4024bd5c   185 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdate7addI
  1624: 4026704c     2 FUNC    GLOBAL DEFAULT    4 ecma_check_value_type_is_
  1625: 4025b2c0    21 FUNC    GLOBAL DEFAULT    4 jmem_init
  1626: 4000e2e8     0 NOTYPE  GLOBAL DEFAULT  ABS __floatunsidf
  1627: 4024c1b8    58 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdate11set
  1628: 4022739c   116 FUNC    GLOBAL DEFAULT    4 tcp_rexmit_rto
  1629: 40266ff0    17 FUNC    GLOBAL DEFAULT    4 ecma_are_values_integer_n
  1630: 4024bc5c   112 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdate12wri
  1631: 40246eec    59 FUNC    GLOBAL DEFAULT    4 _ZN7AppDataC1E6String
  1632: 40105724    31 FUNC    GLOBAL DEFAULT    5 _ZN6StringC2EPKcj
  1633: 4024ef8c    85 FUNC    GLOBAL DEFAULT    4 mqtt_free
  1634: 40226454    28 FUNC    GLOBAL DEFAULT    4 tcp_segs_free
  1635: 40260cdc    20 FUNC    GLOBAL DEFAULT    4 ecma_dealloc_property_pai
  1636: 3ffef5fc     1 OBJECT  GLOBAL DEFAULT    3 txbk_dpdby_flag
  1637: 40266e90    26 FUNC    GLOBAL DEFAULT    4 ecma_set_property_enumera
  1638: 40234c28    50 FUNC    GLOBAL DEFAULT    4 kill_ssl_session
  1639: 4020bcf4   166 FUNC    GLOBAL DEFAULT    4 phy_pbus_soc_cfg
  1640: 40267320    20 FUNC    GLOBAL DEFAULT    4 lit_utf8_decr
  1641: 4024ab20    27 FUNC    GLOBAL DEFAULT    4 _Z8fileTells
  1642: 402532a8   274 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClient9onReceive
  1643: 4023f724  2906 FUNC    GLOBAL DEFAULT    4 pow
  1644: 4021346c    91 FUNC    GLOBAL DEFAULT    4 ppRecycleRxPkt
  1645: 40215060   239 FUNC    GLOBAL DEFAULT    4 wDev_Insert_KeyEntry
  1646: 401011d8    29 FUNC    GLOBAL DEFAULT    5 register_phy_ops
  1647: 40256d7c    37 FUNC    GLOBAL DEFAULT    4 ecma_new_ecma_string_from
  1648: 4024ea24    61 FUNC    GLOBAL DEFAULT    4 mqtt_init
  1649: 40103308    54 FUNC    GLOBAL DEFAULT    5 RC_GetCtsTime
  1650: 402477b8     7 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM9FwUpd
  1651: 40205ad8   113 FUNC    GLOBAL DEFAULT    4 wifi_set_ip_info
  1652: 40245804    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFv9s
  1653: 4025ae3c   195 FUNC    GLOBAL DEFAULT    4 ecma_op_general_object_de
  1654: 40267480    28 FUNC    GLOBAL DEFAULT    4 parser_stack_iterator_ski
  1655: 4000c4c4     0 NOTYPE  GLOBAL DEFAULT  ABS __fixunssfsi
  1656: 40266ccc    46 FUNC    GLOBAL DEFAULT    4 opfunc_greater_or_equal_t
  1657: 4023560c   137 FUNC    GLOBAL DEFAULT    4 ssl_ctx_free
  1658: 3fff4e08     4 OBJECT  GLOBAL DEFAULT    3 netif_default
  1659: 40238d68   222 FUNC    GLOBAL DEFAULT    4 ax_hmac_sha1
  1660: 4024b564    98 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClientD2Ev
  1661: 4025369c   244 FUNC    GLOBAL DEFAULT    4 spiffs_phys_rd
  1662: 401030f0    31 FUNC    GLOBAL DEFAULT    5 ppDiscardMPDU
  1663: 3fff4e4c     4 OBJECT  GLOBAL DEFAULT    3 tcp_active_pcbs
  1664: 40215410   207 FUNC    GLOBAL DEFAULT    4 wdev_exit_sniffer
  1665: 40266f54    17 FUNC    GLOBAL DEFAULT    4 ecma_is_value_empty
  1666: 4024f884   179 FUNC    GLOBAL DEFAULT    4 SPIFFS_remove
  1667: 402457ec    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvti
  1668: 40228214   196 FUNC    GLOBAL DEFAULT    4 espconn_sent
  1669: 40001da0     0 NOTYPE  GLOBAL DEFAULT  ABS ets_write_char
  1670: 40228950    28 FUNC    GLOBAL DEFAULT    4 espconn_gethostbyname
  1671: 40210790    18 FUNC    GLOBAL DEFAULT    4 ic_remove_key
  1672: 40248118    55 FUNC    GLOBAL DEFAULT    4 _ZN4Jsvm4evalE6String
  1673: 40207914    21 FUNC    GLOBAL DEFAULT    4 strtoll
  1674: 4000c3dc     0 NOTYPE  GLOBAL DEFAULT  ABS __mulsf3
  1675: 40258500   153 FUNC    GLOBAL DEFAULT    4 ecma_builtin_helper_def_p
  1676: 402455fc    73 FUNC    GLOBAL DEFAULT    4 RC4_setup
  1677: 40245754     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvcP
  1678: 40222448   218 FUNC    GLOBAL DEFAULT    4 espconn_tcp_client
  1679: 4021f31c    56 FUNC    GLOBAL DEFAULT    4 ieee80211_add_ie_vendor_e
  1680: 4025ea74    56 FUNC    GLOBAL DEFAULT    4 parser_emit_cbc_literal_f
  1681: 3fff5778     4 OBJECT  GLOBAL DEFAULT    3 start
  1682: 402076b4   217 FUNC    GLOBAL DEFAULT    4 rboot_write_flash
  1683: 40256248   386 FUNC    GLOBAL DEFAULT    4 ecma_number_to_utf8_strin
  1684: 4024a98c    65 FUNC    GLOBAL DEFAULT    4 _ZN6Stream9readBytesEPcj
  1685: 4021af80     2 FUNC    GLOBAL DEFAULT    4 ieee80211_wme_updateparam
  1686: 4024574c     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIcP
  1687: 3fff3c04  1660 OBJECT  GLOBAL DEFAULT    3 g_ic
  1688: 40264d00    20 FUNC    GLOBAL DEFAULT    4 lexer_construct_regexp_ob
  1689: 3fff540c     4 OBJECT  GLOBAL DEFAULT    3 realtime_stamp
  1690: 4025877c    47 FUNC    GLOBAL DEFAULT    4 ecma_builtin_get
  1691: 4022e4d4  1046 FUNC    GLOBAL DEFAULT    4 rijndaelEncrypt
  1692: 4024ac68    69 FUNC    GLOBAL DEFAULT    4 _Z11fileGetSize6String
  1693: 402246c4    17 FUNC    GLOBAL DEFAULT    4 raw_send
  1694: 4024cde8    69 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection12stati
  1695: 4021d704    33 FUNC    GLOBAL DEFAULT    4 cnx_auth_timeout
  1696: 4000e1e0     0 NOTYPE  GLOBAL DEFAULT  ABS strstr
  1697: 40266e64     8 FUNC    GLOBAL DEFAULT    4 ecma_is_property_writable
  1698: 40225ce0    32 FUNC    GLOBAL DEFAULT    4 tcp_tmr
  1699: 3fff52e4    20 OBJECT  GLOBAL DEFAULT    3 weixin_timer
  1700: 40260f28   964 FUNC    GLOBAL DEFAULT    4 ecma_builtin_function_pro
  1701: 40260a10    15 FUNC    GLOBAL DEFAULT    4 vm_is_strict_mode
  1702: 3ffeb940    64 OBJECT  WEAK   DEFAULT    2 _ZTV10HttpClient
  1703: 4021f070     9 FUNC    GLOBAL DEFAULT    4 unregister_ieee80211_acti
  1704: 4025eadc   101 FUNC    GLOBAL DEFAULT    4 parser_emit_cbc_push_numb
  1705: 4020887c   128 FUNC    GLOBAL DEFAULT    4 set_txcap_reg
  1706: 4025a5fc  1203 FUNC    GLOBAL DEFAULT    4 ecma_op_object_get_proper
  1707: 40213410    39 FUNC    GLOBAL DEFAULT    4 ppRegisterTxCallback
  1708: 4021f38c    62 FUNC    GLOBAL DEFAULT    4 ieee80211_add_ie_vendor_e
  1709: 402184f0  1127 FUNC    GLOBAL DEFAULT    4 ieee80211_parse_beacon
  1710: 4020a1b4   240 FUNC    GLOBAL DEFAULT    4 ram_get_corr_power
  1711: 40235118    74 FUNC    GLOBAL DEFAULT    4 ssl_renegotiate
  1712: 40102c08    22 FUNC    GLOBAL DEFAULT    5 ppEnqueueRxq
  1713: 4022d870    38 FUNC    GLOBAL DEFAULT    4 wpa_compare_rsn_ie
  1714: 402434d8     2 FUNC    GLOBAL DEFAULT    4 chip_v6_get_sense
  1715: 401021e0    93 FUNC    GLOBAL DEFAULT    5 lmacProcessCollisions
  1716: 4025bbc4    27 FUNC    GLOBAL DEFAULT    4 lit_utf8_string_calc_hash
  1717: 40236d1c     2 FUNC    GLOBAL DEFAULT    4 RNG_custom_init
  1718: 402456c4    24 OBJECT  GLOBAL DEFAULT    4 tkip
  1719: 4021231c    86 FUNC    GLOBAL DEFAULT    4 fpm_attach
  1720: 4024b118   100 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerial11setC
  1721: 40263afc    49 FUNC    GLOBAL DEFAULT    4 util_free_literal
  1722: 4021b0bc    82 FUNC    GLOBAL DEFAULT    4 ieee80211_scan_attach
  1723: 4024a09c    36 FUNC    GLOBAL DEFAULT    4 _ZN6StringC2Ec
  1724: 4021e6d4   251 FUNC    GLOBAL DEFAULT    4 cnx_node_leave
  1725: 40245890    91 FUNC    GLOBAL DEFAULT    4 _Z11cmdShowDatacPc
  1726: 3ffea5a8    32 OBJECT  WEAK   DEFAULT    2 _ZTV14HardwareSerial
  1727: 4024ca38    53 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection12stati
  1728: 402665ac   143 FUNC    GLOBAL DEFAULT    4 vm_op_delete_prop
  1729: 4024d410    62 FUNC    GLOBAL DEFAULT    4 _ZN16AccessPointClass6ena
  1730: 4022abb0    74 FUNC    GLOBAL DEFAULT    4 wpa_remove_ptk
  1731: 400060d0     0 FUNC    GLOBAL DEFAULT  ABS rom_chip_v5_disable_cca
  1732: 40105d8c    80 FUNC    GLOBAL DEFAULT    5 _ZN5Timer11setCallbackEPF
  1733: 40237a5c    57 FUNC    GLOBAL DEFAULT    4 bi_clear_cache
  1734: 401032e4    11 FUNC    GLOBAL DEFAULT    5 RC_GetRtsRate
  1735: 402457bc    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJcP
  1736: 402120d8    65 FUNC    GLOBAL DEFAULT    4 pm_get_idle_wait_time
  1737: 4024f398   329 FUNC    GLOBAL DEFAULT    4 SPIFFS_open
  1738: 4024c21c   143 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClientD1Ev
  1739: 40105f13     0 NOTYPE  GLOBAL DEFAULT    5 _etext
  1740: 40205d70     8 FUNC    GLOBAL DEFAULT    4 wifi_get_user_limit_rate_
  1741: 4022e2b8    15 FUNC    GLOBAL DEFAULT    4 wpa_neg_complete
  1742: 4010009c     0 NOTYPE  GLOBAL DEFAULT    5 _NMILevelVector
  1743: 3fff53e0    36 OBJECT  GLOBAL DEFAULT    3 res_buf
  1744: 40218fec    50 FUNC    GLOBAL DEFAULT    4 ieee80211_mesh_quick_ie_a
  1745: 40257d50   144 FUNC    GLOBAL DEFAULT    4 ecma_lcache_insert
  1746: 40209124   142 FUNC    GLOBAL DEFAULT    4 chip_v6_set_chan
  1747: 40223ee0    82 FUNC    GLOBAL DEFAULT    4 pbuf_free_ooseq_new
  1748: 40212e68    37 FUNC    GLOBAL DEFAULT    4 pp_enable_idle_timer
  1749: 40224768  1220 FUNC    GLOBAL DEFAULT    4 tcp_input
  1750: 40103248   109 FUNC    GLOBAL DEFAULT    5 ppCalFrameTimes
  1751: 40255904    15 FUNC    GLOBAL DEFAULT    4 ecma_get_named_data_prope
  1752: 40257850   111 FUNC    GLOBAL DEFAULT    4 ecma_update_float_number
  1753: 401018b8   127 FUNC    GLOBAL DEFAULT    5 lmacProcessTXStartData
  1754: 40261770  1979 FUNC    GLOBAL DEFAULT    4 ecma_builtin_global_dispa
  1755: 40248608    80 FUNC    WEAK   DEFAULT    4 _ZNK7HashMapIc6StringE8co
  1756: 40214b04    23 FUNC    GLOBAL DEFAULT    4 wDev_Disable_Beacon_Tsf
  1757: 40254fb0    69 FUNC    GLOBAL DEFAULT    4 jerry_call_function
  1758: 402284bc    14 FUNC    GLOBAL DEFAULT    4 espconn_regist_reconcb
  1759: 3ffef648     1 OBJECT  GLOBAL DEFAULT    3 periodic_cal_sat
  1760: 3ffef244     4 OBJECT  GLOBAL DEFAULT    3 timer_list
  1761: 40249dfc   145 FUNC    GLOBAL DEFAULT    4 _ZN5Print6printfEPKcz
  1762: 4000e2a4     0 NOTYPE  GLOBAL DEFAULT  ABS __floatunsisf
  1763: 4020807c    22 FUNC    GLOBAL DEFAULT    4 bb_init
  1764: 40212ccc    21 FUNC    GLOBAL DEFAULT    4 pp_disable_noise_timer
  1765: 40229c6c    18 FUNC    GLOBAL DEFAULT    4 r_rand
  1766: 40234768   107 FUNC    GLOBAL DEFAULT    4 generate_master_secret
  1767: 4022d898   227 FUNC    GLOBAL DEFAULT    4 wpa_pmk_to_ptk
  1768: 4021b640     8 FUNC    GLOBAL DEFAULT    4 scan_hidden_ssid
  1769: 4021790c    19 FUNC    GLOBAL DEFAULT    4 ieee80211_ht_node_cleanup
  1770: 3ffeaf68    20 OBJECT  WEAK   DEFAULT    2 _ZTV19ISystemReadyHandler
  1771: 40227410   170 FUNC    GLOBAL DEFAULT    4 tcp_rexmit
  1772: 4023d070   120 FUNC    GLOBAL DEFAULT    4 SHA512_Update
  1773: 40218094    27 FUNC    GLOBAL DEFAULT    4 ieee80211_add_htinfo
  1774: 40105420    31 FUNC    GLOBAL DEFAULT    5 sntp_get_real_time
  1775: 40238c88   222 FUNC    GLOBAL DEFAULT    4 ax_hmac_md5
  1776: 4024b88c   812 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClient9onReceive
  1777: 40203754    21 FUNC    GLOBAL DEFAULT    4 system_timer_reinit
  1778: 4024d518   132 FUNC    GLOBAL DEFAULT    4 _ZN12StationClassD2Ev
  1779: 4000e268     0 NOTYPE  GLOBAL DEFAULT  ABS __umodsi3
  1780: 3ffef650     1 OBJECT  GLOBAL DEFAULT    3 interface_mask
  1781: 4021ac68    49 FUNC    GLOBAL DEFAULT    4 ieee80211_phy_init
  1782: 40266f68    17 FUNC    GLOBAL DEFAULT    4 ecma_is_value_undefined
  1783: 401032f4    20 FUNC    GLOBAL DEFAULT    5 RC_GetAckTime
  1784: 3fff5204     4 OBJECT  GLOBAL DEFAULT    3 smartconfig_cb
  1785: 40211bd8   220 FUNC    GLOBAL DEFAULT    4 pm_attach
  1786: 3ff00000     0 NOTYPE  GLOBAL DEFAULT  ABS _dport0_data_end
  1787: 40249928    20 FUNC    GLOBAL DEFAULT    4 ultoa
  1788: 40256d04    96 FUNC    GLOBAL DEFAULT    4 ecma_init_ecma_string_fro
  1789: 4024afbc   315 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerial5begin
  1790: 40223c24    57 FUNC    GLOBAL DEFAULT    4 ip_output
  1791: 402090e8    60 FUNC    GLOBAL DEFAULT    4 chip_v6_set_chan_offset
  1792: 402672dc    66 FUNC    GLOBAL DEFAULT    4 lit_read_code_unit_from_u
  1793: 4020cb0c    57 FUNC    GLOBAL DEFAULT    4 rtc_mem_check
  1794: 40209e80   814 FUNC    GLOBAL DEFAULT    4 set_rx_gain_testchip_50
  1795: 3fff4df8     4 OBJECT  GLOBAL DEFAULT    3 current_netif
  1796: 4021a5b0   311 FUNC    GLOBAL DEFAULT    4 ieee80211_send_deauth
  1797: 3fff4f50    40 OBJECT  GLOBAL DEFAULT    3 pktinfo
  1798: 402345b4    52 FUNC    GLOBAL DEFAULT    4 ssl_get_cert_subject_alt_
  1799: 4025b588    11 FUNC    GLOBAL DEFAULT    4 jerry_fatal
  1800: 40105944    22 FUNC    GLOBAL DEFAULT    5 _ZNK6StringixEj
  1801: 4021b8c0    30 FUNC    GLOBAL DEFAULT    4 scan_check_hidden
  1802: 4024dd6c   361 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass19static
  1803: 3fff5430    56 OBJECT  GLOBAL DEFAULT    3 sntp__tzrule
  1804: 4023cae0    99 FUNC    GLOBAL DEFAULT    4 SHA384_Init
  1805: 401040f8    29 FUNC    GLOBAL DEFAULT    5 wDev_MacTim1SetFunc
  1806: 4021d0a0    67 FUNC    GLOBAL DEFAULT    4 chm_acquire_lock
  1807: 4024d868    79 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass16smartC
  1808: 40260ca0    20 FUNC    GLOBAL DEFAULT    4 ecma_alloc_extended_objec
  1809: 3fff4e80     4 OBJECT  GLOBAL DEFAULT    3 plink_active
  1810: 402459c0    29 FUNC    WEAK   DEFAULT    4 _ZN6VectorI6StringED0Ev
  1811: 3fff55e8    64 OBJECT  GLOBAL DEFAULT    3 _delegateFunctionList
  1812: 402526f8    46 FUNC    GLOBAL DEFAULT    4 _ZN16MemoryDataStreamD2Ev
  1813: 40210f38     2 FUNC    GLOBAL DEFAULT    4 pm_suspend
  1814: 4024eab4   117 FUNC    GLOBAL DEFAULT    4 mqtt_init_auth
  1815: 402061dc   864 FUNC    GLOBAL DEFAULT    4 ets_vsnprintf
  1816: 4025cf08    43 FUNC    GLOBAL DEFAULT    4 parser_malloc_local
  1817: 40102a9c   115 FUNC    GLOBAL DEFAULT    5 ppProcessTxQ
  1818: 40258d38   776 FUNC    GLOBAL DEFAULT    4 ecma_op_array_object_defi
  1819: 40234e14    27 FUNC    GLOBAL DEFAULT    4 DISPLAY_STATE
  1820: 40247918    24 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdater7pendingEv
  1821: 40237fd0   139 FUNC    GLOBAL DEFAULT    4 bi_str_import
  1822: 4024c10c    37 FUNC    WEAK   DEFAULT    4 _ZN6VectorI19rBootHttpUpd
  1823: 40212bbc    43 FUNC    GLOBAL DEFAULT    4 PPWdtReset
  1824: 4025cf44    36 FUNC    GLOBAL DEFAULT    4 parser_cbc_stream_free
  1825: 40267334    30 FUNC    GLOBAL DEFAULT    4 lit_get_unicode_char_size
  1826: 40203970    11 FUNC    GLOBAL DEFAULT    4 system_get_rtc_time
  1827: 40217c08   128 FUNC    GLOBAL DEFAULT    4 ieee80211_setup_basic_htr
  1828: 4025a0e0    42 FUNC    GLOBAL DEFAULT    4 ecma_init_environment
  1829: 402434dc     4 FUNC    GLOBAL DEFAULT    4 chip_v6_unset_chanfreq
  1830: 3ffef378     1 OBJECT  GLOBAL DEFAULT    3 cpu_overclock
  1831: 40227808   121 FUNC    GLOBAL DEFAULT    4 sys_timeout
  1832: 3ffedb9e    42 OBJECT  GLOBAL DEFAULT    2 ecma_builtin_function_pro
  1833: 401032d8    11 FUNC    GLOBAL DEFAULT    5 RC_GetAckRate
  1834: 40218444   106 FUNC    GLOBAL DEFAULT    4 ieee80211_setup_rates
  1835: 402296c0    71 FUNC    GLOBAL DEFAULT    4 hostapd_config_defaults_b
  1836: 4024d094   118 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection17stati
  1837: 40105a30    38 FUNC    GLOBAL DEFAULT    5 _Z8noPullupt
  1838: 4024a12c    25 FUNC    GLOBAL DEFAULT    4 _ZN6String6concatERKS_
  1839: 3ffe8370     4 OBJECT  GLOBAL DEFAULT    1 g_SC_Select
  1840: 402508c4   185 FUNC    GLOBAL DEFAULT    4 spiffs_page_delete
  1841: 3fff4280     1 OBJECT  GLOBAL DEFAULT    3 BcnEb_update
  1842: 40214788   214 FUNC    GLOBAL DEFAULT    4 rc_enable_trc
  1843: 4021b054    31 FUNC    GLOBAL DEFAULT    4 ieee80211_rfid_locp_recv_
  1844: 402042dc   183 FUNC    GLOBAL DEFAULT    4 wifi_station_get_ap_info
  1845: 4021dfe0   471 FUNC    GLOBAL DEFAULT    4 cnx_update_bss_more
  1846: 4024db10   255 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass23intern
  1847: 3ffe8589     1 OBJECT  GLOBAL DEFAULT    2 DATA_RSSI_BEAR
  1848: 4020795c    37 FUNC    GLOBAL DEFAULT    4 strchr
  1849: 40212b34   121 FUNC    GLOBAL DEFAULT    4 fpm_do_sleep
  1850: 4022f2e0   310 FUNC    GLOBAL DEFAULT    4 smartconfig_stop
  1851: 3fff4750    20 OBJECT  GLOBAL DEFAULT    3 sta_con_timer
  1852: 4022dbd4     4 FUNC    GLOBAL DEFAULT    4 eloop_register_timeout
  1853: 402289d0   359 FUNC    GLOBAL DEFAULT    4 espconn_udp_sent
  1854: 4024d608    39 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass13onSyst
  1855: 4020fe70   266 FUNC    GLOBAL DEFAULT    4 pm_set_sleep_mode
  1856: 402670c4     7 FUNC    GLOBAL DEFAULT    4 ecma_get_value_from_error
  1857: 40254b1c    19 FUNC    WEAK   DEFAULT    4 _ZThn8_N16MemoryDataStrea
  1858: 4021c064    92 FUNC    GLOBAL DEFAULT    4 sta_status_set
  1859: 4020f314   523 FUNC    GLOBAL DEFAULT    4 ram_rfcal_rxiq
  1860: 40238b3c   152 FUNC    GLOBAL DEFAULT    4 bi_mod_power2
  1861: 3fff56e8     8 OBJECT  GLOBAL DEFAULT    3 devicePsk
  1862: 40203b20    70 FUNC    GLOBAL DEFAULT    4 wifi_softap_dhcps_start
  1863: 40004f40     0 NOTYPE  GLOBAL DEFAULT  ABS lldesc_build_chain
  1864: 402546a8    49 FUNC    GLOBAL DEFAULT    4 ax_port_calloc
  1865: 4024d064    39 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection7connec
  1866: 3fff7c38     0 NOTYPE  GLOBAL DEFAULT  ABS _bss_end
  1867: 40248764    33 FUNC    GLOBAL DEFAULT    4 _ZN7ScProto8hashCodeEPhi
  1868: 4024ce30    25 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection5flushE
  1869: 40229e38     4 FUNC    GLOBAL DEFAULT    4 wpa_auth_for_each_sta
  1870: 402477c0    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIR1
  1871: 40256a28    30 FUNC    GLOBAL DEFAULT    4 ecma_number_is_zero
  1872: 40227c10    76 FUNC    GLOBAL DEFAULT    4 udp_sendto
  1873: 40105864    69 FUNC    GLOBAL DEFAULT    5 _ZNK6String9compareToERKS
  1874: 4023d9c8   105 FUNC    GLOBAL DEFAULT    4 asn1_signature
  1875: 402441d0   191 FUNC    GLOBAL DEFAULT    4 inet_chksum_pseudo
  1876: 3ffe9e00    28 OBJECT  WEAK   DEFAULT    2 _ZTV6VectorI6StringE
  1877: 40212500     7 FUNC    GLOBAL DEFAULT    4 wifi_fpm_set_wakeup_cb
  1878: 40203644    18 FUNC    GLOBAL DEFAULT    4 system_phy_set_tpw_via_vd
  1879: 4022f180    48 FUNC    GLOBAL DEFAULT    4 sc_system_init_done
  1880: 4025d324    81 FUNC    GLOBAL DEFAULT    4 parser_stack_iterator_wri
  1881: 3ffe9480    28 OBJECT  WEAK   DEFAULT    2 _ZTV6VectorIP19ISystemRea
  1882: 4020bdb4   827 FUNC    GLOBAL DEFAULT    4 phy_gpio_cfg
  1883: 3fff6254     8 OBJECT  GLOBAL DEFAULT    3 _ZN11ArduinoJson9JsonArra
  1884: 40210488    13 FUNC    GLOBAL DEFAULT    4 ic_set_ptk_alg
  1885: 40204754    51 FUNC    GLOBAL DEFAULT    4 wifi_station_ap_check
  1886: 402241f0    12 FUNC    GLOBAL DEFAULT    4 pbuf_ref
  1887: 3ffeae18    56 OBJECT  WEAK   DEFAULT    2 _ZTV13TcpConnection
  1888: 40242784    26 FUNC    GLOBAL DEFAULT    4 sntp_setserver
  1889: 3fff4e58     4 OBJECT  GLOBAL DEFAULT    3 tcp_bound_pcbs
  1890: 4025ab90    65 FUNC    GLOBAL DEFAULT    4 ecma_op_create_object_obj
  1891: 4024d46c   103 FUNC    GLOBAL DEFAULT    4 _ZN16AccessPointClass13on
  1892: 4000c180     0 NOTYPE  GLOBAL DEFAULT  ABS __addsf3
  1893: 3fff6b24    14 OBJECT  GLOBAL DEFAULT    3 ummHeapInfo
  1894: 3fff61e8    24 OBJECT  GLOBAL DEFAULT    3 SystemClock
  1895: 40105c78    77 FUNC    GLOBAL DEFAULT    5 _ZN5Timer10processingEPv
  1896: 40245734     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvI9s
  1897: 3ffeb7f8    32 OBJECT  WEAK   DEFAULT    2 _ZTV17IDataSourceStream
  1898: 402038c0    95 FUNC    GLOBAL DEFAULT    4 system_print_meminfo
  1899: 4025a584    85 FUNC    GLOBAL DEFAULT    4 ecma_op_object_has_instan
  1900: 40260c70    15 FUNC    GLOBAL DEFAULT    4 ecma_dealloc_collection_c
  1901: 402470d0   104 FUNC    GLOBAL DEFAULT    4 _ZN3Cli4initEv
  1902: 4024dcb4   173 FUNC    WEAK   DEFAULT    4 _ZN6VectorI7BssInfoEC2ERK
  1903: 40213288   373 FUNC    GLOBAL DEFAULT    4 ppTxPkt
  1904: 4026344c   181 FUNC    GLOBAL DEFAULT    4 ecma_op_strict_equality_c
  1905: 40105780    47 FUNC    GLOBAL DEFAULT    5 _ZN6StringaSERKS_
  1906: 40260d00    24 FUNC    GLOBAL DEFAULT    4 ecma_builtin_compact_prof
  1907: 40247394    87 FUNC    GLOBAL DEFAULT    4 _ZN3Cli10addCommandEci8De
  1908: 4020c0fc   161 FUNC    GLOBAL DEFAULT    4 tx_cont_en
  1909: 40205324    17 FUNC    GLOBAL DEFAULT    4 wifi_softap_set_config_cu
  1910: 40203a5c     5 FUNC    GLOBAL DEFAULT    4 system_get_rst_info
  1911: 402152dc   219 FUNC    GLOBAL DEFAULT    4 wdev_go_sniffer
  1912: 40205890    18 FUNC    GLOBAL DEFAULT    4 wifi_get_sleep_type
  1913: 40249dd4    37 FUNC    GLOBAL DEFAULT    4 _ZN5Print7printlnEPKc
  1914: 40254e9c    39 FUNC    GLOBAL DEFAULT    4 jerry_eval
  1915: 4024bccc    34 FUNC    WEAK   DEFAULT    4 _ZNK6VectorI19rBootHttpUp
  1916: 4024ab3c    27 FUNC    GLOBAL DEFAULT    4 _Z9fileStats6StringP11spi
  1917: 4025a000   217 FUNC    GLOBAL DEFAULT    4 ecma_op_function_construc
  1918: 402148c8    26 FUNC    GLOBAL DEFAULT    4 rc_disable_trc_by_interfa
  1919: 40211330   662 FUNC    GLOBAL DEFAULT    4 pm_onBcnRx
  1920: 40105bf4   132 FUNC    GLOBAL DEFAULT    5 _ZN5Timer5startEb
  1921: 40256da4    64 FUNC    GLOBAL DEFAULT    4 ecma_new_ecma_string_from
  1922: 4024b5e8   154 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClientC2E6String
  1923: 40202554     2 FUNC    WEAK   DEFAULT    4 user_rf_pre_init
  1924: 402599d8    19 FUNC    GLOBAL DEFAULT    4 ecma_raise_range_error
  1925: 40101a38   228 FUNC    GLOBAL DEFAULT    5 lmacProcessTxSuccess
  1926: 402549d4    28 FUNC    WEAK   DEFAULT    4 _ZN13TcpConnection13check
  1927: 402576a8    99 FUNC    GLOBAL DEFAULT    4 ecma_make_number_value
  1928: 4025563c    85 FUNC    GLOBAL DEFAULT    4 ecma_create_object_lex_en
  1929: 3ffef644     1 OBJECT  GLOBAL DEFAULT    3 tx_pwctrl_pk_num
  1930: 4020a2a4    26 FUNC    GLOBAL DEFAULT    4 check_data_func
  1931: 4022669c     5 FUNC    GLOBAL DEFAULT    4 tcp_recv
  1932: 40218d74     4 FUNC    GLOBAL DEFAULT    4 ieee80211_setup_rateset
  1933: 402531e0   181 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClient10onFinish
  1934: 4023f258    14 FUNC    GLOBAL DEFAULT    4 fabs
  1935: 40245e94    47 FUNC    GLOBAL DEFAULT    4 _Z9OtaUpdatePKcb
  1936: 40246df8    37 FUNC    GLOBAL DEFAULT    4 _Z13cmdFakeMotioncPc
  1937: 3ffef624     4 OBJECT  GLOBAL DEFAULT    3 adc_rand_noise
  1938: 40228e4c    27 FUNC    GLOBAL DEFAULT    4 espconn_igmp_join
  1939: 4025d19c   146 FUNC    GLOBAL DEFAULT    4 parser_stack_push
  1940: 40228488    21 FUNC    GLOBAL DEFAULT    4 espconn_regist_write_fini
  1941: 4022bbd0   106 FUNC    GLOBAL DEFAULT    4 wpa_add_kde
  1942: 40252324    40 FUNC    GLOBAL DEFAULT    4 spiffs_fd_find_new
  1943: 40207fc4   143 FUNC    GLOBAL DEFAULT    4 scalbn
  1944: 40231ce0    93 FUNC    GLOBAL DEFAULT    4 TOUCH_Init_glob
  1945: 40234c6c     5 FUNC    GLOBAL DEFAULT    4 ssl_get_cipher_id
  1946: 40228214   196 FUNC    GLOBAL DEFAULT    4 espconn_send
  1947: 4024d820    51 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass11isConn
  1948: 40267080     7 FUNC    GLOBAL DEFAULT    4 ecma_make_object_value
  1949: 40004a4c     0 NOTYPE  GLOBAL DEFAULT  ABS SPIWrite
  1950: 4025ea0c    38 FUNC    GLOBAL DEFAULT    4 parser_emit_cbc
  1951: 4020d2d8    21 FUNC    GLOBAL DEFAULT    4 phy_vdd33_set_tpw
  1952: 3ffef37c     4 OBJECT  GLOBAL DEFAULT    3 event_cb
  1953: 40252f1c   454 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClient13startDow
  1954: 40211fa4    43 FUNC    GLOBAL DEFAULT    4 pm_sleep_for
  1955: 4024bc1c    23 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM15rBoo
  1956: 402080e0    22 FUNC    GLOBAL DEFAULT    4 phy_delete_channel
  1957: 4024eb2c   716 FUNC    GLOBAL DEFAULT    4 mqtt_connect
  1958: 4020d2f0    47 FUNC    GLOBAL DEFAULT    4 get_adc_rand
  1959: 3fff6c1c     4 OBJECT  GLOBAL DEFAULT    3 jmem_heap_limit
  1960: 4025b3fc    93 FUNC    GLOBAL DEFAULT    4 jmem_heap_alloc_block
  1961: 402501a8   576 FUNC    GLOBAL DEFAULT    4 spiffs_obj_lu_find_entry_
  1962: 402589b8   244 FUNC    GLOBAL DEFAULT    4 ecma_builtin_list_lazy_pr
  1963: 4025bc4c    37 FUNC    GLOBAL DEFAULT    4 lit_utf8_incr
  1964: 40249f6c    20 FUNC    GLOBAL DEFAULT    4 _ZN6StringD2Ev
  1965: 40212ecc   112 FUNC    GLOBAL DEFAULT    4 ppPeocessRxPktHdr
  1966: 402670b4     7 FUNC    GLOBAL DEFAULT    4 ecma_get_object_from_valu
  1967: 4010598c    20 FUNC    GLOBAL DEFAULT    5 _ZNK6String7indexOfERKS_
  1968: 4021b7d8    34 FUNC    GLOBAL DEFAULT    4 scan_clear_channles
  1969: 4000dd68     0 NOTYPE  GLOBAL DEFAULT  ABS rc4_skip
  1970: 4021038c    15 FUNC    GLOBAL DEFAULT    4 ic_set_opmode
  1971: 4025576c    15 FUNC    GLOBAL DEFAULT    4 ecma_get_internal_propert
  1972: 402154e8   488 FUNC    GLOBAL DEFAULT    4 esf_buf_alloc
  1973: 40248f88   101 FUNC    GLOBAL DEFAULT    4 _ZN11SystemClassC2Ev
  1974: 40249c8c    29 FUNC    GLOBAL DEFAULT    4 _ZN9IPAddressC1Ev
  1975: 402526d0     7 FUNC    WEAK   DEFAULT    4 _ZN17IDataSourceStreamD1E
  1976: 4021b69c    24 FUNC    GLOBAL DEFAULT    4 scan_remove_probe_ssid
  1977: 40207860    31 FUNC    GLOBAL DEFAULT    4 rboot_get_last_boot_mode
  1978: 40105ddc    38 FUNC    GLOBAL DEFAULT    5 _ZN5Timer12initializeMsEj
  1979: 4022dae4    74 FUNC    GLOBAL DEFAULT    4 wpa_cipher_put_suites
  1980: 40228368    14 FUNC    GLOBAL DEFAULT    4 espconn_tcp_get_max_con
  1981: 40207f5c    85 FUNC    GLOBAL DEFAULT    4 __toread
  1982: 4022e108    30 FUNC    GLOBAL DEFAULT    4 dhcp_bind_check
  1983: 40248094   110 FUNC    GLOBAL DEFAULT    4 printf
  1984: 40245764     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFv9s
  1985: 4022d988    91 FUNC    GLOBAL DEFAULT    4 rsn_pmkid
  1986: 4020d33c    38 FUNC    GLOBAL DEFAULT    4 phy_tx_pwctrl_cali
  1987: 4021f218   132 FUNC    GLOBAL DEFAULT    4 ieee80211_add_ie_vendor_e
  1988: 3fff438a     2 OBJECT  GLOBAL DEFAULT    3 scannum
  1989: 402579bc    73 FUNC    GLOBAL DEFAULT    4 ecma_value_assign_uint32
  1990: 40259b30   193 FUNC    GLOBAL DEFAULT    4 ecma_op_create_function_o
  1991: 4024d10c    64 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection20freeS
  1992: 40208b50   197 FUNC    GLOBAL DEFAULT    4 ram_rfpll_set_freq
  1993: 4021ad48    32 FUNC    GLOBAL DEFAULT    4 ieee80211_psq_init
  1994: 40237b28    52 FUNC    GLOBAL DEFAULT    4 bi_depermanent
  1995: 3ffe8378     6 OBJECT  GLOBAL DEFAULT    1 ET_Group_bssid
  1996: 40257208   139 FUNC    GLOBAL DEFAULT    4 ecma_string_to_number
  1997: 40254c34    30 FUNC    GLOBAL DEFAULT    4 _ZN8DateTimeC2Ev
  1998: 40223a48   473 FUNC    GLOBAL DEFAULT    4 ip_output_if_opt
  1999: 40237df4    57 FUNC    GLOBAL DEFAULT    4 bi_clone
  2000: 4024fa64    45 FUNC    GLOBAL DEFAULT    4 SPIFFS_opendir
  2001: 40105588    24 FUNC    GLOBAL HIDDEN     5 __ashrdi3
  2002: 40205f80    95 FUNC    GLOBAL DEFAULT    4 system_uart_swap
  2003: 40253418    85 FUNC    GLOBAL DEFAULT    4 _ZN8NetUtils11pbufStrCopy
  2004: 40257a08    20 FUNC    GLOBAL DEFAULT    4 ecma_fast_free_value
  2005: 3ffe808c     2 OBJECT  GLOBAL DEFAULT    1 sleep_start_wait_time
  2006: 4021c994    98 FUNC    GLOBAL DEFAULT    4 ieee80211_parse_wmeparams
  2007: 4024aa14    31 FUNC    GLOBAL DEFAULT    4 _Z5delayj
  2008: 40245ec8    37 FUNC    GLOBAL DEFAULT    4 _Z12cmdOtaUpdatecPc
  2009: 3fff5640    48 OBJECT  GLOBAL DEFAULT    3 wifiConnectionTimer
  2010: 4024e3dc   209 FUNC    WEAK   DEFAULT    4 _ZN7HashMapI6String15Comm
  2011: 402565b4  1026 FUNC    GLOBAL DEFAULT    4 ecma_errol0_dtoa
  2012: 40211e80    40 FUNC    GLOBAL DEFAULT    4 pm_scan_lock
  2013: 40215ab4    62 FUNC    GLOBAL DEFAULT    4 ieee80211_ieee2mhz
  2014: 4025b4ec    25 FUNC    GLOBAL DEFAULT    4 jmem_heap_free_block_size
  2015: 40215d48     2 FUNC    GLOBAL DEFAULT    4 ieee80211_crypto_attach
  2016: 402556e8    33 FUNC    GLOBAL DEFAULT    4 ecma_create_internal_prop
  2017: 3ffef4c4     4 OBJECT  GLOBAL DEFAULT    3 hostname
  2018: 40254ef8    24 FUNC    GLOBAL DEFAULT    4 jerry_value_has_error_fla
  2019: 40100020     0 NOTYPE  GLOBAL DEFAULT    5 _NMIExceptionVector
  2020: 40234abc    58 FUNC    GLOBAL DEFAULT    4 disposable_free
  2021: 402194ac     2 FUNC    GLOBAL DEFAULT    4 ieee80211_tx_mgt_cb
  2022: 40257c44    77 FUNC    GLOBAL DEFAULT    4 ecma_new_strings_collecti
  2023: 4021d74c    64 FUNC    GLOBAL DEFAULT    4 cnx_handshake_timeout
  2024: 4021aad0   406 FUNC    GLOBAL DEFAULT    4 ieee80211_beacon_alloc
  2025: 402556bc    20 FUNC    GLOBAL DEFAULT    4 ecma_get_property_list
  2026: 40205338   101 FUNC    GLOBAL DEFAULT    4 wifi_softap_set_station_i
  2027: 40000f80     0 NOTYPE  GLOBAL DEFAULT  ABS ets_intr_unlock
  2028: 40254718     4 FUNC    WEAK   DEFAULT    4 _ZNK6VectorI8DelegateIFvv
  2029: 4010139c    43 FUNC    GLOBAL DEFAULT    5 clockgate_watchdog
  2030: 40253530    83 FUNC    GLOBAL DEFAULT    4 _ZN15CommandDelegateC1E6S
  2031: 40264e9c   288 FUNC    GLOBAL DEFAULT    4 lexer_expect_object_liter
  2032: 4024c2cc    56 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClientC2Eb
  2033: 40100804    16 FUNC    GLOBAL DEFAULT    5 ets_timer_setfn
  2034: 40253880    70 FUNC    GLOBAL DEFAULT    4 spiffs_cache_fd_release
  2035: 3fff5538    44 OBJECT  GLOBAL DEFAULT    3 System
  2036: 3ffef622     1 OBJECT  GLOBAL DEFAULT    3 phy_set_most_tpw_disbg
  2037: 40208060    28 FUNC    GLOBAL DEFAULT    4 rf_init
  2038: 402290f4    61 FUNC    GLOBAL DEFAULT    4 igmp_start
  2039: 4010268c    87 FUNC    GLOBAL DEFAULT    5 lmacProcessAckTimeout
  2040: 3ffef5fe     1 OBJECT  GLOBAL DEFAULT    3 sw_scan_mode
  2041: 40257b3c   133 FUNC    GLOBAL DEFAULT    4 ecma_free_values_collecti
  2042: 40208350   109 FUNC    GLOBAL DEFAULT    4 set_rf_freq_offset
  2043: 40227fc4    38 FUNC    GLOBAL DEFAULT    4 espconn_list_delete
  2044: 402107d0    44 FUNC    GLOBAL DEFAULT    4 lmacInitAc
  2045: 402214a0     7 FUNC    GLOBAL DEFAULT    4 wifi_softap_get_dhcps_lea
  2046: 40215d4c     4 FUNC    GLOBAL DEFAULT    4 ieee80211_crypto_availabl
  2047: 4020a76c   618 FUNC    GLOBAL DEFAULT    4 tx_atten_set_interp
  2048: 4000b840     0 NOTYPE  GLOBAL DEFAULT  ABS pbkdf2_sha1
  2049: 402344d8   170 FUNC    GLOBAL DEFAULT    4 add_cert_auth
  2050: 3ffedb80    12 OBJECT  GLOBAL DEFAULT    2 ecma_builtin_compact_prof
  2051: 40225d88   167 FUNC    GLOBAL DEFAULT    4 tcp_abandon
  2052: 4024e9b4   105 FUNC    GLOBAL DEFAULT    4 mqtt_parse_pub_msg_ptr
  2053: 40104528    30 FUNC    GLOBAL DEFAULT    5 wDev_DisableTransmit
  2054: 4024e358   128 FUNC    WEAK   DEFAULT    4 _ZNK7HashMapI6String15Com
  2055: 40100000     0 NOTYPE  GLOBAL DEFAULT  ABS _text_start
  2056: 40211f6c    22 FUNC    GLOBAL DEFAULT    4 pm_assoc_parse
  2057: 4025b514     8 FUNC    GLOBAL DEFAULT    4 jmem_heap_decompress_poin
  2058: 40254ff8    57 FUNC    GLOBAL DEFAULT    4 jerry_dispatch_external_f
  2059: 40212c10    22 FUNC    GLOBAL DEFAULT    4 pp_soft_wdt_feed
  2060: 40256f8c    39 FUNC    GLOBAL DEFAULT    4 ecma_ref_ecma_string
  2061: 3ffef584   116 OBJECT  GLOBAL DEFAULT    3 chip6_phy_init_ctrl
  2062: 4023db70    29 FUNC    GLOBAL DEFAULT    4 asn1_find_subjectaltname
  2063: 3fff61b4    28 OBJECT  GLOBAL DEFAULT    3 commandHandler
  2064: 402477f4   111 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdaterC1EPKci
  2065: 40002f04     0 NOTYPE  GLOBAL DEFAULT  ABS ets_update_cpu_frequency
  2066: 402457ec    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvti
  2067: 4023d6ec   542 FUNC    GLOBAL DEFAULT    4 asn1_name
  2068: 40244040     4 OBJECT  GLOBAL DEFAULT    4 ip_addr_broadcast
  2069: 4020e75c   107 FUNC    GLOBAL DEFAULT    4 tx_pwctrl_bg_init
  2070: 4024b17c    75 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerial13rese
  2071: 402156d0   302 FUNC    GLOBAL DEFAULT    4 esf_buf_recycle
  2072: 3ffef230     1 OBJECT  GLOBAL DEFAULT    3 user_init_flag
  2073: 3fff52b4    20 OBJECT  GLOBAL DEFAULT    3 KissRes_ht40_timer
  2074: 40248850     8 FUNC    GLOBAL DEFAULT    4 _ZN3TsbC2EP14HardwareSeri
  2075: 4024e1b4    87 FUNC    GLOBAL DEFAULT    4 _ZN14CommandHandlerC1Ev
  2076: 4020962c    23 FUNC    GLOBAL DEFAULT    4 check_data_flag
  2077: 402240e0   106 FUNC    GLOBAL DEFAULT    4 pbuf_header
  2078: 402193c8   225 FUNC    GLOBAL DEFAULT    4 ieee80211_mgmt_output
  2079: 4024a03c    61 FUNC    GLOBAL DEFAULT    4 _ZN6String4moveERS_
  2080: 4020d678   262 FUNC    GLOBAL DEFAULT    4 correct_rf_ana_gain
  2081: 40228344    28 FUNC    GLOBAL DEFAULT    4 espconn_tcp_set_wnd
  2082: 40215e1c    72 FUNC    GLOBAL DEFAULT    4 ieee80211_getmgtframe
  2083: 40245774    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIEE
  2084: 402054f0   174 FUNC    GLOBAL DEFAULT    4 wifi_softap_deauth
  2085: 4021d2dc    61 FUNC    GLOBAL DEFAULT    4 cnx_attach
  2086: 40250d20   295 FUNC    GLOBAL DEFAULT    4 spiffs_object_update_inde
  2087: 4020fd58   275 FUNC    GLOBAL DEFAULT    4 pm_set_wakeup_btco
  2088: 401041ac   836 FUNC    GLOBAL DEFAULT    5 wDev_ProcessFiq
  2089: 40205d10    58 FUNC    GLOBAL DEFAULT    4 wifi_set_user_sup_rate
  2090: 3ffe8388     4 OBJECT  GLOBAL DEFAULT    1 cbc_printchar
  2091: 4025eb44   227 FUNC    GLOBAL DEFAULT    4 parser_emit_cbc_forward_b
  2092: 402265a0   228 FUNC    GLOBAL DEFAULT    4 tcp_alloc
  2093: 4024927c   102 FUNC    GLOBAL DEFAULT    4 _ZN11SystemClass12readyHa
  2094: 40228e6c   426 FUNC    GLOBAL DEFAULT    4 icmp_input
  2095: 40248540    64 FUNC    GLOBAL DEFAULT    4 _ZN3Tsb7connectE6String
  2096: 40224524    74 FUNC    GLOBAL DEFAULT    4 pbuf_strstr
  2097: 4025cf98    44 FUNC    GLOBAL DEFAULT    4 parser_list_free
  2098: 4024bfcc   320 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdate7onTi
  2099: 4021d0f8    55 FUNC    GLOBAL DEFAULT    4 chm_start_op
  2100: 4024e20c    31 FUNC    GLOBAL DEFAULT    4 _ZN14CommandHandlerD2Ev
  2101: 4024a9f4    28 FUNC    GLOBAL DEFAULT    4 _Z6millisv
  2102: 4021cff4    58 FUNC    GLOBAL DEFAULT    4 wifi_station_stop
  2103: 400060ec     0 FUNC    GLOBAL DEFAULT  ABS rom_chip_v5_enable_cca
  2104: 402055a0    18 FUNC    GLOBAL DEFAULT    4 wifi_softap_get_beacon_on
  2105: 40267410    27 FUNC    GLOBAL DEFAULT    4 parser_list_get
  2106: 40235c20   421 FUNC    GLOBAL DEFAULT    4 do_client_connect
  2107: 4024dc6c    37 FUNC    WEAK   DEFAULT    4 _ZN6VectorI7BssInfoED1Ev
  2108: 4020cb68    44 FUNC    GLOBAL DEFAULT    4 deep_sleep_set_option
  2109: 40226de0   227 FUNC    GLOBAL DEFAULT    4 tcp_enqueue_flags
  2110: 4025a4a0    15 FUNC    GLOBAL DEFAULT    4 ecma_op_object_get_proper
  2111: 40223e20    58 FUNC    GLOBAL DEFAULT    4 netif_set_up
  2112: 402487b8    40 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM9FwUpd
  2113: 40252b88   130 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClient12writeRaw
  2114: 40235e74   570 FUNC    GLOBAL DEFAULT    4 do_clnt_handshake
  2115: 40234434   162 FUNC    GLOBAL DEFAULT    4 add_cert
  2116: 4000c0a0     0 NOTYPE  GLOBAL DEFAULT  ABS strncpy
  2117: 40105d60    43 FUNC    GLOBAL DEFAULT    5 _ZN5Timer13setIntervalMsE
  2118: 3ffef619     1 OBJECT  GLOBAL DEFAULT    3 bbpll_cal_flag
  2119: 402457d4    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvcP
  2120: 4022f5a8    37 FUNC    GLOBAL DEFAULT    4 KISS_Free_guide_glob
  2121: 40228438    43 FUNC    GLOBAL DEFAULT    4 espconn_tcp_set_buf_count
  2122: 40236510   133 FUNC    GLOBAL DEFAULT    4 x509_free
  2123: 40217f70    49 FUNC    GLOBAL DEFAULT    4 ieee80211_add_htcap_vendo
  2124: 40214534   441 FUNC    GLOBAL DEFAULT    4 rcUpdatePhyMode
  2125: 4022802c   145 FUNC    GLOBAL DEFAULT    4 espconn_find_connection
  2126: 4024578c    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvI9s
  2127: 4024da24   117 FUNC    GLOBAL DEFAULT    4 _ZN12StationClassC1Ev
  2128: 4020e268   264 FUNC    GLOBAL DEFAULT    4 get_target_power_offset
  2129: 3ffe8390     0 NOTYPE  GLOBAL DEFAULT  ABS _rodata_start
  2130: 4025a520    97 FUNC    GLOBAL DEFAULT    4 ecma_op_object_define_own
  2131: 3ffef1f4    36 OBJECT  GLOBAL DEFAULT    3 info
  2132: 40225e48   119 FUNC    GLOBAL DEFAULT    4 tcp_bind
  2133: 4022677c    19 FUNC    GLOBAL DEFAULT    4 tcp_next_iss
  2134: 40218cd8   155 FUNC    GLOBAL DEFAULT    4 ieee80211_parse_action
  2135: 402042bc    17 FUNC    GLOBAL DEFAULT    4 wifi_station_get_config_d
  2136: 4020ad4c   505 FUNC    GLOBAL DEFAULT    4 noise_init
  2137: 40227edc    54 FUNC    GLOBAL DEFAULT    4 udp_new
  2138: 4024576c     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvvE
  2139: 4022f5dc   145 FUNC    GLOBAL DEFAULT    4 KISS_Init_Glob
  2140: 40218d84   111 FUNC    GLOBAL DEFAULT    4 ieee80211_mesh_quick_init
  2141: 4021e450   257 FUNC    GLOBAL DEFAULT    4 cnx_sta_associated
  2142: 4021b8ec   428 FUNC    GLOBAL DEFAULT    4 scan_profile_check
  2143: 4023def0   642 FUNC    GLOBAL DEFAULT    4 ssl_obj_load
  2144: 40236598   957 FUNC    GLOBAL DEFAULT    4 x509_new
  2145: 40210600   203 FUNC    GLOBAL DEFAULT    4 ic_set_sta
  2146: 4024b254    30 FUNC    GLOBAL DEFAULT    4 _ZN5TimerC1Ev
  2147: 40214b28    47 FUNC    GLOBAL DEFAULT    4 wDev_Reset_TBTT
  2148: 40223ecc    17 FUNC    GLOBAL DEFAULT    4 netif_set_link_down
  2149: 4021ead4    18 FUNC    GLOBAL DEFAULT    4 ieee80211_send_action_unr
  2150: 40212c58    52 FUNC    GLOBAL DEFAULT    4 pp_soft_wdt_restart
  2151: 40211cc8   389 FUNC    GLOBAL DEFAULT    4 pm_send_nullfunc
  2152: 40252654    43 FUNC    GLOBAL DEFAULT    4 ax_fd_double_capacity_if_
  2153: 3fff5218    20 OBJECT  GLOBAL DEFAULT    3 channel_timer
  2154: 4024e6cc   127 FUNC    GLOBAL DEFAULT    4 flashmem_write_internal
  2155: 4025ce98    50 FUNC    GLOBAL DEFAULT    4 parser_parse_script
  2156: 4024d59c    29 FUNC    GLOBAL DEFAULT    4 _ZN12StationClassD0Ev
  2157: 3ffef4e0     4 OBJECT  GLOBAL DEFAULT    3 g_phyFuns
  2158: 4024d6ac   320 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass6configE
  2159: 40247090     7 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM3CliFv
  2160: 40205cf0    31 FUNC    GLOBAL DEFAULT    4 wifi_set_user_fixed_rate
  2161: 40249024   137 FUNC    GLOBAL DEFAULT    4 _ZN11SystemClass7onReadyE
  2162: 402457bc    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIcP
  2163: 402065d4    23 FUNC    GLOBAL DEFAULT    4 ets_strchr
  2164: 40234af8   303 FUNC    GLOBAL DEFAULT    4 ssl_session_update
  2165: 3ffe9e68    20 OBJECT  WEAK   DEFAULT    2 _ZTV14FunctionCallerIPFv9
  2166: 4024ab58    25 FUNC    GLOBAL DEFAULT    4 _Z10fileDelete6String
  2167: 3fff51fc     4 OBJECT  GLOBAL DEFAULT    3 pAPListHead
  2168: 3ffe838d     0 NOTYPE  GLOBAL DEFAULT  ABS _data_end
  2169: 40231bf0   150 FUNC    GLOBAL DEFAULT    4 TOUCH_Init_guide_glob
  2170: 401056ec    53 FUNC    GLOBAL DEFAULT    5 _ZN6StringC1EPKc
  2171: 40203f98    46 FUNC    GLOBAL DEFAULT    4 system_get_checksum
  2172: 402065a8    41 FUNC    GLOBAL DEFAULT    4 ets_strrchr
  2173: 40258b94   109 FUNC    GLOBAL DEFAULT    4 ecma_builtin_dispatch_con
  2174: 3ffe9e80    20 OBJECT  WEAK   DEFAULT    2 _ZTV15IDelegateCallerIvIt
  2175: 4010595c    15 FUNC    GLOBAL DEFAULT    5 _ZNK6String6charAtEj
  2176: 3ffef640     2 OBJECT  GLOBAL DEFAULT    3 phy_tx_power_out
  2177: 3fff6b98   112 OBJECT  GLOBAL DEFAULT    3 _filesystemStorageHandle
  2178: 40229890   103 FUNC    GLOBAL DEFAULT    4 hostapd_maclist_found
  2179: 40254a00     4 FUNC    GLOBAL DEFAULT    4 _ZN14CommandHandler14getV
  2180: 40226f58   767 FUNC    GLOBAL DEFAULT    4 tcp_output
  2181: 40247298   246 FUNC    GLOBAL DEFAULT    4 _ZN3Cli16commandProcessor
  2182: 4021ef14   254 FUNC    GLOBAL DEFAULT    4 ieee80211_recv_action_ven
  2183: 40102790   133 FUNC    GLOBAL DEFAULT    5 lmacProcessTxError
  2184: 40252afc    21 FUNC    GLOBAL DEFAULT    4 _ZThn8_N16MemoryDataStrea
  2185: 401031a0    34 FUNC    GLOBAL DEFAULT    5 pp_post2
  2186: 40208a5c   103 FUNC    GLOBAL DEFAULT    4 ram_restart_cal
  2187: 40205e50    52 FUNC    GLOBAL DEFAULT    4 wifi_status_led_install
  2188: 40259ae0    80 FUNC    GLOBAL DEFAULT    4 ecma_is_constructor
  2189: 4025b59c    31 FUNC    GLOBAL DEFAULT    4 jerry_unreachable
  2190: 402490b0   123 FUNC    GLOBAL DEFAULT    4 _ZN11SystemClass7onReadyE
  2191: 4020dae8   133 FUNC    GLOBAL DEFAULT    4 ram_set_txbb_atten
  2192: 4024b2a4    54 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClient16staticSe
  2193: 40100b00    59 FUNC    GLOBAL DEFAULT    5 Cache_Read_Disable_2
  2194: 40211158   195 FUNC    GLOBAL DEFAULT    4 pm_shutdown
  2195: 40245740     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIti
  2196: 401045b4    14 FUNC    GLOBAL DEFAULT    5 wDev_GetTxqCollisions
  2197: 402569e8    29 FUNC    GLOBAL DEFAULT    4 ecma_number_is_nan
  2198: 4020f8b4    31 FUNC    GLOBAL DEFAULT    4 pm_prepare_to_sleep
  2199: 40218df4    44 FUNC    GLOBAL DEFAULT    4 ieee80211_mesh_quick_dein
  2200: 40243880     8 OBJECT  GLOBAL DEFAULT    4 ieee80211_opcap
  2201: 40104e28     7 FUNC    GLOBAL DEFAULT    5 chm_get_current_channel
  2202: 40212cec   269 FUNC    GLOBAL DEFAULT    4 pp_enable_noise_timer
  2203: 4024c154    65 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdateD1Ev
  2204: 4020f170   420 FUNC    GLOBAL DEFAULT    4 ram_rxiq_cover_mg_mp
  2205: 40247088     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJR6
  2206: 402299f0    65 FUNC    GLOBAL DEFAULT    4 hexstr2bin
  2207: 4020605c    37 FUNC    GLOBAL DEFAULT    4 skip_atoi
  2208: 402381f0   403 FUNC    GLOBAL DEFAULT    4 bi_square
  2209: 40255490    37 FUNC    GLOBAL DEFAULT    4 ecma_free_unused_memory
  2210: 40253494    35 FUNC    GLOBAL DEFAULT    4 _ZN8RtcClassC1Ev
  2211: 40211f50    28 FUNC    GLOBAL DEFAULT    4 pm_allow_tx
  2212: 402053a4   171 FUNC    GLOBAL DEFAULT    4 wifi_softap_get_station_i
  2213: 4020d818   215 FUNC    GLOBAL DEFAULT    4 cal_rf_ana_gain
  2214: 40204bd0    62 FUNC    GLOBAL DEFAULT    4 wifi_station_get_rssi
  2215: 4025b93c    40 FUNC    GLOBAL DEFAULT    4 lit_copy_magic_string_to_
  2216: 4025be54    76 FUNC    GLOBAL DEFAULT    4 parser_raise_error
  2217: 3ffef248     4 OBJECT  GLOBAL DEFAULT    3 debug_timer
  2218: 4021f6e4   106 FUNC    GLOBAL DEFAULT    4 dhcp_fine_tmr
  2219: 40231fac  1967 FUNC    GLOBAL DEFAULT    4 TOUCH_Find_sync_ht20
  2220: 4024d3e8    38 FUNC    GLOBAL DEFAULT    4 _ZN16AccessPointClassC1Ev
  2221: 4024c588    98 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient5closeEv
  2222: 40218f20   204 FUNC    GLOBAL DEFAULT    4 ieee80211_mesh_quick_get
  2223: 40267050    10 FUNC    GLOBAL DEFAULT    4 ecma_make_simple_value
  2224: 40233c30   221 FUNC    GLOBAL DEFAULT    4 TOUCH_Deal_with
  2225: 4020f5e4    52 FUNC    GLOBAL DEFAULT    4 pm_usec2rtc
  2226: 40251a34  1290 FUNC    GLOBAL DEFAULT    4 spiffs_object_truncate
  2227: 40205964   227 FUNC    GLOBAL DEFAULT    4 wifi_promiscuous_enable
  2228: 402116a0     8 FUNC    GLOBAL DEFAULT    4 LightSleepWakedCbSetFunc
  2229: 402182ec    72 FUNC    GLOBAL DEFAULT    4 ieee80211_deliver_data
  2230: 4020fac8    56 FUNC    GLOBAL DEFAULT    4 pm_wait4wakeup
  2231: 401048c8    45 FUNC    GLOBAL DEFAULT    5 wDev_GetBAInfo
  2232: 4021d218    42 FUNC    GLOBAL DEFAULT    4 chm_return_home_channel
  2233: 4020a5b8    64 FUNC    GLOBAL DEFAULT    4 target_power_add_backoff
  2234: 40223f38   350 FUNC    GLOBAL DEFAULT    4 pbuf_alloc
  2235: 4020562c    10 FUNC    GLOBAL DEFAULT    4 wifi_unregister_user_ie_m
  2236: 402036f8    41 FUNC    GLOBAL DEFAULT    4 system_overclock
  2237: 3ffea950    60 OBJECT  WEAK   DEFAULT    2 _ZTV9TcpClient
  2238: 40249f0c    33 FUNC    GLOBAL DEFAULT    4 _ZN5Print5printEmi
  2239: 4022896c    18 FUNC    GLOBAL DEFAULT    4 espconn_dns_setserver
  2240: 4024bf14    61 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdate12upd
  2241: 4023d0e8   315 FUNC    GLOBAL DEFAULT    4 SHA512_Final
  2242: 40203d58    17 FUNC    GLOBAL DEFAULT    4 wifi_get_opmode_default
  2243: 4025b26c    81 FUNC    GLOBAL DEFAULT    4 ecma_op_string_list_lazy_
  2244: 4024e96c    72 FUNC    GLOBAL DEFAULT    4 mqtt_parse_pub_topic_ptr
  2245: 40245aa8   125 FUNC    GLOBAL DEFAULT    4 _Z11connectFailv
  2246: 4020549c    78 FUNC    GLOBAL DEFAULT    4 wifi_softap_get_station_n
  2247: 400043c8     0 NOTYPE  GLOBAL DEFAULT  ABS SPI_read_status
  2248: 40245734     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJ9s
  2249: 40202d94    18 FUNC    GLOBAL DEFAULT    4 system_pp_recycle_rx_pkt
  2250: 4022414c   139 FUNC    GLOBAL DEFAULT    4 pbuf_free
  2251: 3fff42ac    20 OBJECT  GLOBAL DEFAULT    3 ApFreqCalTimer
  2252: 4024aabc    61 FUNC    GLOBAL DEFAULT    4 _Z8fileReadsPvj
  2253: 40101b88    19 FUNC    GLOBAL DEFAULT    5 lmacDiscardAgedMSDU
  2254: 401054c8    23 FUNC    GLOBAL HIDDEN     5 __ashldi3
  2255: 40260c50    15 FUNC    GLOBAL DEFAULT    4 ecma_dealloc_collection_h
  2256: 3ffe8814     2 OBJECT  GLOBAL DEFAULT    2 ssl_prot_prefs
  2257: 40212208    10 FUNC    GLOBAL DEFAULT    4 fpm_is_open
  2258: 4024be24   103 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdate5star
  2259: 40255220   623 FUNC    GLOBAL DEFAULT    4 ecma_gc_run
  2260: 40100bd4    37 FUNC    GLOBAL DEFAULT    5 spi_flash_read_status
  2261: 4024a09c    36 FUNC    GLOBAL DEFAULT    4 _ZN6StringC1Ec
  2262: 40215af4    41 FUNC    GLOBAL DEFAULT    4 ieee80211_find_channel
  2263: 40105f13     0 NOTYPE  GLOBAL DEFAULT  ABS _text_end
  2264: 3fff52c8    28 OBJECT  GLOBAL DEFAULT    3 pKissConn
  2265: 40207984   117 FUNC    WEAK   DEFAULT    4 strchrnul
  2266: 40266dc4     8 FUNC    GLOBAL DEFAULT    4 ecma_get_object_extensibl
  2267: 40257490   211 FUNC    GLOBAL DEFAULT    4 ecma_compare_ecma_strings
  2268: 3fff4ce4     6 OBJECT  GLOBAL DEFAULT    3 ethzero
  2269: 4024576c     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvvE
  2270: 40204728    19 FUNC    GLOBAL DEFAULT    4 wifi_station_restore_conf
  2271: 3fff5470   100 OBJECT  GLOBAL DEFAULT    3 reult
  2272: 4025216c   436 FUNC    GLOBAL DEFAULT    4 spiffs_obj_lu_find_free_o
  2273: 40245e00   133 FUNC    GLOBAL DEFAULT    4 _Z8ShowInfov
  2274: 4022866c    61 FUNC    GLOBAL DEFAULT    4 espconn_abort
  2275: 40205efc    63 FUNC    GLOBAL DEFAULT    4 wifi_set_event_handler_cb
  2276: 4025d0ec    87 FUNC    GLOBAL DEFAULT    4 parser_stack_push_uint16
  2277: 4025d2cc    85 FUNC    GLOBAL DEFAULT    4 parser_stack_iterator_rea
  2278: 40253584    58 FUNC    GLOBAL DEFAULT    4 _ZN15CommandDelegateD2Ev
  2279: 4024aa58    27 FUNC    GLOBAL DEFAULT    4 _Z9fileCloses
  2280: 3fff7c38     0 NOTYPE  GLOBAL DEFAULT  ABS _heap_start
  2281: 4020a2f8   111 FUNC    GLOBAL DEFAULT    4 do_noisefloor
  2282: 402461c8    58 FUNC    GLOBAL DEFAULT    4 _Z26checkSmartConfigConne
  2283: 402080c4    28 FUNC    GLOBAL DEFAULT    4 RFChannelSel
  2284: 40002a88     0 NOTYPE  GLOBAL DEFAULT  ABS ets_strcpy
  2285: 4025a510    15 FUNC    GLOBAL DEFAULT    4 ecma_op_object_default_va
  2286: 4021dd0c   105 FUNC    GLOBAL DEFAULT    4 cnx_add_rc
  2287: 400039d8     0 NOTYPE  GLOBAL DEFAULT  ABS uart_div_modify
  2288: 4025d144    87 FUNC    GLOBAL DEFAULT    4 parser_stack_pop_uint16
  2289: 40005050     0 NOTYPE  GLOBAL DEFAULT  ABS lldesc_num2link
  2290: 40267088     7 FUNC    GLOBAL DEFAULT    4 ecma_make_error_value
  2291: 3ffef694    32 OBJECT  GLOBAL DEFAULT    3 lmacConfMib
  2292: 40263eec   114 FUNC    GLOBAL DEFAULT    4 lexer_hex_to_character
  2293: 400018b4     0 NOTYPE  GLOBAL DEFAULT  ABS ets_memcpy
  2294: 4024bc14     7 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM15rBoo
  2295: 40246bf4   177 FUNC    WEAK   DEFAULT    4 _ZN7HashMapIc6StringEixEc
  2296: 40204710    23 FUNC    GLOBAL DEFAULT    4 wifi_station_set_config_c
  2297: 40235dc8   171 FUNC    GLOBAL DEFAULT    4 ssl_client_new
  2298: 40267188    37 FUNC    GLOBAL DEFAULT    4 lit_char_is_hex_digit
  2299: 4023f268   263 FUNC    GLOBAL DEFAULT    4 floor
  2300: 40260910   115 FUNC    GLOBAL DEFAULT    4 vm_run
  2301: 4024cb48   105 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnectionC1Eb
  2302: 40264fbc   187 FUNC    GLOBAL DEFAULT    4 lexer_scan_identifier
  2303: 4022e0f4    20 FUNC    GLOBAL DEFAULT    4 wpa_config_assoc_ie
  2304: 4024a32c   123 FUNC    GLOBAL DEFAULT    4 _ZN6String4trimEv
  2305: 40254aa0    44 FUNC    GLOBAL DEFAULT    4 mqtt_ping
  2306: 402214b4    63 FUNC    GLOBAL DEFAULT    4 dns_init
  2307: 40214860     8 FUNC    GLOBAL DEFAULT    4 rc_get_mask
  2308: 3fff4dfc     4 OBJECT  GLOBAL DEFAULT    3 current_header
  2309: 401044f0    54 FUNC    GLOBAL DEFAULT    5 wDev_EnableTransmit
  2310: 40202fb4    11 FUNC    GLOBAL DEFAULT    4 system_get_boot_version
  2311: 4022eca0    83 FUNC    GLOBAL DEFAULT    4 sc_init_snif_glob
  2312: 40227e94     6 FUNC    GLOBAL DEFAULT    4 udp_recv
  2313: 4025a4c8    69 FUNC    GLOBAL DEFAULT    4 ecma_op_object_delete
  2314: 3fff42a8     1 OBJECT  GLOBAL DEFAULT    3 PendFreeBcnEb
  2315: 402595cc   708 FUNC    GLOBAL DEFAULT    4 ecma_op_to_property_descr
  2316: 4021f354    54 FUNC    GLOBAL DEFAULT    4 ieee80211_add_ie_vendor_e
  2317: 4021f964    38 FUNC    GLOBAL DEFAULT    4 dhcp_cleanup
  2318: 402581f4    43 FUNC    GLOBAL DEFAULT    4 ecma_property_hashmap_fre
  2319: 4020e0a8   438 FUNC    GLOBAL DEFAULT    4 rc_cal
  2320: 3ffef8c0     4 OBJECT  GLOBAL DEFAULT    3 flash_tmp
  2321: 40247088     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIR6
  2322: 4000cd00     0 NOTYPE  GLOBAL DEFAULT  ABS __fixunsdfsi
  2323: 4021b03c    23 FUNC    GLOBAL DEFAULT    4 ieee80211_rfid_locp_recv_
  2324: 40255bc0   121 FUNC    GLOBAL DEFAULT    4 ecma_bytecode_deref
  2325: 40223058   334 FUNC    GLOBAL DEFAULT    4 etharp_query
  2326: 40245928    65 FUNC    GLOBAL DEFAULT    4 _Z11cmdSaveDatacPc
  2327: 4025558c   106 FUNC    GLOBAL DEFAULT    4 ecma_create_object
  2328: 40258460   157 FUNC    GLOBAL DEFAULT    4 ecma_builtin_helper_objec
  2329: 40000454     0 NOTYPE  GLOBAL DEFAULT  ABS _xtos_set_exception_handl
  2330: 40205e84    35 FUNC    GLOBAL DEFAULT    4 wifi_status_led_uninstall
  2331: 401047f4   210 FUNC    GLOBAL DEFAULT    5 wDev_AppendRxAmpduLensBlo
  2332: 40209950   847 FUNC    GLOBAL DEFAULT    4 set_rx_gain_cal_iq
  2333: 40227e7c    21 FUNC    GLOBAL DEFAULT    4 udp_disconnect
  2334: 40246248   679 FUNC    GLOBAL DEFAULT    4 _Z19smartConfigCallback9s
  2335: 4024c2cc    56 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClientC1Eb
  2336: 4020e910   145 FUNC    GLOBAL DEFAULT    4 ram_get_fm_sar_dout
  2337: 4020f7a0    57 FUNC    GLOBAL DEFAULT    4 get_chip_version
  2338: 40245764     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFv9s
  2339: 40105ec4    79 FUNC    GLOBAL DEFAULT    5 _ZN5Timer12initializeUsEj
  2340: 3ffeef5c     0 NOTYPE  GLOBAL DEFAULT  ABS __dso_handle
  2341: 40263a08    50 FUNC    GLOBAL DEFAULT    4 ecma_op_resolve_reference
  2342: 40263688   133 FUNC    GLOBAL DEFAULT    4 ecma_op_get_value_object_
  2343: 4025bd80    43 FUNC    GLOBAL DEFAULT    4 lit_compare_utf8_strings
  2344: 4025480c    80 FUNC    WEAK   DEFAULT    4 _ZNK7HashMapIt8DelegateIF
  2345: 4025b55c    44 FUNC    GLOBAL DEFAULT    4 jmem_pools_collect_empty
  2346: 40234e4c    51 FUNC    GLOBAL DEFAULT    4 DISPLAY_BYTES
  2347: 4024fb04    35 FUNC    GLOBAL DEFAULT    4 SPIFFS_closedir
  2348: 4025b1b8   179 FUNC    GLOBAL DEFAULT    4 ecma_op_string_object_get
  2349: 4021ad70    61 FUNC    GLOBAL DEFAULT    4 ieee80211_set_tim
  2350: 402670a0     9 FUNC    GLOBAL DEFAULT    4 ecma_get_float_from_value
  2351: 40218ac4   274 FUNC    GLOBAL DEFAULT    4 ieee80211_parse_wpa
  2352: 40211698     8 FUNC    GLOBAL DEFAULT    4 StopLightSleepSetFunc
  2353: 40222218    84 FUNC    GLOBAL DEFAULT    4 espconn_tcp_write
  2354: 4024e314    65 FUNC    WEAK   DEFAULT    4 _ZN15CommandDelegateaSERK
  2355: 40256a14    19 FUNC    GLOBAL DEFAULT    4 ecma_number_make_infinity
  2356: 4024d8b8    53 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass15smartC
  2357: 4024a430    19 FUNC    GLOBAL DEFAULT    4 _Z12noInterruptsv
  2358: 3fff5200     4 OBJECT  GLOBAL DEFAULT    3 pAPListTral
  2359: 4022a090   106 FUNC    GLOBAL DEFAULT    4 wpa_auth_sta_associated
  2360: 4024e24c   129 FUNC    WEAK   DEFAULT    4 _ZNK7HashMapI6String15Com
  2361: 402214f4    26 FUNC    GLOBAL DEFAULT    4 dns_setserver
  2362: 40221514    19 FUNC    GLOBAL DEFAULT    4 dns_getserver
  2363: 40254450   383 FUNC    GLOBAL DEFAULT    4 spiffs_gc_check
  2364: 4023d664    35 FUNC    GLOBAL DEFAULT    4 asn1_version
  2365: 4020dc20   526 FUNC    GLOBAL DEFAULT    4 txiq_cover
  2366: 4020a404   433 FUNC    GLOBAL DEFAULT    4 tx_cap_init
  2367: 402180b0    49 FUNC    GLOBAL DEFAULT    4 ieee80211_add_htinfo_vend
  2368: 3ffe8000     0 NOTYPE  GLOBAL DEFAULT    1 _Pri_3_HandlerAddress
  2369: 40229138   100 FUNC    GLOBAL DEFAULT    4 igmp_stop
  2370: 4024c7f4    57 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection6onSent
  2371: 40203984   208 FUNC    GLOBAL DEFAULT    4 system_mktime
  2372: 3fff56b8    48 OBJECT  GLOBAL DEFAULT    3 jsLoopTimer
  2373: 40245804    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFv9s
  2374: 3ffef618     1 OBJECT  GLOBAL DEFAULT    3 periodic_cal_flag
  2375: 4023196c    78 FUNC    GLOBAL DEFAULT    4 KISS_Deal_with
  2376: 4022d024    21 FUNC    GLOBAL DEFAULT    4 wpa_set_profile
  2377: 40249cac    19 FUNC    GLOBAL DEFAULT    4 _ZN9IPAddressC1Ehhhh
  2378: 4020f520    69 FUNC    GLOBAL DEFAULT    4 dpd_scale_set
  2379: 402592c8   161 FUNC    GLOBAL DEFAULT    4 ecma_op_to_number
  2380: 40002ecc     0 NOTYPE  GLOBAL DEFAULT  ABS ets_delay_us
  2381: 402121f4    20 FUNC    GLOBAL DEFAULT    4 fpm_rf_is_closed
  2382: 40249234    37 FUNC    WEAK   DEFAULT    4 _ZN6VectorIP19ISystemRead
  2383: 40252df0   138 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClientC2Eb
  2384: 401053b0     0 FUNC    GLOBAL HIDDEN     5 __fixsfsi
  2385: 3ffef64d     1 OBJECT  GLOBAL DEFAULT    3 SDIO_slp_reject
  2386: 4024c744    89 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection11onCon
  2387: 4023e8c0   891 FUNC    GLOBAL DEFAULT    4 atan
  2388: 40220808    34 FUNC    GLOBAL DEFAULT    4 node_remove_from_list
  2389: 40213c80    77 FUNC    GLOBAL DEFAULT    4 ppGetTxQFirstAvail_Locked
  2390: 40255694    20 FUNC    GLOBAL DEFAULT    4 ecma_get_object_prototype
  2391: 4024270c    55 FUNC    GLOBAL DEFAULT    4 sntp_init
  2392: 40248ff4    29 FUNC    GLOBAL DEFAULT    4 _ZN11SystemClass10initial
  2393: 4020e8ac    99 FUNC    GLOBAL DEFAULT    4 read_sar_dout
  2394: 40211e50    23 FUNC    GLOBAL DEFAULT    4 pm_is_waked
  2395: 40215810   189 FUNC    GLOBAL DEFAULT    4 esf_buf_setup
  2396: 4022ef3c   575 FUNC    GLOBAL DEFAULT    4 sc_wifi_scan_done
  2397: 4024a0c0    51 FUNC    GLOBAL DEFAULT    4 _ZN6StringC1Eih
  2398: 4020a368    62 FUNC    GLOBAL DEFAULT    4 start_dig_rx
  2399: 40218bd8   252 FUNC    GLOBAL DEFAULT    4 ieee80211_parse_rsn
  2400: 3fffd0f0     0 NOTYPE  GLOBAL DEFAULT  ABS rcons
  2401: 4023dac8   166 FUNC    GLOBAL DEFAULT    4 asn1_find_oid
  2402: 40266f2c     5 FUNC    GLOBAL DEFAULT    4 ecma_string_hash
  2403: 40224628   154 FUNC    GLOBAL DEFAULT    4 raw_sendto
  2404: 402477f4   111 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdaterC2EPKci
  2405: 401054f8    73 FUNC    GLOBAL HIDDEN     5 __modsi3
  2406: 40209780   179 FUNC    GLOBAL DEFAULT    4 phy_get_vdd33
  2407: 40249774   202 FUNC    GLOBAL DEFAULT    4 ltoa_w
  2408: 402088fc   352 FUNC    GLOBAL DEFAULT    4 ram_ana_inf_gating_en
  2409: 40100070     0 NOTYPE  GLOBAL DEFAULT    5 _DoubleExceptionVector
  2410: 4020792c    21 FUNC    GLOBAL DEFAULT    4 strtoul
  2411: 402491b8    37 FUNC    WEAK   DEFAULT    4 _ZN6VectorI8DelegateIFvvE
  2412: 4024d3a4     7 FUNC    WEAK   DEFAULT    4 _ZN19ISystemReadyHandlerD
  2413: 40254808     2 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerial5flush
  2414: 40202dd8     2 FUNC    WEAK   DEFAULT    4 system_restart_hook
  2415: 40100f60    18 FUNC    GLOBAL DEFAULT    5 system_get_time
  2416: 40247954    93 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdater10readFwData
  2417: 40207f20    57 FUNC    GLOBAL DEFAULT    4 __uflow
  2418: 402474e4   220 FUNC    WEAK   DEFAULT    4 _ZN7HashMapIi6StringEixEi
  2419: 4021ed80   392 FUNC    GLOBAL DEFAULT    4 ieee80211_send_action_ven
  2420: 40248158   163 FUNC    GLOBAL DEFAULT    4 _ZN4Jsvm11runFunctionE6St
  2421: 40004b1c     0 NOTYPE  GLOBAL DEFAULT  ABS SPIRead
  2422: 40255958    32 FUNC    GLOBAL DEFAULT    4 ecma_get_named_accessor_p
  2423: 402440f0    13 OBJECT  GLOBAL DEFAULT    4 tcp_backoff
  2424: 4022d50c   404 FUNC    GLOBAL DEFAULT    4 wpa_parse_wpa_ie_rsn
  2425: 4024d630    62 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass6enableE
  2426: 4021025c   258 FUNC    GLOBAL DEFAULT    4 sleep_reset_analog_rtcreg
  2427: 4023cb44    15 FUNC    GLOBAL DEFAULT    4 SHA384_Update
  2428: 4025b624   118 FUNC    GLOBAL DEFAULT    4 lit_char_is_white_space
  2429: 402549f0     9 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection13addSs
  2430: 4025b520     9 FUNC    GLOBAL DEFAULT    4 jmem_pools_init
  2431: 4022e2e0    56 FUNC    GLOBAL DEFAULT    4 wpa_attach
  2432: 40265efc  1309 FUNC    GLOBAL DEFAULT    4 parser_scan_until
  2433: 402277a0   100 FUNC    GLOBAL DEFAULT    4 sys_timeouts_init
  2434: 402293dc   168 FUNC    GLOBAL DEFAULT    4 igmp_joingroup
  2435: 40256f4c    29 FUNC    GLOBAL DEFAULT    4 ecma_new_ecma_string_from
  2436: 4025baf4    21 FUNC    GLOBAL DEFAULT    4 lit_is_code_point_utf16_h
  2437: 3fff4e84     4 OBJECT  GLOBAL DEFAULT    3 pserver_list
  2438: 40213200   112 FUNC    GLOBAL DEFAULT    4 HdlAllBuffedEb
  2439: 40208c58   747 FUNC    GLOBAL DEFAULT    4 ram_set_channel_freq
  2440: 40215dac   107 FUNC    GLOBAL DEFAULT    4 ieee80211_crypto_decap
  2441: 40255204    27 FUNC    GLOBAL DEFAULT    4 ecma_gc_init
  2442: 4021ad68     2 FUNC    GLOBAL DEFAULT    4 ieee80211_psq_cleanup
  2443: 40266dac    21 FUNC    GLOBAL DEFAULT    4 ecma_is_lexical_environme
  2444: 40224578   136 FUNC    GLOBAL DEFAULT    4 raw_input
  2445: 402546e0    28 FUNC    GLOBAL DEFAULT    4 ax_port_realloc
  2446: 402058a8    21 FUNC    GLOBAL DEFAULT    4 wifi_get_channel
  2447: 40105f14     0 NOTYPE  GLOBAL DEFAULT  ABS _lit4_end
  2448: 3ffe800b     1 OBJECT  GLOBAL DEFAULT    1 dhcpc_flag
  2449: 40249e90   121 FUNC    GLOBAL DEFAULT    4 _ZN5Print11printNumberEmh
  2450: 40100c08    84 FUNC    GLOBAL DEFAULT    5 spi_flash_write_status
  2451: 402176d0   408 FUNC    GLOBAL DEFAULT    4 wifi_softap_stop
  2452: 402524d0   139 FUNC    GLOBAL DEFAULT    4 ax_port_read
  2453: 4020d130   175 FUNC    GLOBAL DEFAULT    4 get_phy_target_power
  2454: 40245a4c    34 FUNC    WEAK   DEFAULT    4 _ZN6VectorI6StringEixEj
  2455: 40227990    15 FUNC    GLOBAL DEFAULT    4 sys_restart_timeouts
  2456: 3ffef64c     1 OBJECT  GLOBAL DEFAULT    3 software_slp_reject
  2457: 3ffe800d     1 OBJECT  GLOBAL DEFAULT    1 reconnect_internal
  2458: 402030dc   303 FUNC    GLOBAL DEFAULT    4 system_restart_enhance
  2459: 40266ef0     5 FUNC    GLOBAL DEFAULT    4 ecma_number_is_negative
  2460: 401057b0    25 FUNC    GLOBAL DEFAULT    5 _ZN6StringC1ERKS_
  2461: 4022d830    63 FUNC    GLOBAL DEFAULT    4 wpa_eapol_key_mic
  2462: 4021ec38     9 FUNC    GLOBAL DEFAULT    4 unregister_ieee80211_acti
  2463: 4024244c    14 FUNC    GLOBAL DEFAULT    4 sntp_get_timezone
  2464: 401058ac    40 FUNC    GLOBAL DEFAULT    5 _ZNK6String6equalsERKS_
  2465: 40208514    41 FUNC    GLOBAL DEFAULT    4 ram_chip_v6_rx_init
  2466: 4022a68c  1015 FUNC    GLOBAL DEFAULT    4 __wpa_send_eapol
  2467: 40227ea0    57 FUNC    GLOBAL DEFAULT    4 udp_remove
  2468: 4000c268     0 NOTYPE  GLOBAL DEFAULT  ABS __subsf3
  2469: 4024d3cc    23 FUNC    WEAK   DEFAULT    4 _ZN16AccessPointClassD0Ev
  2470: 40241f60   684 FUNC    GLOBAL DEFAULT    4 sntp_mktm_r
  2471: 4021eaa0    48 FUNC    GLOBAL DEFAULT    4 ieee80211_send_action_reg
  2472: 402486d4    84 FUNC    WEAK   DEFAULT    4 _ZNK7HashMapIc17CommandDe
  2473: 4020d5e4   105 FUNC    GLOBAL DEFAULT    4 set_txdc_pbus
  2474: 40205660   270 FUNC    GLOBAL DEFAULT    4 wifi_set_user_ie
  2475: 4025b810    49 FUNC    GLOBAL DEFAULT    4 lit_get_magic_string_ex_u
  2476: 40218340   259 FUNC    GLOBAL DEFAULT    4 ieee80211_decap
  2477: 40207ea8   117 FUNC    GLOBAL DEFAULT    4 __shgetc
  2478: 402493ac    14 FUNC    GLOBAL DEFAULT    4 __cxa_pure_virtual
  2479: 40258220   213 FUNC    GLOBAL DEFAULT    4 ecma_property_hashmap_ins
  2480: 402598b8   126 FUNC    GLOBAL DEFAULT    4 ecma_op_eval
  2481: 40105320     0 FUNC    GLOBAL HIDDEN     5 __gesf2
  2482: 40245d88    81 FUNC    GLOBAL DEFAULT    4 _Z7loadPskPi
  2483: 402485dc    21 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFv9s
  2484: 40248684    80 FUNC    WEAK   DEFAULT    4 _ZNK7HashMapIc17CommandDe
  2485: 40205cd0    30 FUNC    GLOBAL DEFAULT    4 wifi_get_user_fixed_rate
  2486: 40210468    13 FUNC    GLOBAL DEFAULT    4 ic_get_ptk_alg
  2487: 40202a38    45 FUNC    GLOBAL DEFAULT    4 ets_timer_done
  2488: 40224404    50 FUNC    GLOBAL DEFAULT    4 pbuf_coalesce
  2489: 402577d4    78 FUNC    GLOBAL DEFAULT    4 ecma_copy_value
  2490: 400018a4     0 NOTYPE  GLOBAL DEFAULT  ABS ets_memset
  2491: 40252680    49 FUNC    GLOBAL DEFAULT    4 ax_fd_append
  2492: 40227fa4    32 FUNC    GLOBAL DEFAULT    4 espconn_list_creat
  2493: 402533bc    90 FUNC    GLOBAL DEFAULT    4 _ZN8NetUtils11pbufFindStr
  2494: 40000fa8     0 NOTYPE  GLOBAL DEFAULT  ABS ets_isr_unmask
  2495: 40266eac     8 FUNC    GLOBAL DEFAULT    4 ecma_is_property_configur
  2496: 40254c30     4 FUNC    GLOBAL DEFAULT    4 _ZN8NetUtils17FixNetworkR
  2497: 40204c88    31 FUNC    GLOBAL DEFAULT    4 wifi_station_get_hostname
  2498: 40234c74     5 FUNC    GLOBAL DEFAULT    4 ssl_handshake_status
  2499: 40245a34    23 FUNC    GLOBAL DEFAULT    4 _Z5readyv
  2500: 40223e08    13 FUNC    GLOBAL DEFAULT    4 netif_set_netmask
  2501: 4020a3d8    34 FUNC    GLOBAL DEFAULT    4 chip_v6_set_chanfreq
  2502: 40237b5c    82 FUNC    GLOBAL DEFAULT    4 bi_free
  2503: 40254a70    38 FUNC    GLOBAL DEFAULT    4 mqtt_parse_rem_len
  2504: 4024245c    10 FUNC    GLOBAL DEFAULT    4 sntp_set_timezone
  2505: 3ffef630     8 OBJECT  GLOBAL DEFAULT    3 noise_array
  2506: 40238174    63 FUNC    GLOBAL DEFAULT    4 bi_free_mod
  2507: 40266f7c    17 FUNC    GLOBAL DEFAULT    4 ecma_is_value_null
  2508: 4024b274    45 FUNC    GLOBAL DEFAULT    4 _ZN5TimerD1Ev
  2509: 4022873c    87 FUNC    GLOBAL DEFAULT    4 espconn_set_opt
  2510: 4022dbd0     4 FUNC    GLOBAL DEFAULT    4 eloop_cancel_timeout
  2511: 3ffef020     0 NOTYPE  GLOBAL DEFAULT  ABS __XT_EXCEPTION_DESCS_END_
  2512: 40219970    69 FUNC    GLOBAL DEFAULT    4 ieee80211_add_xrates
  2513: 3fff6080    24 OBJECT  GLOBAL DEFAULT    3 Serial
  2514: 3ffe9ec8    20 OBJECT  WEAK   DEFAULT    2 _ZTV14FunctionCallerIPFvc
  2515: 40227e20    90 FUNC    GLOBAL DEFAULT    4 udp_connect
  2516: 3ffeaf80    20 OBJECT  WEAK   DEFAULT    2 _ZTV16AccessPointClass
  2517: 4024575c     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvti
  2518: 402514c0  1219 FUNC    GLOBAL DEFAULT    4 spiffs_object_modify
  2519: 40105970    23 FUNC    GLOBAL DEFAULT    5 _ZNK6String7indexOfEc
  2520: 40203298    20 FUNC    GLOBAL DEFAULT    4 system_upgrade_flag_set
  2521: 401011a4     0 FUNC    GLOBAL HIDDEN     5 __unorddf2
  2522: 40256fb4    94 FUNC    GLOBAL DEFAULT    4 ecma_deref_ecma_string
  2523: 40254b18     4 FUNC    WEAK   DEFAULT    4 _ZN16MemoryDataStream13ge
  2524: 3fff6248     1 OBJECT  GLOBAL DEFAULT    3 RTC
  2525: 40240280   213 FUNC    GLOBAL DEFAULT    4 sin
  2526: 4020a9dc   241 FUNC    GLOBAL DEFAULT    4 tx_pwctrl_init
  2527: 40248cac    45 FUNC    GLOBAL DEFAULT    4 calloc
  2528: 40264d14   143 FUNC    GLOBAL DEFAULT    4 lexer_expect_identifier
  2529: 40252ae4    21 FUNC    GLOBAL DEFAULT    4 _ZThn8_N16MemoryDataStrea
  2530: 402143fc    24 FUNC    GLOBAL DEFAULT    4 phytype2mode
  2531: 40210930    25 FUNC    GLOBAL DEFAULT    4 pm_set_sleep_time
  2532: 3fff5680    48 OBJECT  GLOBAL DEFAULT    3 blinkTimer
  2533: 40222cb4    60 FUNC    GLOBAL DEFAULT    4 etharp_cleanup_netif
  2534: 40214f50   213 FUNC    GLOBAL DEFAULT    4 wDev_SetBssid
  2535: 402228f0   183 FUNC    GLOBAL DEFAULT    4 espconn_tcp_server
  2536: 4021af48    52 FUNC    GLOBAL DEFAULT    4 ieee80211_iserp_rateset
  2537: 402556a8    20 FUNC    GLOBAL DEFAULT    4 ecma_get_lex_env_outer_re
  2538: 4023c9a0   320 FUNC    GLOBAL DEFAULT    4 SHA256_Final
  2539: 4021f29c    48 FUNC    GLOBAL DEFAULT    4 ieee80211_add_ie_vendor_e
  2540: 4024220c    17 FUNC    GLOBAL DEFAULT    4 sntp_localtime_r
  2541: 401029bc    22 FUNC    GLOBAL DEFAULT    5 lmacRxDone
  2542: 4024dc28    64 FUNC    WEAK   DEFAULT    4 _ZN6VectorI7BssInfoE17rem
  2543: 4021df88    35 FUNC    GLOBAL DEFAULT    4 cnx_rc_update_age
  2544: 40208094    48 FUNC    GLOBAL DEFAULT    4 phy_init
  2545: 4000448c     0 NOTYPE  GLOBAL DEFAULT  ABS Wait_SPI_Idle
  2546: 402284cc    14 FUNC    GLOBAL DEFAULT    4 espconn_regist_disconcb
  2547: 4020d444    32 FUNC    GLOBAL DEFAULT    4 txbbgain2dcoindex
  2548: 40266d3c    97 FUNC    GLOBAL DEFAULT    4 opfunc_in
  2549: 4024b684   199 FUNC    WEAK   DEFAULT    4 _ZN7HashMapIt8DelegateIFv
  2550: 40266e88     8 FUNC    GLOBAL DEFAULT    4 ecma_is_property_enumerab
  2551: 402477b0     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIR1
  2552: 40248e60    59 FUNC    WEAK   DEFAULT    4 _ZN17ESP01_DescriptionC1E
  2553: 40256a4c    39 FUNC    GLOBAL DEFAULT    4 ecma_number_is_infinity
  2554: 40102b50    38 FUNC    GLOBAL DEFAULT    5 ppDequeueTxQ
  2555: 4021eb88    18 FUNC    GLOBAL DEFAULT    4 ieee80211_recv_action_unr
  2556: 402594a8   291 FUNC    GLOBAL DEFAULT    4 ecma_op_from_property_des
  2557: 40203600    28 FUNC    GLOBAL DEFAULT    4 system_deep_sleep_set_opt
  2558: 4025570c    93 FUNC    GLOBAL DEFAULT    4 ecma_find_internal_proper
  2559: 40245648   105 FUNC    GLOBAL DEFAULT    4 RC4_crypt
  2560: 40202b54    98 FUNC    GLOBAL DEFAULT    4 ets_timer_init
  2561: 4020d3a0    93 FUNC    GLOBAL DEFAULT    4 phy_after_init_enrx
  2562: 40241664   423 FUNC    GLOBAL DEFAULT    4 __sin
  2563: 4020753c    76 FUNC    GLOBAL DEFAULT    4 __fpclassifyd
  2564: 402298f8    25 FUNC    GLOBAL DEFAULT    4 hostapd_rate_found
  2565: 402496d8   110 FUNC    GLOBAL DEFAULT    4 m_printf
  2566: 40245fe4    37 FUNC    GLOBAL DEFAULT    4 _Z20mqttPublishCompletedt
  2567: 400038a4     0 NOTYPE  GLOBAL DEFAULT  ABS uart_buff_switch
  2568: 40258ab4   219 FUNC    GLOBAL DEFAULT    4 ecma_builtin_dispatch_cal
  2569: 4021df1c   107 FUNC    GLOBAL DEFAULT    4 cnx_rc_update_state_metri
  2570: 3fff522c     4 OBJECT  GLOBAL DEFAULT    3 pAKGuideGlob
  2571: 40203790   264 FUNC    GLOBAL DEFAULT    4 system_station_got_ip_set
  2572: 402121ec     8 FUNC    GLOBAL DEFAULT    4 wifi_fpm_get_sleep_type
  2573: 4020efa4   458 FUNC    GLOBAL DEFAULT    4 ram_rxiq_get_mis
  2574: 4025255c   247 FUNC    GLOBAL DEFAULT    4 axl_ssl_read
  2575: 4024df2c    23 FUNC    WEAK   DEFAULT    4 _ZN8WDTClassD0Ev
  2576: 40236d18     2 FUNC    GLOBAL DEFAULT    4 RNG_initialize
  2577: 40264380   864 FUNC    GLOBAL DEFAULT    4 lexer_next_token
  2578: 4024d150    61 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnectionD1Ev
  2579: 4025a23c   129 FUNC    GLOBAL DEFAULT    4 ecma_op_get_binding_value
  2580: 40100050     0 NOTYPE  GLOBAL DEFAULT    5 _UserExceptionVector
  2581: 40254ee0    24 FUNC    GLOBAL DEFAULT    4 jerry_value_is_function
  2582: 402381b4    58 FUNC    GLOBAL DEFAULT    4 bi_multiply
  2583: 4000c8f0     0 NOTYPE  GLOBAL DEFAULT  ABS __muldf3
  2584: 40249d98    15 FUNC    GLOBAL DEFAULT    4 _ZN5Print5printEPKc
  2585: 3ffe8390    16 OBJECT  GLOBAL DEFAULT    2 SDK_VERSION
  2586: 4024c948   237 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection17stati
  2587: 4024807c    19 FUNC    GLOBAL DEFAULT    4 jerry_port_fatal
  2588: 40221474    43 FUNC    GLOBAL DEFAULT    4 wifi_softap_reset_dhcps_l
  2589: 3ffef4e8     1 OBJECT  GLOBAL DEFAULT    3 rx_table_renew_en
  2590: 40259434   116 FUNC    GLOBAL DEFAULT    4 ecma_op_to_object
  2591: 40252990   279 FUNC    WEAK   DEFAULT    4 _ZN7HashMapI6StringS0_Eix
  2592: 4025eeb0    20 FUNC    GLOBAL DEFAULT    4 parser_error_to_string
  2593: 40249394    17 FUNC    GLOBAL DEFAULT    4 _ZdaPv
  2594: 3ffe858a     1 OBJECT  GLOBAL DEFAULT    2 RSSI_MIN
  2595: 4022a158    34 FUNC    GLOBAL DEFAULT    4 wpa_auth_sta_deinit
  2596: 3ffef21c    20 OBJECT  GLOBAL DEFAULT    3 check_timeouts_timer
  2597: 3fff4e44     4 OBJECT  GLOBAL DEFAULT    3 tcp_input_pcb
  2598: 40208ac8    88 FUNC    GLOBAL DEFAULT    4 wait_rfpll_cal_end
  2599: 4025bb48    23 FUNC    GLOBAL DEFAULT    4 lit_utf8_peek_next
  2600: 402652d8  3096 FUNC    GLOBAL DEFAULT    4 parser_parse_expression
  2601: 4024581c    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvvE
  2602: 4024daa4   106 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass14waitCo
  2603: 40255a88   276 FUNC    GLOBAL DEFAULT    4 ecma_get_property_descrip
  2604: 4024223c   420 FUNC    GLOBAL DEFAULT    4 sntp__tzcalc_limits
  2605: 40263504   357 FUNC    GLOBAL DEFAULT    4 ecma_op_abstract_relation
  2606: 40225f84    66 FUNC    GLOBAL DEFAULT    4 tcp_update_rcv_ann_wnd
  2607: 40252c74   192 FUNC    WEAK   DEFAULT    4 _ZN3URL8toStringEv
  2608: 4024d9bc   104 FUNC    GLOBAL DEFAULT    4 _ZN7BssInfoC1EP8bss_info
  2609: 4025bb20    38 FUNC    GLOBAL DEFAULT    4 lit_utf8_read_next
  2610: 40205770    47 FUNC    GLOBAL DEFAULT    4 wifi_get_user_ie
  2611: 40263710    83 FUNC    GLOBAL DEFAULT    4 ecma_op_put_value_lex_env
  2612: 40224620     6 FUNC    GLOBAL DEFAULT    4 raw_recv
  2613: 40254e54    71 FUNC    GLOBAL DEFAULT    4 jerry_init
  2614: 402350b8    96 FUNC    GLOBAL DEFAULT    4 ssl_write
  2615: 4020d484   183 FUNC    GLOBAL DEFAULT    4 init_cal_dcoffset
  2616: 4022e3e8     4 FUNC    GLOBAL DEFAULT    4 wpa_sm_get_beacon_ie
  2617: 40103674     2 FUNC    GLOBAL DEFAULT    5 rcUpdateDataRxDone
  2618: 402283a0    24 FUNC    GLOBAL DEFAULT    4 espconn_tcp_set_max_retra
  2619: 4024a238    49 FUNC    GLOBAL DEFAULT    4 _ZNK6String7indexOfERKS_j
  2620: 40257564    76 FUNC    GLOBAL DEFAULT    4 ecma_string_get_length
  2621: 3fff4384     1 OBJECT  GLOBAL DEFAULT    3 connect_scan_flag
  2622: 4020fff4   528 FUNC    GLOBAL DEFAULT    4 pm_wakeup_init
  2623: 4022919c    46 FUNC    GLOBAL DEFAULT    4 igmp_report_groups
  2624: 402534f4    59 FUNC    GLOBAL DEFAULT    4 _ZN15CommandDelegateC1Ev
  2625: 40254b30    27 FUNC    GLOBAL DEFAULT    4 _ZN16MemoryDataStream5wri
  2626: 4021fb3c    34 FUNC    GLOBAL DEFAULT    4 dhcp_arp_reply
  2627: 40245bf4   288 FUNC    GLOBAL DEFAULT    4 _Z9connectOkv
  2628: 40203630    18 FUNC    GLOBAL DEFAULT    4 system_phy_set_max_tpw
  2629: 402477b0     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJR1
  2630: 40253530    83 FUNC    GLOBAL DEFAULT    4 _ZN15CommandDelegateC2E6S
  2631: 3ffef5ff     1 OBJECT  GLOBAL DEFAULT    3 rxmax_ext_level
  2632: 40205d90    19 FUNC    GLOBAL DEFAULT    4 wifi_register_send_pkt_fr
  2633: 40102164   103 FUNC    GLOBAL DEFAULT    5 lmacProcessTxTimeout
  2634: 4024575c     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvti
  2635: 40244384   108 FUNC    GLOBAL DEFAULT    4 inet_chksum_pbuf
  2636: 4021adb0   101 FUNC    GLOBAL DEFAULT    4 ieee80211_pwrsave
  2637: 40211ba0    14 FUNC    GLOBAL DEFAULT    4 pm_enable_gpio_wakeup
  2638: 4020eb94    38 FUNC    GLOBAL DEFAULT    4 ram_get_bb_atten
  2639: 40202f2c   104 FUNC    GLOBAL DEFAULT    4 system_restore
  2640: 402575b0    76 FUNC    GLOBAL DEFAULT    4 ecma_string_get_size
  2641: 40105544     0 FUNC    GLOBAL DEFAULT    5 xthal_set_intclear
  2642: 3ffe8360     4 OBJECT  GLOBAL DEFAULT    1 dhcps_lease_time
  2643: 4000dc88     0 NOTYPE  GLOBAL DEFAULT  ABS __divsi3
  2644: 4021d0e4    17 FUNC    GLOBAL DEFAULT    4 chm_release_lock
  2645: 4024d854    15 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass19getCon
  2646: 4024e690    41 FUNC    GLOBAL DEFAULT    4 flashmem_erase_sector
  2647: 4021ac9c    15 FUNC    GLOBAL DEFAULT    4 ieee80211_phy_type_get
  2648: 40100c88    48 FUNC    GLOBAL DEFAULT    5 spi_flash_erase_sector
  2649: 40249da8    41 FUNC    GLOBAL DEFAULT    4 _ZN5Print7printlnEv
  2650: 40225e30    17 FUNC    GLOBAL DEFAULT    4 tcp_abort
  2651: 4022ee34   234 FUNC    GLOBAL DEFAULT    4 sc_PackCallback
  2652: 40203a64    36 FUNC    GLOBAL DEFAULT    4 system_get_data_of_array_
  2653: 402503e8   164 FUNC    GLOBAL DEFAULT    4 spiffs_erase_block
  2654: 4021ec24    18 FUNC    GLOBAL DEFAULT    4 register_ieee80211_action
  2655: 4021ec04    29 FUNC    GLOBAL DEFAULT    4 get_iav_key
  2656: 40266e54    15 FUNC    GLOBAL DEFAULT    4 ecma_set_internal_propert
  2657: 40249134    52 FUNC    GLOBAL DEFAULT    4 _ZN11SystemClass15setCpuF
  2658: 402582f8   177 FUNC    GLOBAL DEFAULT    4 ecma_property_hashmap_del
  2659: 40229294   326 FUNC    GLOBAL DEFAULT    4 igmp_input
  2660: 40238384   103 FUNC    GLOBAL DEFAULT    4 bi_compare
  2661: 40236238   725 FUNC    GLOBAL DEFAULT    4 do_svr_handshake
  2662: 40254f48    31 FUNC    GLOBAL DEFAULT    4 jerry_create_string
  2663: 401056ec    53 FUNC    GLOBAL DEFAULT    5 _ZN6StringC2EPKc
  2664: 3fff5398    28 OBJECT  GLOBAL DEFAULT    3 pTouchConn
  2665: 402233e8   533 FUNC    GLOBAL DEFAULT    4 ipaddr_aton
  2666: 4020f86c    70 FUNC    GLOBAL DEFAULT    4 pm_set_pll_xtal_wait_time
  2667: 402434d4     2 FUNC    GLOBAL DEFAULT    4 chip_v6_set_sense
  2668: 40002fa0     0 NOTYPE  GLOBAL DEFAULT  ABS ets_wdt_enable
  2669: 40259bf4    75 FUNC    GLOBAL DEFAULT    4 ecma_op_function_list_laz
  2670: 40001f00     0 NOTYPE  GLOBAL DEFAULT  ABS ets_vprintf
  2671: 402058c0    62 FUNC    GLOBAL DEFAULT    4 wifi_set_channel
  2672: 4023548c   261 FUNC    GLOBAL DEFAULT    4 send_alert
  2673: 4020b020   392 FUNC    GLOBAL DEFAULT    4 chip_v6_set_chan_rx_cmp
  2674: 4025af00   534 FUNC    GLOBAL DEFAULT    4 ecma_op_general_object_de
  2675: 4022abfc   152 FUNC    GLOBAL DEFAULT    4 wpa_auth_sm_event
  2676: 402470b0    23 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM3CliFv
  2677: 40259a14    19 FUNC    GLOBAL DEFAULT    4 ecma_raise_type_error
  2678: 40203258    60 FUNC    GLOBAL DEFAULT    4 system_upgrade_userbin_ch
  2679: 3ffef240     1 OBJECT  GLOBAL DEFAULT    3 dbg_timer_flag
  2680: 40249914    19 FUNC    GLOBAL DEFAULT    4 ultoa_w
  2681: 4025d824  3902 FUNC    GLOBAL DEFAULT    4 parser_parse_statements
  2682: 402670cc    26 FUNC    GLOBAL DEFAULT    4 ecma_collection_iterator_
  2683: 402523c0    47 FUNC    GLOBAL DEFAULT    4 axl_free
  2684: 4025471c     4 FUNC    WEAK   DEFAULT    4 _ZNK6VectorIP19ISystemRea
  2685: 40100b40    42 FUNC    GLOBAL DEFAULT    5 Cache_Read_Enable_2
  2686: 40204fbc    17 FUNC    GLOBAL DEFAULT    4 wifi_softap_get_config_de
  2687: 402347d4   190 FUNC    GLOBAL DEFAULT    4 finished_digest
  2688: 40267270   106 FUNC    GLOBAL DEFAULT    4 lit_read_code_point_from_
  2689: 40245740     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJti
  2690: 4021b150   452 FUNC    GLOBAL DEFAULT    4 scan_start
  2691: 401045c4    23 FUNC    GLOBAL DEFAULT    5 wDev_ClearTxqCollisions
  2692: 40235b94     5 FUNC    GLOBAL DEFAULT    4 ssl_version
  2693: 3ffeb818    72 OBJECT  WEAK   DEFAULT    2 _ZTV16MemoryDataStream
  2694: 402485ac    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvcP
  2695: 3fff56b4     4 OBJECT  GLOBAL DEFAULT    3 jsVm
  2696: 40212c2c    41 FUNC    GLOBAL DEFAULT    4 pp_soft_wdt_stop
  2697: 40236d64    81 FUNC    GLOBAL DEFAULT    4 get_random_NZ
  2698: 4020cc54  1040 FUNC    GLOBAL DEFAULT    4 register_chipv6_phy
  2699: 40101864    83 FUNC    GLOBAL DEFAULT    5 lmacSetAcParam
  2700: 40224244    58 FUNC    GLOBAL DEFAULT    4 pbuf_dechain
  2701: 40266e08     8 FUNC    GLOBAL DEFAULT    4 ecma_get_lex_env_type
  2702: 4023d400    37 FUNC    GLOBAL DEFAULT    4 asn1_next_obj
  2703: 40266c9c    46 FUNC    GLOBAL DEFAULT    4 opfunc_less_or_equal_than
  2704: 4020fb04    52 FUNC    GLOBAL DEFAULT    4 pm_open_rf
  2705: 40229c68     4 FUNC    GLOBAL DEFAULT    4 os_get_time
  2706: 3ffe89dc     4 OBJECT  GLOBAL DEFAULT    2 unsupported_str
  2707: 40254a04     5 FUNC    GLOBAL DEFAULT    4 _ZN14CommandHandler13getC
  2708: 40204914    18 FUNC    GLOBAL DEFAULT    4 wifi_station_get_auto_con
  2709: 4022d03c    32 FUNC    GLOBAL DEFAULT    4 wpa_set_pmk
  2710: 4025aab4   113 FUNC    GLOBAL DEFAULT    4 ecma_object_get_class_nam
  2711: 402440d0    16 OBJECT  GLOBAL DEFAULT    4 tcp_pcb_lists
  2712: 3fff6c08    12 OBJECT  GLOBAL DEFAULT    3 axlFdArray
  2713: 4020d438    11 FUNC    GLOBAL DEFAULT    4 phy_set_powerup_option
  2714: 4025b748   123 FUNC    GLOBAL DEFAULT    4 lit_char_is_identifier_pa
  2715: 40257ec8    14 FUNC    GLOBAL DEFAULT    4 ecma_init_lit_storage
  2716: 40225d04    36 FUNC    GLOBAL DEFAULT    4 tcp_close
  2717: 40102bd4    52 FUNC    GLOBAL DEFAULT    5 ppEnqueueTxDone
  2718: 40230db4   751 FUNC    GLOBAL DEFAULT    4 KISS_Find_channel_ht40
  2719: 4024fb28    97 FUNC    GLOBAL DEFAULT    4 SPIFFS_tell
  2720: 40242220    18 FUNC    GLOBAL DEFAULT    4 sntp_localtime
  2721: 3ffe8574     6 OBJECT  GLOBAL DEFAULT    2 ethbroadcast
  2722: 40254af4    34 FUNC    GLOBAL DEFAULT    4 ax_fd_getfd
  2723: 402280e8   228 FUNC    GLOBAL DEFAULT    4 espconn_connect
  2724: 40257e5c    98 FUNC    GLOBAL DEFAULT    4 ecma_lcache_invalidate
  2725: 401001ec    32 FUNC    GLOBAL DEFAULT    5 NmiTimSetFunc
  2726: 40208110    22 FUNC    GLOBAL DEFAULT    4 phy_disable_agc
  2727: 40235594   118 FUNC    GLOBAL DEFAULT    4 ssl_free
  2728: 4025468c    28 FUNC    GLOBAL DEFAULT    4 ax_port_malloc
  2729: 40221388   118 FUNC    GLOBAL DEFAULT    4 dhcps_coarse_tmr
  2730: 40260cb4    20 FUNC    GLOBAL DEFAULT    4 ecma_dealloc_extended_obj
  2731: 40207684    48 FUNC    GLOBAL DEFAULT    4 rboot_write_init
  2732: 40203fe0   182 FUNC    GLOBAL DEFAULT    4 wifi_param_save_protect_w
  2733: 40236ea0   162 FUNC    GLOBAL DEFAULT    4 base64_decode
  2734: 4021f2cc    77 FUNC    GLOBAL DEFAULT    4 ieee80211_add_ie_vendor_e
  2735: 4021b648    83 FUNC    GLOBAL DEFAULT    4 scan_add_probe_ssid
  2736: 4023c8c4    48 FUNC    GLOBAL DEFAULT    4 SHA256_Init
  2737: 402200ac   192 FUNC    GLOBAL DEFAULT    4 dhcp_release
  2738: 40217568   348 FUNC    GLOBAL DEFAULT    4 wifi_softap_start
  2739: 402149f4   240 FUNC    GLOBAL DEFAULT    4 wDev_Option_Init
  2740: 40234c7c    17 FUNC    GLOBAL DEFAULT    4 ssl_get_config
  2741: 40253670    41 FUNC    GLOBAL DEFAULT    4 spiffs_cache_drop_page
  2742: 40237a98    39 FUNC    GLOBAL DEFAULT    4 bi_copy
  2743: 4025774c    58 FUNC    GLOBAL DEFAULT    4 ecma_make_uint32_value
  2744: 40204b80    45 FUNC    GLOBAL DEFAULT    4 wifi_station_get_connect_
  2745: 402670ac     7 FUNC    GLOBAL DEFAULT    4 ecma_get_string_from_valu
  2746: 40252748    50 FUNC    GLOBAL DEFAULT    4 _ZN16MemoryDataStream15re
  2747: 3ffe8094     1 OBJECT  GLOBAL DEFAULT    1 CanDoFreqCal
  2748: 40211fd4    76 FUNC    GLOBAL DEFAULT    4 pm_post
  2749: 4025bc80    91 FUNC    GLOBAL DEFAULT    4 lit_code_point_to_cesu8
  2750: 40252414    23 FUNC    GLOBAL DEFAULT    4 axl_init
  2751: 4024bed0    64 FUNC    WEAK   DEFAULT    4 _ZN6VectorI19rBootHttpUpd
  2752: 40248788    48 FUNC    GLOBAL DEFAULT    4 _ZN7ScProto15compareCheck
  2753: 40255938    32 FUNC    GLOBAL DEFAULT    4 ecma_get_named_accessor_p
  2754: 40225d28    89 FUNC    GLOBAL DEFAULT    4 tcp_shutdown
  2755: 3ffe8010     1 OBJECT  GLOBAL DEFAULT    1 default_hostname
  2756: 40212c58    52 FUNC    GLOBAL DEFAULT    4 system_soft_wdt_restart
  2757: 40222020    32 FUNC    GLOBAL DEFAULT    4 espconn_tcp_disconnect
  2758: 40206588    30 FUNC    GLOBAL DEFAULT    4 ets_strcat
  2759: 4022bc3c   305 FUNC    GLOBAL DEFAULT    4 wpa_validate_wpa_ie
  2760: 40002a98     0 NOTYPE  GLOBAL DEFAULT  ABS ets_strncpy
  2761: 40105610    19 FUNC    GLOBAL DEFAULT    5 pvPortMalloc
  2762: 40245efc   166 FUNC    GLOBAL DEFAULT    4 _Z13getMqttClientv
  2763: 402440e0     7 OBJECT  GLOBAL DEFAULT    4 tcp_persist_backoff
  2764: 4022da08    35 FUNC    GLOBAL DEFAULT    4 wpa_cipher_to_alg
  2765: 40260984   139 FUNC    GLOBAL DEFAULT    4 vm_run_eval
  2766: 40215a98    21 FUNC    GLOBAL DEFAULT    4 ieee80211_chan2ieee
  2767: 40257838    21 FUNC    GLOBAL DEFAULT    4 ecma_copy_value_if_not_ob
  2768: 40205f44    60 FUNC    GLOBAL DEFAULT    4 system_os_task
  2769: 4020d404    51 FUNC    GLOBAL DEFAULT    4 phy_set_rx11b_reg
  2770: 4024a0c0    51 FUNC    GLOBAL DEFAULT    4 _ZN6StringC2Eih
  2771: 40227fec    28 FUNC    GLOBAL DEFAULT    4 espconn_pbuf_create
  2772: 40249380    17 FUNC    GLOBAL DEFAULT    4 _ZdlPv
  2773: 4021d1e4    49 FUNC    GLOBAL DEFAULT    4 chm_cancel_op
  2774: 4026705c    20 FUNC    GLOBAL DEFAULT    4 ecma_make_boolean_value
  2775: 40210804   116 FUNC    GLOBAL DEFAULT    4 lmacInit
  2776: 4025b6a0    52 FUNC    GLOBAL DEFAULT    4 lit_char_is_line_terminat
  2777: 3fff6c20     4 OBJECT  GLOBAL DEFAULT    3 jmem_heap_list_skip_p
  2778: 401055ac    93 FUNC    GLOBAL DEFAULT    5 Cache_Read_Enable_New
  2779: 40257c94   109 FUNC    GLOBAL DEFAULT    4 ecma_collection_iterator_
  2780: 4020f618     8 FUNC    GLOBAL DEFAULT    4 pm_rtc2usec
  2781: 402459e4    74 FUNC    GLOBAL DEFAULT    4 _Z12cmdRomSwitchcPc
  2782: 4025b45c    29 FUNC    GLOBAL DEFAULT    4 jmem_heap_alloc_block_sto
  2783: 40249370    15 FUNC    GLOBAL DEFAULT    4 _Znaj
  2784: 40257d34    27 FUNC    GLOBAL DEFAULT    4 ecma_lcache_init
  2785: 40228390    14 FUNC    GLOBAL DEFAULT    4 espconn_tcp_get_max_retra
  2786: 4025ba54   135 FUNC    GLOBAL DEFAULT    4 lit_is_cesu8_string_valid
  2787: 4025a4b0    21 FUNC    GLOBAL DEFAULT    4 ecma_op_object_put
  2788: 40225ec4   192 FUNC    GLOBAL DEFAULT    4 tcp_listen_with_backlog
  2789: 40236f44   373 FUNC    GLOBAL DEFAULT    4 AES_set_key
  2790: 4025e768   241 FUNC    GLOBAL DEFAULT    4 parser_free_jumps
  2791: 40254720    60 FUNC    GLOBAL DEFAULT    4 _ZN5Print5writeEPKhj
  2792: 3ffe8050    32 OBJECT  GLOBAL DEFAULT    1 rx_gain_swp
  2793: 40249840    20 FUNC    GLOBAL DEFAULT    4 ltoa
  2794: 4024c7a8    72 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection9onRece
  2795: 40210540   184 FUNC    GLOBAL DEFAULT    4 ic_set_vif
  2796: 3fff4790    40 OBJECT  GLOBAL DEFAULT    3 dhcp_rx_options_val
  2797: 4023d688    98 FUNC    GLOBAL DEFAULT    4 asn1_validity
  2798: 40267078     7 FUNC    GLOBAL DEFAULT    4 ecma_make_string_value
  2799: 40227da4   123 FUNC    GLOBAL DEFAULT    4 udp_bind
  2800: 4024d1ec   433 FUNC    GLOBAL DEFAULT    4 _ZN3URLC2E6String
  2801: 402268bc    72 FUNC    GLOBAL DEFAULT    4 tcp_send_fin
  2802: 4023da80    72 FUNC    GLOBAL DEFAULT    4 asn1_compare_dn
  2803: 4024f788   252 FUNC    GLOBAL DEFAULT    4 SPIFFS_lseek
  2804: 40209ca8   341 FUNC    GLOBAL DEFAULT    4 gen_rx_gain_table
  2805: 4024aa78    61 FUNC    GLOBAL DEFAULT    4 _Z9fileWritesPKvj
  2806: 402491e0    29 FUNC    WEAK   DEFAULT    4 _ZN6VectorI8DelegateIFvvE
  2807: 402083c0   334 FUNC    GLOBAL DEFAULT    4 chip_v6_rxmax_ext_ana
  2808: 4010464c    88 FUNC    GLOBAL DEFAULT    5 wDev_SetFrameAckType
  2809: 3ffef384     4 OBJECT  GLOBAL DEFAULT    3 done_cb
  2810: 402282d8    70 FUNC    GLOBAL DEFAULT    4 espconn_sendto
  2811: 40266c1c    15 FUNC    GLOBAL DEFAULT    4 opfunc_equal_value
  2812: 402057a4     8 FUNC    GLOBAL DEFAULT    4 wifi_get_phy_mode
  2813: 402078fc    21 FUNC    GLOBAL DEFAULT    4 strtoull
  2814: 40252780   151 FUNC    GLOBAL DEFAULT    4 _ZN16MemoryDataStream5wri
  2815: 40213744    20 FUNC    GLOBAL DEFAULT    4 pp_tx_idle_timeout
  2816: 40105764    28 FUNC    GLOBAL DEFAULT    5 _ZN6StringC1EO15StringSum
  2817: 40210c90    20 FUNC    GLOBAL DEFAULT    4 pm_rf_is_closed
  2818: 4020abf0   339 FUNC    GLOBAL DEFAULT    4 noise_check_loop
  2819: 402184b4    44 FUNC    GLOBAL DEFAULT    4 ieee80211_alloc_challenge
  2820: 402427b4    13 FUNC    GLOBAL DEFAULT    4 sntp_setservername
  2821: 4021aec8    54 FUNC    GLOBAL DEFAULT    4 ieee80211_node_pwrsave
  2822: 40224610    15 FUNC    GLOBAL DEFAULT    4 raw_connect
  2823: 40105748    28 FUNC    GLOBAL DEFAULT    5 _ZN6StringC1EOS_
  2824: 4024b1cc    65 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerialC2Ei
  2825: 40207648    59 FUNC    GLOBAL DEFAULT    4 rboot_set_current_rom
  2826: 4020cbcc    48 FUNC    GLOBAL DEFAULT    4 get_data_from_rtc
  2827: 40003b30     0 NOTYPE  GLOBAL DEFAULT  ABS uart_tx_one_char
  2828: 402577b0    36 FUNC    GLOBAL DEFAULT    4 ecma_get_uint32_from_valu
  2829: 4025793c   125 FUNC    GLOBAL DEFAULT    4 ecma_value_assign_number
  2830: 40266c70    43 FUNC    GLOBAL DEFAULT    4 opfunc_greater_than
  2831: 40206608    36 FUNC    GLOBAL DEFAULT    4 ets_snprintf
  2832: 40221400    67 FUNC    GLOBAL DEFAULT    4 wifi_softap_set_dhcps_off
  2833: 40208054     5 FUNC    GLOBAL DEFAULT    4 __errno_location
  2834: 40254ec4    25 FUNC    GLOBAL DEFAULT    4 jerry_get_global_object
  2835: 4024c6c8   116 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection5writeE
  2836: 3fff6108     8 OBJECT  GLOBAL DEFAULT    3 WifiAccessPoint
  2837: 4024b4e8   120 FUNC    WEAK   DEFAULT    4 _ZN7HashMapIt8DelegateIFv
  2838: 4021b610    33 FUNC    GLOBAL DEFAULT    4 scan_add_bssid
  2839: 4021dbec   160 FUNC    GLOBAL DEFAULT    4 cnx_bss_alloc
  2840: 3ffe8084     2 OBJECT  GLOBAL DEFAULT    1 NoiseTimerInterval
  2841: 4024df54    26 FUNC    GLOBAL DEFAULT    4 _ZN8WDTClass20internalApp
  2842: 402085f4   446 FUNC    GLOBAL DEFAULT    4 readvdd33
  2843: 4010592c    22 FUNC    GLOBAL DEFAULT    5 _ZN6StringixEj
  2844: 4022ecf4    58 FUNC    GLOBAL DEFAULT    4 sc_free_snif_glob
  2845: 40260c40    15 FUNC    GLOBAL DEFAULT    4 ecma_alloc_collection_hea
  2846: 4020780c    51 FUNC    GLOBAL DEFAULT    4 rboot_set_temp_rom
  2847: 3fff53b4    20 OBJECT  GLOBAL DEFAULT    3 TouchUdpTimer
  2848: 40212130   187 FUNC    GLOBAL DEFAULT    4 wifi_fpm_set_sleep_type
  2849: 4024aafc    33 FUNC    GLOBAL DEFAULT    4 _Z8fileSeeksi15SeekOrigin
  2850: 40257f90   247 FUNC    GLOBAL DEFAULT    4 ecma_find_or_create_liter
  2851: 40205e10    18 FUNC    GLOBAL DEFAULT    4 wifi_rfid_locp_recv_close
  2852: 4024574c     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJcP
  2853: 4025d230   153 FUNC    GLOBAL DEFAULT    4 parser_stack_pop
  2854: 40105e74    77 FUNC    GLOBAL DEFAULT    5 _ZN5Timer12initializeMsEj
  2855: 3fff4764     4 OBJECT  GLOBAL DEFAULT    3 g_cnx_probe_rc_list_cb
  2856: 402151e0    69 FUNC    GLOBAL DEFAULT    4 wDev_Crypto_Conf
  2857: 40258c28    20 FUNC    GLOBAL DEFAULT    4 ecma_builtin_type_error_t
  2858: 40212e0c    51 FUNC    GLOBAL DEFAULT    4 reset_noise_timer
  2859: 4022210c    85 FUNC    GLOBAL DEFAULT    4 espconn_recv_unhold
  2860: 40223d90   101 FUNC    GLOBAL DEFAULT    4 netif_set_ipaddr
  2861: 40246b20   207 FUNC    WEAK   DEFAULT    4 _ZN7HashMapIc6StringE8all
  2862: 3ffef028     0 NOTYPE  GLOBAL DEFAULT  ABS _rodata_end
  2863: 402232ac   119 FUNC    GLOBAL DEFAULT    4 ethernet_input
  2864: 40203a54     8 FUNC    GLOBAL DEFAULT    4 system_init_done_cb
  2865: 4024bbb8    89 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClient17onReadyT
  2866: 4024a3a8    27 FUNC    GLOBAL DEFAULT    4 _ZNK6String5toIntEv
  2867: 402082e4   100 FUNC    GLOBAL DEFAULT    4 ram_pbus_xpd_tx_on
  2868: 40203ccc     8 FUNC    GLOBAL DEFAULT    4 wifi_station_dhcpc_status
  2869: 40228e30    27 FUNC    GLOBAL DEFAULT    4 espconn_igmp_leave
  2870: 3ffede2c    48 OBJECT  GLOBAL DEFAULT    2 ecma_builtin_object_proto
  2871: 4023d4d4   400 FUNC    GLOBAL DEFAULT    4 asn1_get_private_key
  2872: 40253b80   279 FUNC    GLOBAL DEFAULT    4 spiffs_gc_erase_page_stat
  2873: 4024ae48    32 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerial9avail
  2874: 402538c8   191 FUNC    GLOBAL DEFAULT    4 spiffs_cache_init
  2875: 402383ec   773 FUNC    GLOBAL DEFAULT    4 bi_divide
  2876: 40235164    96 FUNC    GLOBAL DEFAULT    4 send_change_cipher_spec
  2877: 40260f18    15 FUNC    GLOBAL DEFAULT    4 ecma_builtin_function_dis
  2878: 40203c08    64 FUNC    GLOBAL DEFAULT    4 wifi_station_dhcpc_stop
  2879: 40203ab4   108 FUNC    GLOBAL DEFAULT    4 system_get_string_from_fl
  2880: 40247c70   166 FUNC    WEAK   DEFAULT    4 _ZN7HashMapI6FwType6Strin
  2881: 40208544   168 FUNC    GLOBAL DEFAULT    4 tsen_meas
  2882: 40205904    92 FUNC    GLOBAL DEFAULT    4 wifi_promiscuous_set_mac
  2883: 3fff56b0     4 OBJECT  GLOBAL DEFAULT    3 fwUpdater
  2884: 40102240   129 FUNC    GLOBAL DEFAULT    5 lmacProcessCollision
  2885: 40213900    10 FUNC    GLOBAL DEFAULT    4 DefFreqCalTimerCB
  2886: 402457d4    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvcP
  2887: 40214874    83 FUNC    GLOBAL DEFAULT    4 rc_disable_trc
  2888: 402122b4   100 FUNC    GLOBAL DEFAULT    4 wifi_fpm_open
  2889: 402299bc    51 FUNC    GLOBAL DEFAULT    4 hex2byte
  2890: 402526d8    23 FUNC    WEAK   DEFAULT    4 _ZN17IDataSourceStreamD0E
  2891: 40254adc    22 FUNC    GLOBAL DEFAULT    4 ax_fd_get
  2892: 4021b634    10 FUNC    GLOBAL DEFAULT    4 scan_remove_bssid
  2893: 400024cc     0 NOTYPE  GLOBAL DEFAULT  ABS ets_printf
  2894: 3ffef970     2 OBJECT  GLOBAL DEFAULT    3 HighestFreqOffsetInOneChk
  2895: 40100030     0 NOTYPE  GLOBAL DEFAULT    5 _KernelExceptionVector
  2896: 402559b0    53 FUNC    GLOBAL DEFAULT    4 ecma_set_named_accessor_p
  2897: 402032d4   266 FUNC    GLOBAL DEFAULT    4 system_upgrade_reboot
  2898: 4024ad9c   167 FUNC    GLOBAL DEFAULT    4 _Z14fileGetContent6String
  2899: 4025d0a0    73 FUNC    GLOBAL DEFAULT    4 parser_stack_pop_uint8
  2900: 40254b60    21 FUNC    GLOBAL DEFAULT    4 _ZN16MemoryDataStream10is
  2901: 4024be8c    66 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdate7getI
  2902: 4024c2ac    29 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClientD0Ev
  2903: 40242744    63 FUNC    GLOBAL DEFAULT    4 sntp_stop
  2904: 401059dc    37 FUNC    GLOBAL DEFAULT    5 _Z11digitalReadt
  2905: 4023d90c   185 FUNC    GLOBAL DEFAULT    4 asn1_public_key
  2906: 40100210    82 FUNC    GLOBAL DEFAULT    5 NMI_Handler
  2907: 4026746c    18 FUNC    GLOBAL DEFAULT    4 parser_stack_init
  2908: 4025ee28    72 FUNC    GLOBAL DEFAULT    4 parser_set_breaks_to_curr
  2909: 402399dc    65 FUNC    GLOBAL DEFAULT    4 RSA_print
  2910: 4021b878    70 FUNC    GLOBAL DEFAULT    4 scan_connect_state
  2911: 4026641c    55 FUNC    GLOBAL DEFAULT    4 vm_var_decl
  2912: 40214efc    84 FUNC    GLOBAL DEFAULT    4 wDev_SetRxPolicy
  2913: 3ffe8098     4 OBJECT  GLOBAL DEFAULT    1 tcb
  2914: 402243a4    96 FUNC    GLOBAL DEFAULT    4 pbuf_take
  2915: 40250e48   268 FUNC    GLOBAL DEFAULT    4 spiffs_object_open_by_pag
  2916: 4024b5e8   154 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClientC1E6String
  2917: 4024df24     7 FUNC    WEAK   DEFAULT    4 _ZN8WDTClassD2Ev
  2918: 4021c448   898 FUNC    GLOBAL DEFAULT    4 sta_input
  2919: 3fff4c60   120 OBJECT  GLOBAL DEFAULT    3 espconn_TaskQueue
  2920: 4023e688   565 FUNC    GLOBAL DEFAULT    4 asin
  2921: 401021cc    20 FUNC    GLOBAL DEFAULT    5 lmacProcessAllTxTimeout
  2922: 4024601c   156 FUNC    GLOBAL DEFAULT    4 _Z11sendAndHalt6StringS_S
  2923: 40267509     0 NOTYPE  GLOBAL DEFAULT  ABS _irom0_text_end
  2924: 4010538c     0 FUNC    GLOBAL HIDDEN     5 __unordsf2
  2925: 3ffef24c     4 OBJECT  GLOBAL DEFAULT    3 debug_timerfn
  2926: 3ffef028     0 NOTYPE  GLOBAL DEFAULT  ABS _bss_table_end
  2927: 3ffeef5c     0 NOTYPE  GLOBAL DEFAULT  ABS __init_array_start
  2928: 402587ac    19 FUNC    GLOBAL DEFAULT    4 ecma_init_builtins
  2929: 4023da34    75 FUNC    GLOBAL DEFAULT    4 remove_ca_certs
  2930: 40212c2c    41 FUNC    GLOBAL DEFAULT    4 system_soft_wdt_stop
  2931: 3ffef6b8     4 OBJECT  GLOBAL DEFAULT    3 our_tx_eb
  2932: 40248658    42 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM3CliFv
  2933: 3fff5670     8 OBJECT  GLOBAL DEFAULT    3 globalResponse
  2934: 40215998    36 FUNC    GLOBAL DEFAULT    4 ieee80211_freedom_init
  2935: 40206560    38 FUNC    GLOBAL DEFAULT    4 ets_sprintf
  2936: 40101200    24 FUNC    GLOBAL DEFAULT    5 phy_change_channel
  2937: 3ffea8a0    28 OBJECT  WEAK   DEFAULT    2 _ZTV6VectorI19rBootHttpUp
  2938: 40256f6c    30 FUNC    GLOBAL DEFAULT    4 ecma_new_ecma_length_stri
  2939: 4020fbc4   147 FUNC    GLOBAL DEFAULT    4 pm_set_wakeup_mac
  2940: 401012c0    14 FUNC    GLOBAL DEFAULT    5 phy_get_bb_evm
  2941: 402551d8    41 FUNC    GLOBAL DEFAULT    4 ecma_ref_object
  2942: 4025cef8    15 FUNC    GLOBAL DEFAULT    4 parser_free
  2943: 40202f94    29 FUNC    GLOBAL DEFAULT    4 system_get_flash_size_map
  2944: 4025b52c    35 FUNC    GLOBAL DEFAULT    4 jmem_pools_alloc
  2945: 40228dc8   104 FUNC    GLOBAL DEFAULT    4 espconn_udp_server
  2946: 401012e4   181 FUNC    GLOBAL DEFAULT    5 pm_rtc_clock_cali
  2947: 4021c0d0   878 FUNC    GLOBAL DEFAULT    4 ieee80211_sta_new_state
  2948: 4024f5b4   467 FUNC    GLOBAL DEFAULT    4 SPIFFS_write
  2949: 40229914    82 FUNC    GLOBAL DEFAULT    4 hostapd_get_psk
  2950: 402485dc    21 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFv9s
  2951: 4024d518   132 FUNC    GLOBAL DEFAULT    4 _ZN12StationClassD1Ev
  2952: 40211ea8    17 FUNC    GLOBAL DEFAULT    4 pm_try_scan_unlock
  2953: 40219c54    78 FUNC    GLOBAL DEFAULT    4 ieee80211_getcapinfo
  2954: 402526b4    23 FUNC    GLOBAL DEFAULT    4 axl_append
  2955: 4025ea34    61 FUNC    GLOBAL DEFAULT    4 parser_emit_cbc_literal
  2956: 3ffe838c     1 OBJECT  GLOBAL DEFAULT    1 state
  2957: 40212130   187 FUNC    GLOBAL DEFAULT    4 fpm_set_type_from_upper
  2958: 40236d04    20 FUNC    GLOBAL DEFAULT    4 x509_display_error
  2959: 4000d310     0 NOTYPE  GLOBAL DEFAULT  ABS __udivdi3
  2960: 3ffef614     4 OBJECT  GLOBAL DEFAULT    3 periodic_cal_dc_num
  2961: 3ffeb180    28 OBJECT  WEAK   DEFAULT    2 _ZTV6VectorI7BssInfoE
  2962: 40000dc0     0 NOTYPE  GLOBAL DEFAULT  ABS ets_set_idle_cb
  2963: 40243120    15 FUNC    GLOBAL DEFAULT    4 tolower
  2964: 40204144    42 FUNC    GLOBAL DEFAULT    4 system_save_sys_param
  2965: 4024c834    98 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection6onPoll
  2966: 4024e2d0    67 FUNC    WEAK   DEFAULT    4 _ZN15CommandDelegateC1ERK
  2967: 40257440    77 FUNC    GLOBAL DEFAULT    4 ecma_compare_ecma_strings
  2968: 40223e80    73 FUNC    GLOBAL DEFAULT    4 netif_set_link_up
  2969: 40206900    34 FUNC    GLOBAL DEFAULT    4 eagle_lwip_getif
  2970: 40227bfc    20 FUNC    GLOBAL DEFAULT    4 udp_send
  2971: 4021b090    19 FUNC    GLOBAL DEFAULT    4 register_ieee80211_rfid_l
  2972: 3fff4780    10 OBJECT  GLOBAL DEFAULT    3 dhcp_rx_options_given
  2973: 40212670    44 FUNC    GLOBAL DEFAULT    4 fpm_do_wakeup
  2974: 40206020    60 FUNC    GLOBAL DEFAULT    4 divide
  2975: 40250120   124 FUNC    GLOBAL DEFAULT    4 spiffs_phys_cpy
  2976: 40254a48    39 FUNC    GLOBAL DEFAULT    4 mqtt_num_rem_len_bytes
  2977: 40242434    18 FUNC    GLOBAL DEFAULT    4 sntp_asctime
  2978: 40000e24     0 NOTYPE  GLOBAL DEFAULT  ABS ets_post
  2979: 3fff6148    36 OBJECT  GLOBAL DEFAULT    3 WifiStation
  2980: 40259a00    19 FUNC    GLOBAL DEFAULT    4 ecma_raise_syntax_error
  2981: 4021527c    55 FUNC    GLOBAL DEFAULT    4 wDev_Crypto_Disable
  2982: 400018d4     0 NOTYPE  GLOBAL DEFAULT  ABS ets_memcmp
  2983: 4022dccc   154 FUNC    GLOBAL DEFAULT    4 wpa_supplicant_parse_ies
  2984: 40213400    15 FUNC    GLOBAL DEFAULT    4 ppProcessWaitQ
  2985: 402671b0    80 FUNC    GLOBAL DEFAULT    4 lit_char_to_utf8_bytes
  2986: 40202da8    23 FUNC    GLOBAL DEFAULT    4 system_adc_read
  2987: 4021ddc4   114 FUNC    GLOBAL DEFAULT    4 cnx_remove_rc
  2988: 4024c66c    21 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection17onRea
  2989: 40209838     2 FUNC    GLOBAL DEFAULT    4 ram_tx_mac_disable
  2990: 402241fc    41 FUNC    GLOBAL DEFAULT    4 pbuf_cat
  2991: 402667f0   377 FUNC    GLOBAL DEFAULT    4 opfunc_addition
  2992: 401054e0    23 FUNC    GLOBAL HIDDEN     5 __lshrdi3
  2993: 4020d364    58 FUNC    GLOBAL DEFAULT    4 phy_check_data_table
  2994: 40203c48   115 FUNC    GLOBAL DEFAULT    4 wifi_station_dhcpc_event
  2995: 40223360    43 FUNC    GLOBAL DEFAULT    4 ip4_addr_isbroadcast
  2996: 3ffe8080     4 OBJECT  GLOBAL DEFAULT    1 soft_wdt_interval
  2997: 40256bc0    19 FUNC    GLOBAL DEFAULT    4 ecma_number_add
  2998: 4025b7fc    10 FUNC    GLOBAL DEFAULT    4 lit_get_magic_string_size
  2999: 40255190    72 FUNC    GLOBAL DEFAULT    4 ecma_init_gc_info
  3000: 4022d26c   162 FUNC    GLOBAL DEFAULT    4 pp_michael_mic_failure
  3001: 40255e10   799 FUNC    GLOBAL DEFAULT    4 ecma_utf8_string_to_numbe
  3002: 4025ab4c    24 FUNC    GLOBAL DEFAULT    4 ecma_op_create_object_obj
  3003: 3ffef646     1 OBJECT  GLOBAL DEFAULT    3 loop_pwctrl_correct_atten
  3004: 4022016c    55 FUNC    GLOBAL DEFAULT    4 dhcp_stop
  3005: 40105658    19 FUNC    GLOBAL DEFAULT    5 pvPortRealloc
  3006: 401058d4    63 FUNC    GLOBAL DEFAULT    5 _ZNK6String6equalsEPKc
  3007: 3ffe9460    28 OBJECT  WEAK   DEFAULT    2 _ZTV6VectorI8DelegateIFvv
  3008: 40215954    18 FUNC    GLOBAL DEFAULT    4 ieee80211_rate_ref_init
  3009: 4022e3c8    26 FUNC    GLOBAL DEFAULT    4 wpa_sm_deauthenticate
  3010: 402477b8     7 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM9FwUpd
  3011: 4024a010    42 FUNC    GLOBAL DEFAULT    4 _ZN6String9setStringEPKci
  3012: 4022e094    52 FUNC    GLOBAL DEFAULT    4 wpa_config_profile
  3013: 3fff5304     4 OBJECT  GLOBAL DEFAULT    3 pTouchGlob
  3014: 4022e8f0    83 FUNC    GLOBAL DEFAULT    4 aes_encrypt_init
  3015: 401031c8   122 FUNC    GLOBAL DEFAULT    5 ppCalTxop
  3016: 4024da24   117 FUNC    GLOBAL DEFAULT    4 _ZN12StationClassC2Ev
  3017: 4025bb80    23 FUNC    GLOBAL DEFAULT    4 lit_utf8_peek_prev
  3018: 40258c04    16 FUNC    GLOBAL DEFAULT    4 ecma_builtin_type_error_t
  3019: 40229a3c   145 FUNC    GLOBAL DEFAULT    4 wpa_get_ntp_timestamp
  3020: 401026e4     8 FUNC    GLOBAL DEFAULT    5 lmacProcessRtsStart
  3021: 3ffef64e     1 OBJECT  GLOBAL DEFAULT    3 hardware_reject
  3022: 40227884    80 FUNC    GLOBAL DEFAULT    4 sys_untimeout
  3023: 4020923c   542 FUNC    GLOBAL DEFAULT    4 chip_v6_rf_init
  3024: 4024d3ac     7 FUNC    WEAK   DEFAULT    4 _ZN16AccessPointClassD2Ev
  3025: 40229840    80 FUNC    GLOBAL DEFAULT    4 hostapd_wep_key_cmp
  3026: 40252db0    60 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClient5resetEv
  3027: 402285a8    68 FUNC    GLOBAL DEFAULT    4 espconn_accept
  3028: 40229484   164 FUNC    GLOBAL DEFAULT    4 igmp_leavegroup
  3029: 4024ea64    79 FUNC    GLOBAL DEFAULT    4 mqtt_set_clientid
  3030: 40228794    94 FUNC    GLOBAL DEFAULT    4 espconn_clear_opt
  3031: 40247d28   145 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdater5checkE10Dev
  3032: 402670bc     7 FUNC    GLOBAL DEFAULT    4 ecma_invert_boolean_value
  3033: 4025bb60    31 FUNC    GLOBAL DEFAULT    4 lit_read_prev_code_unit_f
  3034: 3ffef4ec     4 OBJECT  GLOBAL DEFAULT    3 check_result
  3035: 4020c558   665 FUNC    GLOBAL DEFAULT    4 register_chipv6_phy_init_
  3036: 40254bf4    60 FUNC    GLOBAL DEFAULT    4 _ZN8NetUtils14pbufIsStrEq
  3037: 3ffe9510    12 OBJECT  WEAK   DEFAULT    2 _ZTV9IPAddress
  3038: 40247af0   178 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdater10postUpdate
  3039: 3ffe8334     1 OBJECT  GLOBAL DEFAULT    1 TmpSTAAPCloseAP
  3040: 4024abec   124 FUNC    GLOBAL DEFAULT    4 _Z8fileOpen6String13FileO
  3041: 40245774    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJEE
  3042: 40267354    83 FUNC    GLOBAL DEFAULT    4 lit_code_unit_to_utf8
  3043: 40224600    15 FUNC    GLOBAL DEFAULT    4 raw_bind
  3044: 402484a4   149 FUNC    GLOBAL DEFAULT    4 _ZN3Tsb14readDeviceInfoEv
  3045: 4024581c    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvvE
  3046: 4021acb8   144 FUNC    GLOBAL DEFAULT    4 ieee80211_setup_ratetable
  3047: 40100010     0 NOTYPE  GLOBAL DEFAULT    5 _DebugExceptionVector
  3048: 40204fa8    17 FUNC    GLOBAL DEFAULT    4 wifi_softap_get_config
  3049: 40202df0   214 FUNC    GLOBAL DEFAULT    4 system_restart_local
  3050: 40248850     8 FUNC    GLOBAL DEFAULT    4 _ZN3TsbC1EP14HardwareSeri
  3051: 3fff624c     8 OBJECT  GLOBAL DEFAULT    3 _ZN11ArduinoJson10JsonObj
  3052: 40252ee0    29 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClientD0Ev
  3053: 4024e560   203 FUNC    GLOBAL DEFAULT    4 _ZN14CommandHandler18getC
  3054: 40104118    97 FUNC    GLOBAL DEFAULT    5 wDev_MacTim1Arm
  3055: 40221f68   181 FUNC    GLOBAL DEFAULT    4 espconn_tcp_sent
  3056: 40239828   133 FUNC    GLOBAL DEFAULT    4 RSA_priv_key_new
  3057: 40256de4   164 FUNC    GLOBAL DEFAULT    4 ecma_new_ecma_string_from
  3058: 4022da30    81 FUNC    GLOBAL DEFAULT    4 wpa_cipher_to_suite
  3059: 402478d4    65 FUNC    GLOBAL DEFAULT    4 _ZN9FwUpdater8readMarkEv
  3060: 40257018   214 FUNC    GLOBAL DEFAULT    4 ecma_string_get_array_ind
  3061: 40249c34    83 FUNC    GLOBAL DEFAULT    4 _ZNK9IPAddress7printToER5
  3062: 40248e4c    15 FUNC    GLOBAL DEFAULT    4 free
  3063: 4025b2fc     7 FUNC    GLOBAL DEFAULT    4 jmem_register_free_unused
  3064: 4024f9b0    87 FUNC    GLOBAL DEFAULT    4 SPIFFS_stat
  3065: 40243130    15 FUNC    GLOBAL DEFAULT    4 toupper
  3066: 4000e21c     0 NOTYPE  GLOBAL DEFAULT  ABS __udivsi3
  3067: 40260acc   307 FUNC    GLOBAL DEFAULT    4 vm_stack_find_finally
  3068: 3ffef3c0   256 OBJECT  GLOBAL DEFAULT    3 event_TaskQueue
  3069: 40267438    50 FUNC    GLOBAL DEFAULT    4 parser_list_iterator_next
  3070: 402380f0   132 FUNC    GLOBAL DEFAULT    4 bi_export
  3071: 40240774  1440 FUNC    GLOBAL DEFAULT    4 __rem_pio2
  3072: 40100004     0 FUNC    GLOBAL DEFAULT    5 call_user_start
  3073: 402022a0    84 FUNC    GLOBAL DEFAULT    4 user_uart_wait_tx_fifo_em
  3074: 4021ec4c    71 FUNC    GLOBAL DEFAULT    4 ieee80211_add_action_vend
  3075: 40102654    54 FUNC    GLOBAL DEFAULT    5 lmacProcessCtsTimeout
  3076: 402370bc   139 FUNC    GLOBAL DEFAULT    4 AES_convert_key
  3077: 40004678     0 NOTYPE  GLOBAL DEFAULT  ABS Cache_Read_Enable
  3078: 3ffe8000     0 NOTYPE  GLOBAL DEFAULT  ABS _data_start
  3079: 40231d40    38 FUNC    GLOBAL DEFAULT    4 TOUCH_Free_glob
  3080: 40101b9c    34 FUNC    GLOBAL DEFAULT    5 lmacRecycleMPDU
  3081: 40203b68    64 FUNC    GLOBAL DEFAULT    4 wifi_softap_dhcps_stop
  3082: 4024b2e8   220 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClient7connectE6
  3083: 401013e0    21 FUNC    GLOBAL DEFAULT    5 lmacIsIdle
  3084: 40243198     2 FUNC    WEAK   DEFAULT    4 __stdio_exit_needed
  3085: 402612ec    20 FUNC    GLOBAL DEFAULT    4 ecma_builtin_function_pro
  3086: 40228378    22 FUNC    GLOBAL DEFAULT    4 espconn_tcp_set_max_con
  3087: 3fff4386     2 OBJECT  GLOBAL DEFAULT    3 TestStaFreqCalValInput
  3088: 402079fc  1161 FUNC    GLOBAL DEFAULT    4 __intscan
  3089: 4020983c    46 FUNC    GLOBAL DEFAULT    4 rtc_mem_backup
  3090: 40253c98   676 FUNC    GLOBAL DEFAULT    4 spiffs_gc_find_candidate
  3091: 40000f88     0 NOTYPE  GLOBAL DEFAULT  ABS ets_isr_attach
  3092: 4024caa8    42 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection10setTi
  3093: 4021f05c    18 FUNC    GLOBAL DEFAULT    4 register_ieee80211_action
  3094: 40256ae8     8 FUNC    GLOBAL DEFAULT    4 ecma_number_negate
  3095: 40256bd4    19 FUNC    GLOBAL DEFAULT    4 ecma_number_substract
  3096: 40000650     0 NOTYPE  GLOBAL DEFAULT  ABS __muldi3
  3097: 4000c688     0 NOTYPE  GLOBAL DEFAULT  ABS __subdf3
  3098: 3ff00000     0 NOTYPE  GLOBAL DEFAULT  ABS _dport0_data_start
  3099: 40243140    85 FUNC    GLOBAL DEFAULT    4 atoi
  3100: 4024cfb8   171 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection7connec
  3101: 4024578c    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJ9s
  3102: 40100d10    85 FUNC    GLOBAL DEFAULT    5 spi_flash_read
  3103: 40249200    52 FUNC    WEAK   DEFAULT    4 _ZN6VectorIP19ISystemRead
  3104: 40223d54    55 FUNC    GLOBAL DEFAULT    4 netif_find
  3105: 401010b8     0 FUNC    GLOBAL HIDDEN     5 __ledf2
  3106: 40245970    79 FUNC    WEAK   DEFAULT    4 _ZN6VectorI6StringED1Ev
  3107: 40205a58   127 FUNC    GLOBAL DEFAULT    4 wifi_get_ip_info
  3108: 40227514   119 FUNC    GLOBAL DEFAULT    4 tcp_keepalive
  3109: 3ffef623     1 OBJECT  GLOBAL DEFAULT    3 phy_set_most_tpw_index
  3110: 40240e28  2107 FUNC    GLOBAL DEFAULT    4 __rem_pio2_large
  3111: 40253790   187 FUNC    GLOBAL DEFAULT    4 spiffs_phys_wr
  3112: 40252df0   138 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClientC1Eb
  3113: 4000c538     0 NOTYPE  GLOBAL DEFAULT  ABS __adddf3
  3114: 40214998    32 FUNC    GLOBAL DEFAULT    4 rc_get_trc_by_index
  3115: 40210224    41 FUNC    GLOBAL DEFAULT    4 sleep_opt_bb_on_8266
  3116: 40207634    20 FUNC    GLOBAL DEFAULT    4 rboot_get_current_rom
  3117: 4024d908   148 FUNC    GLOBAL DEFAULT    4 _ZN12StationClass19intern
  3118: 4024c10c    37 FUNC    WEAK   DEFAULT    4 _ZN6VectorI19rBootHttpUpd
  3119: 40207588    45 FUNC    GLOBAL DEFAULT    4 rboot_get_config
  3120: 4000cb94     0 NOTYPE  GLOBAL DEFAULT  ABS __divdf3
  3121: 4020d8f0   109 FUNC    GLOBAL DEFAULT    4 meas_tone_pwr_db
  3122: 3ffef028     0 NOTYPE  GLOBAL DEFAULT  ABS _bss_start
  3123: 3ffef020     0 NOTYPE  GLOBAL DEFAULT  ABS __XT_EXCEPTION_DESCS__
  3124: 402387b4   225 FUNC    GLOBAL DEFAULT    4 bi_barrett
  3125: 40255978    53 FUNC    GLOBAL DEFAULT    4 ecma_set_named_accessor_p
  3126: 40227f14   144 FUNC    GLOBAL DEFAULT    4 espconn_copy_partial
  3127: 402423e8    69 FUNC    GLOBAL DEFAULT    4 sntp_asctime_r
  3128: 402134cc   211 FUNC    GLOBAL DEFAULT    4 ppCheckTxIdle
  3129: 3ffef620     1 OBJECT  GLOBAL DEFAULT    3 phy_rx_gain_dc_flag
  3130: 40243198     2 FUNC    GLOBAL DEFAULT    4 __stdio_exit
  3131: 40229c24    66 FUNC    GLOBAL DEFAULT    4 ets_strdup
  3132: 40249f6c    20 FUNC    GLOBAL DEFAULT    4 _ZN6StringD1Ev
  3133: 4021e558   114 FUNC    GLOBAL DEFAULT    4 cnx_node_alloc
  3134: 40248ef0    34 FUNC    WEAK   DEFAULT    4 _ZN6VectorI8DelegateIFvvE
  3135: 40234e30    25 FUNC    GLOBAL DEFAULT    4 DISPLAY_RSA
  3136: 40224098    72 FUNC    GLOBAL DEFAULT    4 pbuf_realloc
  3137: 40237ed0   136 FUNC    GLOBAL DEFAULT    4 bi_subtract
  3138: 4024a888    36 FUNC    GLOBAL DEFAULT    4 mktime
  3139: 40248224     0 NOTYPE  GLOBAL DEFAULT    4 gdbstub_save_extra_sfrs_f
  3140: 4024575c     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvti
  3141: 40260c10    15 FUNC    GLOBAL DEFAULT    4 ecma_dealloc_object
  3142: 402149b8    45 FUNC    GLOBAL DEFAULT    4 rc_only_sta_trc
  3143: 40235370   282 FUNC    GLOBAL DEFAULT    4 ssl_display_error
  3144: 4020aaec    46 FUNC    GLOBAL DEFAULT    4 get_noisefloor_sat
  3145: 402547cc    60 FUNC    WEAK   DEFAULT    4 _ZN8DelegateIFvvEE4copyER
  3146: 40204740    18 FUNC    GLOBAL DEFAULT    4 wifi_station_get_current_
  3147: 4025ac28    15 FUNC    GLOBAL DEFAULT    4 ecma_op_general_object_ge
  3148: 4020b588   565 FUNC    GLOBAL DEFAULT    4 phy_dig_spur_prot
  3149: 40235b7c    23 FUNC    GLOBAL DEFAULT    4 DISPLAY_ALERT
  3150: 40266454    47 FUNC    GLOBAL DEFAULT    4 opfunc_logical_not
  3151: 4022d39c    40 FUNC    GLOBAL DEFAULT    4 wpa_sm_set_state
  3152: 40249cc0    36 FUNC    GLOBAL DEFAULT    4 _ZN9IPAddressC1E7ip_addr
  3153: 4020e7d4   216 FUNC    GLOBAL DEFAULT    4 tx_pwctrl_background
  3154: 40266678   121 FUNC    GLOBAL DEFAULT    4 opfunc_for_in
  3155: 402297a4    36 FUNC    GLOBAL DEFAULT    4 hostapd_mac_comp_empty
  3156: 40000dd0     0 NOTYPE  GLOBAL DEFAULT  ABS ets_task
  3157: 402575fc   109 FUNC    GLOBAL DEFAULT    4 ecma_string_get_char_at_p
  3158: 40006b08     0 NOTYPE  GLOBAL DEFAULT  ABS phy_get_romfuncs
  3159: 4022725c   319 FUNC    GLOBAL DEFAULT    4 tcp_rst
  3160: 40255c40   198 FUNC    GLOBAL DEFAULT    4 ecma_free_property
  3161: 40239cf8    36 FUNC    GLOBAL DEFAULT    4 SHA1_Init
  3162: 4020c9f8   156 FUNC    GLOBAL DEFAULT    4 ant_switch_init
  3163: 4022ed64   192 FUNC    GLOBAL DEFAULT    4 sc_channel_timer_cb
  3164: 40205874    28 FUNC    GLOBAL DEFAULT    4 wifi_set_sleep_type
  3165: 40212670    44 FUNC    GLOBAL DEFAULT    4 wifi_fpm_do_wakeup
  3166: 4020d960   329 FUNC    GLOBAL DEFAULT    4 tx_pwr_backoff
  3167: 40247098    23 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIR6
  3168: 4024e794   190 FUNC    GLOBAL DEFAULT    4 flashmem_write
  3169: 40231c88    77 FUNC    GLOBAL DEFAULT    4 TOUCH_Free_guide_glob
  3170: 40203dd4    53 FUNC    GLOBAL DEFAULT    4 wifi_get_broadcast_if
  3171: 4024e900   107 FUNC    GLOBAL DEFAULT    4 mqtt_parse_msg_id
  3172: 402523f0    35 FUNC    GLOBAL DEFAULT    4 ax_fd_init
  3173: 40234600   269 FUNC    GLOBAL DEFAULT    4 ssl_new
  3174: 4021d03c    99 FUNC    GLOBAL DEFAULT    4 chm_init
  3175: 401053f8    30 FUNC    GLOBAL DEFAULT    5 sntp_get_current_timestam
  3176: 40202010     0 NOTYPE  GLOBAL DEFAULT  ABS _irom0_text_start
  3177: 40257de0   124 FUNC    GLOBAL DEFAULT    4 ecma_lcache_lookup
  3178: 4021e5cc   139 FUNC    GLOBAL DEFAULT    4 cnx_node_remove
  3179: 40266da0    11 FUNC    GLOBAL DEFAULT    4 ecma_deref_object
  3180: 402046f8    23 FUNC    GLOBAL DEFAULT    4 wifi_station_set_config
  3181: 40254f68    71 FUNC    GLOBAL DEFAULT    4 jerry_get_property
  3182: 4022862c    61 FUNC    GLOBAL DEFAULT    4 espconn_disconnect
  3183: 40266eb4    26 FUNC    GLOBAL DEFAULT    4 ecma_set_property_configu
  3184: 40259de8   337 FUNC    GLOBAL DEFAULT    4 ecma_op_function_call
  3185: 4026696c   105 FUNC    GLOBAL DEFAULT    4 opfunc_unary_plus
  3186: 4025ab28    35 FUNC    GLOBAL DEFAULT    4 ecma_reject
  3187: 40256e88    64 FUNC    GLOBAL DEFAULT    4 ecma_new_ecma_string_from
  3188: 402465a4  1288 FUNC    GLOBAL DEFAULT    4 _Z4initv
  3189: 4021d42c   202 FUNC    GLOBAL DEFAULT    4 cnx_sta_scan_cmd
  3190: 402284a0    14 FUNC    GLOBAL DEFAULT    4 espconn_regist_connectcb
  3191: 3fffccf0     0 NOTYPE  GLOBAL DEFAULT  ABS Te0
  3192: 4025859c   146 FUNC    GLOBAL DEFAULT    4 ecma_builtin_helper_objec
  3193: 4024576c     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvvE
  3194: 4021474c     5 FUNC    GLOBAL DEFAULT    4 rcGetTrc
  3195: 40217a28   270 FUNC    GLOBAL DEFAULT    4 ieee80211_ht_updateparams
  3196: 4000ba48     0 NOTYPE  GLOBAL DEFAULT  ABS sha1_prf
  3197: 4025475c    23 FUNC    GLOBAL DEFAULT    4 _ZN5Print5printEc
  3198: 40252d34   123 FUNC    WEAK   DEFAULT    4 _ZN7HashMapI6StringS0_E5c
  3199: 402284b0    12 FUNC    GLOBAL DEFAULT    4 espconn_regist_recvcb
  3200: 40003a14     0 NOTYPE  GLOBAL DEFAULT  ABS Uart_Init
  3201: 40257ed8   181 FUNC    GLOBAL DEFAULT    4 ecma_find_or_create_liter
  3202: 40105e04    41 FUNC    GLOBAL DEFAULT    5 _ZN5Timer12initializeUsEj
  3203: 4024cae4    95 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection10initi
  3204: 40211f84    29 FUNC    GLOBAL DEFAULT    4 pm_set_addr
  3205: 40205dfc    18 FUNC    GLOBAL DEFAULT    4 wifi_rfid_locp_recv_open
  3206: 40222cf0    58 FUNC    GLOBAL DEFAULT    4 etharp_find_addr
  3207: 3ffef270     4 OBJECT  GLOBAL DEFAULT    3 flash_read
  3208: 40248830    27 FUNC    GLOBAL DEFAULT    4 jerry_port_log
  3209: 40224438    37 FUNC    GLOBAL DEFAULT    4 pbuf_get_at
  3210: 4025577c    52 FUNC    GLOBAL DEFAULT    4 ecma_create_named_data_pr
  3211: 4021eb9c    99 FUNC    GLOBAL DEFAULT    4 ieee80211_recv_action
  3212: 40210404    72 FUNC    GLOBAL DEFAULT    4 ic_disable_interface
  3213: 40103114   138 FUNC    GLOBAL DEFAULT    5 pp_post
  3214: 40210478    13 FUNC    GLOBAL DEFAULT    4 ic_get_gtk_alg
  3215: 402455e8    19 FUNC    GLOBAL DEFAULT    4 longjmp
  3216: 402278d4   186 FUNC    GLOBAL DEFAULT    4 sys_check_timeouts
  3217: 40267098     5 FUNC    GLOBAL DEFAULT    4 ecma_get_integer_from_val
  3218: 40103340    58 FUNC    GLOBAL DEFAULT    5 RC_GetBlockAckTime
  3219: 4024cbbc    98 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection18close
  3220: 402080f8    22 FUNC    GLOBAL DEFAULT    4 phy_enable_agc
  3221: 402485c4    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvti
  3222: 40243104    28 FUNC    GLOBAL DEFAULT    4 isspace
  3223: 40207840    31 FUNC    GLOBAL DEFAULT    4 rboot_get_last_boot_rom
  3224: 4024a0f4    51 FUNC    GLOBAL DEFAULT    4 _ZN6StringC1Ejh
  3225: 4020d064    36 FUNC    GLOBAL DEFAULT    4 set_dpd_bypass
  3226: 4021090c    36 FUNC    GLOBAL DEFAULT    4 pm_get_ck170_period
  3227: 40203014   150 FUNC    GLOBAL DEFAULT    4 system_get_userbin_addr
  3228: 40205da4    10 FUNC    GLOBAL DEFAULT    4 wifi_unregister_send_pkt_
  3229: 40250b88   406 FUNC    GLOBAL DEFAULT    4 spiffs_object_create
  3230: 40222f44   267 FUNC    GLOBAL DEFAULT    4 etharp_output
  3231: 4000e2f0     0 NOTYPE  GLOBAL DEFAULT  ABS __floatsidf
  3232: 4024574c     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIcP
  3233: 40215d50     4 FUNC    GLOBAL DEFAULT    4 ieee80211_crypto_setkey
  3234: 4024cc3c   425 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection15stati
  3235: 40245b48   147 FUNC    GLOBAL DEFAULT    4 _Z18cmdModeSmartConfigcPc
  3236: 40234e80   567 FUNC    GLOBAL DEFAULT    4 send_packet
  3237: 4020653c    33 FUNC    GLOBAL DEFAULT    4 ets_vsprintf
  3238: 4024933c    35 FUNC    GLOBAL DEFAULT    4 cpp_core_initialize
  3239: 40000f98     0 NOTYPE  GLOBAL DEFAULT  ABS ets_isr_mask
  3240: 3ffe8386     1 OBJECT  GLOBAL DEFAULT    1 rBoot_mmap_1
  3241: 40212c10    22 FUNC    GLOBAL DEFAULT    4 system_soft_wdt_feed
  3242: 4024ab90    85 FUNC    GLOBAL DEFAULT    4 _Z9fileExist6String
  3243: 4025b8b8    55 FUNC    GLOBAL DEFAULT    4 lit_compare_utf8_string_a
  3244: 4024df70    15 FUNC    GLOBAL DEFAULT    4 _ZN8WDTClass13onSystemRea
  3245: 4022e0c8    44 FUNC    GLOBAL DEFAULT    4 wpa_config_bss
  3246: 4024c48c    65 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient11onConnecte
  3247: 402152b4    31 FUNC    GLOBAL DEFAULT    4 wDevEnableRx
  3248: 402229ac   131 FUNC    GLOBAL DEFAULT    4 espconn_tcp_delete
  3249: 4020db7c   156 FUNC    GLOBAL DEFAULT    4 txiq_get_mis_pwr
  3250: 40104628    30 FUNC    GLOBAL DEFAULT    5 wDev_ClearWaitingQueue
  3251: 40266e44    15 FUNC    GLOBAL DEFAULT    4 ecma_get_internal_propert
  3252: 402241d8    23 FUNC    GLOBAL DEFAULT    4 pbuf_clen
  3253: 4025058c    52 FUNC    GLOBAL DEFAULT    4 spiffs_obj_lu_find_id
  3254: 40266c2c    21 FUNC    GLOBAL DEFAULT    4 opfunc_not_equal_value
  3255: 40241c7c     0 FUNC    GLOBAL HIDDEN     4 __divsf3
  3256: 40266df0     8 FUNC    GLOBAL DEFAULT    4 ecma_get_object_is_builti
  3257: 402266a4     5 FUNC    GLOBAL DEFAULT    4 tcp_sent
  3258: 40245754     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvcP
  3259: 3ffe8385     1 OBJECT  GLOBAL DEFAULT    1 rBoot_mmap_2
  3260: 40205618    19 FUNC    GLOBAL DEFAULT    4 wifi_register_user_ie_man
  3261: 40235698  1151 FUNC    GLOBAL DEFAULT    4 basic_read
  3262: 402351c4   102 FUNC    GLOBAL DEFAULT    4 send_finished
  3263: 40102bac    27 FUNC    GLOBAL DEFAULT    5 ppTxqUpdateBitmap
  3264: 40221528    22 FUNC    GLOBAL DEFAULT    4 dns_tmr
  3265: 40212b34   121 FUNC    GLOBAL DEFAULT    4 wifi_fpm_do_sleep
  3266: 40254700    23 FUNC    GLOBAL DEFAULT    4 ax_port_free
  3267: 40245728     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIEE
  3268: 402427c4    17 FUNC    GLOBAL DEFAULT    4 sntp_getservername
  3269: 40234734    49 FUNC    GLOBAL DEFAULT    4 add_packet
  3270: 4025767c    33 FUNC    GLOBAL DEFAULT    4 ecma_make_nan_value
  3271: 4022e944    22 FUNC    GLOBAL DEFAULT    4 aes_encrypt
  3272: 40243ed4    24 OBJECT  GLOBAL DEFAULT    4 ccmp
  3273: 3fff6c28  4096 OBJECT  GLOBAL DEFAULT    3 jmem_heap
  3274: 40256afc   112 FUNC    GLOBAL DEFAULT    4 ecma_number_trunc
  3275: 40222a88    87 FUNC    GLOBAL DEFAULT    4 etharp_tmr
  3276: 3fff4df0     4 OBJECT  GLOBAL DEFAULT    3 current_iphdr_dest
  3277: 40203bb0    87 FUNC    GLOBAL DEFAULT    4 wifi_station_dhcpc_start
  3278: 40212bf0    32 FUNC    GLOBAL DEFAULT    4 pp_soft_wdt_init
  3279: 4025b3d0    41 FUNC    GLOBAL DEFAULT    4 jmem_heap_init
  3280: 402526d0     7 FUNC    WEAK   DEFAULT    4 _ZN17IDataSourceStreamD2E
  3281: 40224228    26 FUNC    GLOBAL DEFAULT    4 pbuf_chain
  3282: 3ffea8c0    64 OBJECT  WEAK   DEFAULT    2 _ZTV15rBootHttpUpdate
  3283: 40216584   139 FUNC    GLOBAL DEFAULT    4 hostap_handle_timer
  3284: 40237dd8    27 FUNC    GLOBAL DEFAULT    4 int_to_bi
  3285: 402285ec    64 FUNC    GLOBAL DEFAULT    4 espconn_regist_time
  3286: 4024c308   112 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient4sendEPKctb
  3287: 40215190    73 FUNC    GLOBAL DEFAULT    4 wDev_remove_KeyEntry_all_
  3288: 4021d278    38 FUNC    GLOBAL DEFAULT    4 chm_freq2index
  3289: 402066e4   431 FUNC    GLOBAL DEFAULT    4 eagle_lwip_if_alloc
  3290: 40260a2c   157 FUNC    GLOBAL DEFAULT    4 vm_stack_context_abort
  3291: 4024b7d0   126 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClient14publishW
  3292: 40247138   201 FUNC    WEAK   DEFAULT    4 _ZN7HashMapIc17CommandDef
  3293: 40248f5c    34 FUNC    WEAK   DEFAULT    4 _ZNK6VectorI8DelegateIFvv
  3294: 4022bee4    14 FUNC    GLOBAL DEFAULT    4 wpa_auth_uses_mfp
  3295: 4023ec3c   420 FUNC    GLOBAL DEFAULT    4 atan2
  3296: 40252818    24 FUNC    GLOBAL DEFAULT    4 _ZN16MemoryDataStreamC1Ev
  3297: 3fff52f8     4 OBJECT  GLOBAL DEFAULT    3 pETGuideGlob
  3298: 3ffe8580     7 OBJECT  GLOBAL DEFAULT    2 SC_VERSION
  3299: 402485c4    23 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvti
  3300: 4023d428    53 FUNC    GLOBAL DEFAULT    4 asn1_skip_obj
  3301: 4020c4f8    83 FUNC    GLOBAL DEFAULT    4 periodic_cal_top
  3302: 402246dc    57 FUNC    GLOBAL DEFAULT    4 raw_remove
  3303: 40105808    85 FUNC    GLOBAL DEFAULT    5 _ZN6String6concatEPKcj
  3304: 40259aac    49 FUNC    GLOBAL DEFAULT    4 ecma_op_is_callable
  3305: 3fff5770     8 OBJECT  GLOBAL DEFAULT    3 cli
  3306: 40227594   324 FUNC    GLOBAL DEFAULT    4 tcp_zero_window_probe
  3307: 401022c4    38 FUNC    GLOBAL DEFAULT    5 lmacMSDUAged
  3308: 40100eb0    55 FUNC    GLOBAL DEFAULT    5 system_restart_core
  3309: 4022649c     5 FUNC    GLOBAL DEFAULT    4 tcp_setprio
  3310: 4023efa4   692 FUNC    GLOBAL DEFAULT    4 exp
  3311: 3fff4385     1 OBJECT  GLOBAL DEFAULT    3 FreqCalCntForScan
  3312: 4022ed34    35 FUNC    GLOBAL DEFAULT    4 sc_smartconfig_restart
  3313: 4023e1e0    40 FUNC    GLOBAL DEFAULT    4 sprintf
  3314: 40266dcc    27 FUNC    GLOBAL DEFAULT    4 ecma_set_object_extensibl
  3315: 4025ec28    51 FUNC    GLOBAL DEFAULT    4 parser_emit_cbc_forward_b
  3316: 40100d84   293 FUNC    GLOBAL DEFAULT    5 os_printf_plus
  3317: 40252728    29 FUNC    GLOBAL DEFAULT    4 _ZN16MemoryDataStreamD0Ev
  3318: 40246fe8   114 FUNC    GLOBAL DEFAULT    4 _ZN7AppData4saveEv
  3319: 4021af88   121 FUNC    GLOBAL DEFAULT    4 ieee80211_mlme_connect_bs
  3320: 4025b7ec    10 FUNC    GLOBAL DEFAULT    4 lit_get_magic_string_utf8
  3321: 402569b8    46 FUNC    GLOBAL DEFAULT    4 ecma_get_external_pointer
  3322: 4024bc14     7 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM15rBoo
  3323: 4025b718    35 FUNC    GLOBAL DEFAULT    4 lit_char_is_identifier_st
  3324: 40215968    42 FUNC    GLOBAL DEFAULT    4 ieee80211_freedom_inside_
  3325: 4024c398    71 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient13pushAsyncP
  3326: 40203ba8     8 FUNC    GLOBAL DEFAULT    4 wifi_softap_dhcps_status
  3327: 40105690    39 FUNC    GLOBAL DEFAULT    5 _ZN6String10invalidateEv
  3328: 4024b3f0   245 FUNC    GLOBAL DEFAULT    4 _ZN10MqttClient22debugPri
  3329: 4024c458    51 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient7connectE9IP
  3330: 40206014     5 FUNC    GLOBAL DEFAULT    4 system_get_sdk_version
  3331: 402042a8    17 FUNC    GLOBAL DEFAULT    4 wifi_station_get_config
  3332: 4021f990   181 FUNC    GLOBAL DEFAULT    4 dhcp_start
  3333: 402283e0    40 FUNC    GLOBAL DEFAULT    4 espconn_tcp_get_max_con_a
  3334: 40224324   127 FUNC    GLOBAL DEFAULT    4 pbuf_copy_partial
  3335: 4020d548   153 FUNC    GLOBAL DEFAULT    4 set_rfanagain_dc_reg
  3336: 40214e44    27 FUNC    GLOBAL DEFAULT    4 wDevForceAck6M
  3337: 40260cc8    20 FUNC    GLOBAL DEFAULT    4 ecma_alloc_property_pair
  3338: 40239610    28 FUNC    GLOBAL DEFAULT    4 MD5_Init
  3339: 40105724    31 FUNC    GLOBAL DEFAULT    5 _ZN6StringC1EPKcj
  3340: 4000df48     0 NOTYPE  GLOBAL DEFAULT  ABS memcpy
  3341: 40259074   390 FUNC    GLOBAL DEFAULT    4 ecma_op_same_value
  3342: 40240594    47 FUNC    GLOBAL DEFAULT    4 __strdup
  3343: 40219a40   531 FUNC    GLOBAL DEFAULT    4 ieee80211_send_probereq
  3344: 4020bcc0    27 FUNC    GLOBAL DEFAULT    4 uart_wait_idle
  3345: 4024a4bc   251 FUNC    GLOBAL DEFAULT    4 _Z7pinModeth
  3346: 402556d0    21 FUNC    GLOBAL DEFAULT    4 ecma_get_lex_env_binding_
  3347: 40259890    39 FUNC    GLOBAL DEFAULT    4 ecma_op_eval_chars_buffer
  3348: 3ffef61b     1 OBJECT  GLOBAL DEFAULT    3 init_rf_no_cal
  3349: 40245740     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJti
  3350: 3fff5308    20 OBJECT  GLOBAL DEFAULT    3 TouchRestart_ht20_timer
  3351: 4024a444    19 FUNC    GLOBAL DEFAULT    4 _Z10interruptsv
  3352: 4025a1d4   103 FUNC    GLOBAL DEFAULT    4 ecma_op_set_mutable_bindi
  3353: 40101064     0 FUNC    GLOBAL HIDDEN     5 __nedf2
  3354: 402477d8    23 FUNC    WEAK   DEFAULT    4 _ZN12MethodCallerIM9FwUpd
  3355: 4024576c     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvvE
  3356: 40245754     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFvcP
  3357: 402549fc     4 FUNC    WEAK   DEFAULT    4 _ZNK6VectorI7BssInfoE5cou
  3358: 40252818    24 FUNC    GLOBAL DEFAULT    4 _ZN16MemoryDataStreamC2Ev
  3359: 4025a12c    65 FUNC    GLOBAL DEFAULT    4 ecma_op_has_binding
  3360: 3ffea2b0    20 OBJECT  WEAK   DEFAULT    2 _ZTV15IDelegateCallerIvIR
  3361: 3ffef7e0   224 OBJECT  GLOBAL DEFAULT    3 pmc
  3362: 4020815c   198 FUNC    GLOBAL DEFAULT    4 ram_pbus_set_rxgain
  3363: 40249fc4    76 FUNC    GLOBAL DEFAULT    4 _ZN6String4copyEPKcj
  3364: 4022d9e4    36 FUNC    GLOBAL DEFAULT    4 wpa_cipher_key_len
  3365: 4020b1ac    93 FUNC    GLOBAL DEFAULT    4 chip_v6_set_chan_misc
  3366: 40249970   706 FUNC    GLOBAL DEFAULT    4 dtostrf
  3367: 40245764     7 FUNC    WEAK   DEFAULT    4 _ZN14FunctionCallerIPFv9s
  3368: 40260c90    15 FUNC    GLOBAL DEFAULT    4 ecma_dealloc_string
  3369: 4024b274    45 FUNC    GLOBAL DEFAULT    4 _ZN5TimerD2Ev
  3370: 40103584   147 FUNC    GLOBAL DEFAULT    5 rcUpdateTxDone
  3371: 40236204    51 FUNC    GLOBAL DEFAULT    4 ssl_server_new
  3372: 40236b6c   405 FUNC    GLOBAL DEFAULT    4 x509_print
  3373: 402035a0    96 FUNC    GLOBAL DEFAULT    4 system_deep_sleep
  3374: 40204bc8     8 FUNC    GLOBAL DEFAULT    4 wifi_station_get_reconnec
  3375: 402526f8    46 FUNC    GLOBAL DEFAULT    4 _ZN16MemoryDataStreamD1Ev
  3376: 3fff4768     1 OBJECT  GLOBAL DEFAULT    3 reconnect_flag
  3377: 4025a478    39 FUNC    GLOBAL DEFAULT    4 ecma_op_object_get_own_pr
  3378: 40256a74   116 FUNC    GLOBAL DEFAULT    4 ecma_number_get_fraction_
  3379: 40245728     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJEE
  3380: 402283b8    14 FUNC    GLOBAL DEFAULT    4 espconn_tcp_get_max_syn
  3381: 4021126c   174 FUNC    GLOBAL DEFAULT    4 pm_open
  3382: 40249c8c    29 FUNC    GLOBAL DEFAULT    4 _ZN9IPAddressC2Ev
  3383: 40213d60   240 FUNC    GLOBAL DEFAULT    4 pp_attach
  3384: 4025b2e8    15 FUNC    GLOBAL DEFAULT    4 jmem_decompress_pointer
  3385: 4020f650   279 FUNC    GLOBAL DEFAULT    4 pm_sleep_opt
  3386: 40228008    34 FUNC    GLOBAL DEFAULT    4 espconn_pbuf_delete
  3387: 3fff5230     4 OBJECT  GLOBAL DEFAULT    3 p_kiss
  3388: 4020694c   507 FUNC    GLOBAL DEFAULT    4 umm_info
  3389: 4022e98c   768 FUNC    GLOBAL DEFAULT    4 rijndaelKeySetupEnc
  3390: 4020abc4    28 FUNC    GLOBAL DEFAULT    4 read_hw_noisefloor
  3391: 40256198   115 FUNC    GLOBAL DEFAULT    4 ecma_number_to_uint32
  3392: 402630cc   469 FUNC    GLOBAL DEFAULT    4 ecma_builtin_object_proto
  3393: 4020b80c    29 FUNC    GLOBAL DEFAULT    4 chip_v6_rxmax_ext
  3394: 40105ae4   205 FUNC    GLOBAL DEFAULT    5 _ZN14HardwareSerial21uart
  3395: 40208128    22 FUNC    GLOBAL DEFAULT    4 phy_initialize_bb
  3396: 40223c60     2 FUNC    GLOBAL DEFAULT    4 netif_init
  3397: 40223618   194 FUNC    GLOBAL DEFAULT    4 ipaddr_ntoa_r
  3398: 4022d310   138 FUNC    GLOBAL DEFAULT    4 eapol_txcb
  3399: 402290e4    15 FUNC    GLOBAL DEFAULT    4 igmp_init
  3400: 402673dc    12 FUNC    GLOBAL DEFAULT    4 parser_cbc_stream_init
  3401: 4000bf4c     0 NOTYPE  GLOBAL DEFAULT  ABS strlen
  3402: 3ffe8588     1 OBJECT  GLOBAL DEFAULT    2 RSSI_BEAR
  3403: 3ffe9e50    20 OBJECT  WEAK   DEFAULT    2 _ZTV15IDelegateCallerIvI9
  3404: 4025bcdc   128 FUNC    GLOBAL DEFAULT    4 lit_code_point_to_utf8
  3405: 40248f14    34 FUNC    WEAK   DEFAULT    4 _ZN6VectorIP19ISystemRead
  3406: 4024cb48   105 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnectionC2Eb
  3407: 40266df8    13 FUNC    GLOBAL DEFAULT    4 ecma_set_object_is_builti
  3408: 4025a314    57 FUNC    GLOBAL DEFAULT    4 ecma_op_implicit_this_val
  3409: 402573ec    81 FUNC    GLOBAL DEFAULT    4 ecma_string_is_length
  3410: 4024a81c    63 FUNC    GLOBAL DEFAULT    4 spiffs_mount_manual
  3411: 3fffde10     0 NOTYPE  GLOBAL DEFAULT  ABS UartDev
  3412: 402559e8    83 FUNC    GLOBAL DEFAULT    4 ecma_make_empty_property_
  3413: 4000ba28     0 NOTYPE  GLOBAL DEFAULT  ABS hmac_sha1
  3414: 3fff61a4     8 OBJECT  GLOBAL DEFAULT    3 WDT
  3415: 4020479c   295 FUNC    GLOBAL DEFAULT    4 wifi_station_ap_change
  3416: 40259938    83 FUNC    GLOBAL DEFAULT    4 ecma_new_standard_error_w
  3417: 4022847c    12 FUNC    GLOBAL DEFAULT    4 espconn_regist_sentcb
  3418: 402057ac   197 FUNC    GLOBAL DEFAULT    4 wifi_set_phy_mode
  3419: 402477b0     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvIR1
  3420: 4024403c     4 OBJECT  GLOBAL DEFAULT    4 ip_addr_any
  3421: 4024c154    65 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdateD2Ev
  3422: 40215028    42 FUNC    GLOBAL DEFAULT    4 wDev_ClearBssid
  3423: 40245734     7 FUNC    WEAK   DEFAULT    4 _ZN15IDelegateCallerIvJ9s
  3424: 3ffef670    32 OBJECT  GLOBAL DEFAULT    3 if_ctrl
  3425: 3fff56f0     8 OBJECT  GLOBAL DEFAULT    3 deviceId
  3426: 40253494    35 FUNC    GLOBAL DEFAULT    4 _ZN8RtcClassC2Ev
  3427: 4024a86c    28 FUNC    GLOBAL DEFAULT    4 millis
  3428: 3ffef64a     2 OBJECT  GLOBAL DEFAULT    3 lslp_mem_opt_8266
  3429: 40257bc4   127 FUNC    GLOBAL DEFAULT    4 ecma_append_to_values_col
  3430: 40207944    21 FUNC    GLOBAL DEFAULT    4 strtol
  3431: 3ffe8009     1 OBJECT  GLOBAL DEFAULT    1 timer2_ms_flag
  3432: 4024a0f4    51 FUNC    GLOBAL DEFAULT    4 _ZN6StringC2Ejh
  3433: 402456dc    24 OBJECT  GLOBAL DEFAULT    4 wep
  3434: 40256a0c     5 FUNC    GLOBAL DEFAULT    4 ecma_number_make_nan
  3435: 3fff5234     4 OBJECT  GLOBAL DEFAULT    3 p_kiss_ht40
  3436: 402048c8    71 FUNC    GLOBAL DEFAULT    4 wifi_station_scan
  3437: 4024d5e0    34 FUNC    WEAK   DEFAULT    4 _ZNK6VectorI7BssInfoEixEj
  3438: 40267070     5 FUNC    GLOBAL DEFAULT    4 ecma_make_integer_value
  3439: 4020986c    48 FUNC    GLOBAL DEFAULT    4 rtc_mem_recovery
  3440: 4023cb54    43 FUNC    GLOBAL DEFAULT    4 SHA384_Final
  3441: 4020320c    73 FUNC    GLOBAL DEFAULT    4 system_upgrade_userbin_se
  3442: 4024edf8   403 FUNC    GLOBAL DEFAULT    4 mqtt_publish_with_qos
  3443: 4020b8b8  1030 FUNC    GLOBAL DEFAULT    4 phy_bb_rx_cfg
  3444: 4000cd5c     0 NOTYPE  GLOBAL DEFAULT  ABS __truncdfsf2
  3445: 3fff4e90   180 OBJECT  GLOBAL DEFAULT    3 premot
  3446: 3fff54fc     4 OBJECT  GLOBAL DEFAULT    3 umm_heap
  3447: 402587d0   487 FUNC    GLOBAL DEFAULT    4 ecma_builtin_try_to_insta
  3448: 402397b8   109 FUNC    GLOBAL DEFAULT    4 RSA_pub_key_new
  3449: 4024c554    51 FUNC    GLOBAL DEFAULT    4 _ZN9TcpClient17onReadyToS
  3450: 40100990   364 FUNC    GLOBAL DEFAULT    5 ets_timer_arm_new
  3451: 3ffef380     1 OBJECT  GLOBAL DEFAULT    3 status_led_output_level
  3452: 4022d068   130 FUNC    GLOBAL DEFAULT    4 wpa_set_bss
  3453: 4024ae6c    23 FUNC    GLOBAL DEFAULT    4 _ZN14HardwareSerial5write
  3454: 40105cec   111 FUNC    GLOBAL DEFAULT    5 _ZN5Timer13setIntervalUsE
  3455: 40212e44    35 FUNC    GLOBAL DEFAULT    4 pp_disable_idle_timer
  3456: 4024a19c    43 FUNC    GLOBAL DEFAULT    4 _ZplRK15StringSumHelperRK
  3457: 40222a38    28 FUNC    GLOBAL DEFAULT    4 espconn_init
  3458: 4023d00c    99 FUNC    GLOBAL DEFAULT    4 SHA512_Init
  3459: 401059a8    42 FUNC    GLOBAL DEFAULT    5 _Z10isInputPint
  3460: 40224280   164 FUNC    GLOBAL DEFAULT    4 pbuf_copy
  3461: 40252e7c    97 FUNC    GLOBAL DEFAULT    4 _ZN10HttpClientD2Ev
  3462: 40247204   132 FUNC    WEAK   DEFAULT    4 _ZN7HashMapIc17CommandDef
  3463: 4025242c   164 FUNC    GLOBAL DEFAULT    4 ax_port_write
  3464: 40203e10   123 FUNC    GLOBAL DEFAULT    4 wifi_set_broadcast_if
  3465: 40210498    13 FUNC    GLOBAL DEFAULT    4 ic_set_gtk_alg
  3466: 4024d190    29 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnectionD0Ev
  3467: 3ffe9e38    20 OBJECT  WEAK   DEFAULT    2 _ZTV14FunctionCallerIPFvv
  3468: 40266e24    15 FUNC    GLOBAL DEFAULT    4 ecma_get_named_data_prope
  3469: 40223324    60 FUNC    GLOBAL DEFAULT    4 lwip_init
  3470: 402493c4   788 FUNC    GLOBAL DEFAULT    4 m_vsnprintf
  3471: 40219cb0  1416 FUNC    GLOBAL DEFAULT    4 ieee80211_send_mgmt
  3472: 40229fb8   142 FUNC    GLOBAL DEFAULT    4 wpa_init
  3473: 40234c5c     5 FUNC    GLOBAL DEFAULT    4 ssl_get_session_id
  3474: 40257824    20 FUNC    GLOBAL DEFAULT    4 ecma_fast_copy_value
  3475: 4020361c    20 FUNC    GLOBAL DEFAULT    4 system_phy_temperature_al
  3476: 40228408    48 FUNC    GLOBAL DEFAULT    4 espconn_tcp_set_max_con_a
  3477: 4024bcf8    96 FUNC    GLOBAL DEFAULT    4 _ZN15rBootHttpUpdateC1Ev
  3478: 40249168    80 FUNC    WEAK   DEFAULT    4 _ZN6VectorI8DelegateIFvvE
  3479: 40242468    11 FUNC    GLOBAL DEFAULT    4 sntp_time_inc
  3480: 40259d10   215 FUNC    GLOBAL DEFAULT    4 ecma_op_function_has_inst
  3481: 40266fe0    14 FUNC    GLOBAL DEFAULT    4 ecma_is_value_integer_num
  3482: 4020964c   305 FUNC    GLOBAL DEFAULT    4 phy_get_check_flag
  3483: 40256be8    19 FUNC    GLOBAL DEFAULT    4 ecma_number_multiply
  3484: 40236d24    64 FUNC    GLOBAL DEFAULT    4 get_random
  3485: 40257294   338 FUNC    GLOBAL DEFAULT    4 ecma_concat_ecma_strings
  3486: 40208230   179 FUNC    GLOBAL DEFAULT    4 ram_pbus_debugmode
  3487: 40208f58   393 FUNC    GLOBAL DEFAULT    4 chip_60_set_channel
  3488: 3ffe8070     3 OBJECT  GLOBAL DEFAULT    1 test_rffreq_txcap
  3489: 40235b18    98 FUNC    GLOBAL DEFAULT    4 ssl_read
  3490: 402287f4   108 FUNC    GLOBAL DEFAULT    4 espconn_set_keepalive
  3491: 40229528    48 FUNC    GLOBAL DEFAULT    4 igmp_tmr
  3492: 4021a570    62 FUNC    GLOBAL DEFAULT    4 ieee80211_alloc_deauth
  3493: 3ffef645     1 OBJECT  GLOBAL DEFAULT    3 tx_pwctrl_track_num
  3494: 40223604    20 FUNC    GLOBAL DEFAULT    4 ipaddr_ntoa
  3495: 4024a1c8    55 FUNC    GLOBAL DEFAULT    4 _ZplRK15StringSumHelperPK
  3496: 402534f4    59 FUNC    GLOBAL DEFAULT    4 _ZN15CommandDelegateC2Ev
  3497: 4025b874    67 FUNC    GLOBAL DEFAULT    4 lit_is_utf8_string_magic
  3498: 4025a170    97 FUNC    GLOBAL DEFAULT    4 ecma_op_create_mutable_bi
  3499: 4010125c    97 FUNC    GLOBAL DEFAULT    5 phy_get_bb_freqoffset
  3500: 3fff4e04     4 OBJECT  GLOBAL DEFAULT    3 netif_list
  3501: 4022f4b8     5 FUNC    GLOBAL DEFAULT    4 smartconfig_get_version
  3502: 40002ae8     0 NOTYPE  GLOBAL DEFAULT  ABS ets_bzero
  3503: 4020c380   222 FUNC    GLOBAL DEFAULT    4 periodic_cal
  3504: 402103f0    17 FUNC    GLOBAL DEFAULT    4 ic_interface_enabled
  3505: 4025620c    15 FUNC    GLOBAL DEFAULT    4 ecma_number_to_int32
  3506: 402570f0   115 FUNC    GLOBAL DEFAULT    4 ecma_string_copy_to_utf8_
  3507: 40102a08   146 FUNC    GLOBAL DEFAULT    5 pp_soft_wdt_feed_local
  3508: 402121ec     8 FUNC    GLOBAL DEFAULT    4 fpm_get_slp_type
  3509: 4022bb40   143 FUNC    GLOBAL DEFAULT    4 wpa_auth_gen_wpa_ie
  3510: 40101064     0 FUNC    GLOBAL HIDDEN     5 __eqdf2
  3511: 4022e3f0   223 FUNC    GLOBAL DEFAULT    4 aes_wrap
  3512: 3ffe8380     1 OBJECT  GLOBAL DEFAULT    1 g_ET_TimeOut
  3513: 40211e68    19 FUNC    GLOBAL DEFAULT    4 pm_is_open
  3514: 40255034    36 FUNC    GLOBAL DEFAULT    4 jerry_dispatch_object_fre
  3515: 4023522c   141 FUNC    GLOBAL DEFAULT    4 process_finished
  3516: 4024c688    59 FUNC    GLOBAL DEFAULT    4 _ZN13TcpConnection7onErro
  3517: 40203938    35 FUNC    GLOBAL DEFAULT    4 system_get_chip_id
  3518: 40102b10    62 FUNC    GLOBAL DEFAULT    5 ppFetchTxQFirstAvail
  3519: 3ffef948     1 OBJECT  GLOBAL DEFAULT    3 pend_flag_noise_check
  3520: 3fff7c28     4 OBJECT  GLOBAL DEFAULT    3 jmem_free_chunk_p
  3521: 4022fd04   852 FUNC    GLOBAL DEFAULT    4 KISS_Find_channel
  3522: 4025b118   159 FUNC    GLOBAL DEFAULT    4 ecma_op_create_string_obj
  3523: 4020c1a0    83 FUNC    GLOBAL DEFAULT    4 tx_cont_dis
  3524: 4000ccb8     0 NOTYPE  GLOBAL DEFAULT  ABS __fixdfsi
  3525: 4021f93c    36 FUNC    GLOBAL DEFAULT    4 dhcp_set_struct
  3526: 4025b970   227 FUNC    GLOBAL DEFAULT    4 lit_is_utf8_string_valid
  3527: 402087c0   186 FUNC    GLOBAL DEFAULT    4 txpwr_offset
  3528: 3ffef5fb     1 OBJECT  GLOBAL DEFAULT    3 pwctrl_debug
  3529: 4021e838   597 FUNC    GLOBAL DEFAULT    4 cnx_node_join
  3530: 4024a958    50 FUNC    GLOBAL DEFAULT    4 _ZN6Stream9timedReadEv
  3531: 4023ede0   257 FUNC    GLOBAL DEFAULT    4 ceil
  3532: 4021b858     7 FUNC    GLOBAL DEFAULT    4 scan_get_type
  3533: 4025d010    53 FUNC    GLOBAL DEFAULT    4 parser_stack_free
  3534: 4022a048    70 FUNC    GLOBAL DEFAULT    4 wpa_auth_sta_init
  3535: 4020de3c   618 FUNC    GLOBAL DEFAULT    4 ram_rfcal_txiq
  3536: 40253584    58 FUNC    GLOBAL DEFAULT    4 _ZN15CommandDelegateD1Ev
  3537: 4026703c    15 FUNC    GLOBAL DEFAULT    4 ecma_is_value_object

No version information found in this file.

Displaying notes found at file offset 0x002e9e7d with length 0x00000038:
  Owner                 Data size   Description
  Xtensa_Info          0x00000020   NT_VERSION (version)

Please, let me know If you need elf output with other flags.

zherczeg commented 8 years ago

It seems all OBJECT starts with 3xx address, and everything else (FUNC, NOTYPE, ...) starts with 4xx.

a small const array (8*4=32 bytes): ecma_property_hashmap_steps
451: 3ffebb30    32 OBJECT  LOCAL  DEFAULT    2 ecma_property_hashmap_ste

Do all OBJECT goes to RAM?

zherczeg commented 8 years ago

https://github.com/esp8266/esp8266-wiki/wiki/Memory-Map

3FFE8000h-3FFFC000h dram0

Yes OBJECTs seem to be mapped there.

slaff commented 8 years ago

I checked some discussions in forums, and it seems your compiler puts const data into RAM by default, and not easy to force it to do otherwise.

@zherczeg It looks like you are right. I found the following related discussions: https://github.com/SuperHouse/esp-open-rtos/issues/161 https://github.com/espruino/Espruino/issues/697 https://github.com/SuperHouse/esp-open-rtos/issues/11 http://www.esp8266.com/viewtopic.php?f=9&t=6376&start=1

slaff commented 8 years ago

I looked at the example code in the Espressif SDK and it seems that I can achieve this by adding two more attributes.

For example if I have a constant declared like this:

const char flash_str[] = fmt;

I can add the following two attributes

const char flash_str[] ICACHE_RODATA_ATTR STORE_ATTR = fmt;

Where ICACHE_RODATA_ATTR and STORE_ATTR are defined as follows

#define ICACHE_RODATA_ATTR  __attribute__((section(".irom.text")))
#define STORE_ATTR __attribute__((aligned(4))) 

@zherczeg @tilmannOSG So my question is - is there an easy way to add these two attributes to all constants OR is JerryScript having some preprocessor directive that I can overwrite?

zherczeg commented 8 years ago

I don't see any easy way to add these to all constants. But you can track them down using the readelf and search OBJECT type (this is specific to your architecture). You can also propose a patch which adds a macro to all const data (empty string by default). I don't see a reason why we couldn't land it.

slaff commented 8 years ago

You can also propose a patch which adds a macro to all const data (empty string by default). I don't see a reason why we couldn't land it.

@zherczeg Sounds good to me. I will try to make a Pull Request in the coming week(s).

tilmannOSG commented 8 years ago

@slaff Obviously we can't really sacrifice code readability by wrapping every string in a macro just for the sake of one platform but I'm sure we have several files where a lot of constants are defined in one place and for those it should be relatively easy to move them over to flash.
Based on the numbers you posted it sounds like the JerryScript constants eat up 40% (16KB) of the available ~40KB of RAM for user applications, would be really nice if we could get that number down :)

zherczeg commented 7 years ago

Closing due to inactivity. Please reopen if needed.