├── README.md ├── resources ├── firmware │ ├── grbl_latest.hex │ ├── grbl_v0_9j_atmega328p_16mhz_115200.hex │ ├── grbl_v1.1e.20170114.hex │ ├── grbl_v1.1f.20170801.hex │ └── grbl_v1.1h.20190825.hex ├── scripts │ ├── CommsTest.py │ ├── Run-Flash-GRBL-Latest.sh │ ├── Run-Flash-GRBL-V0.9J.sh │ ├── Run-Flash-GRBL-V1.1E.sh │ ├── Run-Flash-GRBL-V1.1F.sh │ ├── Run-Flash-GRBL-V1.1H.sh │ ├── RunLaserWeb4.sh │ └── TestSerialPorts.py └── shortcuts │ ├── Arduino.Desktop │ ├── ChiliPeppr-Serial-Port-JSON-Server │ ├── LaserWeb4.Desktop │ ├── ProtoneerForum.Desktop │ ├── Rpi34SerialConfig.desktop │ ├── TestSerialPort.Desktop │ ├── UGS.Desktop │ ├── UpdateFirmware │ ├── Upload-GRBL-Latest.Desktop │ ├── Upload-GRBL-V0.9J.Desktop │ └── Upload-GRBL-V1.1E.Desktop │ ├── bCNC.desktop │ ├── cncjs.Desktop │ └── minicom.desktop ├── scripts ├── # TODO ├── #ManualUpdates ├── 000-UpdateClean.sh ├── 001-GeneralSetup.sh ├── 002-install-UniversalGCodeSender.sh ├── 003-install-bCNC.sh ├── 004-install-node.sh ├── 005-install-cncjs.sh ├── 006-install-laserweb.sh ├── 007-install-Arduino.sh ├── 008-ChilliPeper.sh ├── 999-freeSpace.sh ├── PreImage ├── _009-pySerialBridge ├── _Candle ├── _RPi34-Serial-Config.sh ├── _resizeImg ├── avrdude-rpi │ ├── autoreset2560 │ ├── autoreset328 │ └── avrdude-autoreset ├── tcp_serial_redirect.py ├── test │ ├── 001-comms-test.py │ ├── 010B-LPC21isp-flash │ ├── 010C-LPC21isp-Reset │ ├── 010D-LPC21isp-ISP-MODE │ ├── GRBL-Test-Commands │ ├── MegaPinTest │ │ └── MegaPinTest.ino │ ├── api │ │ ├── .gitignore │ │ ├── README.md │ │ ├── install.sh │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── flash.js │ │ │ ├── server.js │ │ │ ├── start.js │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ └── main.css │ │ │ │ ├── firmware │ │ │ │ │ └── grbl_v0_9j_atmega328p_16mhz_115200.hex │ │ │ │ ├── images │ │ │ │ │ └── empty.bmp │ │ │ │ └── js │ │ │ │ │ └── main.js │ │ │ └── views │ │ │ │ ├── pages │ │ │ │ └── index.ejs │ │ │ │ └── partials │ │ │ │ ├── footer.ejs │ │ │ │ ├── head.ejs │ │ │ │ └── header.ejs │ │ ├── package.json │ │ └── test │ │ │ └── tests.js │ └── grbl_v0_9j_atmega328p_16mhz_115200.hex └── wip │ ├── 007-LPC21isp-Setup.sh │ ├── 011-octoprint.sh │ ├── CP-STM32F411CE.zip │ ├── OpenOCD │ ├── WebAVRFlasher │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── avrdude-rpi │ │ ├── README.md │ │ ├── autoreset │ │ ├── avrdude-autoreset │ │ └── install.sh │ ├── install.sh │ ├── lib │ │ ├── .gitignore │ │ ├── AVRFlasher.js │ │ ├── server.js │ │ ├── start.js │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ ├── images │ │ │ │ └── empty.bmp │ │ │ └── js │ │ │ │ └── main.js │ │ ├── uploads │ │ │ └── firmware.hex │ │ └── views │ │ │ ├── pages │ │ │ └── index.ejs │ │ │ └── partials │ │ │ ├── footer.ejs │ │ │ ├── head.ejs │ │ │ └── header.ejs │ ├── package.json │ └── test │ │ └── tests.js │ ├── _RPI-bootloader-Flasher │ └── trash │ ├── 001-avrdude.sh │ ├── 012-WebMenu │ ├── _001-avrdude-rpi.sh │ └── avrdude.conf └── setup /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /resources/firmware/grbl_latest.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/firmware/grbl_latest.hex -------------------------------------------------------------------------------- /resources/firmware/grbl_v0_9j_atmega328p_16mhz_115200.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/firmware/grbl_v0_9j_atmega328p_16mhz_115200.hex -------------------------------------------------------------------------------- /resources/firmware/grbl_v1.1e.20170114.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/firmware/grbl_v1.1e.20170114.hex -------------------------------------------------------------------------------- /resources/firmware/grbl_v1.1f.20170801.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/firmware/grbl_v1.1f.20170801.hex -------------------------------------------------------------------------------- /resources/firmware/grbl_v1.1h.20190825.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/firmware/grbl_v1.1h.20190825.hex -------------------------------------------------------------------------------- /resources/scripts/CommsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/scripts/CommsTest.py -------------------------------------------------------------------------------- /resources/scripts/Run-Flash-GRBL-Latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/scripts/Run-Flash-GRBL-Latest.sh -------------------------------------------------------------------------------- /resources/scripts/Run-Flash-GRBL-V0.9J.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/scripts/Run-Flash-GRBL-V0.9J.sh -------------------------------------------------------------------------------- /resources/scripts/Run-Flash-GRBL-V1.1E.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/scripts/Run-Flash-GRBL-V1.1E.sh -------------------------------------------------------------------------------- /resources/scripts/Run-Flash-GRBL-V1.1F.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/scripts/Run-Flash-GRBL-V1.1F.sh -------------------------------------------------------------------------------- /resources/scripts/Run-Flash-GRBL-V1.1H.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/scripts/Run-Flash-GRBL-V1.1H.sh -------------------------------------------------------------------------------- /resources/scripts/RunLaserWeb4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/scripts/RunLaserWeb4.sh -------------------------------------------------------------------------------- /resources/scripts/TestSerialPorts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/scripts/TestSerialPorts.py -------------------------------------------------------------------------------- /resources/shortcuts/Arduino.Desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/Arduino.Desktop -------------------------------------------------------------------------------- /resources/shortcuts/ChiliPeppr-Serial-Port-JSON-Server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/ChiliPeppr-Serial-Port-JSON-Server -------------------------------------------------------------------------------- /resources/shortcuts/LaserWeb4.Desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/LaserWeb4.Desktop -------------------------------------------------------------------------------- /resources/shortcuts/ProtoneerForum.Desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/ProtoneerForum.Desktop -------------------------------------------------------------------------------- /resources/shortcuts/Rpi34SerialConfig.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/Rpi34SerialConfig.desktop -------------------------------------------------------------------------------- /resources/shortcuts/TestSerialPort.Desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/TestSerialPort.Desktop -------------------------------------------------------------------------------- /resources/shortcuts/UGS.Desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/UGS.Desktop -------------------------------------------------------------------------------- /resources/shortcuts/UpdateFirmware/Upload-GRBL-Latest.Desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/UpdateFirmware/Upload-GRBL-Latest.Desktop -------------------------------------------------------------------------------- /resources/shortcuts/UpdateFirmware/Upload-GRBL-V0.9J.Desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/UpdateFirmware/Upload-GRBL-V0.9J.Desktop -------------------------------------------------------------------------------- /resources/shortcuts/UpdateFirmware/Upload-GRBL-V1.1E.Desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/UpdateFirmware/Upload-GRBL-V1.1E.Desktop -------------------------------------------------------------------------------- /resources/shortcuts/bCNC.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/bCNC.desktop -------------------------------------------------------------------------------- /resources/shortcuts/cncjs.Desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/cncjs.Desktop -------------------------------------------------------------------------------- /resources/shortcuts/minicom.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/resources/shortcuts/minicom.desktop -------------------------------------------------------------------------------- /scripts/# TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/# TODO -------------------------------------------------------------------------------- /scripts/#ManualUpdates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/#ManualUpdates -------------------------------------------------------------------------------- /scripts/000-UpdateClean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/000-UpdateClean.sh -------------------------------------------------------------------------------- /scripts/001-GeneralSetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/001-GeneralSetup.sh -------------------------------------------------------------------------------- /scripts/002-install-UniversalGCodeSender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/002-install-UniversalGCodeSender.sh -------------------------------------------------------------------------------- /scripts/003-install-bCNC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/003-install-bCNC.sh -------------------------------------------------------------------------------- /scripts/004-install-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/004-install-node.sh -------------------------------------------------------------------------------- /scripts/005-install-cncjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/005-install-cncjs.sh -------------------------------------------------------------------------------- /scripts/006-install-laserweb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/006-install-laserweb.sh -------------------------------------------------------------------------------- /scripts/007-install-Arduino.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/007-install-Arduino.sh -------------------------------------------------------------------------------- /scripts/008-ChilliPeper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/008-ChilliPeper.sh -------------------------------------------------------------------------------- /scripts/999-freeSpace.sh: -------------------------------------------------------------------------------- 1 | sudo apt-get clean 2 | -------------------------------------------------------------------------------- /scripts/PreImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/PreImage -------------------------------------------------------------------------------- /scripts/_009-pySerialBridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/_009-pySerialBridge -------------------------------------------------------------------------------- /scripts/_Candle: -------------------------------------------------------------------------------- 1 | # https://github.com/Denvi/Candle/wiki/Compiling-for-Raspberry-Pi-4 2 | -------------------------------------------------------------------------------- /scripts/_RPi34-Serial-Config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/_RPi34-Serial-Config.sh -------------------------------------------------------------------------------- /scripts/_resizeImg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/_resizeImg -------------------------------------------------------------------------------- /scripts/avrdude-rpi/autoreset2560: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/avrdude-rpi/autoreset2560 -------------------------------------------------------------------------------- /scripts/avrdude-rpi/autoreset328: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/avrdude-rpi/autoreset328 -------------------------------------------------------------------------------- /scripts/avrdude-rpi/avrdude-autoreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/avrdude-rpi/avrdude-autoreset -------------------------------------------------------------------------------- /scripts/tcp_serial_redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/tcp_serial_redirect.py -------------------------------------------------------------------------------- /scripts/test/001-comms-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/001-comms-test.py -------------------------------------------------------------------------------- /scripts/test/010B-LPC21isp-flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/010B-LPC21isp-flash -------------------------------------------------------------------------------- /scripts/test/010C-LPC21isp-Reset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/010C-LPC21isp-Reset -------------------------------------------------------------------------------- /scripts/test/010D-LPC21isp-ISP-MODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/010D-LPC21isp-ISP-MODE -------------------------------------------------------------------------------- /scripts/test/GRBL-Test-Commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/GRBL-Test-Commands -------------------------------------------------------------------------------- /scripts/test/MegaPinTest/MegaPinTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/MegaPinTest/MegaPinTest.ino -------------------------------------------------------------------------------- /scripts/test/api/.gitignore: -------------------------------------------------------------------------------- 1 | *.sh~ 2 | -------------------------------------------------------------------------------- /scripts/test/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/README.md -------------------------------------------------------------------------------- /scripts/test/api/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/install.sh -------------------------------------------------------------------------------- /scripts/test/api/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.js~ 2 | -------------------------------------------------------------------------------- /scripts/test/api/lib/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/lib/flash.js -------------------------------------------------------------------------------- /scripts/test/api/lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/lib/server.js -------------------------------------------------------------------------------- /scripts/test/api/lib/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/lib/start.js -------------------------------------------------------------------------------- /scripts/test/api/lib/static/css/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/test/api/lib/static/firmware/grbl_v0_9j_atmega328p_16mhz_115200.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/lib/static/firmware/grbl_v0_9j_atmega328p_16mhz_115200.hex -------------------------------------------------------------------------------- /scripts/test/api/lib/static/images/empty.bmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/test/api/lib/static/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/test/api/lib/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/lib/views/pages/index.ejs -------------------------------------------------------------------------------- /scripts/test/api/lib/views/partials/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/lib/views/partials/footer.ejs -------------------------------------------------------------------------------- /scripts/test/api/lib/views/partials/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/lib/views/partials/head.ejs -------------------------------------------------------------------------------- /scripts/test/api/lib/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/lib/views/partials/header.ejs -------------------------------------------------------------------------------- /scripts/test/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/package.json -------------------------------------------------------------------------------- /scripts/test/api/test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/api/test/tests.js -------------------------------------------------------------------------------- /scripts/test/grbl_v0_9j_atmega328p_16mhz_115200.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/test/grbl_v0_9j_atmega328p_16mhz_115200.hex -------------------------------------------------------------------------------- /scripts/wip/007-LPC21isp-Setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/007-LPC21isp-Setup.sh -------------------------------------------------------------------------------- /scripts/wip/011-octoprint.sh: -------------------------------------------------------------------------------- 1 | # Install from https://github.com/foosel/OctoPrint 2 | -------------------------------------------------------------------------------- /scripts/wip/CP-STM32F411CE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/CP-STM32F411CE.zip -------------------------------------------------------------------------------- /scripts/wip/OpenOCD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/OpenOCD -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/LICENSE -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/README.md -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/avrdude-rpi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/avrdude-rpi/README.md -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/avrdude-rpi/autoreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/avrdude-rpi/autoreset -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/avrdude-rpi/avrdude-autoreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/avrdude-rpi/avrdude-autoreset -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/avrdude-rpi/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/avrdude-rpi/install.sh -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/install.sh -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.js~ 2 | -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/AVRFlasher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/lib/AVRFlasher.js -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/lib/server.js -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/lib/start.js -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/static/css/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/static/images/empty.bmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/lib/static/js/main.js -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/uploads/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/lib/uploads/firmware.hex -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/lib/views/pages/index.ejs -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/views/partials/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/lib/views/partials/footer.ejs -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/views/partials/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/lib/views/partials/head.ejs -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/lib/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/lib/views/partials/header.ejs -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/package.json -------------------------------------------------------------------------------- /scripts/wip/WebAVRFlasher/test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/WebAVRFlasher/test/tests.js -------------------------------------------------------------------------------- /scripts/wip/_RPI-bootloader-Flasher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/_RPI-bootloader-Flasher -------------------------------------------------------------------------------- /scripts/wip/trash/001-avrdude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/trash/001-avrdude.sh -------------------------------------------------------------------------------- /scripts/wip/trash/012-WebMenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/trash/012-WebMenu -------------------------------------------------------------------------------- /scripts/wip/trash/_001-avrdude-rpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/trash/_001-avrdude-rpi.sh -------------------------------------------------------------------------------- /scripts/wip/trash/avrdude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/scripts/wip/trash/avrdude.conf -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/RPI-CNC-Config-Scripts/HEAD/setup --------------------------------------------------------------------------------