aboutsummaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2016-07-02Update READMEaz-z
Updated to reflect the Linux changes for Arduino 1.6.5 Updated to reflect the information (Linux portion) from the guide. Removed the URL to the blog.
2016-02-22Bump up version to v1.5.1 for release1.5.1Sudar Muthu
2015-09-21added missing quote in RAEDME.md and fix-note in HISTORY.mdThomas Kilian
2015-09-21Add path examples for both Mac IDE versionsThomas Kilian
2015-07-02Added examples for various boards and IDE versions to the Blink example.Simon John
2015-06-24Updated instructions for Fedora 22Simon John
2015-05-15Updated some documentation to clarify 1.5+ settings.Simon John
Fixes #352
2015-04-08Update README about the version of Arduino that are supportedSudar
Fix #328
2015-04-07Bump version to v1.5 for release1.5Sudar
2015-04-06Replace comment about not supporting 1.5 with not supporting SAMSimon John
We can probably close issue #45 and maybe open a new one for ARM SAM support, as 1.6.3 is supported now (and 1.5 is dead).
2015-04-05Add a note about Arduino.orgSudar
2015-04-04Make sure pyserial is properly linkedSudar
2015-04-04Link to Requirements sectionSudar
2015-04-04Tweak pyserial installation instructionsSudar
2015-04-04Better highlighting for code in READMESudar
2015-03-14Add credit to the contributorsSudar
2015-02-25instructions on setting CodeBlocks IDE to use the makefilesfilip
2015-01-01Change CXX_NAME to CXX as per the EmacsWiki for Flymake instructions.Simon John
Makes it a bit more standard too.
2014-11-27Add information about installing dependencies when installing usingSudar
homebrew Refer to https://github.com/sudar/homebrew-arduino-mk/issues/2#issuecomment-64432785
2014-11-23Add information about homebrew in ReadMESudar
2014-11-23Added support for PuTTY on WindowsPeter Mosmans
Use MONITOR_CMD=putty The optional parameter MONITOR_PARMS can be used as well
2014-10-22added info about Teensy to README.mdstepcut
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