├── .gitignore ├── .gitmodules ├── .nojekyll ├── LICENSE ├── README.md ├── app ├── app.js ├── dfu-util.js └── style.css ├── data ├── dsy_bootloader_v5_4.bin └── sources.json ├── dfu ├── .DS_Store ├── FileSaver.js ├── dfu.js └── dfuse.js ├── img └── ES_Circle_Orange.PNG ├── index.html ├── old-index.html ├── run.sh └── util ├── SimpleSecureHTTPServer.py └── server.pem /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | #* -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/app/app.js -------------------------------------------------------------------------------- /app/dfu-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/app/dfu-util.js -------------------------------------------------------------------------------- /app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/app/style.css -------------------------------------------------------------------------------- /data/dsy_bootloader_v5_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/data/dsy_bootloader_v5_4.bin -------------------------------------------------------------------------------- /data/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/data/sources.json -------------------------------------------------------------------------------- /dfu/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/dfu/.DS_Store -------------------------------------------------------------------------------- /dfu/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/dfu/FileSaver.js -------------------------------------------------------------------------------- /dfu/dfu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/dfu/dfu.js -------------------------------------------------------------------------------- /dfu/dfuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/dfu/dfuse.js -------------------------------------------------------------------------------- /img/ES_Circle_Orange.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/img/ES_Circle_Orange.PNG -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/index.html -------------------------------------------------------------------------------- /old-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/old-index.html -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/run.sh -------------------------------------------------------------------------------- /util/SimpleSecureHTTPServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/util/SimpleSecureHTTPServer.py -------------------------------------------------------------------------------- /util/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electro-smith/Programmer/HEAD/util/server.pem --------------------------------------------------------------------------------