initial (#18859)
This commit is contained in:
parent
dfef313587
commit
fb8cfe43a3
9 changed files with 45 additions and 179 deletions
|
@ -19,8 +19,27 @@
|
|||
|
||||
#include "quantum.h"
|
||||
|
||||
#if defined(KEYBOARD_doio_kb16_rev1)
|
||||
#include "rev1.h"
|
||||
#elif defined(KEYBOARD_doio_kb16_rev2)
|
||||
#include "rev2.h"
|
||||
#endif
|
||||
#define XXX KC_NO
|
||||
|
||||
/* ┌───┬───┬───┬───┐ ┌───┐ ┌───┐
|
||||
* │00 │01 │02 │03 │ │04 │ │14 │
|
||||
* ├───┼───┼───┼───┤ └───┘ └───┘
|
||||
* │10 │11 │12 │13 │
|
||||
* ├───┼───┼───┼───┤
|
||||
* │20 │21 │22 │23 │ ┌───┐
|
||||
* ├───┼───┼───┼───┤ │24 │
|
||||
* │30 │31 │32 │33 │ └───┘
|
||||
* └───┴───┴───┴───┘
|
||||
*/
|
||||
|
||||
#define LAYOUT( \
|
||||
K00, K01, K02, K03, K04, \
|
||||
K10, K11, K12, K13, K14, \
|
||||
K20, K21, K22, K23, K24, \
|
||||
K30, K31, K32, K33 \
|
||||
) { \
|
||||
{ K00, K01, K02, K03, K04 }, \
|
||||
{ K10, K11, K12, K13, K14 }, \
|
||||
{ K20, K21, K22, K23, K24 }, \
|
||||
{ K30, K31, K32, K33, XXX } \
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue