├── .gitignore ├── .travis.yml ├── Arduino.mk ├── CONTRIBUTING.md ├── Common.mk ├── HISTORY.md ├── OpenCM.mk ├── OpenCR.mk ├── README.md ├── Sam.mk ├── Teensy.mk ├── ard-reset-arduino.1 ├── ardmk-init.1 ├── arduino-mk-vars.md ├── bin ├── ard-reset-arduino ├── ardmk-init └── robotis-loader ├── chipKIT.mk ├── examples ├── .gitignore ├── ATtinyBlink │ ├── ATtinyBlink.ino │ └── Makefile ├── AnalogInOutSerial │ ├── AnalogInOutSerial.ino │ └── Makefile ├── Blink │ ├── Blink.ino │ └── Makefile ├── Blink3rdPartyLib │ ├── Blink3rdPartyLib.cpp │ ├── Makefile │ ├── Toggle │ │ ├── Makefile │ │ ├── TogglePin.cpp │ │ └── TogglePin.h │ └── board.mk ├── BlinkChipKIT │ ├── BlinkChipKIT.pde │ └── Makefile ├── BlinkInAVRC │ ├── Makefile │ └── blink.c ├── BlinkNetworkRPi │ ├── ATtinyBlink.ino │ └── Makefile ├── BlinkOpenCM │ ├── Blink.ino │ └── Makefile ├── BlinkOpenCR │ ├── BlinkOpenCR.ino │ └── Makefile ├── BlinkTeensy │ ├── Blink.ino │ └── Makefile ├── BlinkWithoutDelay │ ├── BlinkWithoutDelay.ino │ └── Makefile ├── DueBlink │ ├── DueBlink.ino │ └── Makefile ├── Fade │ ├── Fade.ino │ └── Makefile ├── HelloWorld │ ├── HelloWorld.ino │ └── Makefile ├── MZeroBlink │ ├── MZeroBlink.ino │ └── Makefile ├── MakefileExample │ ├── Makefile-3rd_party-board.mk │ └── Makefile-example.mk ├── README.md ├── SerialPrint │ ├── Makefile │ └── SerialPrint.ino ├── TinySoftWareSerial │ ├── Makefile │ └── TinySoftwareSerial.ino ├── WebServer │ ├── Makefile │ └── WebServer.ino ├── ZeroBlink │ ├── Makefile │ └── ZeroBlink.ino ├── master_reader │ ├── Makefile │ └── master_reader.ino └── toneMelody │ ├── Makefile │ ├── pitches.h │ └── toneMelody.ino ├── licence.txt ├── packaging ├── debian │ └── README.md └── fedora │ ├── README.md │ └── arduino-mk.spec ├── robotis-loader.1 └── tests └── script ├── bootstrap.sh ├── bootstrap ├── arduino.sh ├── chipkit.sh ├── common.sh ├── pip-requirements.txt └── samd.sh └── runtests.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/.travis.yml -------------------------------------------------------------------------------- /Arduino.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/Arduino.mk -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/Common.mk -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/HISTORY.md -------------------------------------------------------------------------------- /OpenCM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/OpenCM.mk -------------------------------------------------------------------------------- /OpenCR.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/OpenCR.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/README.md -------------------------------------------------------------------------------- /Sam.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/Sam.mk -------------------------------------------------------------------------------- /Teensy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/Teensy.mk -------------------------------------------------------------------------------- /ard-reset-arduino.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/ard-reset-arduino.1 -------------------------------------------------------------------------------- /ardmk-init.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/ardmk-init.1 -------------------------------------------------------------------------------- /arduino-mk-vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/arduino-mk-vars.md -------------------------------------------------------------------------------- /bin/ard-reset-arduino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/bin/ard-reset-arduino -------------------------------------------------------------------------------- /bin/ardmk-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/bin/ardmk-init -------------------------------------------------------------------------------- /bin/robotis-loader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/bin/robotis-loader -------------------------------------------------------------------------------- /chipKIT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/chipKIT.mk -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | build-* 2 | -------------------------------------------------------------------------------- /examples/ATtinyBlink/ATtinyBlink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/ATtinyBlink/ATtinyBlink.ino -------------------------------------------------------------------------------- /examples/ATtinyBlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/ATtinyBlink/Makefile -------------------------------------------------------------------------------- /examples/AnalogInOutSerial/AnalogInOutSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/AnalogInOutSerial/AnalogInOutSerial.ino -------------------------------------------------------------------------------- /examples/AnalogInOutSerial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/AnalogInOutSerial/Makefile -------------------------------------------------------------------------------- /examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /examples/Blink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/Blink/Makefile -------------------------------------------------------------------------------- /examples/Blink3rdPartyLib/Blink3rdPartyLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/Blink3rdPartyLib/Blink3rdPartyLib.cpp -------------------------------------------------------------------------------- /examples/Blink3rdPartyLib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/Blink3rdPartyLib/Makefile -------------------------------------------------------------------------------- /examples/Blink3rdPartyLib/Toggle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/Blink3rdPartyLib/Toggle/Makefile -------------------------------------------------------------------------------- /examples/Blink3rdPartyLib/Toggle/TogglePin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/Blink3rdPartyLib/Toggle/TogglePin.cpp -------------------------------------------------------------------------------- /examples/Blink3rdPartyLib/Toggle/TogglePin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/Blink3rdPartyLib/Toggle/TogglePin.h -------------------------------------------------------------------------------- /examples/Blink3rdPartyLib/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/Blink3rdPartyLib/board.mk -------------------------------------------------------------------------------- /examples/BlinkChipKIT/BlinkChipKIT.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkChipKIT/BlinkChipKIT.pde -------------------------------------------------------------------------------- /examples/BlinkChipKIT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkChipKIT/Makefile -------------------------------------------------------------------------------- /examples/BlinkInAVRC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkInAVRC/Makefile -------------------------------------------------------------------------------- /examples/BlinkInAVRC/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkInAVRC/blink.c -------------------------------------------------------------------------------- /examples/BlinkNetworkRPi/ATtinyBlink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkNetworkRPi/ATtinyBlink.ino -------------------------------------------------------------------------------- /examples/BlinkNetworkRPi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkNetworkRPi/Makefile -------------------------------------------------------------------------------- /examples/BlinkOpenCM/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkOpenCM/Blink.ino -------------------------------------------------------------------------------- /examples/BlinkOpenCM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkOpenCM/Makefile -------------------------------------------------------------------------------- /examples/BlinkOpenCR/BlinkOpenCR.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkOpenCR/BlinkOpenCR.ino -------------------------------------------------------------------------------- /examples/BlinkOpenCR/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkOpenCR/Makefile -------------------------------------------------------------------------------- /examples/BlinkTeensy/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkTeensy/Blink.ino -------------------------------------------------------------------------------- /examples/BlinkTeensy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkTeensy/Makefile -------------------------------------------------------------------------------- /examples/BlinkWithoutDelay/BlinkWithoutDelay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkWithoutDelay/BlinkWithoutDelay.ino -------------------------------------------------------------------------------- /examples/BlinkWithoutDelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/BlinkWithoutDelay/Makefile -------------------------------------------------------------------------------- /examples/DueBlink/DueBlink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/DueBlink/DueBlink.ino -------------------------------------------------------------------------------- /examples/DueBlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/DueBlink/Makefile -------------------------------------------------------------------------------- /examples/Fade/Fade.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/Fade/Fade.ino -------------------------------------------------------------------------------- /examples/Fade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/Fade/Makefile -------------------------------------------------------------------------------- /examples/HelloWorld/HelloWorld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/HelloWorld/HelloWorld.ino -------------------------------------------------------------------------------- /examples/HelloWorld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/HelloWorld/Makefile -------------------------------------------------------------------------------- /examples/MZeroBlink/MZeroBlink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/MZeroBlink/MZeroBlink.ino -------------------------------------------------------------------------------- /examples/MZeroBlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/MZeroBlink/Makefile -------------------------------------------------------------------------------- /examples/MakefileExample/Makefile-3rd_party-board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/MakefileExample/Makefile-3rd_party-board.mk -------------------------------------------------------------------------------- /examples/MakefileExample/Makefile-example.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/MakefileExample/Makefile-example.mk -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/SerialPrint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/SerialPrint/Makefile -------------------------------------------------------------------------------- /examples/SerialPrint/SerialPrint.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/SerialPrint/SerialPrint.ino -------------------------------------------------------------------------------- /examples/TinySoftWareSerial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/TinySoftWareSerial/Makefile -------------------------------------------------------------------------------- /examples/TinySoftWareSerial/TinySoftwareSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/TinySoftWareSerial/TinySoftwareSerial.ino -------------------------------------------------------------------------------- /examples/WebServer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/WebServer/Makefile -------------------------------------------------------------------------------- /examples/WebServer/WebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/WebServer/WebServer.ino -------------------------------------------------------------------------------- /examples/ZeroBlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/ZeroBlink/Makefile -------------------------------------------------------------------------------- /examples/ZeroBlink/ZeroBlink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/ZeroBlink/ZeroBlink.ino -------------------------------------------------------------------------------- /examples/master_reader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/master_reader/Makefile -------------------------------------------------------------------------------- /examples/master_reader/master_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/master_reader/master_reader.ino -------------------------------------------------------------------------------- /examples/toneMelody/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/toneMelody/Makefile -------------------------------------------------------------------------------- /examples/toneMelody/pitches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/toneMelody/pitches.h -------------------------------------------------------------------------------- /examples/toneMelody/toneMelody.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/examples/toneMelody/toneMelody.ino -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/licence.txt -------------------------------------------------------------------------------- /packaging/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/packaging/debian/README.md -------------------------------------------------------------------------------- /packaging/fedora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/packaging/fedora/README.md -------------------------------------------------------------------------------- /packaging/fedora/arduino-mk.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/packaging/fedora/arduino-mk.spec -------------------------------------------------------------------------------- /robotis-loader.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/robotis-loader.1 -------------------------------------------------------------------------------- /tests/script/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/tests/script/bootstrap.sh -------------------------------------------------------------------------------- /tests/script/bootstrap/arduino.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/tests/script/bootstrap/arduino.sh -------------------------------------------------------------------------------- /tests/script/bootstrap/chipkit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/tests/script/bootstrap/chipkit.sh -------------------------------------------------------------------------------- /tests/script/bootstrap/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/tests/script/bootstrap/common.sh -------------------------------------------------------------------------------- /tests/script/bootstrap/pip-requirements.txt: -------------------------------------------------------------------------------- 1 | pyserial==3.4 2 | -------------------------------------------------------------------------------- /tests/script/bootstrap/samd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/tests/script/bootstrap/samd.sh -------------------------------------------------------------------------------- /tests/script/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudar/Arduino-Makefile/HEAD/tests/script/runtests.sh --------------------------------------------------------------------------------