-
-
Notifications
You must be signed in to change notification settings - Fork 39.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QMK Configurator update for the Pearl 40% #2810
Conversation
Attempt to get the physical layout as displayed in the Configurator more true-to-life.
QMK Configurator update for the Pearl 40%
By changing KEYMAP to LAYOUT in the .h file, all the keymaps who rely on KEYMAP are now broken. You need to go into the keymap directory and fix all the keymaps affected by this change. Should just be an issue of renaming KEYMAP to LAYOUT. |
"By changing KEYMAP to LAYOUT in the .h file, all the keymaps who rely on KEYMAP are now broken. You need to go into the keymap directory and fix all the keymaps affected by this change. Should just be an issue of renaming KEYMAP to LAYOUT."
Bugfixes per mechmerlin
Bugfixes per mechmerlin
…dsleft/qmk_firmware into noroadsleft-patch-20180425
Also, if you're editing the keymap.c files, could you switch the This does the same thing, but it makes the keymap more "universal", which is part of the point of switching to LAYOUT over keymap. |
-#include "pearl.h" +#QMK_KEYBOARD_H
keymap.c updates for Pearl
Awesome, thanks! |
* QMK Configurator updates for the Pearl 40% Attempt to get the physical layout as displayed in the Configurator more true-to-life. * Bugfixes per mechmerlin "By changing KEYMAP to LAYOUT in the .h file, all the keymaps who rely on KEYMAP are now broken. You need to go into the keymap directory and fix all the keymaps affected by this change. Should just be an issue of renaming KEYMAP to LAYOUT." * Merge pull request qmk#2 from noroadsleft/noroadsleft-patch-20180425 Bugfixes per mechmerlin * keymap.c updates for Pearl -#include "pearl.h" +#QMK_KEYBOARD_H
* QMK Configurator updates for the Pearl 40% Attempt to get the physical layout as displayed in the Configurator more true-to-life. * Bugfixes per mechmerlin "By changing KEYMAP to LAYOUT in the .h file, all the keymaps who rely on KEYMAP are now broken. You need to go into the keymap directory and fix all the keymaps affected by this change. Should just be an issue of renaming KEYMAP to LAYOUT." * Merge pull request qmk#2 from noroadsleft/noroadsleft-patch-20180425 Bugfixes per mechmerlin * keymap.c updates for Pearl -#include "pearl.h" +#QMK_KEYBOARD_H
My attempt to get the physical layout as displayed in the Configurator more true-to-life. Intend to do more of these once I get more comfortable with QMK source. Having to familiarize myself with
keymap.c
s andkeyboard.h
s. Just a small update to see if I've done this properly.keyboards/pearl/pearl.h
was also updated to changeKEYMAP
toLAYOUT
per instructions received from /u/merlin36 (MechMerlin) on reddit, who stated in a PM thatKEYMAP
is deprecated.