aboutsummaryrefslogtreecommitdiff
path: root/docs/getting_started_make_guide.md
diff options
context:
space:
mode:
authorAmber Holly <halcyonsilver@gmail.com>2019-10-19 02:14:49 +0100
committerDrashna Jaelre <drashna@live.com>2019-10-18 18:14:49 -0700
commitb23f6011c34dcb471c312655f7af37c0a0f5f779 (patch)
tree4bacbf412e19469f4cda38d65f2943debed2f24a /docs/getting_started_make_guide.md
parent1b1e0977e020b3b381f874144aed31d0664d88d2 (diff)
downloadqmk_firmware-b23f6011c34dcb471c312655f7af37c0a0f5f779.tar.gz
qmk_firmware-b23f6011c34dcb471c312655f7af37c0a0f5f779.zip
Remove build option firmware size impacts (#6947)
* Update rules.mk template to remove build option size impacts * Add rules.mk cleaning script * Update all rules.mk files to remove build option firmware size impact messages * Remove references to feature filesize in documentation * Revert "Update all rules.mk files to remove build option firmware size impact messages" This reverts commit 7cfe70976bcc223bf47c960b2e6af8596df80a32. * Fix regex in cleanup script and exclude keymaps/ directories * Update quantum/template/avr/rules.mk Fixed missing tabs/spaces. Co-Authored-By: fauxpark <fauxpark@gmail.com>
Diffstat (limited to 'docs/getting_started_make_guide.md')
-rw-r--r--docs/getting_started_make_guide.md8
1 files changed, 1 insertions, 7 deletions
diff --git a/docs/getting_started_make_guide.md b/docs/getting_started_make_guide.md
index 71e9d33f2..d1ecf6f5a 100644
--- a/docs/getting_started_make_guide.md
+++ b/docs/getting_started_make_guide.md
@@ -41,8 +41,6 @@ Set these variables to `no` to disable them, and `yes` to enable them.
41 41
42This allows you to hold a key and the salt key (space by default) and have access to a various EEPROM settings that persist over power loss. It's advised you keep this disabled, as the settings are often changed by accident, and produce confusing results that makes it difficult to debug. It's one of the more common problems encountered in help sessions. 42This allows you to hold a key and the salt key (space by default) and have access to a various EEPROM settings that persist over power loss. It's advised you keep this disabled, as the settings are often changed by accident, and produce confusing results that makes it difficult to debug. It's one of the more common problems encountered in help sessions.
43 43
44Consumes about 1000 bytes.
45
46`MOUSEKEY_ENABLE` 44`MOUSEKEY_ENABLE`
47 45
48This gives you control over cursor movements and clicks via keycodes/custom functions. 46This gives you control over cursor movements and clicks via keycodes/custom functions.
@@ -67,8 +65,6 @@ To see the text, open `hid_listen` and enjoy looking at your printed messages.
67 65
68**NOTE:** Do not include *uprint* messages in anything other than your keymap code. It must not be used within the QMK system framework. Otherwise, you will bloat other people's .hex files. 66**NOTE:** Do not include *uprint* messages in anything other than your keymap code. It must not be used within the QMK system framework. Otherwise, you will bloat other people's .hex files.
69 67
70Consumes about 400 bytes.
71
72`COMMAND_ENABLE` 68`COMMAND_ENABLE`
73 69
74This enables magic commands, typically fired with the default magic key combo `LSHIFT+RSHIFT+KEY`. Magic commands include turning on debugging messages (`MAGIC+D`) or temporarily toggling NKRO (`MAGIC+N`). 70This enables magic commands, typically fired with the default magic key combo `LSHIFT+RSHIFT+KEY`. Magic commands include turning on debugging messages (`MAGIC+D`) or temporarily toggling NKRO (`MAGIC+N`).
@@ -125,11 +121,9 @@ Use this to debug changes to variable values, see the [tracing variables](unit_t
125 121
126This enables using the Quantum SYSEX API to send strings (somewhere?) 122This enables using the Quantum SYSEX API to send strings (somewhere?)
127 123
128This consumes about 5390 bytes.
129
130`KEY_LOCK_ENABLE` 124`KEY_LOCK_ENABLE`
131 125
132This enables [key lock](feature_key_lock.md). This consumes an additional 260 bytes. 126This enables [key lock](feature_key_lock.md).
133 127
134`SPLIT_KEYBOARD` 128`SPLIT_KEYBOARD`
135 129