aboutsummaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2014-09-23Added ArchLinux package info, thanks Niels.Simon John
Linked Fedora packaging instructions to homepage. Added Raspbian to distro's with arduino-mk apt packages.
2014-09-20Move scripts inside tests directory.Christopher Peplin
Fixed https://github.com/sudar/Arduino-Makefile/issues/260
2014-09-10Add the built status buttonSudar
2014-09-09Add a script to compile examples as an automated test suite.Christopher Peplin
* Added script/boostrap.sh to download the Arduino IDE and MPIDE (for chipKIT). Tested in Linux, should work in Cygwin and OS X too. * Added script/runtests.sh to run "make" in each example project and collect the results. The script returns -1 if any fails. * Moved currently testable examples to a "tests" directory, separate from examples that require alternative cores.
2014-08-28Small typo, can lead to copy and paste failsJoseivaldo Benito Junior
Signed-off-by: Joseivaldo Benito Junior <jrbenito@benito.qsl.br>
2014-08-08Add some documentation regarding overloading system libs and reporting bugsSimon John
2014-07-16Add information about `Bare-Arduino-Project` in READMESudar
Fix #220 Fix #221 Fix #225
2014-07-16Add "Interfacing with other projects" section in READMESudar
2014-07-12Made all the changes into one commit that could be a patch for masterSimon John
2014-07-12Bump up version to v1.3.4 for release1.3.4Sudar
2014-06-10Make Arduino.mk compatible with FlymakeRonan Barzic
If Flymake is configured to parse .ino files the same way as for c/c++ files, it creates a temporary file (_flymake.ino) in the same directory as the original file. It fails with the current Arduino.mk because of the check for multiple .ino files. This fix removes the check only when flymake is calling the Makefile (Flymake will call make with the variable CHK_SOURCES set to the temporary file name) To make Flymake working with .ino file : Add : check-syntax: $(CXX_NAME) -c -include Arduino.h -x c++ $(CXXFLAGS) $(CPPFLAGS) -fsyntax-only $(CHK_SOURCES) in the project Makefile after the inclusion of the Arduino.mk file Edit the flymake configuration : M-x customize-option RET flymake-allowed-file-name-masks RET (using auto completion !) Add the line : ("\\.ino\\'" flymake-simple-make-init) Then click on "Apply and Save" button Fix #211
2014-05-21Some language clean upSimon John
2014-04-13Bump up version to v1.3.3 for release1.3.3Simon John
Fix #189
2014-04-11Bump up version to v1.3.2 for release1.3.2Sudar
2014-04-11Tweak AVRdude conf file detection in windowsEAGMnor
On windows the AVRdude configuration file is now detected properly. The comments and `README` are updated as well. Fix #187
2014-04-02replace perl reset script with python oneSimon John
Fix #180 Fix #127
2014-03-06Add a reference makefile, with real-world exampletinyladi
2014-02-04Document all the variables that can be overridden in child makefileSudar
Huge thanks to @sej7278 for doing this Fix #75
2014-02-01BUNDLED_AVR_TOOLS_DIR is now set correctly using := instead of ?=,Simon John
so that installations using only the arduino-core packages that don't have the $(ARDUINO_DIR)/hardware/tools/avr directory can still use the avr-g++ tools found in the $PATH (/usr/bin) Previously BUNDLED_AVR_TOOLS_DIR was set to an empty string as the directory doesn't exist, which meant that "ifdef BUNDLED_AVR_TOOLS_DIR..." was set rather than skipping to "else SYSTEMPATH_AVR_TOOLS_DIR...." No user would set BUNDLED_AVR_TOOLS_DIR so the assignment operator := should be used not ?= Updated the version info/changes in various locations.
2014-01-29Bump up version to v1.3.0 for release1.3.0Sudar
2014-01-29Update `README.md` about compatibility with WindowsSudar
Fix #94
2014-01-29Document that ARDUINO_DIR must be a relative path in WindowsSudar
Fix #156
2014-01-28Document that ARDUINO_DIR must be a relative path in Windows.Christopher Peplin
2014-01-28Use more reliable serial device naming in Windows.Christopher Peplin
* Strip leading "/dev/" from MONITOR_PORT before handing to avrdude in Windows. * Use the more widely available awk tool instead of bc to subtract 1 from COM ID (as opposed to `bc`). * Allow Windows user to specify "com1" or just "1". * Document MONITOR_PORT format for Windows users.
2014-01-14Simplify package vs git checkout detectionSimon John
Fix #147 Fix #151 Fix #153 The following are the detailed changes - Remove ARDMK_PATH, ARDMK_FILE and arduino-mk subdirectory - Looks for ard-reset-arduino in $PATH or ARDMK_DIR/bin - Fix git-archive command in RPM SPEC file - Remove some whitespace - Remove arduino-mk dir from debian package's arduino-mk.install - Update docs to reflect the above changes - Bump Up version to 1.2.0
2013-12-26Bump up version number to v1.1.0 for release1.1.0Sudar
2013-12-26Add information about license in `README.md`Sudar
Fix #128
2013-09-25Bump up version to v1.0.1 for release1.0.1Sudar
This is just a minor bug fix release
2013-09-22Fix link to colorgcc in readmeSudar
2013-09-22Bump up version to v1.0.0 for release1.0.0Sudar
2013-09-22Add note about using colorgcc with this makefileSudar
Fix #119
2013-07-28Update instructions about ARDMK_DIR and ARDMK_PATHSudar
Both `ARDMK_DIR` and `ARDMK_PATH` needs to be set differently based on whether the makefile is installed through a package or git checkout. Refer to #111 to find out why it is needed.
2013-07-18Fix typo in Perl command in READMEChristopher Peplin
2013-07-12Make `ARDMK_PATH` and `ARDMK_DIR` backward compatibleSudar
When support for ChipKit was added recently (issue #98) it broke the way ARDMK_PATH and ARDMK_DIR were handled, if the package was installed through package. It was only working if you have done a git checkout. This commit fixes it, but searching for `Common.mk` both in `ARDMK_DIR/arduino-mk` and `ARDMK_DIR/` directories. Fix #110
2013-07-09Remove Perl YAML dependency from documentation.Christopher Peplin
YAML is no longer necessary in Perl since ard-parse-boards was implemented in the Makefile itself.
2013-06-28Update instructions about including librariesSudar
2013-06-25Mention AVRDUDE and AVRDUDE_CONF in README.md.Ralf Doering
2013-06-25Add openSUSE perl package hints to README.md.Ralf Doering
Signed-off-by: Ralf Doering <ralf@rdoering.net>
2013-06-23Add installation guide to Readme fileSudar
2013-06-20Release v0.12.00.12.0Sudar
2013-06-15Release v0.11.00.11.0Sudar
2013-06-14Tag v0.10.6 for release0.10.6Sudar
2013-06-11Release v0.10.50.10.5Sudar
2013-06-11Add todo's and known issuesSudar
2013-06-11Add support for leonardo.Sudar
Leonardo board requires a new way of handling board reset. There is a new script which does the reset differently for leonardo boards. close #30 and close #44
2013-05-31Added information about the changes that went in v0.10.40.10.4Sudar
2013-05-31Moved all version information and change log into HISTORY.md fileSudar
2013-05-19Updated readme to add information about change in maintainersSudar
2013-01-21Updated ReadmeSudar
2013-01-21Merge branch 'master' of git://github.com/fr0sty1/Arduino-MakefileSudar