aboutsummaryrefslogtreecommitdiff
path: root/docs/glossary.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/glossary.md')
-rw-r--r--docs/glossary.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/glossary.md b/docs/glossary.md
index e1103ec94..67820c7b2 100644
--- a/docs/glossary.md
+++ b/docs/glossary.md
@@ -36,7 +36,7 @@ An alternative keyboard layout developed by Dr. August Dvorak in the 1930's. A s
36## Dynamic Macro 36## Dynamic Macro
37A macro which has been recorded on the keyboard and which will be lost when the keyboard is unplugged or the computer rebooted. 37A macro which has been recorded on the keyboard and which will be lost when the keyboard is unplugged or the computer rebooted.
38 38
39* [Dynamic Macro Documentation](dynamic_macros.html) 39* [Dynamic Macro Documentation](feature_dynamic_macros.md)
40 40
41## Eclipse 41## Eclipse
42An IDE that is popular with many C developers. 42An IDE that is popular with many C developers.
@@ -93,7 +93,7 @@ A wiring pattern of columns and rows that enables the MCU to detect keypresses w
93## Macro 93## Macro
94A feature that lets you send muiltple keypress events (hid reports) after having pressed only a single key. 94A feature that lets you send muiltple keypress events (hid reports) after having pressed only a single key.
95 95
96* [Macro Documentation](macros.html) 96* [Macro Documentation](feature_macros.md)
97 97
98## MCU 98## MCU
99Microcontrol Unit, the processor that powers your keyboard. 99Microcontrol Unit, the processor that powers your keyboard.
@@ -104,7 +104,7 @@ A key that is held down while typing another key to modify the action of that ke
104## Mousekeys 104## Mousekeys
105A feature that lets you control your mouse cursor and click from your keyboard. 105A feature that lets you control your mouse cursor and click from your keyboard.
106 106
107* [Mousekeys Documentation](mouse_keys.html) 107* [Mousekeys Documentation](feature_mouse_keys.html)
108 108
109## N-Key Rollover (NKRO) 109## N-Key Rollover (NKRO)
110A term that applies to keyboards that are capable of reporting any number of key-presses at once. 110A term that applies to keyboards that are capable of reporting any number of key-presses at once.
@@ -133,7 +133,7 @@ A 1 byte number that is sent as part of a HID report over USB that represents a
133## Space Cadet Shift 133## Space Cadet Shift
134A special set of shift keys which allow you to type various types of braces by tapping the left or right shift one or more times. 134A special set of shift keys which allow you to type various types of braces by tapping the left or right shift one or more times.
135 135
136* [Space Cadet Shift Documentation](space_cadet_shift.html) 136* [Space Cadet Shift Documentation](feature_space_cadet.html)
137 137
138## Tap 138## Tap
139Pressing and releasing a key. In some situations you will need to distinguish between a key down and a key up event, and Tap always refers to both at once. 139Pressing and releasing a key. In some situations you will need to distinguish between a key down and a key up event, and Tap always refers to both at once.
@@ -141,7 +141,7 @@ Pressing and releasing a key. In some situations you will need to distinguish be
141## Tap Dance 141## Tap Dance
142A feature that lets you assign muiltple keycodes to the same key based on how many times you press it. 142A feature that lets you assign muiltple keycodes to the same key based on how many times you press it.
143 143
144* [Tap Dance Documentation](tap_dance.md) 144* [Tap Dance Documentation](feature_tap_dance.md)
145 145
146## Teensy 146## Teensy
147A low-cost AVR development board that is commonly used for hand-wired builds. A teensy is often chosen despite costing a few dollors more due to its halfkay bootloader, which makes flashing very simple. 147A low-cost AVR development board that is commonly used for hand-wired builds. A teensy is often chosen despite costing a few dollors more due to its halfkay bootloader, which makes flashing very simple.
@@ -152,7 +152,7 @@ A generic term for LEDs that light the underside of the board. These LED's typic
152## Unicode 152## Unicode
153In the larger computer world Unicode is a set of encoding schemes for representing characters in any language. As it relates to QMK it means using various OS schemes to send unicode codepoints instead of scancodes. 153In the larger computer world Unicode is a set of encoding schemes for representing characters in any language. As it relates to QMK it means using various OS schemes to send unicode codepoints instead of scancodes.
154 154
155* [Unicode Documentation](unicode.md) 155* [Unicode Documentation](feature_unicode.md)
156 156
157## Unit Testing 157## Unit Testing
158A framework for running automated tests against QMK. Unit testing helps us be confident that our changes do not break anything. 158A framework for running automated tests against QMK. Unit testing helps us be confident that our changes do not break anything.