diff options
| author | Gabrielius Mickevicius <gabrielius.m@gmail.com> | 2014-12-29 19:34:45 +0200 |
|---|---|---|
| committer | Gabrielius Mickevicius <gabrielius.m@gmail.com> | 2014-12-30 17:45:36 +0200 |
| commit | 6d549c89aa941b2f3dd4e99de553d38223e6a06a (patch) | |
| tree | 5bd39f1a85db87b007dedf301216ea3216095bd5 /arduino-mk-vars.md | |
| parent | 4b4592ac3e8c941ee45db40ff1d5b6ca3bc3683d (diff) | |
Tidy new arduino mk vars
Add CORE and FORCE_MONITOR_PORT to arduino-mk-vars.md and FORCE_MONITOR_PORT
to config print.
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:** |
