├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── Makefile ├── Makefile.combined ├── Makefile.ota ├── Makefile.separate ├── README.md ├── esp-link-stuff ├── config.c ├── config.h ├── crc16.c ├── crc16.h ├── gpio-helpers.c ├── gpio-helpers.h ├── log.c ├── log.h ├── serbridge.c ├── serbridge.h ├── status.c ├── status.h ├── task.c ├── task.h ├── uart.c ├── uart.h └── uart_hw.h ├── esphttpdconfig.mk ├── esptool ├── html ├── basic.min.css ├── console.js ├── dropzone.min.css ├── dropzone.min.js ├── favicon.ico ├── flash │ ├── 140medley.min.js │ └── index.html ├── index.html ├── log.html ├── logo.png ├── newpage.html ├── p2-ddloader.html ├── settings.html ├── style.css ├── ui.js ├── update-ffs.html ├── w3.css ├── websocket │ └── index.html └── wifi │ ├── 140medley.min.js │ ├── connecting.html │ ├── icons.png │ ├── style.css │ └── wifi.html ├── include ├── uart_hw.h └── user_config.h ├── ldscript_memspecific.ld ├── libesphttpd ├── .keep ├── Makefile ├── README.md ├── core │ ├── auth.c │ ├── base64.c │ ├── base64.h │ ├── httpd-freertos.c │ ├── httpd-nonos.c │ ├── httpd-platform.h │ ├── httpd.c │ ├── httpdespfs.c │ └── sha1.c ├── espfs │ ├── espfs.c │ ├── espfsformat.h │ ├── espfstest │ │ ├── Makefile │ │ └── main.c │ ├── heatshrink_config_custom.h │ ├── heatshrink_decoder.c │ └── mkespfsimage │ │ ├── Makefile │ │ ├── heatshrink_encoder.c │ │ ├── heatshrink_encoder.o │ │ ├── main.c │ │ ├── main.o │ │ └── mkespfsimage ├── include │ ├── auth.h │ ├── captdns.h │ ├── cgiflash.h │ ├── cgiwebsocket.h │ ├── cgiwifi.h │ ├── esp8266.h │ ├── espfs.h │ ├── espmissingincludes.h │ ├── httpd.h │ ├── httpdespfs.h │ ├── platform.h │ ├── sha1.h │ ├── user_config.h │ └── webpages-espfs.h ├── lib │ └── heatshrink │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── dec_sm.dot │ │ ├── enc_sm.dot │ │ ├── greatest.h │ │ ├── heatshrink.c │ │ ├── heatshrink_common.h │ │ ├── heatshrink_config.h │ │ ├── heatshrink_decoder.c │ │ ├── heatshrink_decoder.h │ │ ├── heatshrink_encoder.c │ │ ├── heatshrink_encoder.h │ │ ├── test_heatshrink_dynamic.c │ │ ├── test_heatshrink_dynamic_theft.c │ │ └── test_heatshrink_static.c ├── libesphttpd.a ├── libwebpages-espfs.a ├── mkupgimg │ ├── .gitignore │ ├── Makefile │ └── mkupgimg.c ├── util │ ├── captdns.c │ ├── cgiflash.c │ ├── cgiwebsocket.c │ └── cgiwifi.c ├── webpages.espfs └── webpages.espfs.ld ├── parallax-unused ├── IP_Loader.h ├── propimage.c └── propimage.h ├── parallax ├── cgiprop.c ├── cgiprop.h ├── discovery.c ├── discovery.h ├── httpdroffs.c ├── httpdroffs.h ├── mkroffsimage │ ├── Makefile │ ├── README.txt │ └── mkroffsimage.c ├── proploader.c ├── proploader.h ├── roffs.c ├── roffs.h ├── roffsformat.h ├── sscp-cmds.c ├── sscp-fs.c ├── sscp-http.c ├── sscp-settings.c ├── sscp-tcp.c ├── sscp-udp.c ├── sscp-wifi.c ├── sscp-ws.c ├── sscp.c ├── sscp.h └── user_main.c ├── release ├── Makefile ├── clear-1m.sh ├── clear-ffs.sh ├── clear.sh ├── flash-all.sh ├── patch.c ├── release-notes.txt └── update-fw.sh └── test-framework ├── Makefile └── src ├── cmd.c ├── cmd.h ├── framework.c ├── framework.h ├── main.c ├── serial.h ├── serial_mingw.c ├── serial_posix.c ├── sock.h ├── sock_posix.c ├── tests.c └── tests.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.combined: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/Makefile.combined -------------------------------------------------------------------------------- /Makefile.ota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/Makefile.ota -------------------------------------------------------------------------------- /Makefile.separate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/Makefile.separate -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/README.md -------------------------------------------------------------------------------- /esp-link-stuff/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/config.c -------------------------------------------------------------------------------- /esp-link-stuff/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/config.h -------------------------------------------------------------------------------- /esp-link-stuff/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/crc16.c -------------------------------------------------------------------------------- /esp-link-stuff/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/crc16.h -------------------------------------------------------------------------------- /esp-link-stuff/gpio-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/gpio-helpers.c -------------------------------------------------------------------------------- /esp-link-stuff/gpio-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/gpio-helpers.h -------------------------------------------------------------------------------- /esp-link-stuff/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/log.c -------------------------------------------------------------------------------- /esp-link-stuff/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/log.h -------------------------------------------------------------------------------- /esp-link-stuff/serbridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/serbridge.c -------------------------------------------------------------------------------- /esp-link-stuff/serbridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/serbridge.h -------------------------------------------------------------------------------- /esp-link-stuff/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/status.c -------------------------------------------------------------------------------- /esp-link-stuff/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/status.h -------------------------------------------------------------------------------- /esp-link-stuff/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/task.c -------------------------------------------------------------------------------- /esp-link-stuff/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/task.h -------------------------------------------------------------------------------- /esp-link-stuff/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/uart.c -------------------------------------------------------------------------------- /esp-link-stuff/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/uart.h -------------------------------------------------------------------------------- /esp-link-stuff/uart_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esp-link-stuff/uart_hw.h -------------------------------------------------------------------------------- /esphttpdconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esphttpdconfig.mk -------------------------------------------------------------------------------- /esptool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/esptool -------------------------------------------------------------------------------- /html/basic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/basic.min.css -------------------------------------------------------------------------------- /html/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/console.js -------------------------------------------------------------------------------- /html/dropzone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/dropzone.min.css -------------------------------------------------------------------------------- /html/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/dropzone.min.js -------------------------------------------------------------------------------- /html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/favicon.ico -------------------------------------------------------------------------------- /html/flash/140medley.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/flash/140medley.min.js -------------------------------------------------------------------------------- /html/flash/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/flash/index.html -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/index.html -------------------------------------------------------------------------------- /html/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/log.html -------------------------------------------------------------------------------- /html/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/logo.png -------------------------------------------------------------------------------- /html/newpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/newpage.html -------------------------------------------------------------------------------- /html/p2-ddloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/p2-ddloader.html -------------------------------------------------------------------------------- /html/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/settings.html -------------------------------------------------------------------------------- /html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/style.css -------------------------------------------------------------------------------- /html/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/ui.js -------------------------------------------------------------------------------- /html/update-ffs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/update-ffs.html -------------------------------------------------------------------------------- /html/w3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/w3.css -------------------------------------------------------------------------------- /html/websocket/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/websocket/index.html -------------------------------------------------------------------------------- /html/wifi/140medley.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/wifi/140medley.min.js -------------------------------------------------------------------------------- /html/wifi/connecting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/wifi/connecting.html -------------------------------------------------------------------------------- /html/wifi/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/wifi/icons.png -------------------------------------------------------------------------------- /html/wifi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/wifi/style.css -------------------------------------------------------------------------------- /html/wifi/wifi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/html/wifi/wifi.html -------------------------------------------------------------------------------- /include/uart_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/include/uart_hw.h -------------------------------------------------------------------------------- /include/user_config.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ldscript_memspecific.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/ldscript_memspecific.ld -------------------------------------------------------------------------------- /libesphttpd/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libesphttpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/Makefile -------------------------------------------------------------------------------- /libesphttpd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/README.md -------------------------------------------------------------------------------- /libesphttpd/core/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/core/auth.c -------------------------------------------------------------------------------- /libesphttpd/core/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/core/base64.c -------------------------------------------------------------------------------- /libesphttpd/core/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/core/base64.h -------------------------------------------------------------------------------- /libesphttpd/core/httpd-freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/core/httpd-freertos.c -------------------------------------------------------------------------------- /libesphttpd/core/httpd-nonos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/core/httpd-nonos.c -------------------------------------------------------------------------------- /libesphttpd/core/httpd-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/core/httpd-platform.h -------------------------------------------------------------------------------- /libesphttpd/core/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/core/httpd.c -------------------------------------------------------------------------------- /libesphttpd/core/httpdespfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/core/httpdespfs.c -------------------------------------------------------------------------------- /libesphttpd/core/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/core/sha1.c -------------------------------------------------------------------------------- /libesphttpd/espfs/espfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/espfs.c -------------------------------------------------------------------------------- /libesphttpd/espfs/espfsformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/espfsformat.h -------------------------------------------------------------------------------- /libesphttpd/espfs/espfstest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/espfstest/Makefile -------------------------------------------------------------------------------- /libesphttpd/espfs/espfstest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/espfstest/main.c -------------------------------------------------------------------------------- /libesphttpd/espfs/heatshrink_config_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/heatshrink_config_custom.h -------------------------------------------------------------------------------- /libesphttpd/espfs/heatshrink_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/heatshrink_decoder.c -------------------------------------------------------------------------------- /libesphttpd/espfs/mkespfsimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/mkespfsimage/Makefile -------------------------------------------------------------------------------- /libesphttpd/espfs/mkespfsimage/heatshrink_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/mkespfsimage/heatshrink_encoder.c -------------------------------------------------------------------------------- /libesphttpd/espfs/mkespfsimage/heatshrink_encoder.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/mkespfsimage/heatshrink_encoder.o -------------------------------------------------------------------------------- /libesphttpd/espfs/mkespfsimage/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/mkespfsimage/main.c -------------------------------------------------------------------------------- /libesphttpd/espfs/mkespfsimage/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/mkespfsimage/main.o -------------------------------------------------------------------------------- /libesphttpd/espfs/mkespfsimage/mkespfsimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/espfs/mkespfsimage/mkespfsimage -------------------------------------------------------------------------------- /libesphttpd/include/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/auth.h -------------------------------------------------------------------------------- /libesphttpd/include/captdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/captdns.h -------------------------------------------------------------------------------- /libesphttpd/include/cgiflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/cgiflash.h -------------------------------------------------------------------------------- /libesphttpd/include/cgiwebsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/cgiwebsocket.h -------------------------------------------------------------------------------- /libesphttpd/include/cgiwifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/cgiwifi.h -------------------------------------------------------------------------------- /libesphttpd/include/esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/esp8266.h -------------------------------------------------------------------------------- /libesphttpd/include/espfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/espfs.h -------------------------------------------------------------------------------- /libesphttpd/include/espmissingincludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/espmissingincludes.h -------------------------------------------------------------------------------- /libesphttpd/include/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/httpd.h -------------------------------------------------------------------------------- /libesphttpd/include/httpdespfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/httpdespfs.h -------------------------------------------------------------------------------- /libesphttpd/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/platform.h -------------------------------------------------------------------------------- /libesphttpd/include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/sha1.h -------------------------------------------------------------------------------- /libesphttpd/include/user_config.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libesphttpd/include/webpages-espfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/include/webpages-espfs.h -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/.travis.yml -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/LICENSE -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/Makefile -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/README.md -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/dec_sm.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/dec_sm.dot -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/enc_sm.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/enc_sm.dot -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/greatest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/greatest.h -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/heatshrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/heatshrink.c -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/heatshrink_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/heatshrink_common.h -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/heatshrink_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/heatshrink_config.h -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/heatshrink_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/heatshrink_decoder.c -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/heatshrink_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/heatshrink_decoder.h -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/heatshrink_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/heatshrink_encoder.c -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/heatshrink_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/heatshrink_encoder.h -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/test_heatshrink_dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/test_heatshrink_dynamic.c -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/test_heatshrink_dynamic_theft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/test_heatshrink_dynamic_theft.c -------------------------------------------------------------------------------- /libesphttpd/lib/heatshrink/test_heatshrink_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/lib/heatshrink/test_heatshrink_static.c -------------------------------------------------------------------------------- /libesphttpd/libesphttpd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/libesphttpd.a -------------------------------------------------------------------------------- /libesphttpd/libwebpages-espfs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/libwebpages-espfs.a -------------------------------------------------------------------------------- /libesphttpd/mkupgimg/.gitignore: -------------------------------------------------------------------------------- 1 | mkupgimg 2 | -------------------------------------------------------------------------------- /libesphttpd/mkupgimg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/mkupgimg/Makefile -------------------------------------------------------------------------------- /libesphttpd/mkupgimg/mkupgimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/mkupgimg/mkupgimg.c -------------------------------------------------------------------------------- /libesphttpd/util/captdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/util/captdns.c -------------------------------------------------------------------------------- /libesphttpd/util/cgiflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/util/cgiflash.c -------------------------------------------------------------------------------- /libesphttpd/util/cgiwebsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/util/cgiwebsocket.c -------------------------------------------------------------------------------- /libesphttpd/util/cgiwifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/util/cgiwifi.c -------------------------------------------------------------------------------- /libesphttpd/webpages.espfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/webpages.espfs -------------------------------------------------------------------------------- /libesphttpd/webpages.espfs.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/libesphttpd/webpages.espfs.ld -------------------------------------------------------------------------------- /parallax-unused/IP_Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax-unused/IP_Loader.h -------------------------------------------------------------------------------- /parallax-unused/propimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax-unused/propimage.c -------------------------------------------------------------------------------- /parallax-unused/propimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax-unused/propimage.h -------------------------------------------------------------------------------- /parallax/cgiprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/cgiprop.c -------------------------------------------------------------------------------- /parallax/cgiprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/cgiprop.h -------------------------------------------------------------------------------- /parallax/discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/discovery.c -------------------------------------------------------------------------------- /parallax/discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/discovery.h -------------------------------------------------------------------------------- /parallax/httpdroffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/httpdroffs.c -------------------------------------------------------------------------------- /parallax/httpdroffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/httpdroffs.h -------------------------------------------------------------------------------- /parallax/mkroffsimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/mkroffsimage/Makefile -------------------------------------------------------------------------------- /parallax/mkroffsimage/README.txt: -------------------------------------------------------------------------------- 1 | Use mingw32-make to build under MinGW-W64. 2 | -------------------------------------------------------------------------------- /parallax/mkroffsimage/mkroffsimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/mkroffsimage/mkroffsimage.c -------------------------------------------------------------------------------- /parallax/proploader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/proploader.c -------------------------------------------------------------------------------- /parallax/proploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/proploader.h -------------------------------------------------------------------------------- /parallax/roffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/roffs.c -------------------------------------------------------------------------------- /parallax/roffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/roffs.h -------------------------------------------------------------------------------- /parallax/roffsformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/roffsformat.h -------------------------------------------------------------------------------- /parallax/sscp-cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/sscp-cmds.c -------------------------------------------------------------------------------- /parallax/sscp-fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/sscp-fs.c -------------------------------------------------------------------------------- /parallax/sscp-http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/sscp-http.c -------------------------------------------------------------------------------- /parallax/sscp-settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/sscp-settings.c -------------------------------------------------------------------------------- /parallax/sscp-tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/sscp-tcp.c -------------------------------------------------------------------------------- /parallax/sscp-udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/sscp-udp.c -------------------------------------------------------------------------------- /parallax/sscp-wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/sscp-wifi.c -------------------------------------------------------------------------------- /parallax/sscp-ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/sscp-ws.c -------------------------------------------------------------------------------- /parallax/sscp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/sscp.c -------------------------------------------------------------------------------- /parallax/sscp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/sscp.h -------------------------------------------------------------------------------- /parallax/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/parallax/user_main.c -------------------------------------------------------------------------------- /release/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/release/Makefile -------------------------------------------------------------------------------- /release/clear-1m.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/release/clear-1m.sh -------------------------------------------------------------------------------- /release/clear-ffs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/release/clear-ffs.sh -------------------------------------------------------------------------------- /release/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/release/clear.sh -------------------------------------------------------------------------------- /release/flash-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/release/flash-all.sh -------------------------------------------------------------------------------- /release/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/release/patch.c -------------------------------------------------------------------------------- /release/release-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/release/release-notes.txt -------------------------------------------------------------------------------- /release/update-fw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/release/update-fw.sh -------------------------------------------------------------------------------- /test-framework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/Makefile -------------------------------------------------------------------------------- /test-framework/src/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/cmd.c -------------------------------------------------------------------------------- /test-framework/src/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/cmd.h -------------------------------------------------------------------------------- /test-framework/src/framework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/framework.c -------------------------------------------------------------------------------- /test-framework/src/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/framework.h -------------------------------------------------------------------------------- /test-framework/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/main.c -------------------------------------------------------------------------------- /test-framework/src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/serial.h -------------------------------------------------------------------------------- /test-framework/src/serial_mingw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/serial_mingw.c -------------------------------------------------------------------------------- /test-framework/src/serial_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/serial_posix.c -------------------------------------------------------------------------------- /test-framework/src/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/sock.h -------------------------------------------------------------------------------- /test-framework/src/sock_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/sock_posix.c -------------------------------------------------------------------------------- /test-framework/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/tests.c -------------------------------------------------------------------------------- /test-framework/src/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallaxinc/Parallax-ESP/HEAD/test-framework/src/tests.h --------------------------------------------------------------------------------