aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_macros.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/feature_macros.md')
-rw-r--r--docs/feature_macros.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/feature_macros.md b/docs/feature_macros.md
index aa13fb97f..79419abd2 100644
--- a/docs/feature_macros.md
+++ b/docs/feature_macros.md
@@ -183,11 +183,11 @@ A macro can include the following commands:
183 183
184### Mapping a Macro to a Key 184### Mapping a Macro to a Key
185 185
186Use the `M()` function within your `KEYMAP()` to call a macro. For example, here is the keymap for a 2-key keyboard: 186Use the `M()` function within your keymap to call a macro. For example, here is the keymap for a 2-key keyboard:
187 187
188```c 188```c
189const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { 189const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
190 [0] = KEYMAP( 190 [0] = LAYOUT(
191 M(0), M(1) 191 M(0), M(1)
192 ), 192 ),
193}; 193};
@@ -216,7 +216,7 @@ If you have a bunch of macros you want to refer to from your keymap while keepin
216#define M_BYE M(1) 216#define M_BYE M(1)
217 217
218const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { 218const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
219 [0] = KEYMAP( 219 [0] = LAYOUT(
220 M_HI, M_BYE 220 M_HI, M_BYE
221 ), 221 ),
222}; 222};