mirror of https://github.com/qmk/qmk_firmware
24 lines
334 B
C
24 lines
334 B
C
|
#ifndef REV1_H
|
||
|
#define REV1_H
|
||
|
|
||
|
#include "../launchpad.h"
|
||
|
|
||
|
//void promicro_bootloader_jmp(bool program);
|
||
|
#include "quantum.h"
|
||
|
|
||
|
//void promicro_bootloader_jmp(bool program);
|
||
|
|
||
|
#define LAYOUT( \
|
||
|
K00, K01, \
|
||
|
K10, K11, \
|
||
|
K20, K21, \
|
||
|
K30, K31 \
|
||
|
) \
|
||
|
{ \
|
||
|
{ K00, K01 }, \
|
||
|
{ K10, K11 }, \
|
||
|
{ K20, K21 }, \
|
||
|
{ K30, K31 } \
|
||
|
}
|
||
|
|
||
|
#endif
|