aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSudar <sudar@sudarmuthu.com>2014-01-29 10:44:12 +0530
committerSudar <sudar@sudarmuthu.com>2014-01-29 10:44:12 +0530
commit418109c11b5b716fc2157c9f37d999f455d803d2 (patch)
tree4607256ac1a56f34e5a85a37028f5a1da635849f
parent9463195834c6097ab432f575eb924e4dc0ba2082 (diff)
parent427c4573cda70c53ae26cccbcf76315f76c81efd (diff)
Document that ARDUINO_DIR must be a relative path in Windows
Fix #156
-rw-r--r--HISTORY.md4
-rw-r--r--README.md3
2 files changed, 6 insertions, 1 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 538132d..b7deaeb 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -4,6 +4,10 @@ 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.
+### 1.3.0 (2014-01-29)
+- Fix: Use more reliable serial device naming in Windows. Fix issue #139 and #155 (https://github.com/peplin)
+- Fix: Document that ARDUINO_DIR must be a relative path in Windows. Fix issue #156 (https://github.com/peplin)
+
### 1.2.0 (2014-01-14)
- Add: Add RPM SPECfile and new `package` directory to store package instructions and files (https://github.com/sej7278)
- Fix: Remove use of arduino-mk subdirectory in git. Fix issue #151, #152 and #147 (https://github.com/sej7278)
diff --git a/README.md b/README.md
index 5d9406b..7176049 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,8 @@ On Linux, you shouldn't need to set anything other than your board type and port
- `BOARD_TAG` - Type of board, for a list see boards.txt or `make show_boards`
- `MONITOR_PORT` - The port where your Arduino is plugged in, usually `/dev/ttyACM0` or `/dev/ttyUSB0` in Linux or Mac OS X and `com3`, `com4`, etc. in Windows.
-- `ARDUINO_DIR` - Path to Arduino installation
+- `ARDUINO_DIR` - Path to Arduino installation. In Cygwin in Windows this path must be
+ relative, not absolute (e.g. "../../arduino" and not "/c/cygwin/Arduino").
- `ARDMK_DIR` - Path where the `*.mk` are present. If you installed the package, then it is usually `/usr/share/arduino`
- `AVR_TOOLS_DIR` - Path where the avr tools chain binaries are present. If you are going to use the binaries that came with Arduino installation, then you don't have to set it.