diff options
| author | Sudar <sudar@sudarmuthu.com> | 2015-01-23 15:23:55 +0530 |
|---|---|---|
| committer | Sudar <sudar@sudarmuthu.com> | 2015-01-23 15:23:55 +0530 |
| commit | 27ed197accd379d7a19b2f414bb26dea61b8576c (patch) | |
| tree | ba86d0364dcd3a7d33855ff6171da4adf0f59ebc /arduino-mk-vars.md | |
| parent | 131809e5085a57a41da14aec68a3467a1a109115 (diff) | |
| parent | a6505e6da83f85c5a365ff7729775954bd5d51e7 (diff) | |
Merge pull request #315 from sej7278/master
Get all the commits before #313
Diffstat (limited to 'arduino-mk-vars.md')
| -rw-r--r-- | arduino-mk-vars.md | 42 |
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:** |
