1
0

Merge pull request #39 from gedankenexperimenter/f/keymaps

Updated definition of keymaps[] to use KEYMAPS() macro
This commit is contained in:
Gergely Nagy 2018-04-05 10:09:37 +02:00 committed by GitHub
commit deef154018
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,7 @@ enum { QWERTY, NUMPAD, FUNCTION }; // layers
*/
// *INDENT-OFF*
const Key keymaps[][ROWS][COLS] PROGMEM = {
KEYMAPS(
[QWERTY] = KEYMAP_STACKED
(___, Key_1, Key_2, Key_3, Key_4, Key_5, Key_LEDEffectNext,
@ -176,7 +176,7 @@ const Key keymaps[][ROWS][COLS] PROGMEM = {
___, ___, Key_Enter, ___,
___)
};
) // KEYMAPS(
/* Re-enable astyle's indent enforcement */
// *INDENT-ON*