]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/gergo/gergo.h
Merge branch 'master' of https://github.com/qmk/qmk_firmware
[qmk_firmware.git] / keyboards / gergo / gergo.h
1 #pragma once
2 #include <util/delay.h>
3 #include <stdint.h>
4 #include <stdbool.h>
5 #include "quantum.h"
6 #include "i2c_master.h"
7 #include "matrix.h"
8
9
10 extern i2c_status_t mcp23018_status;
11 #define ERGODOX_EZ_I2C_TIMEOUT 1000
12 #define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n))
13 #define CPU_16MHz       0x00
14
15 // I2C aliases and register addresses (see "mcp23018.md")
16 //#define I2C_ADDR        0b0100000
17 #define I2C_ADDR        0x20
18 #define I2C_ADDR_WRITE  ( (I2C_ADDR<<1) | I2C_WRITE )
19 #define I2C_ADDR_READ   ( (I2C_ADDR<<1) | I2C_READ  )
20 #define IODIRA          0x00            // i/o direction register
21 #define IODIRB          0x01
22 #define GPPUA           0x0C            // GPIO pull-up resistor register
23 #define GPPUB           0x0D
24 #define GPIOA           0x12            // general purpose i/o port register (write modifies OLAT)
25 #define GPIOB           0x13
26 #define OLATA           0x14            // output latch register
27 #define OLATB           0x15
28
29 void init_ergodox(void);
30 uint8_t init_mcp23018(void);
31
32 /*  ---------- LEFT HAND -----------   ---------- RIGHT HAND ---------- */
33 #define LAYOUT_GERGO(                                                    \
34     L00,L01,L02,L03,L04,L05,                   R00,R01,R02,R03,R04,R05,  \
35     L10,L11,L12,L13,L14,L15,L16,           R10,R11,R12,R13,R14,R15,R16,  \
36     L20,L21,L22,L23,L24,L25,L26,           R20,R21,R22,R23,R24,R25,R26,  \
37                 L31,L32,                           R33,R34,              \
38                             L30,           R30,                          \
39                         L33,L34,           R31,R32)                      \
40                                                                          \
41    /* matrix positions */                                                \
42     {                               \
43     { KC_NO, L16,   L26,  L30},     \
44     { L05,   L15,   L25,  L34},     \
45     { L04,   L14,   L24,  L33},     \
46     { L03,   L13,   L23,  L32},     \
47     { L02,   L12,   L22,  L31},     \
48     { L01,   L11,   L21,  KC_NO},   \
49     { L00,   L10,   L20,  KC_NO},   \
50                                     \
51     { R10,   KC_NO, R20, R30},      \
52     { R00,   R11,   R21, R31},      \
53     { R01,   R12,   R22, R32},      \
54     { R02,   R13,   R23, R33},      \
55     { R03,   R14,   R24, R34},      \
56     { R04,   R15,   R25, KC_NO},    \
57     { R05,   R16,   R26, KC_NO},    \
58 }