WiFi模组ESP8266程序
esp8266,Config,smart,MQTT程序
ESP-12F_F1_0-程序├── License
├── Makefile
├── app
│ ├── Makefile
│ ├── driver
│ │ ├── Makefile
│ │ ├── espconn.c
│ │ ├── gpio16.c
│ │ ├── i2c_master.c
│ │ ├── key.c
│ │ ├── tcp.c
│ │ ├── udp.c
│ │ └── wifi.c
│ ├── gen_misc.bat
│ ├── gen_misc.sh
│ ├── include
│ │ ├── driver
│ │ │ ├── gpio16.h
│ │ │ ├── i2c_master.h
│ │ │ ├── key.h
│ │ │ ├── spi.h
│ │ │ ├── spi_register.h
│ │ │ └── wifi.c
│ │ ├── modules
│ │ │ ├── config.h
│ │ │ └── wifi.h
│ │ ├── mqtt
│ │ │ ├── mqtt.h
│ │ │ ├── mqtt_msg.h
│ │ │ ├── proto.h
│ │ │ ├── queue.h
│ │ │ ├── ringbuf.h
│ │ │ ├── typedef.h
│ │ │ └── utils.h
│ │ ├── mqtt_config.h
│ │ ├── user_config.h
│ │ ├── user_devicefind.h
│ │ └── user_eternal_platform.h
│ ├── modules
│ │ ├── Makefile
│ │ ├── config.c
│ │ └── wifi.c
│ ├── mqtt
│ │ ├── Makefile
│ │ ├── include
│ │ │ ├── mqtt.h
│ │ │ ├── mqtt_msg.h
│ │ │ ├── proto.h
│ │ │ ├── queue.h
│ │ │ ├── ringbuf.h
│ │ │ ├── typedef.h
│ │ │ └── utils.h
│ │ ├── mqtt.c
│ │ ├── mqtt_msg.c
│ │ ├── proto.c
│ │ ├── queue.c
│ │ ├── ringbuf.c
│ │ └── utils.c
│ └── user
│ ├── Com_W.c
│ ├── Com_W.h
│ ├── Const.h
│ ├── Makefile
│ ├── SteamBoxCon.c
│ ├── SteamBoxCon.h
│ ├── Typedef.h
│ ├── uart.c
│ ├── uart.h
│ ├── uart_register.h
│ ├── user_eternal_platform.c
│ └── user_main.c
├── bin
│ ├── 20161226134727.png
│ ├── ESP8266MAC.txt
│ ├── _temp_by_dltool
│ │ └── downloadPanel1
│ │ ├── boot_v1.2.bin_rep
│ │ ├── eagle.flash.bin_rep
│ │ └── esp_init_data_default.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
│ │ └── noboot
│ │ ├── eagle.flash.bin
│ │ └── eagle.irom0text.bin
│ ├── 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
│ │ └── noboot
│ │ ├── eagle.flash.bin
│ │ └── eagle.irom0text.bin
│ ├── blank.bin
│ ├── boot_v1.2.bin
│ ├── boot_v1.6.bin
│ ├── eagle.S
│ ├── eagle.dump
│ ├── eagle.flash.bin
│ ├── eagle.irom0text.bin
│ └── esp_init_data_default.bin
├── documents
│ └── readme.txt
├── include
│ ├── airkiss.h
│ ├── at_custom.h
│ ├── c_types.h
│ ├── debug.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
│ ├── mesh.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
│ └── 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
│ ├── libcrypto.a
│ ├── libdriver.a
│ ├── libespnow.a
│ ├── libgcc.a
│ ├── libjson.a
│ ├── liblwip.a
│ ├── liblwip_536.a
│ ├── libmain.a
│ ├── libmesh.a
│ ├── libnet80211.a
│ ├── libphy.a
│ ├── libpp.a
│ ├── libpwm.a
│ ├── libsmartconfig.a
│ ├── libssl.a
│ ├── libupgrade.a
│ ├── libwpa.a
│ ├── libwpa2.a
│ └── libwps.a
└── tools
├── README.md
├── gen_appbin.py
├── make_cacert.py
├── make_cert.py
└── makefile.sh
27 directories, 153 files
评论