├── .gitignore ├── README.md ├── esp_iot_sdk_smartconfig_v0.9.3 ├── Makefile ├── app │ ├── Makefile │ ├── driver │ │ ├── Makefile │ │ ├── gpio16.c │ │ ├── i2c_master.c │ │ ├── key.c │ │ ├── pwm.c │ │ ├── spi_master.c │ │ └── uart.c │ ├── gen_misc.bat │ ├── gen_misc.sh │ ├── gen_misc_plus.bat │ ├── gen_misc_plus.sh │ ├── include │ │ ├── arch │ │ │ ├── cc.h │ │ │ ├── perf.h │ │ │ └── sys_arch.h │ │ ├── driver │ │ │ ├── gpio16.h │ │ │ ├── i2c_master.h │ │ │ ├── key.h │ │ │ ├── pwm.h │ │ │ ├── spi_master.h │ │ │ ├── spi_register.h │ │ │ ├── uart.h │ │ │ └── uart_register.h │ │ ├── lwip │ │ │ ├── api.h │ │ │ ├── api_msg.h │ │ │ ├── app │ │ │ │ ├── dhcpserver.h │ │ │ │ ├── espconn.h │ │ │ │ ├── espconn_tcp.h │ │ │ │ ├── espconn_udp.h │ │ │ │ └── ping.h │ │ │ ├── arch.h │ │ │ ├── autoip.h │ │ │ ├── debug.h │ │ │ ├── def.h │ │ │ ├── dhcp.h │ │ │ ├── dns.h │ │ │ ├── err.h │ │ │ ├── icmp.h │ │ │ ├── igmp.h │ │ │ ├── inet.h │ │ │ ├── inet_chksum.h │ │ │ ├── init.h │ │ │ ├── ip.h │ │ │ ├── ip_addr.h │ │ │ ├── ip_frag.h │ │ │ ├── mem.h │ │ │ ├── memp.h │ │ │ ├── memp_std.h │ │ │ ├── netbuf.h │ │ │ ├── netdb.h │ │ │ ├── netif.h │ │ │ ├── netifapi.h │ │ │ ├── opt.h │ │ │ ├── pbuf.h │ │ │ ├── raw.h │ │ │ ├── sio.h │ │ │ ├── snmp.h │ │ │ ├── snmp_asn1.h │ │ │ ├── snmp_msg.h │ │ │ ├── snmp_structs.h │ │ │ ├── sockets.h │ │ │ ├── stats.h │ │ │ ├── sys.h │ │ │ ├── tcp.h │ │ │ ├── tcp_impl.h │ │ │ ├── tcpip.h │ │ │ ├── timers.h │ │ │ └── udp.h │ │ ├── lwipopts.h │ │ ├── mem_manager.h │ │ ├── netif │ │ │ ├── etharp.h │ │ │ ├── if_llc.h │ │ │ ├── ppp_oe.h │ │ │ └── wlan_lwip_if.h │ │ ├── pp │ │ │ └── esf_buf.h │ │ ├── ssl │ │ │ ├── app │ │ │ │ ├── espconn_secure.h │ │ │ │ └── espconn_ssl.h │ │ │ ├── cert.h │ │ │ ├── private_key.h │ │ │ ├── ssl_bigint.h │ │ │ ├── ssl_bigint_impl.h │ │ │ ├── ssl_cert.h │ │ │ ├── ssl_config.h │ │ │ ├── ssl_crypto.h │ │ │ ├── ssl_crypto_misc.h │ │ │ ├── ssl_os_int.h │ │ │ ├── ssl_os_port.h │ │ │ ├── ssl_private_key.h │ │ │ ├── ssl_ssl.h │ │ │ ├── ssl_tls1.h │ │ │ └── ssl_version.h │ │ ├── upgrade.h │ │ ├── user_config.h │ │ ├── user_devicefind.h │ │ ├── user_esp_platform.h │ │ ├── user_esp_platform_timer.h │ │ ├── user_json.h │ │ ├── user_light.h │ │ ├── user_plug.h │ │ ├── user_sensor.h │ │ └── user_webserver.h │ ├── json │ │ ├── Makefile │ │ ├── jsonparse.c │ │ └── jsontree.c │ ├── lwip │ │ ├── Makefile │ │ ├── api │ │ │ ├── .output │ │ │ │ └── eagle │ │ │ │ │ └── debug │ │ │ │ │ ├── lib │ │ │ │ │ └── liblwipapi.a │ │ │ │ │ └── obj │ │ │ │ │ ├── api_lib.d │ │ │ │ │ ├── api_lib.o │ │ │ │ │ ├── api_msg.d │ │ │ │ │ ├── api_msg.o │ │ │ │ │ ├── err.d │ │ │ │ │ ├── err.o │ │ │ │ │ ├── netbuf.d │ │ │ │ │ ├── netbuf.o │ │ │ │ │ ├── netdb.d │ │ │ │ │ ├── netdb.o │ │ │ │ │ ├── netifapi.d │ │ │ │ │ ├── netifapi.o │ │ │ │ │ ├── sockets.d │ │ │ │ │ ├── sockets.o │ │ │ │ │ ├── tcpip.d │ │ │ │ │ └── tcpip.o │ │ │ ├── Makefile │ │ │ ├── api_lib.c │ │ │ ├── api_msg.c │ │ │ ├── err.c │ │ │ ├── netbuf.c │ │ │ ├── netdb.c │ │ │ ├── netifapi.c │ │ │ ├── sockets.c │ │ │ └── tcpip.c │ │ ├── app │ │ │ ├── .output │ │ │ │ └── eagle │ │ │ │ │ └── debug │ │ │ │ │ ├── lib │ │ │ │ │ └── liblwipapp.a │ │ │ │ │ └── obj │ │ │ │ │ ├── dhcpserver.d │ │ │ │ │ ├── dhcpserver.o │ │ │ │ │ ├── espconn.d │ │ │ │ │ ├── espconn.o │ │ │ │ │ ├── espconn_tcp.d │ │ │ │ │ ├── espconn_tcp.o │ │ │ │ │ ├── espconn_udp.d │ │ │ │ │ ├── espconn_udp.o │ │ │ │ │ ├── netio.d │ │ │ │ │ ├── netio.o │ │ │ │ │ ├── ping.d │ │ │ │ │ └── ping.o │ │ │ ├── Makefile │ │ │ ├── dhcpserver.c │ │ │ ├── espconn.c │ │ │ ├── espconn_tcp.c │ │ │ ├── espconn_udp.c │ │ │ ├── netio.c │ │ │ └── ping.c │ │ ├── core │ │ │ ├── .output │ │ │ │ └── eagle │ │ │ │ │ └── debug │ │ │ │ │ ├── lib │ │ │ │ │ └── liblwipcore.a │ │ │ │ │ └── obj │ │ │ │ │ ├── def.d │ │ │ │ │ ├── def.o │ │ │ │ │ ├── dhcp.d │ │ │ │ │ ├── dhcp.o │ │ │ │ │ ├── dns.d │ │ │ │ │ ├── dns.o │ │ │ │ │ ├── init.d │ │ │ │ │ ├── init.o │ │ │ │ │ ├── mem.d │ │ │ │ │ ├── mem.o │ │ │ │ │ ├── memp.d │ │ │ │ │ ├── memp.o │ │ │ │ │ ├── netif.d │ │ │ │ │ ├── netif.o │ │ │ │ │ ├── pbuf.d │ │ │ │ │ ├── pbuf.o │ │ │ │ │ ├── raw.d │ │ │ │ │ ├── raw.o │ │ │ │ │ ├── stats.d │ │ │ │ │ ├── stats.o │ │ │ │ │ ├── sys.d │ │ │ │ │ ├── sys.o │ │ │ │ │ ├── sys_arch.d │ │ │ │ │ ├── sys_arch.o │ │ │ │ │ ├── tcp.d │ │ │ │ │ ├── tcp.o │ │ │ │ │ ├── tcp_in.d │ │ │ │ │ ├── tcp_in.o │ │ │ │ │ ├── tcp_out.d │ │ │ │ │ ├── tcp_out.o │ │ │ │ │ ├── timers.d │ │ │ │ │ ├── timers.o │ │ │ │ │ ├── udp.d │ │ │ │ │ └── udp.o │ │ │ ├── Makefile │ │ │ ├── def.c │ │ │ ├── dhcp.c │ │ │ ├── dns.c │ │ │ ├── init.c │ │ │ ├── ipv4 │ │ │ │ ├── .output │ │ │ │ │ └── eagle │ │ │ │ │ │ └── debug │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── liblwipipv4.a │ │ │ │ │ │ └── obj │ │ │ │ │ │ ├── autoip.d │ │ │ │ │ │ ├── autoip.o │ │ │ │ │ │ ├── icmp.d │ │ │ │ │ │ ├── icmp.o │ │ │ │ │ │ ├── igmp.d │ │ │ │ │ │ ├── igmp.o │ │ │ │ │ │ ├── inet.d │ │ │ │ │ │ ├── inet.o │ │ │ │ │ │ ├── inet_chksum.d │ │ │ │ │ │ ├── inet_chksum.o │ │ │ │ │ │ ├── ip.d │ │ │ │ │ │ ├── ip.o │ │ │ │ │ │ ├── ip_addr.d │ │ │ │ │ │ ├── ip_addr.o │ │ │ │ │ │ ├── ip_frag.d │ │ │ │ │ │ └── ip_frag.o │ │ │ │ ├── Makefile │ │ │ │ ├── autoip.c │ │ │ │ ├── icmp.c │ │ │ │ ├── igmp.c │ │ │ │ ├── inet.c │ │ │ │ ├── inet_chksum.c │ │ │ │ ├── ip.c │ │ │ │ ├── ip_addr.c │ │ │ │ └── ip_frag.c │ │ │ ├── mem.c │ │ │ ├── memp.c │ │ │ ├── netif.c │ │ │ ├── pbuf.c │ │ │ ├── raw.c │ │ │ ├── stats.c │ │ │ ├── sys.c │ │ │ ├── sys_arch.c │ │ │ ├── tcp.c │ │ │ ├── tcp_in.c │ │ │ ├── tcp_out.c │ │ │ ├── timers.c │ │ │ └── udp.c │ │ └── netif │ │ │ ├── .output │ │ │ └── eagle │ │ │ │ └── debug │ │ │ │ ├── lib │ │ │ │ └── liblwipnetif.a │ │ │ │ └── obj │ │ │ │ ├── etharp.d │ │ │ │ └── etharp.o │ │ │ ├── Makefile │ │ │ └── etharp.c │ ├── ssl │ │ ├── Makefile │ │ ├── app │ │ │ ├── .output │ │ │ │ └── eagle │ │ │ │ │ └── debug │ │ │ │ │ ├── lib │ │ │ │ │ └── libsslapp.a │ │ │ │ │ └── obj │ │ │ │ │ ├── espconn_secure.d │ │ │ │ │ ├── espconn_secure.o │ │ │ │ │ ├── espconn_ssl.d │ │ │ │ │ └── espconn_ssl.o │ │ │ ├── Makefile │ │ │ ├── espconn_secure.c │ │ │ └── espconn_ssl.c │ │ ├── crypto │ │ │ ├── .output │ │ │ │ └── eagle │ │ │ │ │ └── debug │ │ │ │ │ ├── lib │ │ │ │ │ └── libsslcrypto.a │ │ │ │ │ └── obj │ │ │ │ │ ├── ssl_aes.d │ │ │ │ │ ├── ssl_aes.o │ │ │ │ │ ├── ssl_bigint.d │ │ │ │ │ ├── ssl_bigint.o │ │ │ │ │ ├── ssl_crypto_misc.d │ │ │ │ │ ├── ssl_crypto_misc.o │ │ │ │ │ ├── ssl_hmac.d │ │ │ │ │ ├── ssl_hmac.o │ │ │ │ │ ├── ssl_md2.d │ │ │ │ │ ├── ssl_md2.o │ │ │ │ │ ├── ssl_md5.d │ │ │ │ │ ├── ssl_md5.o │ │ │ │ │ ├── ssl_rc4.d │ │ │ │ │ ├── ssl_rc4.o │ │ │ │ │ ├── ssl_rsa.d │ │ │ │ │ ├── ssl_rsa.o │ │ │ │ │ ├── ssl_sha1.d │ │ │ │ │ └── ssl_sha1.o │ │ │ ├── Makefile │ │ │ ├── ssl_aes.c │ │ │ ├── ssl_bigint.c │ │ │ ├── ssl_crypto_misc.c │ │ │ ├── ssl_hmac.c │ │ │ ├── ssl_md2.c │ │ │ ├── ssl_md5.c │ │ │ ├── ssl_rc4.c │ │ │ ├── ssl_rsa.c │ │ │ └── ssl_sha1.c │ │ └── ssl │ │ │ ├── .output │ │ │ └── eagle │ │ │ │ └── debug │ │ │ │ ├── lib │ │ │ │ └── libsslssl.a │ │ │ │ └── obj │ │ │ │ ├── ssl_asn1.d │ │ │ │ ├── ssl_asn1.o │ │ │ │ ├── ssl_gen_cert.d │ │ │ │ ├── ssl_gen_cert.o │ │ │ │ ├── ssl_loader.d │ │ │ │ ├── ssl_loader.o │ │ │ │ ├── ssl_openssl.d │ │ │ │ ├── ssl_openssl.o │ │ │ │ ├── ssl_os_port.d │ │ │ │ ├── ssl_os_port.o │ │ │ │ ├── ssl_p12.d │ │ │ │ ├── ssl_p12.o │ │ │ │ ├── ssl_tls1.d │ │ │ │ ├── ssl_tls1.o │ │ │ │ ├── ssl_tls1_clnt.d │ │ │ │ ├── ssl_tls1_clnt.o │ │ │ │ ├── ssl_tls1_svr.d │ │ │ │ ├── ssl_tls1_svr.o │ │ │ │ ├── ssl_x509.d │ │ │ │ └── ssl_x509.o │ │ │ ├── Makefile │ │ │ ├── ssl_asn1.c │ │ │ ├── ssl_gen_cert.c │ │ │ ├── ssl_loader.c │ │ │ ├── ssl_openssl.c │ │ │ ├── ssl_os_port.c │ │ │ ├── ssl_p12.c │ │ │ ├── ssl_tls1.c │ │ │ ├── ssl_tls1_clnt.c │ │ │ ├── ssl_tls1_svr.c │ │ │ └── ssl_x509.c │ ├── upgrade │ │ ├── Makefile │ │ ├── upgrade.c │ │ └── upgrade_lib.c │ └── user │ │ ├── Makefile │ │ ├── smartconfig.c │ │ ├── smartconfig.h │ │ ├── user_devicefind.c │ │ ├── user_esp_platform.c │ │ ├── user_esp_platform_timer.c │ │ ├── user_json.c │ │ ├── user_light.c │ │ ├── user_main.c │ │ ├── user_plug.c │ │ ├── user_sensor.c │ │ └── user_webserver.c ├── bin │ ├── _temp_by_dltool │ │ └── boot_v1.1.bin_rep │ ├── blank.bin │ ├── boot_v1.1.bin │ └── esp_init_data_default.bin ├── include │ ├── c_types.h │ ├── eagle_soc.h │ ├── espconn.h │ ├── ets_sys.h │ ├── gpio.h │ ├── ip_addr.h │ ├── json │ │ ├── json.h │ │ ├── jsonparse.h │ │ └── jsontree.h │ ├── mem.h │ ├── os_type.h │ ├── osapi.h │ ├── queue.h │ ├── spi_flash.h │ ├── user_interface.h │ └── version.h ├── ld │ ├── eagle.app.v6.app1.ld │ ├── eagle.app.v6.app2.ld │ ├── eagle.app.v6.ld │ └── eagle.rom.addr.v6.ld ├── lib │ ├── libjson.a │ ├── liblwip.a │ ├── libmain.a │ ├── libnet80211.a │ ├── libphy.a │ ├── libpp.a │ ├── libssl.a │ ├── libupgrade.a │ └── libwpa.a └── tools │ ├── gen_appbin.py │ ├── gen_flashbin.py │ ├── genflashbinv6.exe │ ├── makefile.sh │ └── xxd.exe └── smartconfig ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin ├── AndroidManifest.xml ├── SmartConfig.apk ├── classes.dex ├── classes │ └── com │ │ └── example │ │ ├── smartconfig │ │ ├── AboutActivity.class │ │ ├── MainActivity$1.class │ │ ├── MainActivity.class │ │ ├── UdpThread$1.class │ │ └── UdpThread.class │ │ └── smartlink │ │ ├── BuildConfig.class │ │ ├── R$attr.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ └── R.class └── resources.ap_ ├── build.properties ├── gen └── com │ └── example │ └── smartlink │ ├── BuildConfig.java │ └── R.java ├── libs └── armeabi │ └── libsmartconfig.so ├── obj └── local │ └── armeabi │ ├── libsmartconfig.so │ └── objs │ └── smartconfig │ ├── smartconfig.o │ ├── smartconfig.o.d │ └── smartlink.o.d.org ├── project.properties ├── res ├── drawable-hdpi │ └── Thumbs.db ├── layout │ ├── activity_about.xml │ └── activity_main.xml ├── menu │ └── main.xml └── values │ ├── strings.xml │ └── styles.xml └── src └── com └── example └── smartconfig ├── AboutActivity.java ├── MainActivity.java └── UdpThread.java /.gitignore: -------------------------------------------------------------------------------- 1 | # Object files 2 | *.o 3 | *.ko 4 | *.obj 5 | *.elf 6 | 7 | # Precompiled Headers 8 | *.gch 9 | *.pch 10 | 11 | # Libraries 12 | *.lib 13 | *.a 14 | *.la 15 | *.lo 16 | 17 | # Shared objects (inc. Windows DLLs) 18 | *.dll 19 | *.so 20 | *.so.* 21 | *.dylib 22 | 23 | # Executables 24 | *.exe 25 | *.out 26 | *.app 27 | *.i*86 28 | *.x86_64 29 | *.hex 30 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/driver/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | GEN_LIBS = libdriver.a 16 | endif 17 | 18 | 19 | ############################################################# 20 | # Configuration i.e. compile options etc. 21 | # Target specific stuff (defines etc.) goes in here! 22 | # Generally values applying to a tree are captured in the 23 | # makefile at its root level - these are then overridden 24 | # for a subtree within the makefile rooted therein 25 | # 26 | #DEFINES += 27 | 28 | ############################################################# 29 | # Recursion Magic - Don't touch this!! 30 | # 31 | # Each subtree potentially has an include directory 32 | # corresponding to the common APIs applicable to modules 33 | # rooted at that subtree. Accordingly, the INCLUDE PATH 34 | # of a module can only contain the include directories up 35 | # its parent path, and not its siblings 36 | # 37 | # Required for each makefile to inherit from the parent 38 | # 39 | 40 | INCLUDES := $(INCLUDES) -I $(PDIR)include 41 | INCLUDES += -I ./ 42 | PDIR := ../$(PDIR) 43 | sinclude $(PDIR)Makefile 44 | 45 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/driver/gpio16.c: -------------------------------------------------------------------------------- 1 | #include "ets_sys.h" 2 | #include "osapi.h" 3 | #include "driver/gpio16.h" 4 | 5 | void ICACHE_FLASH_ATTR 6 | gpio16_output_conf(void) 7 | { 8 | WRITE_PERI_REG(PAD_XPD_DCDC_CONF, 9 | (READ_PERI_REG(PAD_XPD_DCDC_CONF) & 0xffffffbc) | (uint32)0x1); // mux configuration for XPD_DCDC to output rtc_gpio0 10 | 11 | WRITE_PERI_REG(RTC_GPIO_CONF, 12 | (READ_PERI_REG(RTC_GPIO_CONF) & (uint32)0xfffffffe) | (uint32)0x0); //mux configuration for out enable 13 | 14 | WRITE_PERI_REG(RTC_GPIO_ENABLE, 15 | (READ_PERI_REG(RTC_GPIO_ENABLE) & (uint32)0xfffffffe) | (uint32)0x1); //out enable 16 | } 17 | 18 | void ICACHE_FLASH_ATTR 19 | gpio16_output_set(uint8 value) 20 | { 21 | WRITE_PERI_REG(RTC_GPIO_OUT, 22 | (READ_PERI_REG(RTC_GPIO_OUT) & (uint32)0xfffffffe) | (uint32)(value & 1)); 23 | } 24 | 25 | void ICACHE_FLASH_ATTR 26 | gpio16_input_conf(void) 27 | { 28 | WRITE_PERI_REG(PAD_XPD_DCDC_CONF, 29 | (READ_PERI_REG(PAD_XPD_DCDC_CONF) & 0xffffffbc) | (uint32)0x1); // mux configuration for XPD_DCDC and rtc_gpio0 connection 30 | 31 | WRITE_PERI_REG(RTC_GPIO_CONF, 32 | (READ_PERI_REG(RTC_GPIO_CONF) & (uint32)0xfffffffe) | (uint32)0x0); //mux configuration for out enable 33 | 34 | WRITE_PERI_REG(RTC_GPIO_ENABLE, 35 | READ_PERI_REG(RTC_GPIO_ENABLE) & (uint32)0xfffffffe); //out disable 36 | } 37 | 38 | uint8 ICACHE_FLASH_ATTR 39 | gpio16_input_get(void) 40 | { 41 | return (uint8)(READ_PERI_REG(RTC_GPIO_IN_DATA) & 1); 42 | } 43 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/gen_misc.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | set BACKPATH=%PATH% 3 | set PATH=%BACKPATH%;%CD%\..\tools 4 | @echo on 5 | 6 | del /F ..\bin\eagle.app.v6.flash.bin ..\bin\eagle.app.v6.irom0text.bin ..\bin\eagle.app.v6.dump ..\bin\eagle.app.v6.S 7 | 8 | cd .output\eagle\debug\image 9 | 10 | xt-objdump -x -s eagle.app.v6.out > ..\..\..\..\..\bin\eagle.app.v6.dump 11 | xt-objdump -S eagle.app.v6.out > ..\..\..\..\..\bin\eagle.app.v6.S 12 | 13 | xt-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin 14 | xt-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin 15 | xt-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin 16 | xt-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin 17 | 18 | gen_appbin.py eagle.app.v6.out v6 19 | 20 | xcopy /y eagle.app.v6.irom0text.bin ..\..\..\..\..\bin\ 21 | xcopy /y eagle.app.v6.flash.bin ..\..\..\..\..\bin\ 22 | 23 | cd ..\..\..\..\ 24 | 25 | @echo off 26 | set PATH=%BACKPATH% 27 | @echo on 28 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/gen_misc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -x 2 | make 3 | if [ $? == 0 ];then 4 | rm ../bin/eagle.app.v6.flash.bin ../bin/eagle.app.v6.irom0text.bin ../bin/eagle.app.v6.dump ../bin/eagle.app.v6.S 5 | 6 | cd .output/eagle/debug/image 7 | 8 | xt-objdump -x -s eagle.app.v6.out > ../../../../../bin/eagle.app.v6.dump 9 | xt-objdump -S eagle.app.v6.out > ../../../../../bin/eagle.app.v6.S 10 | 11 | xt-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin 12 | xt-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin 13 | xt-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin 14 | xt-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin 15 | 16 | ../../../../../tools/gen_appbin.py eagle.app.v6.out v6 17 | 18 | cp eagle.app.v6.irom0text.bin ../../../../../bin/ 19 | cp eagle.app.v6.flash.bin ../../../../../bin/ 20 | 21 | cd ../../../../../ 22 | 23 | else 24 | echo "make error" 25 | fi 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/gen_misc_plus.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | set BACKPATH=%PATH% 3 | set PATH=%BACKPATH%;%CD%\..\tools 4 | @echo on 5 | 6 | rm ..\bin\upgrade\%1.bin 7 | 8 | cd .output\eagle\debug\image\ 9 | 10 | xt-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin 11 | xt-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin 12 | xt-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin 13 | xt-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin 14 | 15 | gen_appbin.py eagle.app.v6.out v6 16 | 17 | gen_flashbin.py eagle.app.v6.flash.bin eagle.app.v6.irom0text.bin 18 | 19 | cp eagle.app.flash.bin %1.bin 20 | 21 | xcopy /y %1.bin ..\..\..\..\..\bin\upgrade\ 22 | 23 | cd ..\..\..\..\ 24 | 25 | @echo off 26 | set PATH=%BACKPATH% 27 | @echo on -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/gen_misc_plus.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -x 2 | touch user/user_main.c 3 | make APP=$1 4 | if [ $? == 0 ];then 5 | rm ../bin/upgrade/user$1.bin ../bin/upgrade/user$1.dump ../bin/upgrade/user$1.S 6 | 7 | cd .output/eagle/debug/image/ 8 | 9 | xt-objdump -x -s eagle.app.v6.out > ../../../../../bin/upgrade/user$1.dump 10 | xt-objdump -S eagle.app.v6.out > ../../../../../bin/upgrade/user$1.S 11 | 12 | xt-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin 13 | xt-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin 14 | xt-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin 15 | xt-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin 16 | 17 | ../../../../../tools/gen_appbin.py eagle.app.v6.out v6 18 | 19 | ../../../../../tools/gen_flashbin.py eagle.app.v6.flash.bin eagle.app.v6.irom0text.bin 20 | 21 | cp eagle.app.flash.bin user$1.bin 22 | cp user$1.bin ../../../../../bin/upgrade/ 23 | 24 | cd ../../../../../ 25 | 26 | else 27 | echo "make error" 28 | fi 29 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/arch/perf.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2001, Swedish Institute of Computer Science. 3 | * All rights reserved. 4 | * 5 | * Redistribution and use in source and binary forms, with or without 6 | * modification, are permitted provided that the following conditions 7 | * are met: 8 | * 1. Redistributions of source code must retain the above copyright 9 | * notice, this list of conditions and the following disclaimer. 10 | * 2. Redistributions in binary form must reproduce the above copyright 11 | * notice, this list of conditions and the following disclaimer in the 12 | * documentation and/or other materials provided with the distribution. 13 | * 3. Neither the name of the Institute nor the names of its contributors 14 | * may be used to endorse or promote products derived from this software 15 | * without specific prior written permission. 16 | * 17 | * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 18 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 | * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 21 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 | * SUCH DAMAGE. 28 | * 29 | * This file is part of the lwIP TCP/IP stack. 30 | * 31 | * Author: Adam Dunkels 32 | * 33 | */ 34 | #ifndef __PERF_H__ 35 | #define __PERF_H__ 36 | 37 | #define PERF_START /* null definition */ 38 | #define PERF_STOP(x) /* null definition */ 39 | 40 | #endif /* __PERF_H__ */ 41 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/arch/sys_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/include/arch/sys_arch.h -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/driver/gpio16.h: -------------------------------------------------------------------------------- 1 | #ifndef __GPIO16_H__ 2 | #define __GPIO16_H__ 3 | 4 | void gpio16_output_conf(void); 5 | void gpio16_output_set(uint8 value); 6 | void gpio16_input_conf(void); 7 | uint8 gpio16_input_get(void); 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/driver/i2c_master.h: -------------------------------------------------------------------------------- 1 | #ifndef __I2C_MASTER_H__ 2 | #define __I2C_MASTER_H__ 3 | 4 | #define I2C_MASTER_SDA_MUX PERIPHS_IO_MUX_GPIO2_U 5 | #define I2C_MASTER_SCL_MUX PERIPHS_IO_MUX_MTMS_U 6 | #define I2C_MASTER_SDA_GPIO 2 7 | #define I2C_MASTER_SCL_GPIO 14 8 | #define I2C_MASTER_SDA_FUNC FUNC_GPIO2 9 | #define I2C_MASTER_SCL_FUNC FUNC_GPIO14 10 | 11 | //#define I2C_MASTER_SDA_MUX PERIPHS_IO_MUX_GPIO2_U 12 | //#define I2C_MASTER_SCL_MUX PERIPHS_IO_MUX_GPIO0_U 13 | //#define I2C_MASTER_SDA_GPIO 2 14 | //#define I2C_MASTER_SCL_GPIO 0 15 | //#define I2C_MASTER_SDA_FUNC FUNC_GPIO2 16 | //#define I2C_MASTER_SCL_FUNC FUNC_GPIO0 17 | 18 | #if 0 19 | #define I2C_MASTER_GPIO_SET(pin) \ 20 | gpio_output_set(1<L<@i&Nxe!" 31 | #endif 32 | 33 | #if SENSOR_DEVICE 34 | #define SENSOR_DEEP_SLEEP 35 | 36 | #if HUMITURE_SUB_DEVICE 37 | #define SENSOR_DEEP_SLEEP_TIME 30000000 38 | #elif FLAMMABLE_GAS_SUB_DEVICE 39 | #define SENSOR_DEEP_SLEEP_TIME 60000000 40 | #endif 41 | #endif 42 | 43 | #if LIGHT_DEVICE 44 | #define USE_US_TIMER 45 | #endif 46 | 47 | #if PLUG_DEVICE || LIGHT_DEVICE 48 | #define BEACON_TIMEOUT 150000000 49 | #define BEACON_TIME 50000 50 | #endif 51 | 52 | #define AP_CACHE 1 53 | 54 | #if AP_CACHE 55 | #define AP_CACHE_NUMBER 5 56 | #endif 57 | 58 | #elif LEWEI_PLATFORM 59 | #endif 60 | 61 | #endif 62 | 63 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/user_devicefind.h: -------------------------------------------------------------------------------- 1 | #ifndef __USER_DEVICEFIND_H__ 2 | #define __USER_DEVICEFIND_H__ 3 | 4 | void user_devicefind_init(void); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/user_esp_platform.h: -------------------------------------------------------------------------------- 1 | #ifndef __USER_DEVICE_H__ 2 | #define __USER_DEVICE_H__ 3 | 4 | /* NOTICE---this is for 512KB spi flash. 5 | * you can change to other sector if you use other size spi flash. */ 6 | #define ESP_PARAM_START_SEC 0x3C 7 | 8 | #define ESP_PARAM_SAVE_0 1 9 | #define ESP_PARAM_SAVE_1 2 10 | #define ESP_PARAM_FLAG 3 11 | 12 | #define packet_size (2 * 1024) 13 | 14 | #define token_size 41 15 | 16 | struct esp_platform_saved_param { 17 | uint8 devkey[40]; 18 | uint8 token[40]; 19 | uint8 activeflag; 20 | uint8 pad[3]; 21 | }; 22 | 23 | struct esp_platform_sec_flag_param { 24 | uint8 flag; 25 | uint8 pad[3]; 26 | }; 27 | 28 | enum { 29 | DEVICE_CONNECTING = 40, 30 | DEVICE_ACTIVE_DONE, 31 | DEVICE_ACTIVE_FAIL, 32 | DEVICE_CONNECT_SERVER_FAIL 33 | }; 34 | 35 | #endif 36 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/user_esp_platform_timer.h: -------------------------------------------------------------------------------- 1 | #ifndef __USER_DEVICEFIND_H__ 2 | #define __USER_DEVICEFIND_H__ 3 | 4 | void user_platform_timer_start(char* pbuffer, struct espconn *pespconn); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/user_json.h: -------------------------------------------------------------------------------- 1 | #ifndef __USER_JSON_H__ 2 | #define __USER_JSON_H__ 3 | 4 | #include "json/jsonparse.h" 5 | #include "json/jsontree.h" 6 | 7 | #define jsonSize 2*1024 8 | 9 | void json_parse(struct jsontree_context *json, char *ptrJSONMessage); 10 | 11 | void json_ws_send(struct jsontree_value *tree, const char *path, char *pbuf); 12 | 13 | int json_putchar(int c); 14 | 15 | struct jsontree_value *find_json_path(struct jsontree_context *json, const char *path); 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/user_light.h: -------------------------------------------------------------------------------- 1 | #ifndef __USER_LIGHT_H__ 2 | #define __USER_LIGHT_H__ 3 | 4 | #include "driver/pwm.h" 5 | 6 | /* NOTICE---this is for 512KB spi flash. 7 | * you can change to other sector if you use other size spi flash. */ 8 | #define PRIV_PARAM_START_SEC 0x3C 9 | 10 | #define PRIV_PARAM_SAVE 0 11 | 12 | #define LIGHT_RED 0 13 | #define LIGHT_GREEN 1 14 | #define LIGHT_BLUE 2 15 | #define LIGHE_LEVEL 3 16 | 17 | struct light_saved_param { 18 | uint16 pwm_freq; 19 | uint8 pwm_duty[PWM_CHANNEL]; 20 | uint8 pad[6-PWM_CHANNEL]; 21 | }; 22 | 23 | void user_light_init(void); 24 | uint8 user_light_get_duty(uint8 channel); 25 | void user_light_set_duty(uint8 duty, uint8 channel); 26 | uint16 user_light_get_freq(void); 27 | void user_light_set_freq(uint16 freq); 28 | 29 | #endif 30 | 31 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/user_plug.h: -------------------------------------------------------------------------------- 1 | #ifndef __USER_ESPSWITCH_H__ 2 | #define __USER_ESPSWITCH_H__ 3 | 4 | #include "driver/key.h" 5 | 6 | /* NOTICE---this is for 512KB spi flash. 7 | * you can change to other sector if you use other size spi flash. */ 8 | #define PRIV_PARAM_START_SEC 0x3C 9 | 10 | #define PRIV_PARAM_SAVE 0 11 | 12 | #define PLUG_KEY_NUM 1 13 | 14 | #define PLUG_KEY_0_IO_MUX PERIPHS_IO_MUX_MTCK_U 15 | #define PLUG_KEY_0_IO_NUM 13 16 | #define PLUG_KEY_0_IO_FUNC FUNC_GPIO13 17 | 18 | #define PLUG_WIFI_LED_IO_MUX PERIPHS_IO_MUX_GPIO0_U 19 | #define PLUG_WIFI_LED_IO_NUM 0 20 | #define PLUG_WIFI_LED_IO_FUNC FUNC_GPIO0 21 | 22 | #define PLUG_LINK_LED_IO_MUX PERIPHS_IO_MUX_MTDI_U 23 | #define PLUG_LINK_LED_IO_NUM 12 24 | #define PLUG_LINK_LED_IO_FUNC FUNC_GPIO12 25 | 26 | #define PLUG_RELAY_LED_IO_MUX PERIPHS_IO_MUX_MTDO_U 27 | #define PLUG_RELAY_LED_IO_NUM 15 28 | #define PLUG_RELAY_LED_IO_FUNC FUNC_GPIO15 29 | 30 | #define PLUG_STATUS_OUTPUT(pin, on) GPIO_OUTPUT_SET(pin, on) 31 | 32 | struct plug_saved_param { 33 | uint8_t status; 34 | uint8_t pad[3]; 35 | }; 36 | 37 | void user_plug_init(void); 38 | uint8 user_plug_get_status(void); 39 | void user_plug_set_status(bool status); 40 | 41 | 42 | #endif 43 | 44 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/user_sensor.h: -------------------------------------------------------------------------------- 1 | #ifndef __USER_SENSOR_H__ 2 | #define __USER_SENSOR_H__ 3 | 4 | #include "user_config.h" 5 | #include "driver/key.h" 6 | 7 | #define SENSOR_KEY_NUM 1 8 | 9 | #define SENSOR_KEY_IO_MUX PERIPHS_IO_MUX_MTCK_U 10 | #define SENSOR_KEY_IO_NUM 13 11 | #define SENSOR_KEY_IO_FUNC FUNC_GPIO13 12 | 13 | #define SENSOR_WIFI_LED_IO_MUX PERIPHS_IO_MUX_GPIO0_U 14 | #define SENSOR_WIFI_LED_IO_NUM 0 15 | #define SENSOR_WIFI_LED_IO_FUNC FUNC_GPIO0 16 | 17 | #define SENSOR_LINK_LED_IO_MUX PERIPHS_IO_MUX_MTDI_U 18 | #define SENSOR_LINK_LED_IO_NUM 12 19 | #define SENSOR_LINK_LED_IO_FUNC FUNC_GPIO12 20 | 21 | #define SENSOR_UNUSED_LED_IO_MUX PERIPHS_IO_MUX_MTDO_U 22 | #define SENSOR_UNUSED_LED_IO_NUM 15 23 | #define SENSOR_UNUSED_LED_IO_FUNC FUNC_GPIO15 24 | 25 | #if HUMITURE_SUB_DEVICE 26 | bool user_mvh3004_read_th(uint8 *data); 27 | void user_mvh3004_init(void); 28 | #endif 29 | 30 | void user_sensor_init(uint8 active); 31 | 32 | #endif 33 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/include/user_webserver.h: -------------------------------------------------------------------------------- 1 | #ifndef __USER_WEBSERVER_H__ 2 | #define __USER_WEBSERVER_H__ 3 | 4 | #define SERVER_PORT 80 5 | #define SERVER_SSL_PORT 443 6 | 7 | #define URLSize 10 8 | 9 | typedef enum Result_Resp { 10 | RespFail = 0, 11 | RespSuc, 12 | } Result_Resp; 13 | 14 | typedef enum ProtocolType { 15 | GET = 0, 16 | POST, 17 | } ProtocolType; 18 | 19 | typedef enum _ParmType { 20 | SWITCH_STATUS = 0, 21 | INFOMATION, 22 | WIFI, 23 | SCAN, 24 | REBOOT, 25 | DEEP_SLEEP, 26 | LIGHT_STATUS, 27 | CONNECT_STATUS 28 | } ParmType; 29 | 30 | typedef struct URL_Frame { 31 | enum ProtocolType Type; 32 | char pSelect[URLSize]; 33 | char pCommand[URLSize]; 34 | char pFilename[URLSize]; 35 | } URL_Frame; 36 | 37 | typedef struct _rst_parm { 38 | ParmType parmtype; 39 | struct espconn *pespconn; 40 | } rst_parm; 41 | 42 | void user_webserver_init(uint32 port); 43 | 44 | #endif 45 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/json/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | 16 | GEN_LIBS = libjson.a 17 | 18 | endif 19 | 20 | 21 | ############################################################# 22 | # Configuration i.e. compile options etc. 23 | # Target specific stuff (defines etc.) goes in here! 24 | # Generally values applying to a tree are captured in the 25 | # makefile at its root level - these are then overridden 26 | # for a subtree within the makefile rooted therein 27 | # 28 | #DEFINES += 29 | 30 | ############################################################# 31 | # Recursion Magic - Don't touch this!! 32 | # 33 | # Each subtree potentially has an include directory 34 | # corresponding to the common APIs applicable to modules 35 | # rooted at that subtree. Accordingly, the INCLUDE PATH 36 | # of a module can only contain the include directories up 37 | # its parent path, and not its siblings 38 | # 39 | # Required for each makefile to inherit from the parent 40 | # 41 | 42 | INCLUDES := $(INCLUDES) -I $(PDIR)include 43 | INCLUDES += -I ./ 44 | PDIR := ../$(PDIR) 45 | sinclude $(PDIR)Makefile 46 | 47 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | UP_EXTRACT_DIR = .. 16 | GEN_LIBS = liblwip.a 17 | COMPONENTS_liblwip = api/liblwipapi.a \ 18 | app/liblwipapp.a \ 19 | core/liblwipcore.a \ 20 | core/ipv4/liblwipipv4.a \ 21 | netif/liblwipnetif.a 22 | endif 23 | 24 | 25 | ############################################################# 26 | # Configuration i.e. compile options etc. 27 | # Target specific stuff (defines etc.) goes in here! 28 | # Generally values applying to a tree are captured in the 29 | # makefile at its root level - these are then overridden 30 | # for a subtree within the makefile rooted therein 31 | # 32 | #DEFINES += 33 | 34 | ############################################################# 35 | # Recursion Magic - Don't touch this!! 36 | # 37 | # Each subtree potentially has an include directory 38 | # corresponding to the common APIs applicable to modules 39 | # rooted at that subtree. Accordingly, the INCLUDE PATH 40 | # of a module can only contain the include directories up 41 | # its parent path, and not its siblings 42 | # 43 | # Required for each makefile to inherit from the parent 44 | # 45 | 46 | INCLUDES := $(INCLUDES) -I $(PDIR)include 47 | INCLUDES += -I ./ 48 | PDIR := ../$(PDIR) 49 | sinclude $(PDIR)Makefile 50 | 51 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/lib/liblwipapi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/lib/liblwipapi.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/api_lib.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/api_lib.o .output/eagle/debug/obj/api_lib.d : api_lib.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/api_lib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/api_lib.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/api_msg.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/api_msg.o .output/eagle/debug/obj/api_msg.d : api_msg.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/api_msg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/api_msg.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/err.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/err.o .output/eagle/debug/obj/err.d : err.c ../../include/lwip/err.h ../../include/lwip/opt.h \ 2 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 3 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 4 | ../../../include/c_types.h ../../../include/ets_sys.h \ 5 | ../../../include/c_types.h ../../../include/eagle_soc.h \ 6 | ../../../include/osapi.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 17 | ../../include/user_config.h 18 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/err.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/err.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/netbuf.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/netbuf.o .output/eagle/debug/obj/netbuf.d : netbuf.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/netbuf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/netbuf.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/netdb.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/netdb.o .output/eagle/debug/obj/netdb.d : netdb.c ../../include/lwip/netdb.h ../../include/lwip/opt.h \ 2 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 3 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 4 | ../../../include/c_types.h ../../../include/ets_sys.h \ 5 | ../../../include/c_types.h ../../../include/eagle_soc.h \ 6 | ../../../include/osapi.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 17 | ../../include/user_config.h 18 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/netdb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/netdb.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/netifapi.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/netifapi.o .output/eagle/debug/obj/netifapi.d : netifapi.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/netifapi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/netifapi.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/sockets.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/sockets.o .output/eagle/debug/obj/sockets.d : sockets.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/sockets.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/sockets.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/tcpip.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/tcpip.o .output/eagle/debug/obj/tcpip.d : tcpip.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/tcpip.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/.output/eagle/debug/obj/tcpip.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | 16 | GEN_LIBS = liblwipapi.a 17 | 18 | endif 19 | 20 | 21 | ############################################################# 22 | # Configuration i.e. compile options etc. 23 | # Target specific stuff (defines etc.) goes in here! 24 | # Generally values applying to a tree are captured in the 25 | # makefile at its root level - these are then overridden 26 | # for a subtree within the makefile rooted therein 27 | # 28 | #DEFINES += 29 | 30 | ############################################################# 31 | # Recursion Magic - Don't touch this!! 32 | # 33 | # Each subtree potentially has an include directory 34 | # corresponding to the common APIs applicable to modules 35 | # rooted at that subtree. Accordingly, the INCLUDE PATH 36 | # of a module can only contain the include directories up 37 | # its parent path, and not its siblings 38 | # 39 | # Required for each makefile to inherit from the parent 40 | # 41 | 42 | INCLUDES := $(INCLUDES) -I $(PDIR)include 43 | INCLUDES += -I ./ 44 | PDIR := ../$(PDIR) 45 | sinclude $(PDIR)Makefile 46 | 47 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/netbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/netbuf.c -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/api/tcpip.c -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/lib/liblwipapp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/lib/liblwipapp.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/dhcpserver.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/dhcpserver.o .output/eagle/debug/obj/dhcpserver.d : dhcpserver.c ../../include/lwip/inet.h \ 2 | ../../include/lwip/opt.h ../../include/lwipopts.h \ 3 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 4 | ../../include/arch/cc.h ../../../include/c_types.h \ 5 | ../../../include/ets_sys.h ../../../include/c_types.h \ 6 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 17 | ../../include/user_config.h ../../include/lwip/def.h \ 18 | ../../include/lwip/ip_addr.h ../../include/lwip/err.h \ 19 | ../../include/lwip/pbuf.h ../../include/lwip/udp.h \ 20 | ../../include/lwip/netif.h ../../include/lwip/ip.h \ 21 | ../../include/lwip/mem.h ../../include/mem_manager.h \ 22 | ../../include/lwip/app/dhcpserver.h ../../../include/user_interface.h \ 23 | ../../../include/os_type.h ../../../include/ets_sys.h \ 24 | ../../../include/queue.h ../../../include/spi_flash.h 25 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/dhcpserver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/dhcpserver.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/espconn.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/espconn.o .output/eagle/debug/obj/espconn.d : espconn.c ../../include/lwip/netif.h ../../include/lwip/opt.h \ 2 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 3 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 4 | ../../../include/c_types.h ../../../include/ets_sys.h \ 5 | ../../../include/c_types.h ../../../include/eagle_soc.h \ 6 | ../../../include/osapi.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 17 | ../../include/user_config.h ../../include/lwip/err.h \ 18 | ../../include/lwip/ip_addr.h ../../include/lwip/def.h \ 19 | ../../include/lwip/pbuf.h ../../include/lwip/inet.h \ 20 | ../../include/netif/etharp.h ../../include/lwip/ip.h \ 21 | ../../include/lwip/tcp.h ../../include/lwip/sys.h \ 22 | ../../../include/eagle_soc.h ../../include/lwip/mem.h \ 23 | ../../include/mem_manager.h ../../include/lwip/icmp.h \ 24 | ../../include/lwip/init.h ../../../include/os_type.h \ 25 | ../../../include/ets_sys.h ../../include/lwip/app/espconn_tcp.h \ 26 | ../../include/lwip/app/espconn.h ../../include/lwip/dns.h \ 27 | ../../include/lwip/app/espconn_udp.h 28 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/espconn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/espconn.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/espconn_tcp.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/espconn_tcp.o .output/eagle/debug/obj/espconn_tcp.d : espconn_tcp.c ../../include/lwip/netif.h \ 2 | ../../include/lwip/opt.h ../../include/lwipopts.h \ 3 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 4 | ../../include/arch/cc.h ../../../include/c_types.h \ 5 | ../../../include/ets_sys.h ../../../include/c_types.h \ 6 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 17 | ../../include/user_config.h ../../include/lwip/err.h \ 18 | ../../include/lwip/ip_addr.h ../../include/lwip/def.h \ 19 | ../../include/lwip/pbuf.h ../../include/lwip/inet.h \ 20 | ../../include/netif/etharp.h ../../include/lwip/ip.h \ 21 | ../../include/lwip/tcp.h ../../include/lwip/sys.h \ 22 | ../../../include/eagle_soc.h ../../include/lwip/mem.h \ 23 | ../../include/mem_manager.h ../../include/lwip/icmp.h \ 24 | ../../include/lwip/init.h ../../include/lwip/tcp_impl.h \ 25 | ../../include/lwip/memp.h ../../include/lwip/memp_std.h \ 26 | ../../include/lwip/mem.h ../../../include/os_type.h \ 27 | ../../../include/ets_sys.h ../../include/lwip/app/espconn_tcp.h \ 28 | ../../include/lwip/app/espconn.h ../../include/lwip/dns.h 29 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/espconn_tcp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/espconn_tcp.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/espconn_udp.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/espconn_udp.o .output/eagle/debug/obj/espconn_udp.d : espconn_udp.c ../../../include/ets_sys.h \ 2 | ../../../include/c_types.h ../../../include/eagle_soc.h \ 3 | ../../../include/os_type.h ../../../include/ets_sys.h \ 4 | ../../include/lwip/inet.h ../../include/lwip/opt.h \ 5 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 6 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 7 | ../../../include/c_types.h ../../../include/osapi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 18 | ../../include/user_config.h ../../include/lwip/def.h \ 19 | ../../include/lwip/ip_addr.h ../../include/lwip/err.h \ 20 | ../../include/lwip/pbuf.h ../../include/lwip/mem.h \ 21 | ../../include/mem_manager.h ../../include/lwip/tcp_impl.h \ 22 | ../../include/lwip/tcp.h ../../include/lwip/sys.h \ 23 | ../../../include/eagle_soc.h ../../include/lwip/ip.h \ 24 | ../../include/lwip/netif.h ../../include/lwip/icmp.h \ 25 | ../../include/lwip/udp.h ../../include/lwip/app/espconn_udp.h \ 26 | ../../include/lwip/app/espconn.h ../../include/lwip/dns.h 27 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/espconn_udp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/espconn_udp.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/netio.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/netio.o .output/eagle/debug/obj/netio.d : netio.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/tcp.h \ 17 | ../../include/lwip/sys.h ../../../include/eagle_soc.h \ 18 | ../../include/lwip/mem.h ../../include/mem_manager.h \ 19 | ../../include/lwip/pbuf.h ../../include/lwip/err.h \ 20 | ../../include/lwip/ip.h ../../include/lwip/def.h \ 21 | ../../include/lwip/ip_addr.h ../../include/lwip/netif.h \ 22 | ../../include/lwip/icmp.h 23 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/netio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/netio.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/ping.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ping.o .output/eagle/debug/obj/ping.d : ping.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/ping.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/.output/eagle/debug/obj/ping.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/app/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | 16 | GEN_LIBS = liblwipapp.a 17 | 18 | endif 19 | 20 | 21 | ############################################################# 22 | # Configuration i.e. compile options etc. 23 | # Target specific stuff (defines etc.) goes in here! 24 | # Generally values applying to a tree are captured in the 25 | # makefile at its root level - these are then overridden 26 | # for a subtree within the makefile rooted therein 27 | # 28 | #DEFINES += 29 | 30 | ############################################################# 31 | # Recursion Magic - Don't touch this!! 32 | # 33 | # Each subtree potentially has an include directory 34 | # corresponding to the common APIs applicable to modules 35 | # rooted at that subtree. Accordingly, the INCLUDE PATH 36 | # of a module can only contain the include directories up 37 | # its parent path, and not its siblings 38 | # 39 | # Required for each makefile to inherit from the parent 40 | # 41 | 42 | INCLUDES := $(INCLUDES) -I $(PDIR)include 43 | INCLUDES += -I ./ 44 | PDIR := ../$(PDIR) 45 | sinclude $(PDIR)Makefile 46 | 47 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/lib/liblwipcore.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/lib/liblwipcore.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/def.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/def.o .output/eagle/debug/obj/def.d : def.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/def.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/def.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/def.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/dhcp.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/dhcp.o .output/eagle/debug/obj/dhcp.d : dhcp.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/stats.h \ 17 | ../../include/lwip/mem.h ../../include/mem_manager.h \ 18 | ../../include/lwip/memp.h ../../include/lwip/memp_std.h \ 19 | ../../include/lwip/mem.h ../../include/lwip/udp.h \ 20 | ../../include/lwip/pbuf.h ../../include/lwip/err.h \ 21 | ../../include/lwip/netif.h ../../include/lwip/ip_addr.h \ 22 | ../../include/lwip/def.h ../../include/lwip/ip.h \ 23 | ../../include/lwip/sys.h ../../../include/eagle_soc.h \ 24 | ../../include/lwip/dhcp.h ../../include/lwip/autoip.h \ 25 | ../../include/lwip/dns.h ../../include/netif/etharp.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/dhcp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/dhcp.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/dns.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/dns.o .output/eagle/debug/obj/dns.d : dns.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/udp.h \ 17 | ../../include/lwip/pbuf.h ../../include/lwip/err.h \ 18 | ../../include/lwip/netif.h ../../include/lwip/ip_addr.h \ 19 | ../../include/lwip/def.h ../../include/lwip/ip.h \ 20 | ../../include/lwip/mem.h ../../include/mem_manager.h \ 21 | ../../include/lwip/memp.h ../../include/lwip/memp_std.h \ 22 | ../../include/lwip/mem.h ../../include/lwip/dns.h 23 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/dns.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/dns.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/init.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/init.o .output/eagle/debug/obj/init.d : init.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/init.h \ 17 | ../../include/lwip/stats.h ../../include/lwip/mem.h \ 18 | ../../include/mem_manager.h ../../include/lwip/memp.h \ 19 | ../../include/lwip/memp_std.h ../../include/lwip/mem.h \ 20 | ../../include/lwip/sys.h ../../../include/eagle_soc.h \ 21 | ../../include/lwip/pbuf.h ../../include/lwip/err.h \ 22 | ../../include/lwip/netif.h ../../include/lwip/ip_addr.h \ 23 | ../../include/lwip/def.h ../../include/lwip/sockets.h \ 24 | ../../include/lwip/ip.h ../../include/lwip/raw.h \ 25 | ../../include/lwip/udp.h ../../include/lwip/tcp_impl.h \ 26 | ../../include/lwip/tcp.h ../../include/lwip/icmp.h \ 27 | ../../include/lwip/snmp_msg.h ../../include/lwip/snmp.h \ 28 | ../../include/lwip/snmp_structs.h ../../include/lwip/autoip.h \ 29 | ../../include/lwip/igmp.h ../../include/lwip/dns.h \ 30 | ../../include/lwip/timers.h ../../include/netif/etharp.h 31 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/init.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/init.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/mem.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/mem.o .output/eagle/debug/obj/mem.d : mem.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/mem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/mem.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/memp.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/memp.o .output/eagle/debug/obj/memp.d : memp.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/memp.h \ 17 | ../../include/lwip/memp_std.h ../../include/lwip/mem.h \ 18 | ../../include/mem_manager.h ../../include/lwip/pbuf.h \ 19 | ../../include/lwip/err.h ../../include/lwip/udp.h \ 20 | ../../include/lwip/netif.h ../../include/lwip/ip_addr.h \ 21 | ../../include/lwip/def.h ../../include/lwip/ip.h \ 22 | ../../include/lwip/raw.h ../../include/lwip/tcp_impl.h \ 23 | ../../include/lwip/tcp.h ../../include/lwip/sys.h \ 24 | ../../../include/eagle_soc.h ../../include/lwip/mem.h \ 25 | ../../include/lwip/icmp.h ../../include/lwip/igmp.h \ 26 | ../../include/lwip/api.h ../../include/lwip/api_msg.h \ 27 | ../../include/lwip/tcpip.h ../../include/lwip/timers.h \ 28 | ../../include/lwip/stats.h ../../include/netif/etharp.h \ 29 | ../../include/lwip/ip_frag.h ../../include/lwip/snmp_structs.h \ 30 | ../../include/lwip/snmp_msg.h ../../include/lwip/snmp.h \ 31 | ../../include/lwip/dns.h ../../include/netif/ppp_oe.h 32 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/memp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/memp.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/netif.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/netif.o .output/eagle/debug/obj/netif.d : netif.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/def.h \ 17 | ../../include/lwip/ip_addr.h ../../include/lwip/netif.h \ 18 | ../../include/lwip/err.h ../../include/lwip/pbuf.h \ 19 | ../../include/lwip/tcp_impl.h ../../include/lwip/tcp.h \ 20 | ../../include/lwip/sys.h ../../../include/eagle_soc.h \ 21 | ../../include/lwip/mem.h ../../include/mem_manager.h \ 22 | ../../include/lwip/ip.h ../../include/lwip/icmp.h \ 23 | ../../include/lwip/snmp.h ../../include/lwip/igmp.h \ 24 | ../../include/netif/etharp.h ../../include/lwip/stats.h \ 25 | ../../include/lwip/memp.h ../../include/lwip/memp_std.h \ 26 | ../../include/lwip/mem.h ../../include/lwip/dhcp.h \ 27 | ../../include/lwip/udp.h 28 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/netif.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/netif.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/pbuf.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/pbuf.o .output/eagle/debug/obj/pbuf.d : pbuf.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/stats.h \ 17 | ../../include/lwip/mem.h ../../include/mem_manager.h \ 18 | ../../include/lwip/memp.h ../../include/lwip/memp_std.h \ 19 | ../../include/lwip/mem.h ../../include/lwip/def.h \ 20 | ../../include/lwip/pbuf.h ../../include/lwip/err.h \ 21 | ../../include/lwip/sys.h ../../../include/eagle_soc.h \ 22 | ../../include/arch/perf.h ../../include/pp/esf_buf.h 23 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/pbuf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/pbuf.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/raw.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/raw.o .output/eagle/debug/obj/raw.d : raw.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/raw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/raw.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/stats.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/stats.o .output/eagle/debug/obj/stats.d : stats.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h 17 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/stats.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/stats.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/sys.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/sys.o .output/eagle/debug/obj/sys.d : sys.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/sys.h \ 17 | ../../../include/eagle_soc.h 18 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/sys.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/sys.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/sys_arch.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/sys_arch.o .output/eagle/debug/obj/sys_arch.d : sys_arch.c ../../../include/c_types.h \ 2 | ../../../include/ets_sys.h ../../../include/c_types.h \ 3 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 14 | ../../include/user_config.h ../../../include/os_type.h \ 15 | ../../../include/ets_sys.h ../../include/lwip/opt.h \ 16 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 17 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 18 | ../../include/lwip/sys.h ../../../include/eagle_soc.h 19 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/sys_arch.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/sys_arch.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/tcp.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/tcp.o .output/eagle/debug/obj/tcp.d : tcp.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/def.h \ 17 | ../../include/lwip/mem.h ../../include/mem_manager.h \ 18 | ../../include/lwip/memp.h ../../include/lwip/memp_std.h \ 19 | ../../include/lwip/mem.h ../../include/lwip/snmp.h \ 20 | ../../include/lwip/ip_addr.h ../../include/lwip/tcp.h \ 21 | ../../include/lwip/sys.h ../../../include/eagle_soc.h \ 22 | ../../include/lwip/pbuf.h ../../include/lwip/err.h \ 23 | ../../include/lwip/ip.h ../../include/lwip/netif.h \ 24 | ../../include/lwip/icmp.h ../../include/lwip/tcp_impl.h \ 25 | ../../include/lwip/stats.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/tcp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/tcp.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/tcp_in.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/tcp_in.o .output/eagle/debug/obj/tcp_in.d : tcp_in.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/tcp_impl.h \ 17 | ../../include/lwip/tcp.h ../../include/lwip/sys.h \ 18 | ../../../include/eagle_soc.h ../../include/lwip/mem.h \ 19 | ../../include/mem_manager.h ../../include/lwip/pbuf.h \ 20 | ../../include/lwip/err.h ../../include/lwip/ip.h \ 21 | ../../include/lwip/def.h ../../include/lwip/ip_addr.h \ 22 | ../../include/lwip/netif.h ../../include/lwip/icmp.h \ 23 | ../../include/lwip/memp.h ../../include/lwip/memp_std.h \ 24 | ../../include/lwip/mem.h ../../include/lwip/inet_chksum.h \ 25 | ../../include/lwip/stats.h ../../include/lwip/snmp.h \ 26 | ../../include/arch/perf.h 27 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/tcp_in.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/tcp_in.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/tcp_out.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/tcp_out.o .output/eagle/debug/obj/tcp_out.d : tcp_out.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/tcp_impl.h \ 17 | ../../include/lwip/tcp.h ../../include/lwip/sys.h \ 18 | ../../../include/eagle_soc.h ../../include/lwip/mem.h \ 19 | ../../include/mem_manager.h ../../include/lwip/pbuf.h \ 20 | ../../include/lwip/err.h ../../include/lwip/ip.h \ 21 | ../../include/lwip/def.h ../../include/lwip/ip_addr.h \ 22 | ../../include/lwip/netif.h ../../include/lwip/icmp.h \ 23 | ../../include/lwip/memp.h ../../include/lwip/memp_std.h \ 24 | ../../include/lwip/mem.h ../../include/lwip/inet_chksum.h \ 25 | ../../include/lwip/stats.h ../../include/lwip/snmp.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/tcp_out.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/tcp_out.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/timers.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/timers.o .output/eagle/debug/obj/timers.d : timers.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/timers.h \ 17 | ../../include/lwip/err.h ../../include/lwip/sys.h \ 18 | ../../../include/eagle_soc.h ../../include/lwip/tcp_impl.h \ 19 | ../../include/lwip/tcp.h ../../include/lwip/mem.h \ 20 | ../../include/mem_manager.h ../../include/lwip/pbuf.h \ 21 | ../../include/lwip/ip.h ../../include/lwip/def.h \ 22 | ../../include/lwip/ip_addr.h ../../include/lwip/netif.h \ 23 | ../../include/lwip/icmp.h ../../include/lwip/memp.h \ 24 | ../../include/lwip/memp_std.h ../../include/lwip/mem.h \ 25 | ../../include/lwip/tcpip.h ../../include/lwip/ip_frag.h \ 26 | ../../include/netif/etharp.h ../../include/lwip/dhcp.h \ 27 | ../../include/lwip/udp.h ../../include/lwip/autoip.h \ 28 | ../../include/lwip/igmp.h ../../include/lwip/dns.h 29 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/timers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/timers.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/udp.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/udp.o .output/eagle/debug/obj/udp.d : udp.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/udp.h \ 17 | ../../include/lwip/pbuf.h ../../include/lwip/err.h \ 18 | ../../include/lwip/netif.h ../../include/lwip/ip_addr.h \ 19 | ../../include/lwip/def.h ../../include/lwip/ip.h \ 20 | ../../include/lwip/memp.h ../../include/lwip/memp_std.h \ 21 | ../../include/lwip/mem.h ../../include/mem_manager.h \ 22 | ../../include/lwip/inet_chksum.h ../../include/lwip/icmp.h \ 23 | ../../include/lwip/stats.h ../../include/lwip/mem.h \ 24 | ../../include/lwip/snmp.h ../../include/arch/perf.h \ 25 | ../../include/lwip/dhcp.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/udp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/.output/eagle/debug/obj/udp.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | 16 | GEN_LIBS = liblwipcore.a 17 | 18 | endif 19 | 20 | 21 | ############################################################# 22 | # Configuration i.e. compile options etc. 23 | # Target specific stuff (defines etc.) goes in here! 24 | # Generally values applying to a tree are captured in the 25 | # makefile at its root level - these are then overridden 26 | # for a subtree within the makefile rooted therein 27 | # 28 | #DEFINES += 29 | 30 | ############################################################# 31 | # Recursion Magic - Don't touch this!! 32 | # 33 | # Each subtree potentially has an include directory 34 | # corresponding to the common APIs applicable to modules 35 | # rooted at that subtree. Accordingly, the INCLUDE PATH 36 | # of a module can only contain the include directories up 37 | # its parent path, and not its siblings 38 | # 39 | # Required for each makefile to inherit from the parent 40 | # 41 | 42 | INCLUDES := $(INCLUDES) -I $(PDIR)include 43 | INCLUDES += -I ./ 44 | PDIR := ../$(PDIR) 45 | sinclude $(PDIR)Makefile 46 | 47 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/lib/liblwipipv4.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/lib/liblwipipv4.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/autoip.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/autoip.o .output/eagle/debug/obj/autoip.d : autoip.c ../../../include/lwip/opt.h \ 2 | ../../../include/lwipopts.h ../../../include/lwip/debug.h \ 3 | ../../../include/lwip/arch.h ../../../include/arch/cc.h \ 4 | ../../../../include/c_types.h ../../../../include/ets_sys.h \ 5 | ../../../../include/c_types.h ../../../../include/eagle_soc.h \ 6 | ../../../../include/osapi.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 17 | ../../../include/user_config.h 18 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/autoip.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/autoip.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/icmp.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/icmp.o .output/eagle/debug/obj/icmp.d : icmp.c ../../../include/lwip/opt.h ../../../include/lwipopts.h \ 2 | ../../../include/lwip/debug.h ../../../include/lwip/arch.h \ 3 | ../../../include/arch/cc.h ../../../../include/c_types.h \ 4 | ../../../../include/ets_sys.h ../../../../include/c_types.h \ 5 | ../../../../include/eagle_soc.h ../../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../../include/user_config.h ../../../include/lwip/icmp.h \ 17 | ../../../include/lwip/pbuf.h ../../../include/lwip/err.h \ 18 | ../../../include/lwip/ip_addr.h ../../../include/lwip/def.h \ 19 | ../../../include/lwip/netif.h ../../../include/lwip/inet_chksum.h \ 20 | ../../../include/lwip/ip.h ../../../include/lwip/stats.h \ 21 | ../../../include/lwip/mem.h ../../../include/mem_manager.h \ 22 | ../../../include/lwip/memp.h ../../../include/lwip/memp_std.h \ 23 | ../../../include/lwip/mem.h ../../../include/lwip/snmp.h 24 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/icmp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/icmp.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/igmp.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/igmp.o .output/eagle/debug/obj/igmp.d : igmp.c ../../../include/lwip/opt.h ../../../include/lwipopts.h \ 2 | ../../../include/lwip/debug.h ../../../include/lwip/arch.h \ 3 | ../../../include/arch/cc.h ../../../../include/c_types.h \ 4 | ../../../../include/ets_sys.h ../../../../include/c_types.h \ 5 | ../../../../include/eagle_soc.h ../../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../../include/user_config.h ../../../include/lwip/igmp.h \ 17 | ../../../include/lwip/ip_addr.h ../../../include/lwip/def.h \ 18 | ../../../include/lwip/netif.h ../../../include/lwip/err.h \ 19 | ../../../include/lwip/pbuf.h ../../../include/lwip/mem.h \ 20 | ../../../include/mem_manager.h ../../../include/lwip/ip.h \ 21 | ../../../include/lwip/inet_chksum.h ../../../include/lwip/icmp.h \ 22 | ../../../include/lwip/udp.h ../../../include/lwip/tcp.h \ 23 | ../../../include/lwip/sys.h ../../../../include/eagle_soc.h \ 24 | ../../../include/lwip/stats.h ../../../include/lwip/memp.h \ 25 | ../../../include/lwip/memp_std.h ../../../include/lwip/mem.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/igmp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/igmp.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/inet.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/inet.o .output/eagle/debug/obj/inet.d : inet.c ../../../include/lwip/opt.h ../../../include/lwipopts.h \ 2 | ../../../include/lwip/debug.h ../../../include/lwip/arch.h \ 3 | ../../../include/arch/cc.h ../../../../include/c_types.h \ 4 | ../../../../include/ets_sys.h ../../../../include/c_types.h \ 5 | ../../../../include/eagle_soc.h ../../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../../include/user_config.h ../../../include/lwip/inet.h \ 17 | ../../../include/lwip/def.h ../../../include/lwip/ip_addr.h 18 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/inet.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/inet.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/inet_chksum.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/inet_chksum.o .output/eagle/debug/obj/inet_chksum.d : inet_chksum.c ../../../include/lwip/opt.h \ 2 | ../../../include/lwipopts.h ../../../include/lwip/debug.h \ 3 | ../../../include/lwip/arch.h ../../../include/arch/cc.h \ 4 | ../../../../include/c_types.h ../../../../include/ets_sys.h \ 5 | ../../../../include/c_types.h ../../../../include/eagle_soc.h \ 6 | ../../../../include/osapi.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 17 | ../../../include/user_config.h ../../../include/lwip/inet_chksum.h \ 18 | ../../../include/lwip/pbuf.h ../../../include/lwip/err.h \ 19 | ../../../include/lwip/ip_addr.h ../../../include/lwip/def.h 20 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/inet_chksum.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/inet_chksum.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/ip.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ip.o .output/eagle/debug/obj/ip.d : ip.c ../../../include/lwip/opt.h ../../../include/lwipopts.h \ 2 | ../../../include/lwip/debug.h ../../../include/lwip/arch.h \ 3 | ../../../include/arch/cc.h ../../../../include/c_types.h \ 4 | ../../../../include/ets_sys.h ../../../../include/c_types.h \ 5 | ../../../../include/eagle_soc.h ../../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../../include/user_config.h ../../../include/lwip/ip.h \ 17 | ../../../include/lwip/def.h ../../../include/lwip/pbuf.h \ 18 | ../../../include/lwip/err.h ../../../include/lwip/ip_addr.h \ 19 | ../../../include/lwip/netif.h ../../../include/lwip/mem.h \ 20 | ../../../include/mem_manager.h ../../../include/lwip/ip_frag.h \ 21 | ../../../include/lwip/inet_chksum.h ../../../include/lwip/icmp.h \ 22 | ../../../include/lwip/igmp.h ../../../include/lwip/raw.h \ 23 | ../../../include/lwip/udp.h ../../../include/lwip/tcp_impl.h \ 24 | ../../../include/lwip/tcp.h ../../../include/lwip/sys.h \ 25 | ../../../../include/eagle_soc.h ../../../include/lwip/snmp.h \ 26 | ../../../include/lwip/dhcp.h ../../../include/lwip/autoip.h \ 27 | ../../../include/lwip/stats.h ../../../include/lwip/memp.h \ 28 | ../../../include/lwip/memp_std.h ../../../include/lwip/mem.h \ 29 | ../../../include/arch/perf.h 30 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/ip.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/ip.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/ip_addr.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ip_addr.o .output/eagle/debug/obj/ip_addr.d : ip_addr.c ../../../include/lwip/opt.h \ 2 | ../../../include/lwipopts.h ../../../include/lwip/debug.h \ 3 | ../../../include/lwip/arch.h ../../../include/arch/cc.h \ 4 | ../../../../include/c_types.h ../../../../include/ets_sys.h \ 5 | ../../../../include/c_types.h ../../../../include/eagle_soc.h \ 6 | ../../../../include/osapi.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 17 | ../../../include/user_config.h ../../../include/lwip/ip_addr.h \ 18 | ../../../include/lwip/def.h ../../../include/lwip/netif.h \ 19 | ../../../include/lwip/err.h ../../../include/lwip/pbuf.h 20 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/ip_addr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/ip_addr.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/ip_frag.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ip_frag.o .output/eagle/debug/obj/ip_frag.d : ip_frag.c ../../../include/lwip/opt.h \ 2 | ../../../include/lwipopts.h ../../../include/lwip/debug.h \ 3 | ../../../include/lwip/arch.h ../../../include/arch/cc.h \ 4 | ../../../../include/c_types.h ../../../../include/ets_sys.h \ 5 | ../../../../include/c_types.h ../../../../include/eagle_soc.h \ 6 | ../../../../include/osapi.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 17 | ../../../include/user_config.h ../../../include/lwip/ip_frag.h \ 18 | ../../../include/lwip/err.h ../../../include/lwip/pbuf.h \ 19 | ../../../include/lwip/netif.h ../../../include/lwip/ip_addr.h \ 20 | ../../../include/lwip/def.h ../../../include/lwip/ip.h \ 21 | ../../../include/lwip/inet_chksum.h ../../../include/lwip/snmp.h \ 22 | ../../../include/lwip/stats.h ../../../include/lwip/mem.h \ 23 | ../../../include/mem_manager.h ../../../include/lwip/memp.h \ 24 | ../../../include/lwip/memp_std.h ../../../include/lwip/mem.h \ 25 | ../../../include/lwip/icmp.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/ip_frag.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/.output/eagle/debug/obj/ip_frag.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | 16 | GEN_LIBS = liblwipipv4.a 17 | 18 | endif 19 | 20 | 21 | ############################################################# 22 | # Configuration i.e. compile options etc. 23 | # Target specific stuff (defines etc.) goes in here! 24 | # Generally values applying to a tree are captured in the 25 | # makefile at its root level - these are then overridden 26 | # for a subtree within the makefile rooted therein 27 | # 28 | #DEFINES += 29 | 30 | ############################################################# 31 | # Recursion Magic - Don't touch this!! 32 | # 33 | # Each subtree potentially has an include directory 34 | # corresponding to the common APIs applicable to modules 35 | # rooted at that subtree. Accordingly, the INCLUDE PATH 36 | # of a module can only contain the include directories up 37 | # its parent path, and not its siblings 38 | # 39 | # Required for each makefile to inherit from the parent 40 | # 41 | 42 | INCLUDES := $(INCLUDES) -I $(PDIR)include 43 | INCLUDES += -I ./ 44 | PDIR := ../$(PDIR) 45 | sinclude $(PDIR)Makefile 46 | 47 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/icmp.c -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/ipv4/inet.c: -------------------------------------------------------------------------------- 1 | /** 2 | * @file 3 | * Functions common to all TCP/IPv4 modules, such as the byte order functions. 4 | * 5 | */ 6 | 7 | /* 8 | * Copyright (c) 2001-2004 Swedish Institute of Computer Science. 9 | * All rights reserved. 10 | * 11 | * Redistribution and use in source and binary forms, with or without modification, 12 | * are permitted provided that the following conditions are met: 13 | * 14 | * 1. Redistributions of source code must retain the above copyright notice, 15 | * this list of conditions and the following disclaimer. 16 | * 2. Redistributions in binary form must reproduce the above copyright notice, 17 | * this list of conditions and the following disclaimer in the documentation 18 | * and/or other materials provided with the distribution. 19 | * 3. The name of the author may not be used to endorse or promote products 20 | * derived from this software without specific prior written permission. 21 | * 22 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 23 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 24 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 25 | * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 26 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 27 | * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 28 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 29 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 30 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 31 | * OF SUCH DAMAGE. 32 | * 33 | * This file is part of the lwIP TCP/IP stack. 34 | * 35 | * Author: Adam Dunkels 36 | * 37 | */ 38 | 39 | #include "lwip/opt.h" 40 | 41 | #include "lwip/inet.h" 42 | 43 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/sys_arch.c: -------------------------------------------------------------------------------- 1 | /* 2 | * copyright (c) 2010 - 2011 espressif system 3 | */ 4 | 5 | #include "c_types.h" 6 | #include "ets_sys.h" 7 | #include "osapi.h" 8 | #include "os_type.h" 9 | 10 | #include "lwip/opt.h" 11 | #include "lwip/sys.h" 12 | 13 | #include "eagle_soc.h" 14 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/tcp_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/tcp_in.c -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/tcp_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/core/tcp_out.c -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/netif/.output/eagle/debug/lib/liblwipnetif.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/netif/.output/eagle/debug/lib/liblwipnetif.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/netif/.output/eagle/debug/obj/etharp.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/etharp.o .output/eagle/debug/obj/etharp.d : etharp.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/ip_addr.h \ 17 | ../../include/lwip/def.h ../../include/lwip/ip.h \ 18 | ../../include/lwip/pbuf.h ../../include/lwip/err.h \ 19 | ../../include/lwip/netif.h ../../include/lwip/stats.h \ 20 | ../../include/lwip/mem.h ../../include/mem_manager.h \ 21 | ../../include/lwip/memp.h ../../include/lwip/memp_std.h \ 22 | ../../include/lwip/mem.h ../../include/lwip/snmp.h \ 23 | ../../include/lwip/dhcp.h ../../include/lwip/udp.h \ 24 | ../../include/lwip/autoip.h ../../include/netif/etharp.h 25 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/netif/.output/eagle/debug/obj/etharp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/lwip/netif/.output/eagle/debug/obj/etharp.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/lwip/netif/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | 16 | GEN_LIBS = liblwipnetif.a 17 | 18 | endif 19 | 20 | 21 | ############################################################# 22 | # Configuration i.e. compile options etc. 23 | # Target specific stuff (defines etc.) goes in here! 24 | # Generally values applying to a tree are captured in the 25 | # makefile at its root level - these are then overridden 26 | # for a subtree within the makefile rooted therein 27 | # 28 | #DEFINES += 29 | 30 | ############################################################# 31 | # Recursion Magic - Don't touch this!! 32 | # 33 | # Each subtree potentially has an include directory 34 | # corresponding to the common APIs applicable to modules 35 | # rooted at that subtree. Accordingly, the INCLUDE PATH 36 | # of a module can only contain the include directories up 37 | # its parent path, and not its siblings 38 | # 39 | # Required for each makefile to inherit from the parent 40 | # 41 | 42 | INCLUDES := $(INCLUDES) -I $(PDIR)include 43 | INCLUDES += -I ./ 44 | PDIR := ../$(PDIR) 45 | sinclude $(PDIR)Makefile 46 | 47 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | UP_EXTRACT_DIR = .. 16 | GEN_LIBS = libssl.a 17 | COMPONENTS_libssl = crypto/libsslcrypto.a \ 18 | ssl/libsslssl.a \ 19 | app/libsslapp.a 20 | endif 21 | 22 | 23 | ############################################################# 24 | # Configuration i.e. compile options etc. 25 | # Target specific stuff (defines etc.) goes in here! 26 | # Generally values applying to a tree are captured in the 27 | # makefile at its root level - these are then overridden 28 | # for a subtree within the makefile rooted therein 29 | # 30 | #DEFINES += 31 | 32 | ############################################################# 33 | # Recursion Magic - Don't touch this!! 34 | # 35 | # Each subtree potentially has an include directory 36 | # corresponding to the common APIs applicable to modules 37 | # rooted at that subtree. Accordingly, the INCLUDE PATH 38 | # of a module can only contain the include directories up 39 | # its parent path, and not its siblings 40 | # 41 | # Required for each makefile to inherit from the parent 42 | # 43 | 44 | INCLUDES := $(INCLUDES) -I $(PDIR)include 45 | INCLUDES += -I ./ 46 | PDIR := ../$(PDIR) 47 | sinclude $(PDIR)Makefile 48 | 49 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/app/.output/eagle/debug/lib/libsslapp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/app/.output/eagle/debug/lib/libsslapp.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/app/.output/eagle/debug/obj/espconn_secure.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/espconn_secure.o .output/eagle/debug/obj/espconn_secure.d : espconn_secure.c ../../include/lwip/netif.h \ 2 | ../../include/lwip/opt.h ../../include/lwipopts.h \ 3 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 4 | ../../include/arch/cc.h ../../../include/c_types.h \ 5 | ../../../include/ets_sys.h ../../../include/c_types.h \ 6 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 17 | ../../include/user_config.h ../../include/lwip/err.h \ 18 | ../../include/lwip/ip_addr.h ../../include/lwip/def.h \ 19 | ../../include/lwip/pbuf.h ../../include/lwip/inet.h \ 20 | ../../include/netif/etharp.h ../../include/lwip/ip.h \ 21 | ../../include/lwip/tcp.h ../../include/lwip/sys.h \ 22 | ../../../include/eagle_soc.h ../../include/lwip/mem.h \ 23 | ../../include/mem_manager.h ../../include/lwip/icmp.h \ 24 | ../../include/lwip/init.h ../../../include/os_type.h \ 25 | ../../../include/ets_sys.h ../../include/ssl/app/espconn_ssl.h \ 26 | ../../include/ssl/ssl_ssl.h ../../include/ssl/ssl_tls1.h \ 27 | ../../include/ssl/ssl_version.h ../../include/ssl/ssl_config.h \ 28 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_bigint_impl.h \ 29 | ../../include/ssl/ssl_bigint.h ../../include/ssl/ssl_crypto_misc.h \ 30 | ../../include/lwip/app/espconn.h ../../include/lwip/dns.h 31 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/app/.output/eagle/debug/obj/espconn_secure.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/app/.output/eagle/debug/obj/espconn_secure.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/app/.output/eagle/debug/obj/espconn_ssl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/app/.output/eagle/debug/obj/espconn_ssl.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/app/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | 16 | GEN_LIBS = libsslapp.a 17 | 18 | endif 19 | 20 | 21 | ############################################################# 22 | # Configuration i.e. compile options etc. 23 | # Target specific stuff (defines etc.) goes in here! 24 | # Generally values applying to a tree are captured in the 25 | # makefile at its root level - these are then overridden 26 | # for a subtree within the makefile rooted therein 27 | # 28 | #DEFINES += 29 | 30 | ############################################################# 31 | # Recursion Magic - Don't touch this!! 32 | # 33 | # Each subtree potentially has an include directory 34 | # corresponding to the common APIs applicable to modules 35 | # rooted at that subtree. Accordingly, the INCLUDE PATH 36 | # of a module can only contain the include directories up 37 | # its parent path, and not its siblings 38 | # 39 | # Required for each makefile to inherit from the parent 40 | # 41 | 42 | INCLUDES := $(INCLUDES) -I $(PDIR)include 43 | INCLUDES += -I ./ 44 | PDIR := ../$(PDIR) 45 | sinclude $(PDIR)Makefile 46 | 47 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/lib/libsslcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/lib/libsslcrypto.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_aes.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_aes.o .output/eagle/debug/obj/ssl_aes.d : ssl_aes.c ../../include/lwip/opt.h ../../include/lwipopts.h \ 2 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 3 | ../../include/arch/cc.h ../../../include/c_types.h \ 4 | ../../../include/ets_sys.h ../../../include/c_types.h \ 5 | ../../../include/eagle_soc.h ../../../include/osapi.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 16 | ../../include/user_config.h ../../include/lwip/def.h \ 17 | ../../include/ssl/ssl_os_port.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 19 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 20 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 21 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 22 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 23 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_config.h \ 24 | ../../include/ssl/ssl_bigint_impl.h ../../include/ssl/ssl_bigint.h 25 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_aes.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_aes.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_bigint.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_bigint.o .output/eagle/debug/obj/ssl_bigint.d : ssl_bigint.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 19 | ../../include/ssl/ssl_bigint.h ../../include/ssl/ssl_crypto.h \ 20 | ../../include/ssl/ssl_config.h ../../include/ssl/ssl_bigint_impl.h \ 21 | ../../include/lwip/mem.h ../../include/lwip/opt.h \ 22 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 23 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 24 | ../../../include/ets_sys.h ../../../include/c_types.h \ 25 | ../../../include/eagle_soc.h ../../include/mem_manager.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_bigint.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_bigint.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_crypto_misc.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_crypto_misc.o .output/eagle/debug/obj/ssl_crypto_misc.d : ssl_crypto_misc.c \ 2 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdlib.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/stdlib.h \ 13 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/alloca.h \ 14 | ../../include/ssl/ssl_os_port.h ../../../include/c_types.h \ 15 | ../../../include/osapi.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 17 | ../../include/user_config.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 19 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 20 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 21 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 22 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 23 | ../../include/ssl/ssl_crypto_misc.h ../../include/ssl/ssl_crypto.h \ 24 | ../../include/ssl/ssl_config.h ../../include/ssl/ssl_bigint_impl.h \ 25 | ../../include/ssl/ssl_bigint.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_crypto_misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_crypto_misc.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_hmac.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_hmac.o .output/eagle/debug/obj/ssl_hmac.d : ssl_hmac.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 19 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_config.h \ 20 | ../../include/ssl/ssl_bigint_impl.h ../../include/ssl/ssl_bigint.h 21 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_hmac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_hmac.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_md2.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_md2.o .output/eagle/debug/obj/ssl_md2.d : ssl_md2.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 19 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_config.h \ 20 | ../../include/ssl/ssl_bigint_impl.h ../../include/ssl/ssl_bigint.h \ 21 | ../../include/lwip/mem.h ../../include/lwip/opt.h \ 22 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 23 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 24 | ../../../include/ets_sys.h ../../../include/c_types.h \ 25 | ../../../include/eagle_soc.h ../../include/mem_manager.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_md2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_md2.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_md5.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_md5.o .output/eagle/debug/obj/ssl_md5.d : ssl_md5.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 19 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_config.h \ 20 | ../../include/ssl/ssl_bigint_impl.h ../../include/ssl/ssl_bigint.h \ 21 | ../../include/lwip/mem.h ../../include/lwip/opt.h \ 22 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 23 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 24 | ../../../include/ets_sys.h ../../../include/c_types.h \ 25 | ../../../include/eagle_soc.h ../../include/mem_manager.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_md5.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_md5.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_rc4.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_rc4.o .output/eagle/debug/obj/ssl_rc4.d : ssl_rc4.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 19 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_config.h \ 20 | ../../include/ssl/ssl_bigint_impl.h ../../include/ssl/ssl_bigint.h 21 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_rc4.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_rc4.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_rsa.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_rsa.o .output/eagle/debug/obj/ssl_rsa.d : ssl_rsa.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 19 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_config.h \ 20 | ../../include/ssl/ssl_bigint_impl.h ../../include/ssl/ssl_bigint.h \ 21 | ../../include/lwip/mem.h ../../include/lwip/opt.h \ 22 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 23 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 24 | ../../../include/ets_sys.h ../../../include/c_types.h \ 25 | ../../../include/eagle_soc.h ../../include/mem_manager.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_rsa.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_rsa.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_sha1.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_sha1.o .output/eagle/debug/obj/ssl_sha1.d : ssl_sha1.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 19 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_config.h \ 20 | ../../include/ssl/ssl_bigint_impl.h ../../include/ssl/ssl_bigint.h \ 21 | ../../include/lwip/mem.h ../../include/lwip/opt.h \ 22 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 23 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 24 | ../../../include/ets_sys.h ../../../include/c_types.h \ 25 | ../../../include/eagle_soc.h ../../include/mem_manager.h 26 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_sha1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/.output/eagle/debug/obj/ssl_sha1.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/crypto/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | 16 | GEN_LIBS = libsslcrypto.a 17 | 18 | endif 19 | 20 | 21 | ############################################################# 22 | # Configuration i.e. compile options etc. 23 | # Target specific stuff (defines etc.) goes in here! 24 | # Generally values applying to a tree are captured in the 25 | # makefile at its root level - these are then overridden 26 | # for a subtree within the makefile rooted therein 27 | # 28 | #DEFINES += 29 | 30 | ############################################################# 31 | # Recursion Magic - Don't touch this!! 32 | # 33 | # Each subtree potentially has an include directory 34 | # corresponding to the common APIs applicable to modules 35 | # rooted at that subtree. Accordingly, the INCLUDE PATH 36 | # of a module can only contain the include directories up 37 | # its parent path, and not its siblings 38 | # 39 | # Required for each makefile to inherit from the parent 40 | # 41 | 42 | INCLUDES := $(INCLUDES) -I $(PDIR)include 43 | INCLUDES += -I ./ 44 | PDIR := ../$(PDIR) 45 | sinclude $(PDIR)Makefile 46 | 47 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/lib/libsslssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/lib/libsslssl.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_asn1.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_asn1.o .output/eagle/debug/obj/ssl_asn1.d : ssl_asn1.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 19 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_config.h \ 20 | ../../include/ssl/ssl_bigint_impl.h ../../include/ssl/ssl_bigint.h \ 21 | ../../include/ssl/ssl_crypto_misc.h ../../include/lwip/mem.h \ 22 | ../../include/lwip/opt.h ../../include/lwipopts.h \ 23 | ../../include/lwip/debug.h ../../include/lwip/arch.h \ 24 | ../../include/arch/cc.h ../../../include/ets_sys.h \ 25 | ../../../include/c_types.h ../../../include/eagle_soc.h \ 26 | ../../include/mem_manager.h 27 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_asn1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_asn1.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_gen_cert.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_gen_cert.o .output/eagle/debug/obj/ssl_gen_cert.d : ssl_gen_cert.c ../../include/ssl/ssl_config.h 2 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_gen_cert.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_gen_cert.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_loader.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_loader.o .output/eagle/debug/obj/ssl_loader.d : ssl_loader.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 19 | ../../include/ssl/ssl_ssl.h ../../include/ssl/ssl_tls1.h \ 20 | ../../include/ssl/ssl_version.h ../../include/ssl/ssl_config.h \ 21 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_bigint_impl.h \ 22 | ../../include/ssl/ssl_bigint.h ../../include/ssl/ssl_crypto_misc.h \ 23 | ../../include/lwip/tcp.h ../../include/lwip/opt.h \ 24 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 25 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 26 | ../../../include/ets_sys.h ../../../include/c_types.h \ 27 | ../../../include/eagle_soc.h ../../include/lwip/sys.h \ 28 | ../../../include/eagle_soc.h ../../include/lwip/mem.h \ 29 | ../../include/mem_manager.h ../../include/lwip/pbuf.h \ 30 | ../../include/lwip/err.h ../../include/lwip/ip.h \ 31 | ../../include/lwip/def.h ../../include/lwip/ip_addr.h \ 32 | ../../include/lwip/netif.h ../../include/lwip/icmp.h 33 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_loader.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_loader.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_openssl.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_openssl.o .output/eagle/debug/obj/ssl_openssl.d : ssl_openssl.c ../../include/ssl/ssl_config.h 2 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_openssl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_openssl.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_os_port.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_os_port.o .output/eagle/debug/obj/ssl_os_port.d : ssl_os_port.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h 19 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_os_port.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_os_port.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_p12.d: -------------------------------------------------------------------------------- 1 | .output/eagle/debug/obj/ssl_p12.o .output/eagle/debug/obj/ssl_p12.d : ssl_p12.c ../../include/ssl/ssl_os_port.h \ 2 | ../../../include/c_types.h ../../../include/osapi.h \ 3 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/string.h \ 4 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 5 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/newlib.h \ 6 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/config.h \ 7 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/ieeefp.h \ 8 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/reent.h \ 9 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/_ansi.h \ 10 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/_types.h \ 11 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/lock.h \ 12 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stddef.h \ 13 | ../../include/user_config.h \ 14 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdio.h \ 15 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/stdarg.h \ 16 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/types.h \ 17 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/machine/types.h \ 18 | /opt/xtensa-lx106-elf/lib/gcc/xtensa-lx106-elf/4.8.2/include/sys/stdio.h \ 19 | ../../include/ssl/ssl_ssl.h ../../include/ssl/ssl_tls1.h \ 20 | ../../include/ssl/ssl_version.h ../../include/ssl/ssl_config.h \ 21 | ../../include/ssl/ssl_crypto.h ../../include/ssl/ssl_bigint_impl.h \ 22 | ../../include/ssl/ssl_bigint.h ../../include/ssl/ssl_crypto_misc.h \ 23 | ../../include/lwip/tcp.h ../../include/lwip/opt.h \ 24 | ../../include/lwipopts.h ../../include/lwip/debug.h \ 25 | ../../include/lwip/arch.h ../../include/arch/cc.h \ 26 | ../../../include/ets_sys.h ../../../include/c_types.h \ 27 | ../../../include/eagle_soc.h ../../include/lwip/sys.h \ 28 | ../../../include/eagle_soc.h ../../include/lwip/mem.h \ 29 | ../../include/mem_manager.h ../../include/lwip/pbuf.h \ 30 | ../../include/lwip/err.h ../../include/lwip/ip.h \ 31 | ../../include/lwip/def.h ../../include/lwip/ip_addr.h \ 32 | ../../include/lwip/netif.h ../../include/lwip/icmp.h 33 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_p12.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_p12.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_tls1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_tls1.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_tls1_clnt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_tls1_clnt.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_tls1_svr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_tls1_svr.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_x509.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/.output/eagle/debug/obj/ssl_x509.o -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/ssl/ssl/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | 16 | GEN_LIBS = libsslssl.a 17 | 18 | endif 19 | 20 | 21 | ############################################################# 22 | # Configuration i.e. compile options etc. 23 | # Target specific stuff (defines etc.) goes in here! 24 | # Generally values applying to a tree are captured in the 25 | # makefile at its root level - these are then overridden 26 | # for a subtree within the makefile rooted therein 27 | # 28 | #DEFINES += 29 | 30 | ############################################################# 31 | # Recursion Magic - Don't touch this!! 32 | # 33 | # Each subtree potentially has an include directory 34 | # corresponding to the common APIs applicable to modules 35 | # rooted at that subtree. Accordingly, the INCLUDE PATH 36 | # of a module can only contain the include directories up 37 | # its parent path, and not its siblings 38 | # 39 | # Required for each makefile to inherit from the parent 40 | # 41 | 42 | INCLUDES := $(INCLUDES) -I $(PDIR)include 43 | INCLUDES += -I ./ 44 | PDIR := ../$(PDIR) 45 | sinclude $(PDIR)Makefile 46 | 47 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/upgrade/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | 16 | GEN_LIBS = libupgrade.a 17 | 18 | endif 19 | 20 | 21 | ############################################################# 22 | # Configuration i.e. compile options etc. 23 | # Target specific stuff (defines etc.) goes in here! 24 | # Generally values applying to a tree are captured in the 25 | # makefile at its root level - these are then overridden 26 | # for a subtree within the makefile rooted therein 27 | # 28 | #DEFINES += 29 | 30 | ############################################################# 31 | # Recursion Magic - Don't touch this!! 32 | # 33 | # Each subtree potentially has an include directory 34 | # corresponding to the common APIs applicable to modules 35 | # rooted at that subtree. Accordingly, the INCLUDE PATH 36 | # of a module can only contain the include directories up 37 | # its parent path, and not its siblings 38 | # 39 | # Required for each makefile to inherit from the parent 40 | # 41 | 42 | INCLUDES := $(INCLUDES) -I $(PDIR)include 43 | INCLUDES += -I ./ 44 | INCLUDES += -I ../../include/ets 45 | PDIR := ../$(PDIR) 46 | sinclude $(PDIR)Makefile 47 | 48 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/user/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ############################################################# 3 | # Required variables for each makefile 4 | # Discard this section from all parent makefiles 5 | # Expected variables (with automatic defaults): 6 | # CSRCS (all "C" files in the dir) 7 | # SUBDIRS (all subdirs with a Makefile) 8 | # GEN_LIBS - list of libs to be generated () 9 | # GEN_IMAGES - list of images to be generated () 10 | # COMPONENTS_xxx - a list of libs/objs in the form 11 | # subdir/lib to be extracted and rolled up into 12 | # a generated lib/image xxx.a () 13 | # 14 | ifndef PDIR 15 | GEN_LIBS = libuser.a 16 | endif 17 | 18 | 19 | ############################################################# 20 | # Configuration i.e. compile options etc. 21 | # Target specific stuff (defines etc.) goes in here! 22 | # Generally values applying to a tree are captured in the 23 | # makefile at its root level - these are then overridden 24 | # for a subtree within the makefile rooted therein 25 | # 26 | #DEFINES += 27 | 28 | ############################################################# 29 | # Recursion Magic - Don't touch this!! 30 | # 31 | # Each subtree potentially has an include directory 32 | # corresponding to the common APIs applicable to modules 33 | # rooted at that subtree. Accordingly, the INCLUDE PATH 34 | # of a module can only contain the include directories up 35 | # its parent path, and not its siblings 36 | # 37 | # Required for each makefile to inherit from the parent 38 | # 39 | 40 | INCLUDES := $(INCLUDES) -I $(PDIR)include 41 | INCLUDES += -I ./ 42 | INCLUDES += -I ../../include/ets 43 | PDIR := ../$(PDIR) 44 | sinclude $(PDIR)Makefile 45 | 46 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/user/smartconfig.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 -2015 By younger 3 | * 4 | */ 5 | 6 | #ifndef __SMARTCONFIG_H__ 7 | #define __SMARTCONFIG_H__ 8 | 9 | #include "ets_sys.h" 10 | #include "osapi.h" 11 | #include "mem.h" 12 | #include "user_interface.h" 13 | 14 | #define RECEVEBUF_MAXLEN 90 15 | #define SCAN_TIME 1000 16 | 17 | typedef enum _encrytion_mode { 18 | ENCRY_NONE = 1, 19 | ENCRY_WEP, 20 | ENCRY_TKIP, 21 | ENCRY_CCMP 22 | } ENCYTPTION_MODE; 23 | 24 | struct router_info { 25 | SLIST_ENTRY(router_info) next; 26 | 27 | u8 bssid[6]; 28 | u8 channel; 29 | u8 authmode; 30 | 31 | u16 rx_seq; 32 | u8 encrytion_mode; 33 | u8 iv[8]; 34 | u8 iv_check; 35 | }; 36 | 37 | enum smart_status 38 | { 39 | SMART_CH_INIT = 0x1, 40 | SMART_CH_LOCKING = 0x2, 41 | SMART_CH_LOCKED = 0x4 42 | }; 43 | 44 | 45 | void smartconfig_init(void); 46 | 47 | #endif 48 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/app/user/user_main.c: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright 2013-2014 Espressif Systems (Wuxi) 3 | * 4 | * FileName: user_main.c 5 | * 6 | * Description: entry file of user application 7 | * 8 | * Modification history: 9 | * 2014/1/1, v1.0 create this file. 10 | *******************************************************************************/ 11 | #include "smartconfig.h" 12 | 13 | /****************************************************************************** 14 | * FunctionName : system_init_done 15 | * Description : after system init done ,start smartconfig 16 | * Parameters : none 17 | * Returns : none 18 | *******************************************************************************/ 19 | 20 | void ICACHE_FLASH_ATTR 21 | system_init_done(void) 22 | { 23 | smartconfig_init(); 24 | } 25 | 26 | /****************************************************************************** 27 | * FunctionName : user_init 28 | * Description : entry of user application, init user function here 29 | * Parameters : none 30 | * Returns : none 31 | *******************************************************************************/ 32 | void user_init(void) 33 | { 34 | uart_init(115200,115200); 35 | wifi_set_opmode(STATION_MODE); 36 | system_init_done_cb(system_init_done); 37 | } 38 | 39 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/bin/_temp_by_dltool/boot_v1.1.bin_rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/bin/_temp_by_dltool/boot_v1.1.bin_rep -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/bin/blank.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/bin/blank.bin -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/bin/boot_v1.1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/bin/boot_v1.1.bin -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/bin/esp_init_data_default.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/bin/esp_init_data_default.bin -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/include/ets_sys.h: -------------------------------------------------------------------------------- 1 | /* 2 | * copyright (c) 2008 - 2011 Espressif System 3 | * 4 | * Define user specified Event signals and Task priorities here 5 | * 6 | */ 7 | 8 | #ifndef _ETS_SYS_H 9 | #define _ETS_SYS_H 10 | 11 | #include "c_types.h" 12 | #include "eagle_soc.h" 13 | 14 | typedef uint32_t ETSSignal; 15 | typedef uint32_t ETSParam; 16 | 17 | typedef struct ETSEventTag ETSEvent; 18 | 19 | struct ETSEventTag { 20 | ETSSignal sig; 21 | ETSParam par; 22 | }; 23 | 24 | typedef void (*ETSTask)(ETSEvent *e); 25 | 26 | /* timer related */ 27 | typedef uint32_t ETSHandle; 28 | typedef void ETSTimerFunc(void *timer_arg); 29 | 30 | typedef struct _ETSTIMER_ { 31 | struct _ETSTIMER_ *timer_next; 32 | uint32_t timer_expire; 33 | uint32_t timer_period; 34 | ETSTimerFunc *timer_func; 35 | void *timer_arg; 36 | } ETSTimer; 37 | 38 | /* interrupt related */ 39 | #define ETS_GPIO_INUM 4 40 | #define ETS_UART_INUM 5 41 | #define ETS_UART1_INUM 5 42 | #define ETS_FRC_TIMER1_INUM 9 /* use edge*/ 43 | 44 | #define ETS_INTR_LOCK() \ 45 | ets_intr_lock() 46 | 47 | #define ETS_INTR_UNLOCK() \ 48 | ets_intr_unlock() 49 | 50 | #define ETS_FRC_TIMER1_INTR_ATTACH(func, arg) \ 51 | ets_isr_attach(ETS_FRC_TIMER1_INUM, (func), (void *)(arg)) 52 | 53 | #define ETS_GPIO_INTR_ATTACH(func, arg) \ 54 | ets_isr_attach(ETS_GPIO_INUM, (func), (void *)(arg)) 55 | 56 | #define ETS_UART_INTR_ATTACH(func, arg) \ 57 | ets_isr_attach(ETS_UART_INUM, (func), (void *)(arg)) 58 | 59 | #define ETS_INTR_ENABLE(inum) \ 60 | ets_isr_unmask((1<addr = ((uint32)((d) & 0xff) << 24) | \ 20 | ((uint32)((c) & 0xff) << 16) | \ 21 | ((uint32)((b) & 0xff) << 8) | \ 22 | (uint32)((a) & 0xff) 23 | 24 | /** 25 | * Determine if two address are on the same network. 26 | * 27 | * @arg addr1 IP address 1 28 | * @arg addr2 IP address 2 29 | * @arg mask network identifier mask 30 | * @return !0 if the network identifiers of both address match 31 | */ 32 | #define ip_addr_netcmp(addr1, addr2, mask) (((addr1)->addr & \ 33 | (mask)->addr) == \ 34 | ((addr2)->addr & \ 35 | (mask)->addr)) 36 | 37 | /** Set an IP address given by the four byte-parts. 38 | Little-endian version that prevents the use of htonl. */ 39 | #define IP4_ADDR(ipaddr, a,b,c,d) \ 40 | (ipaddr)->addr = ((uint32)((d) & 0xff) << 24) | \ 41 | ((uint32)((c) & 0xff) << 16) | \ 42 | ((uint32)((b) & 0xff) << 8) | \ 43 | (uint32)((a) & 0xff) 44 | 45 | #define ip4_addr1(ipaddr) (((uint8*)(ipaddr))[0]) 46 | #define ip4_addr2(ipaddr) (((uint8*)(ipaddr))[1]) 47 | #define ip4_addr3(ipaddr) (((uint8*)(ipaddr))[2]) 48 | #define ip4_addr4(ipaddr) (((uint8*)(ipaddr))[3]) 49 | 50 | #define ip4_addr1_16(ipaddr) ((uint16)ip4_addr1(ipaddr)) 51 | #define ip4_addr2_16(ipaddr) ((uint16)ip4_addr2(ipaddr)) 52 | #define ip4_addr3_16(ipaddr) ((uint16)ip4_addr3(ipaddr)) 53 | #define ip4_addr4_16(ipaddr) ((uint16)ip4_addr4(ipaddr)) 54 | 55 | uint32 ipaddr_addr(const char *cp); 56 | 57 | #define IP2STR(ipaddr) ip4_addr1_16(ipaddr), \ 58 | ip4_addr2_16(ipaddr), \ 59 | ip4_addr3_16(ipaddr), \ 60 | ip4_addr4_16(ipaddr) 61 | 62 | #define IPSTR "%d.%d.%d.%d" 63 | 64 | #endif /* __IP_ADDR_H__ */ 65 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/include/mem.h: -------------------------------------------------------------------------------- 1 | #ifndef __MEM_H__ 2 | #define __MEM_H__ 3 | 4 | //void *pvPortMalloc( size_t xWantedSize ); 5 | //void vPortFree( void *pv ); 6 | //void *pvPortZalloc(size_t size); 7 | 8 | #define os_malloc pvPortMalloc 9 | #define os_free vPortFree 10 | #define os_zalloc pvPortZalloc 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/include/os_type.h: -------------------------------------------------------------------------------- 1 | /* 2 | * copyright (c) Espressif System 2010 3 | * 4 | * mapping to ETS structures 5 | * 6 | */ 7 | #ifndef _OS_TYPES_H_ 8 | #define _OS_TYPES_H_ 9 | 10 | #include "ets_sys.h" 11 | 12 | #define os_signal_t ETSSignal 13 | #define os_param_t ETSParam 14 | #define os_event_t ETSEvent 15 | #define os_task_t ETSTask 16 | #define os_timer_t ETSTimer 17 | #define os_timer_func_t ETSTimerFunc 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/include/osapi.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2010 Espressif System 3 | */ 4 | 5 | #ifndef _OSAPI_H_ 6 | #define _OSAPI_H_ 7 | 8 | #include 9 | #include "user_config.h" 10 | 11 | #define os_bzero ets_bzero 12 | #define os_delay_us ets_delay_us 13 | #define os_install_putc1 ets_install_putc1 14 | #define os_install_putc2 ets_install_putc2 15 | #define os_intr_lock ets_intr_lock 16 | #define os_intr_unlock ets_intr_unlock 17 | #define os_isr_attach ets_isr_attach 18 | #define os_isr_mask ets_isr_mask 19 | #define os_isr_unmask ets_isr_unmask 20 | #define os_memcmp ets_memcmp 21 | #define os_memcpy ets_memcpy 22 | #define os_memmove ets_memmove 23 | #define os_memset ets_memset 24 | #define os_putc ets_putc 25 | #define os_str2macaddr ets_str2macaddr 26 | #define os_strcat strcat 27 | #define os_strchr strchr 28 | #define os_strcmp ets_strcmp 29 | #define os_strcpy ets_strcpy 30 | #define os_strlen ets_strlen 31 | #define os_strncmp ets_strncmp 32 | #define os_strncpy ets_strncpy 33 | #define os_strstr ets_strstr 34 | #ifdef USE_US_TIMER 35 | #define os_timer_arm_us(a, b, c) ets_timer_arm_new(a, b, c, 0) 36 | #endif 37 | #define os_timer_arm(a, b, c) ets_timer_arm_new(a, b, c, 1) 38 | #define os_timer_disarm ets_timer_disarm 39 | #define os_timer_done ets_timer_done 40 | #define os_timer_handler_isr ets_timer_handler_isr 41 | #define os_timer_init ets_timer_init 42 | #define os_timer_setfn ets_timer_setfn 43 | 44 | #define os_sprintf ets_sprintf 45 | #define os_update_cpu_frequency ets_update_cpu_frequency 46 | 47 | #endif 48 | 49 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/include/spi_flash.h: -------------------------------------------------------------------------------- 1 | /* 2 | * copyright (c) Espressif System 2010 3 | * 4 | */ 5 | 6 | #ifndef SPI_FLASH_H 7 | #define SPI_FLASH_H 8 | 9 | typedef enum { 10 | SPI_FLASH_RESULT_OK, 11 | SPI_FLASH_RESULT_ERR, 12 | SPI_FLASH_RESULT_TIMEOUT 13 | } SpiFlashOpResult; 14 | 15 | typedef struct{ 16 | uint32 deviceId; 17 | uint32 chip_size; // chip size in byte 18 | uint32 block_size; 19 | uint32 sector_size; 20 | uint32 page_size; 21 | uint32 status_mask; 22 | } SpiFlashChip; 23 | 24 | #define SPI_FLASH_SEC_SIZE 4096 25 | 26 | SpiFlashOpResult spi_flash_erase_sector(uint16 sec); 27 | SpiFlashOpResult spi_flash_write(uint32 des_addr, uint32 *src_addr, uint32 size); 28 | SpiFlashOpResult spi_flash_read(uint32 src_addr, uint32 *des_addr, uint32 size); 29 | 30 | #endif 31 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/include/version.h: -------------------------------------------------------------------------------- 1 | #ifndef __SDK_VERSION_H__ 2 | #define __SDK_VERSION_H__ 3 | 4 | #define SDK_VERSION_MAJOR 0U 5 | #define SDK_VERSION_MINOR 9U 6 | #define SDK_VERSION_REVISION 3U 7 | #define SDK_VERSION_INTERNAL 0U 8 | 9 | #define SDK_VERSION (SDK_VERSION_MAJOR << 16 | SDK_VERSION_MINOR << 8 | SDK_VERSION_REVISION) 10 | 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/lib/libjson.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/lib/libjson.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/lib/liblwip.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/lib/liblwip.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/lib/libmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/lib/libmain.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/lib/libnet80211.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/lib/libnet80211.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/lib/libphy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/lib/libphy.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/lib/libpp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/lib/libpp.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/lib/libssl.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/lib/libupgrade.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/lib/libupgrade.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/lib/libwpa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/lib/libwpa.a -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/tools/gen_appbin.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # 3 | # Copyright (c) 2010 Espressif System 4 | # 5 | # grab user_start() address and pass it to genflashbin program 6 | # 7 | 8 | import string 9 | import sys 10 | import os 11 | import re 12 | 13 | if len(sys.argv) != 3: 14 | print 'Usage: gen_appbin.py eagle.app.out version' 15 | sys.exit(0) 16 | 17 | elf_file = sys.argv[1] 18 | ver = sys.argv[2] 19 | #print elf_file 20 | 21 | cmd = 'xt-nm -g ' + elf_file + ' > eagle.app.sym' 22 | #print cmd 23 | os.system(cmd) 24 | 25 | fp = file('./eagle.app.sym') 26 | if fp is None: 27 | print "open sym file error\n" 28 | exit 29 | 30 | lines = fp.readlines() 31 | 32 | fp.close() 33 | 34 | entry_addr = None 35 | p = re.compile('(\w*)(\sT\s)(call_user_start)$') 36 | for line in lines: 37 | m = p.search(line) 38 | if m != None: 39 | entry_addr = m.group(1) 40 | #entry_addr = int(entry_addr, 16) 41 | print entry_addr 42 | 43 | if entry_addr is None: 44 | print 'no entry point!!' 45 | exit 46 | 47 | data_start_addr = '0' 48 | p = re.compile('(\w*)(\sA\s)(_data_start)$') 49 | for line in lines: 50 | m = p.search(line) 51 | if m != None: 52 | data_start_addr = m.group(1) 53 | print data_start_addr 54 | 55 | rodata_start_addr = '0' 56 | p = re.compile('(\w*)(\sA\s)(_rodata_start)$') 57 | for line in lines: 58 | m = p.search(line) 59 | if m != None: 60 | rodata_start_addr = m.group(1) 61 | print rodata_start_addr 62 | 63 | cmd = 'genflashbin%s eagle.app.%s.text.bin '%(ver, ver)+entry_addr+' eagle.app.%s.data.bin '%(ver)+ data_start_addr+' eagle.app.%s.rodata.bin '%(ver)+rodata_start_addr 64 | 65 | print cmd 66 | os.system(cmd) 67 | 68 | cmd = 'mv eagle.app.flash.bin eagle.app.%s.flash.bin'%(ver) 69 | 70 | print cmd 71 | os.system(cmd) 72 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/tools/gen_flashbin.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | import os 3 | import sys 4 | import binascii 5 | import string 6 | 7 | if len(sys.argv) != 3: 8 | print 'Usage: gen_flashbin.py 1.bin 2.bin' 9 | sys.exit(0) 10 | 11 | bin1_name = sys.argv[1] 12 | bin2_name = sys.argv[2] 13 | 14 | bin1_file = open(bin1_name, 'rb') 15 | bin2_file = open(bin2_name, 'rb') 16 | 17 | bin1_len = os.path.getsize(bin1_name) 18 | 19 | bin1 = bin1_file.read() 20 | bin2 = bin2_file.read() 21 | 22 | bitlist = ['FF']*(0x10000-bin1_len) 23 | bytes = binascii.a2b_hex(''.join(bitlist)) 24 | 25 | bitout = open('eagle.app.flash.bin', 'wb') 26 | bitout.write(bin1) 27 | bitout.write(bytes) 28 | bitout.write(bin2) 29 | bitout.close() 30 | 31 | bin1_file.close() 32 | bin2_file.close() 33 | 34 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/tools/genflashbinv6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/tools/genflashbinv6.exe -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/tools/makefile.sh: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # Generate the certificates and keys for encrypt. 4 | # 5 | 6 | # set default cert for use in the client 7 | xxd -i client.cer | sed -e \ 8 | "s/client_cer/default_certificate/" > cert.h 9 | # set default key for use in the server 10 | xxd -i server.key_1024 | sed -e \ 11 | "s/server_key_1024/default_private_key/" > private_key.h 12 | -------------------------------------------------------------------------------- /esp_iot_sdk_smartconfig_v0.9.3/tools/xxd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/esp_iot_sdk_smartconfig_v0.9.3/tools/xxd.exe -------------------------------------------------------------------------------- /smartconfig/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /smartconfig/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | SmartConfig 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /smartconfig/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /smartconfig/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 9 | 10 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /smartconfig/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 9 | 10 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /smartconfig/bin/SmartConfig.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/SmartConfig.apk -------------------------------------------------------------------------------- /smartconfig/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes.dex -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartconfig/AboutActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartconfig/AboutActivity.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartconfig/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartconfig/MainActivity$1.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartconfig/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartconfig/MainActivity.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartconfig/UdpThread$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartconfig/UdpThread$1.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartconfig/UdpThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartconfig/UdpThread.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartlink/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartlink/BuildConfig.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartlink/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartlink/R$attr.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartlink/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartlink/R$id.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartlink/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartlink/R$layout.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartlink/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartlink/R$menu.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartlink/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartlink/R$string.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartlink/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartlink/R$style.class -------------------------------------------------------------------------------- /smartconfig/bin/classes/com/example/smartlink/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/classes/com/example/smartlink/R.class -------------------------------------------------------------------------------- /smartconfig/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/bin/resources.ap_ -------------------------------------------------------------------------------- /smartconfig/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | # The name of your application package as defined in the manifest. 19 | # Used by the 'uninstall' rule. 20 | application.package=com.example.neon 21 | -------------------------------------------------------------------------------- /smartconfig/gen/com/example/smartlink/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.smartlink; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /smartconfig/libs/armeabi/libsmartconfig.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/libs/armeabi/libsmartconfig.so -------------------------------------------------------------------------------- /smartconfig/obj/local/armeabi/libsmartconfig.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/obj/local/armeabi/libsmartconfig.so -------------------------------------------------------------------------------- /smartconfig/obj/local/armeabi/objs/smartconfig/smartconfig.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/obj/local/armeabi/objs/smartconfig/smartconfig.o -------------------------------------------------------------------------------- /smartconfig/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-16 15 | -------------------------------------------------------------------------------- /smartconfig/res/drawable-hdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyiyang/esp8266-smartconfig/f061c5b2ece75be367c41851fc93fe2b892eaf53/smartconfig/res/drawable-hdpi/Thumbs.db -------------------------------------------------------------------------------- /smartconfig/res/layout/activity_about.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 15 | 16 | 25 | 26 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /smartconfig/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 14 | 15 | 25 | 26 | 27 | 28 | 29 | 39 | 40 | 49 | 50 |