Added information about the changes that went in v0.10.4
This commit is contained in:
parent
d8bac0fb14
commit
dc3ec57330
3 changed files with 22 additions and 6 deletions
|
@ -3,6 +3,14 @@ A Makefile for Arduino Sketches
|
||||||
|
|
||||||
The following is the rough list of changes that went into different versions. I tried to give credit whenever possible. If I have missed anyone, kindly add it to the list.
|
The following is the rough list of changes that went into different versions. I tried to give credit whenever possible. If I have missed anyone, kindly add it to the list.
|
||||||
|
|
||||||
|
### 0.10.4 (2013-05-31) @matthijskooijman
|
||||||
|
- Improved BAUD_RATE detection logic
|
||||||
|
- Added logic to check if there is only .ino or .pde file
|
||||||
|
- Compile .ino/.pde files directly
|
||||||
|
- Output configuration only once
|
||||||
|
- Try to read Version.txt file only if it is present
|
||||||
|
- Refactored dependency code
|
||||||
|
|
||||||
### 0.10.3 16.xii 2012 gaftech
|
### 0.10.3 16.xii 2012 gaftech
|
||||||
- Enabling creation of EEPROM file (.eep)
|
- Enabling creation of EEPROM file (.eep)
|
||||||
- EEPROM upload: eeprom and raw_eeprom targets
|
- EEPROM upload: eeprom and raw_eeprom targets
|
||||||
|
|
16
README.md
16
README.md
|
@ -59,14 +59,22 @@ is set to `$HOME/sketchbook`.
|
||||||
|
|
||||||
## Versioning
|
## Versioning
|
||||||
|
|
||||||
The current version of the makefile is `0.10.3`. You can find the full history in the [HISTORY.md](HISTORY.md) file
|
The current version of the makefile is `0.10.4`. You can find the full history in the [HISTORY.md](HISTORY.md) file
|
||||||
|
|
||||||
This project adheres to Semantic [Versioning 2.0](http://semver.org/).
|
This project adheres to Semantic [Versioning 2.0](http://semver.org/).
|
||||||
|
|
||||||
|
## Contribution
|
||||||
|
|
||||||
|
All contributions (even documentation) are welcome :) Open a pull request and I would be happy to merge them.
|
||||||
|
|
||||||
|
If you are looking for ideas to work on, then check out the following TODO items.
|
||||||
|
|
||||||
## Know Issues / TODO's
|
## Know Issues / TODO's
|
||||||
- Doesn't work with Leonardo yet.
|
|
||||||
- More todo's at https://github.com/sudar/Arduino-Makefile/issues/
|
- Doesn't work with Leonardo yet. There are various fixes (#43, #37, #30) but need to verify them #44.
|
||||||
- Because of the way the makefile is structured, the configuration parameters gets printed twice.
|
- Doesn't work with Arduino 1.5.x yet.
|
||||||
|
|
||||||
|
If you find an issue or have an idea for a feature then log them at https://github.com/sudar/Arduino-Makefile/issues/
|
||||||
|
|
||||||
## Similar works
|
## Similar works
|
||||||
- It's not a derivative of this, but Alan Burlison has written a [similar thing](http://bleaklow.com/2010/06/04/a_makefile_for_arduino_sketches.html).
|
- It's not a derivative of this, but Alan Burlison has written a [similar thing](http://bleaklow.com/2010/06/04/a_makefile_for_arduino_sketches.html).
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
########################################################################
|
########################################################################
|
||||||
#
|
#
|
||||||
# Arduino command line tools Makefile
|
# Makefile for compiling Arduino sketches from command line
|
||||||
# System part (i.e. project independent)
|
# System part (i.e. project independent)
|
||||||
#
|
#
|
||||||
# Copyright (C) 2012 Sudar <http://sudarmuthu.com>, based on
|
# Copyright (C) 2012 Sudar <http://sudarmuthu.com>, based on
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
#
|
#
|
||||||
# Original Arduino adaptation by mellis, eighthave, oli.keller
|
# Original Arduino adaptation by mellis, eighthave, oli.keller
|
||||||
#
|
#
|
||||||
# Current version: 0.10.3
|
# Current version: 0.10.4
|
||||||
#
|
#
|
||||||
# Refer to HISTORY.md file for complete history of changes
|
# Refer to HISTORY.md file for complete history of changes
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue