aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-14Move files out of `arduino-mk` subdirectorySimon John
fix #152
2014-01-14Add information about `package` folder to changelogSudar
2014-01-04Merge pull request #146 from sej7278/masterSudar
Debian package rebuild instructions.
2014-01-05Added some more build dependencies to ensure everything needed to build isSimon John
installed.
2014-01-05Debian package rebuild instructions.Simon John
Shows a user how to make their own Debian packages from Git. Also has instructions for getting official upstream builds for their distro.
2014-01-01Merge pull request #145 from sej7278/masterSudar
Added package directory with RPM SPECfile (and instructions!)
2013-12-30Changed documentation to use new path, also added dependency info.Simon John
Tested on Fedora 20 - help2man still a bit iffy
2013-12-30moved to better directory layoutSimon John
2013-12-30Added package directory with RPM SPECfile (and instructions!)Simon John
Linked to issue #144 Tested on Fedora 18, works fine except the ard-reset-arduino manpage displays [1m and [0m around some headings, might be a bug in help2man 1.41.2 as it works fine on Debian with 1.43.3, will try CentOS/OEL 6.5 next. I didn't update the changelog as I didn't know what the new development version is going to be.
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-12-26Use `ARDUINO_HEADER` variable instead of hardcoded file namesSudar
Fix #131
2013-12-20Merge pull request #143 from mahoy/masterSudar
Allow target specific optimization levels/debug flags
2013-12-20Allow target specific optimization levels/debug flagsmahoy
Changing the optimization level from -Os to something else breaks the SoftwareSerial library. This patch allow optimization flags to be set on a per target basis.
2013-12-17Add `CONTRIBUTING.md` explaining how to contribute to this projectSudar
2013-12-17Update changelog about the last pull request #142Sudar
2013-12-17Merge pull request #142 from sej7278/masterSudar
User-defined or calculated bootloader parent directory
2013-12-17User-defined or calculated bootloader parent directory, allows forSimon John
relative paths as defined in boards.txt e.g. "atmega" Also added [USER] to ARDUINO_SKETCHBOOK detection Fixes #126
2013-12-16Update changelog about `usbtiny` fixSudar
2013-12-16Merge pull request #140 from PPvG/masterSudar
Don't append port details to avrdude for usbtiny
2013-12-16Add option to set fuses without burning a bootloaderSimon John
When using ICSP programmers e.g. usbasp, you can burn sketches directly to the chip without having to burn a bootloader, however you do need to set fuses e.g. if you're changing speed/BOD. Updated help text to include "make set_fuses" and also changed "make burn_bootloader" help text which wasn't entirely accurate. Fix #141
2013-12-13Don't append port details to avrdude for usbtinyPeter-Paul van Gemerden
Fix 138
2013-12-09Merge pull request #137 from peplin/chipkit-avrdude-macSudar
Adjust path to avrdude/avrdude.conf for MPIDE in Linux.
2013-12-08Adjust path to avrdude/avrdude.conf for MPIDE in Linux.Christopher Peplin
2013-12-05Use MAKEFILE_LIST to get the name of the make fileanthony cantor
This way we don't assume the make file is 'Makefile' and it will work even if it is named as 'makefile' or 'makefile-uno' Fix #130
2013-12-05Auto detect and include libraries specified in `USER_LIB_PATH`Ladislas
Fix #135
2013-12-05Update `HISTORY.md` about ChipKIT 2013 supportSudar
2013-12-03Include assembly vector table in chipKIT build.Christopher Peplin
* Added build step for assembly files in CORE * Removed duplicate flags from AS build step
2013-12-03Add common linker script for MPIDE version 0023-*-20130817-test.Christopher Peplin
2013-11-27Change echo for printfThomas Sigurdsen
rationale: http://unix.stackexchange.com/questions/65803/why-is-printf-better-than-echo fix #129
2013-10-06Show correct path to `arduino.mk` file in help messageSudar
Fix #120
2013-10-06Add `burn_bootloader` targetSudar
Code to burn fuses is moved from ispload target to this new target, so that fuses are burned only once when needed. Fix #85
2013-10-06In ISP mode, read baudrate and programmer from boards.txtSudar
Arduino IDE also reads this from boards.txt file Fix #125
2013-10-06Ignore commented lines while parsing boards.txt fileSudar
Fix #124
2013-10-06Don't append port details to avrdude for usbaspSudar
When usbasp is used as programmer, there is no need to specify the port to avrdude. Fix #123
2013-09-25Bump up version to v1.0.1 for release1.0.1Sudar
This is just a minor bug fix release
2013-09-25Fix whitespace and line spacingSudar
No change in functionality
2013-09-25Unconditionally add `-D` in avrdude options.Sudar
This is needed in Mega boards, because of a bug in Mega bootloader. See https://github.com/sudar/Arduino-Makefile/issues/114#issuecomment-25011005 for detailed explanation. Fix #114
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-09-22Add a README file for /examples folderSudar
Fix #74
2013-09-19Revert "Make all executables overridable"Sudar
If these executables are not overridden in the child makefile, then the default values are not set properly in the master makefile. This complicates the solution for #119 :( This reverts commit 66eec82a3af8ee5aa16e28230346e4a1f166da2b.
2013-09-18Change the next version to 1.0.0, instead of 0.13.0Sudar
Lot of changes went it for this release and the code is stable enough for 1.0.0
2013-09-18Make all executables overridableSudar
This is helpful for #119 which will add support for colorgcc
2013-09-18Remove redundant list of targetsSudar
After #118, we have a separate target (help) to list all available targets. Having this list in a single place is better, since we don't have to make changes in multiple places when things change.
2013-09-18Whitespace and formatting fixSudar
No code or functionality change
2013-09-15Merge branch 'help' of github.com:dapicester/Arduino-Makefile into ↵Sudar
dapicester-help
2013-09-15Added detailed instructions for using alternative coresSudar
Should close Issue #60
2013-09-15Added help target showing a summary of all the available targetsxPaolo D'Apice