aboutsummaryrefslogtreecommitdiff
path: root/arduino-mk-vars.md
diff options
context:
space:
mode:
authorSudar <sudar@sudarmuthu.com>2014-12-31 11:16:59 +0530
committerSudar <sudar@sudarmuthu.com>2014-12-31 11:16:59 +0530
commitcfd6af90fb2dc43646b9701c1823af1536d73665 (patch)
tree87a9b7048905330f506a150d593500c393a07bae /arduino-mk-vars.md
parentdcc75122847b1e0a8fd8a96a33de2f8e75df8559 (diff)
parente639f81b6c52b2092a4682cdc93efe5832c3e879 (diff)
Merge pull request #307 from Gaboose/pr
Ease flashing through ssh. Tweak alternate core support. #306 rebased
Diffstat (limited to 'arduino-mk-vars.md')
-rw-r--r--arduino-mk-vars.md42
1 files changed, 42 insertions, 0 deletions
diff --git a/arduino-mk-vars.md b/arduino-mk-vars.md
index 73bed78..4003a6c 100644
--- a/arduino-mk-vars.md
+++ b/arduino-mk-vars.md
@@ -316,6 +316,25 @@ MONITOR_PORT = com3
----
+### FORCE_MONITOR_PORT
+
+**Description:**
+
+Skip the MONITOR_PORT existance check.
+
+**Example:**
+
+```Makefile
+# Enable
+FORCE_MONITOR_PORT = true
+# Disable (default)
+undefine FORCE_MONITOR_PORT
+```
+
+**Requirement:** *Optional*
+
+----
+
### USER_LIB_PATH
**Description:**
@@ -392,6 +411,29 @@ ARDUINO_VAR_PATH = ~/sketchbook/hardware/arduino-tiny/cores/tiny
----
+### CORE
+
+**Description:**
+
+Name of the core *inside* the ALTERNATE_CORE or the standard core.
+
+Usually can be auto-detected as `build.core` from `boards.txt`.
+
+**Example:**
+
+```Makefile
+# standard Arduino core (undefine ALTERNATE_CORE)
+CORE = arduino
+# or
+CORE = robot
+# tiny core (ALTERNATE_CORE = arduino-tiny)
+CORE = tiny
+```
+
+**Requirement:** *Optional*
+
+----
+
### VARIANT
**Description:**