1
0
Fork 0

Nano refactor and Configurator update (#3275)

* Matrix refactor

* Keymap refactor

* Configurator support
This commit is contained in:
noroadsleft 2018-07-01 11:05:10 -07:00 committed by Drashna Jaelre
parent 738eab0bb1
commit 29954efd06
3 changed files with 24 additions and 14 deletions

View file

@ -3,10 +3,12 @@
#include "quantum.h"
#define LAYOUT(k01, k02, k03, k04, k05, k06, k07, k08) \
{ \
{KC_##k01, KC_##k02, KC_##k03, KC_##k04}, \
{KC_##k05, KC_##k06, KC_##k07, KC_##k08} \
#define LAYOUT( \
k01, k02, k03, k04, \
k05, k06, k07, k08 \
) { \
{ k01, k02, k03, k04 }, \
{ k05, k06, k07, k08 } \
}
#endif