├── 0x00000.bin ├── 0x40000.bin ├── LICENSE ├── Makefile ├── README.md ├── common ├── commonservices.c ├── commonservices.h ├── esp8266_rom.h ├── flash_rewriter.c ├── flash_rewriter.h ├── http.c ├── http.h ├── http_custom.c ├── mdns.c ├── mdns.h ├── mfs.c ├── mfs.h ├── mystuff.c └── mystuff.h ├── driver └── uart.c ├── include ├── dmastuff.h ├── driver │ ├── uart.h │ └── uart_register.h ├── pin_mux_register.h ├── string.h └── user_config.h ├── user ├── custom_commands.c ├── i2sduplex.c ├── i2sduplex.h ├── slc_register.h └── user_main.c └── web ├── Makefile ├── execute_reflash ├── execute_reflash.c ├── md5.c ├── md5.h ├── mfsmaker ├── mfsmaker.c ├── page.mpfs ├── page ├── index.html ├── jquery-2.1.4.min.js.gz ├── main.js └── menuinterface.js ├── pushtodev └── pushtodev.c /0x00000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/0x00000.bin -------------------------------------------------------------------------------- /0x40000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/0x40000.bin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/README.md -------------------------------------------------------------------------------- /common/commonservices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/commonservices.c -------------------------------------------------------------------------------- /common/commonservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/commonservices.h -------------------------------------------------------------------------------- /common/esp8266_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/esp8266_rom.h -------------------------------------------------------------------------------- /common/flash_rewriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/flash_rewriter.c -------------------------------------------------------------------------------- /common/flash_rewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/flash_rewriter.h -------------------------------------------------------------------------------- /common/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/http.c -------------------------------------------------------------------------------- /common/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/http.h -------------------------------------------------------------------------------- /common/http_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/http_custom.c -------------------------------------------------------------------------------- /common/mdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/mdns.c -------------------------------------------------------------------------------- /common/mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/mdns.h -------------------------------------------------------------------------------- /common/mfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/mfs.c -------------------------------------------------------------------------------- /common/mfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/mfs.h -------------------------------------------------------------------------------- /common/mystuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/mystuff.c -------------------------------------------------------------------------------- /common/mystuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/common/mystuff.h -------------------------------------------------------------------------------- /driver/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/driver/uart.c -------------------------------------------------------------------------------- /include/dmastuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/include/dmastuff.h -------------------------------------------------------------------------------- /include/driver/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/include/driver/uart.h -------------------------------------------------------------------------------- /include/driver/uart_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/include/driver/uart_register.h -------------------------------------------------------------------------------- /include/pin_mux_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/include/pin_mux_register.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- 1 | //Nothing here. 2 | -------------------------------------------------------------------------------- /include/user_config.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /user/custom_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/user/custom_commands.c -------------------------------------------------------------------------------- /user/i2sduplex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/user/i2sduplex.c -------------------------------------------------------------------------------- /user/i2sduplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/user/i2sduplex.h -------------------------------------------------------------------------------- /user/slc_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/user/slc_register.h -------------------------------------------------------------------------------- /user/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/user/user_main.c -------------------------------------------------------------------------------- /web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/Makefile -------------------------------------------------------------------------------- /web/execute_reflash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/execute_reflash -------------------------------------------------------------------------------- /web/execute_reflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/execute_reflash.c -------------------------------------------------------------------------------- /web/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/md5.c -------------------------------------------------------------------------------- /web/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/md5.h -------------------------------------------------------------------------------- /web/mfsmaker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/mfsmaker -------------------------------------------------------------------------------- /web/mfsmaker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/mfsmaker.c -------------------------------------------------------------------------------- /web/page.mpfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/page.mpfs -------------------------------------------------------------------------------- /web/page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/page/index.html -------------------------------------------------------------------------------- /web/page/jquery-2.1.4.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/page/jquery-2.1.4.min.js.gz -------------------------------------------------------------------------------- /web/page/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/page/main.js -------------------------------------------------------------------------------- /web/page/menuinterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/page/menuinterface.js -------------------------------------------------------------------------------- /web/pushtodev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/pushtodev -------------------------------------------------------------------------------- /web/pushtodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266duplexi2s/HEAD/web/pushtodev.c --------------------------------------------------------------------------------