1.使用乐鑫官网的esp8266_nonos_sdk。只针对ESP826612f32_IIC_OLED├── License
├── Makefile
├── README.md
├── VERSION
├── app
│ ├── Makefile
│ ├── README.md
│ ├── driver
│ │ ├── Makefile
│ │ ├── i2c_master.c
│ │ ├── oled.c
│ │ └── uart.c
│ ├── gen_misc.bat
│ ├── gen_misc.sh
│ ├── include
│ │ ├── driver
│ │ │ ├── i2c_master.h
│ │ │ ├── oled.h
│ │ │ ├── oledfont.h
│ │ │ ├── uart.h
│ │ │ └── uart_register.h
│ │ └── user_config.h
│ ├── make_lib.sh
│ └── user
│ ├── Makefile
│ └── user_main.c
├── bin
│ ├── _temp_by_dltool
│ │ └── downloadPanel1
│ │ ├── eagle.flash.bin_rep
│ │ └── esp_init_data_default_v08.bin_rep
│ ├── at
│ │ ├── 1024 1024
│ │ │ ├── user1.2048.new.5.bin
│ │ │ └── user2.2048.new.5.bin
│ │ ├── 512 512
│ │ │ ├── user1.1024.new.2.bin
│ │ │ └── user2.1024.new.2.bin
│ │ └── README.md
│ ├── at_sdio
│ │ ├── 1024 1024
│ │ │ ├── user1.2048.new.5.bin
│ │ │ └── user2.2048.new.5.bin
│ │ ├── 512 512
│ │ │ ├── user1.1024.new.2.bin
│ │ │ └── user2.1024.new.2.bin
│ │ └── README.md
│ ├── blank.bin
│ ├── boot_v1.2.bin
│ ├── boot_v1.6.bin
│ ├── boot_v1.7.bin
│ ├── eagle.S
│ ├── eagle.dump
│ ├── eagle.flash.bin
│ ├── eagle.irom0text.bin
│ ├── esp_init_data_default_v05.bin
│ └── esp_init_data_default_v08.bin
├── documents
│ └── readme.txt
├── include
│ ├── airkiss.h
│ ├── at_custom.h
│ ├── c_types.h
│ ├── eagle_soc.h
│ ├── espconn.h
│ ├── espnow.h
│ ├── ets_sys.h
│ ├── gpio.h
│ ├── ip_addr.h
│ ├── json
│ │ ├── json.h
│ │ ├── jsonparse.h
│ │ └── jsontree.h
│ ├── mem.h
│ ├── os_type.h
│ ├── osapi.h
│ ├── ping.h
│ ├── pwm.h
│ ├── queue.h
│ ├── simple_pair.h
│ ├── smartconfig.h
│ ├── sntp.h
│ ├── spi_flash.h
│ ├── upgrade.h
│ ├── user_interface.h
│ ├── version.h
│ └── wpa2_enterprise.h
├── ld
│ ├── eagle.app.v6.ld
│ ├── eagle.app.v6.new.1024.app1.ld
│ ├── eagle.app.v6.new.1024.app2.ld
│ ├── eagle.app.v6.new.2048.ld
│ ├── eagle.app.v6.new.512.app1.ld
│ ├── eagle.app.v6.new.512.app2.ld
│ ├── eagle.app.v6.old.1024.app1.ld
│ ├── eagle.app.v6.old.1024.app2.ld
│ ├── eagle.app.v6.old.512.app1.ld
│ ├── eagle.app.v6.old.512.app2.ld
│ └── eagle.rom.addr.v6.ld
├── lib
│ ├── libairkiss.a
│ ├── libat.a
│ ├── libc.a
│ ├── libcrypto.a
│ ├── libdriver.a
│ ├── libespnow.a
│ ├── libgcc.a
│ ├── libjson.a
│ ├── liblwip.a
│ ├── liblwip_536.a
│ ├── libmain.a
│ ├── libmbedtls.a
│ ├── libnet80211.a
│ ├── libphy.a
│ ├── libpp.a
│ ├── libpwm.a
│ ├── libsmartconfig.a
│ ├── libssl.a
│ ├── libupgrade.a
│ ├── libwpa.a
│ ├── libwpa2.a
│ ├── libwps.a
│ ├── readme.md
│ ├── strip_libc_funcs.txt
│ └── strip_libgcc_funcs.txt
├── third_party
│ ├── include
│ │ ├── arch
│ │ │ ├── cc.h
│ │ │ ├── perf.h
│ │ │ └── sys_arch.h
│ │ ├── lwip
│ │ │ ├── api.h
│ │ │ ├── api_msg.h
│ │ │ ├── app
│ │ │ │ ├── dhcpserver.h
│ │ │ │ ├── espconn.h
│ │ │ │ ├── espconn_buf.h
│ │ │ │ ├── espconn_tcp.h
│ │ │ │ ├── espconn_udp.h
│ │ │ │ ├── ping.h
│ │ │ │ └── time.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
│ │ │ ├── mdns.h
│ │ │ ├── mem.h
│ │ │ ├── memp.h
│ │ │ ├── memp_std.h
│ │ │ ├── netbuf.h
│ │ │ ├── netdb.h
│ │ │ ├── netif.h
│ │ │ ├── netifapi.h
│ │ │ ├── opt.h
│ │ │ ├── pbuf.h
│ │ │ ├── puck_def.h
│ │ │ ├── raw.h
│ │ │ ├── sio.h
│ │ │ ├── snmp.h
│ │ │ ├── snmp_asn1.h
│ │ │ ├── snmp_msg.h
│ │ │ ├── snmp_structs.h
│ │ │ ├── sntp.h
│ │ │ ├── sockets.h
│ │ │ ├── stats.h
│ │ │ ├── sys.h
│ │ │ ├── tcp.h
│ │ │ ├── tcp_impl.h
│ │ │ ├── tcpip.h
│ │ │ ├── timers.h
│ │ │ └── udp.h
│ │ ├── lwipopts.h
│ │ ├── mbedtls
│ │ │ ├── aes.h
│ │ │ ├── aesni.h
│ │ │ ├── arc4.h
│ │ │ ├── asn1.h
│ │ │ ├── asn1write.h
│ │ │ ├── base64.h
│ │ │ ├── bignum.h
│ │ │ ├── blowfish.h
│ │ │ ├── bn_mul.h
│ │ │ ├── camellia.h
│ │ │ ├── ccm.h
│ │ │ ├── certs.h
│ │ │ ├── check_config.h
│ │ │ ├── cipher.h
│ │ │ ├── cipher_internal.h
│ │ │ ├── compat-1.3.h
│ │ │ ├── config.h
│ │ │ ├── config_esp.h
│ │ │ ├── ctr_drbg.h
│ │ │ ├── debug.h
│ │ │ ├── des.h
│ │ │ ├── dhm.h
│ │ │ ├── ecdh.h
│ │ │ ├── ecdsa.h
│ │ │ ├── ecjpake.h
│ │ │ ├── ecp.h
│ │ │ ├── entropy.h
│ │ │ ├── entropy_poll.h
│ │ │ ├── error.h
│ │ │ ├── gcm.h
│ │ │ ├── havege.h
│ │ │ ├── hmac_drbg.h
│ │ │ ├── mbedtls_debug.h
│ │ │ ├── md.h
│ │ │ ├── md2.h
│ │ │ ├── md4.h
│ │ │ ├── md5.h
│ │ │ ├── md_internal.h
│ │ │ ├── memory_buffer_alloc.h
│ │ │ ├── net.h
│ │ │ ├── oid.h
│ │ │ ├── padlock.h
│ │ │ ├── pem.h
│ │ │ ├── pk.h
│ │ │ ├── pk_internal.h
│ │ │ ├── pkcs11.h
│ │ │ ├── pkcs12.h
│ │ │ ├── pkcs5.h
│ │ │ ├── platform.h
│ │ │ ├── ripemd160.h
│ │ │ ├── rsa.h
│ │ │ ├── sha1.h
│ │ │ ├── sha256.h
│ │ │ ├── sha512.h
│ │ │ ├── ssl.h
│ │ │ ├── ssl_cache.h
│ │ │ ├── ssl_ciphersuites.h
│ │ │ ├── ssl_cookie.h
│ │ │ ├── ssl_internal.h
│ │ │ ├── ssl_ticket.h
│ │ │ ├── sys
│ │ │ │ ├── espconn_mbedtls.h
│ │ │ │ └── socket.h
│ │ │ ├── threading.h
│ │ │ ├── timing.h
│ │ │ ├── version.h
│ │ │ ├── x509.h
│ │ │ ├── x509_crl.h
│ │ │ ├── x509_crt.h
│ │ │ ├── x509_csr.h
│ │ │ └── xtea.h
│ │ ├── netif
│ │ │ ├── etharp.h
│ │ │ ├── if_llc.h
│ │ │ ├── ppp_oe.h
│ │ │ └── wlan_lwip_if.h
│ │ ├── ssl
│ │ │ ├── app
│ │ │ │ ├── espconn_secure.h
│ │ │ │ └── espconn_ssl.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
│ │ └── user_config.h
│ ├── lwip
│ │ ├── Makefile
│ │ ├── api
│ │ │ ├── Makefile
│ │ │ ├── api_lib.c
│ │ │ ├── api_msg.c
│ │ │ ├── err.c
│ │ │ ├── netbuf.c
│ │ │ ├── netdb.c
│ │ │ ├── netifapi.c
│ │ │ ├── sockets.c
│ │ │ └── tcpip.c
│ │ ├── app
│ │ │ ├── Makefile
│ │ │ ├── dhcpserver.c
│ │ │ ├── espconn.c
│ │ │ ├── espconn_buf.c
│ │ │ ├── espconn_mdns.c
│ │ │ ├── espconn_tcp.c
│ │ │ ├── espconn_udp.c
│ │ │ ├── netio.c
│ │ │ └── ping.c
│ │ ├── core
│ │ │ ├── Makefile
│ │ │ ├── def.c
│ │ │ ├── dhcp.c
│ │ │ ├── dns.c
│ │ │ ├── init.c
│ │ │ ├── ipv4
│ │ │ │ ├── Makefile
│ │ │ │ ├── autoip.c
│ │ │ │ ├── icmp.c
│ │ │ │ ├── igmp.c
│ │ │ │ ├── inet.c
│ │ │ │ ├── inet_chksum.c
│ │ │ │ ├── ip.c
│ │ │ │ ├── ip_addr.c
│ │ │ │ └── ip_frag.c
│ │ │ ├── mdns.c
│ │ │ ├── mem.c
│ │ │ ├── memp.c
│ │ │ ├── netif.c
│ │ │ ├── pbuf.c
│ │ │ ├── raw.c
│ │ │ ├── sntp.c
│ │ │ ├── stats.c
│ │ │ ├── sys.c
│ │ │ ├── sys_arch.c
│ │ │ ├── tcp.c
│ │ │ ├── tcp_in.c
│ │ │ ├── tcp_out.c
│ │ │ ├── timers.c
│ │ │ └── udp.c
│ │ └── netif
│ │ ├── Makefile
│ │ └── etharp.c
│ ├── make_lib.sh
│ ├── makefile.bak
│ └── mbedtls
│ ├── Makefile
│ ├── app
│ │ ├── Makefile
│ │ ├── espconn_mbedtls.c
│ │ ├── espconn_secure.c
│ │ ├── lwIPFile.c
│ │ └── lwIPSocket.c
│ ├── library
│ │ ├── Makefile
│ │ ├── aes.c
│ │ ├── aesni.c
│ │ ├── arc4.c
│ │ ├── asn1parse.c
│ │ ├── asn1write.c
│ │ ├── base64.c
│ │ ├── bignum.c
│ │ ├── blowfish.c
│ │ ├── camellia.c
│ │ ├── ccm.c
│ │ ├── certs.c
│ │ ├── cipher.c
│ │ ├── cipher_wrap.c
│ │ ├── ctr_drbg.c
│ │ ├── debug.c
│ │ ├── des.c
│ │ ├── dhm.c
│ │ ├── ecdh.c
│ │ ├── ecdsa.c
│ │ ├── ecjpake.c
│ │ ├── ecp.c
│ │ ├── ecp_curves.c
│ │ ├── entropy.c
│ │ ├── entropy_poll.c
│ │ ├── error.c
│ │ ├── gcm.c
│ │ ├── havege.c
│ │ ├── hmac_drbg.c
│ │ ├── md.c
│ │ ├── md2.c
│ │ ├── md4.c
│ │ ├── md5.c
│ │ ├── md_wrap.c
│ │ ├── memory_buffer_alloc.c
│ │ ├── net.c
│ │ ├── oid.c
│ │ ├── padlock.c
│ │ ├── pem.c
│ │ ├── pk.c
│ │ ├── pk_wrap.c
│ │ ├── pkcs11.c
│ │ ├── pkcs12.c
│ │ ├── pkcs5.c
│ │ ├── pkparse.c
│ │ ├── pkwrite.c
│ │ ├── platform.c
│ │ ├── ripemd160.c
│ │ ├── rsa.c
│ │ ├── sha1.c
│ │ ├── sha256.c
│ │ ├── sha512.c
│ │ ├── ssl_cache.c
│ │ ├── ssl_ciphersuites.c
│ │ ├── ssl_cli.c
│ │ ├── ssl_cookie.c
│ │ ├── ssl_srv.c
│ │ ├── ssl_ticket.c
│ │ ├── ssl_tls.c
│ │ ├── threading.c
│ │ ├── timing.c
│ │ ├── version.c
│ │ ├── version_features.c
│ │ ├── x509.c
│ │ ├── x509_create.c
│ │ ├── x509_crl.c
│ │ ├── x509_crt.c
│ │ ├── x509_csr.c
│ │ ├── x509write_crt.c
│ │ ├── x509write_csr.c
│ │ └── xtea.c
│ └── platform
│ ├── Makefile
│ ├── esp_hardware.c
│ └── net.c
└── tools
├── README.md
├── gen_appbin.py
├── make_cacert.py
├── make_cert.py
├── makefile.sh
└── rmfile.sh
40 directories, 387 files
评论