aboutsummaryrefslogtreecommitdiff
path: root/arduino-mk-vars.md
diff options
context:
space:
mode:
authorSimon John <git@the-jedi.co.uk>2014-06-01 17:14:38 +0100
committerSimon John <git@the-jedi.co.uk>2014-07-12 19:05:35 +0200
commit8cdae73deb032eab3c06111de32229d85783ad2d (patch)
tree2534480b2e2c367702eb561a87517eb83d251f34 /arduino-mk-vars.md
parent542529ae4ff419f66360c7075ebc0bb9807fcd67 (diff)
Made all the changes into one commit that could be a patch for master
Diffstat (limited to 'arduino-mk-vars.md')
-rw-r--r--arduino-mk-vars.md58
1 files changed, 58 insertions, 0 deletions
diff --git a/arduino-mk-vars.md b/arduino-mk-vars.md
index 57bf2c2..e62c9dd 100644
--- a/arduino-mk-vars.md
+++ b/arduino-mk-vars.md
@@ -129,6 +129,42 @@ ARDUINO_VERSION = 105
----
+### ARCHITECTURE
+
+**Description:**
+
+Architecture for Arduino 1.5
+
+Defaults to unset for 1.0 or `avr` for 1.5
+
+**Example:**
+
+```Makefile
+ARCHITECTURE = sam
+```
+
+**Requirement:** *Optional*
+
+----
+
+### VENDOR
+
+**Description:**
+
+Board vendor/maintainer.
+
+Defaults to `arduino`
+
+**Example:**
+
+```Makefile
+VENDOR = sparkfun
+```
+
+**Requirement:** *Optional*
+
+----
+
### ARDUINO_SKETCHBOOK
**Description:**
@@ -220,6 +256,26 @@ BOARD_TAG = uno or mega2560
----
+### BOARD_SUB
+
+**Description:**
+
+1.5 submenu as listed in `boards.txt`
+
+**Example:**
+
+```Makefile
+# diecimila.name=Arduino Duemilanove or Diecimila
+BOARD_TAG=diecimila
+
+# diecimila.menu.cpu.atmega168=ATmega168
+BOARD_SUB=atmega168
+```
+
+**Requirement:** *Mandatory for 1.5 if using a submenu CPU*
+
+----
+
### MONITOR_PORT
**Description:**
@@ -1030,6 +1086,8 @@ Relative path to bootloader directory.
Usually can be auto-detected as a relative `bootloader.path` from `boards.txt`
+Deprecated in 1.5, now part of bootloader.file
+
**Example:**
```Makefile