blob: fd692cad1fefd67a7f6c14c7766557f6c2096df3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#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
|