]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/ergodox/infinity/matrix.c
Merge remote-tracking branch 'refs/remotes/jackhumbert/master'
[qmk_firmware.git] / keyboards / ergodox / infinity / matrix.c
1 /*
2 Copyright 2016 Fred Sundvik <fsundvik@gmail.com>
3 Jun Wako <wakojun@gmail.com>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18 #include <stdint.h>
19 #include <stdbool.h>
20 #include <string.h>
21 #include "hal.h"
22 #include "timer.h"
23 #include "wait.h"
24 #include "print.h"
25 #include "debug.h"
26 #include "matrix.h"
27
28
29 /*
30  * Infinity ErgoDox Pinusage:
31  * Column pins are input with internal pull-down. Row pins are output and strobe with high.
32  * Key is high or 1 when it turns on.
33  *
34  *     col: { PTD1, PTD4, PTD5, PTD6, PTD7 }
35  *     row: { PTB2, PTB3, PTB18, PTB19, PTC0, PTC9, PTC10, PTC11, PTD0 }
36  */
37 /* matrix state(1:on, 0:off) */
38 static matrix_row_t matrix[MATRIX_ROWS];
39 static matrix_row_t matrix_debouncing[LOCAL_MATRIX_ROWS];
40 static bool debouncing = false;
41 static uint16_t debouncing_time = 0;
42
43
44 void matrix_init(void)
45 {
46     /* Column(sense) */
47     palSetPadMode(GPIOD, 1,  PAL_MODE_INPUT_PULLDOWN);
48     palSetPadMode(GPIOD, 4,  PAL_MODE_INPUT_PULLDOWN);
49     palSetPadMode(GPIOD, 5,  PAL_MODE_INPUT_PULLDOWN);
50     palSetPadMode(GPIOD, 6,  PAL_MODE_INPUT_PULLDOWN);
51     palSetPadMode(GPIOD, 7,  PAL_MODE_INPUT_PULLDOWN);
52
53     /* Row(strobe) */
54     palSetPadMode(GPIOB, 2,  PAL_MODE_OUTPUT_PUSHPULL);
55     palSetPadMode(GPIOB, 3,  PAL_MODE_OUTPUT_PUSHPULL);
56     palSetPadMode(GPIOB, 18, PAL_MODE_OUTPUT_PUSHPULL);
57     palSetPadMode(GPIOB, 19, PAL_MODE_OUTPUT_PUSHPULL);
58     palSetPadMode(GPIOC, 0,  PAL_MODE_OUTPUT_PUSHPULL);
59     palSetPadMode(GPIOC, 9,  PAL_MODE_OUTPUT_PUSHPULL);
60     palSetPadMode(GPIOC, 10, PAL_MODE_OUTPUT_PUSHPULL);
61     palSetPadMode(GPIOC, 11, PAL_MODE_OUTPUT_PUSHPULL);
62     palSetPadMode(GPIOD, 0,  PAL_MODE_OUTPUT_PUSHPULL);
63
64     memset(matrix, 0, MATRIX_ROWS);
65     memset(matrix_debouncing, 0, LOCAL_MATRIX_ROWS);
66
67     matrix_init_quantum();
68 }
69
70 uint8_t matrix_scan(void)
71 {
72     for (int row = 0; row < LOCAL_MATRIX_ROWS; row++) {
73         matrix_row_t data = 0;
74
75         // strobe row
76         switch (row) {
77             case 0: palSetPad(GPIOB, 2);    break;
78             case 1: palSetPad(GPIOB, 3);    break;
79             case 2: palSetPad(GPIOB, 18);   break;
80             case 3: palSetPad(GPIOB, 19);   break;
81             case 4: palSetPad(GPIOC, 0);    break;
82             case 5: palSetPad(GPIOC, 9);    break;
83             case 6: palSetPad(GPIOC, 10);   break;
84             case 7: palSetPad(GPIOC, 11);   break;
85             case 8: palSetPad(GPIOD, 0);    break;
86         }
87
88         // need wait to settle pin state
89         // if you wait too short, or have a too high update rate
90         // the keyboard might freeze, or there might not be enough
91         // processing power to update the LCD screen properly.
92         // 20us, or two ticks at 100000Hz seems to be OK
93         wait_us(20);
94
95         // read col data: { PTD1, PTD4, PTD5, PTD6, PTD7 }
96         data = ((palReadPort(GPIOD) & 0xF0) >> 3) |
97                ((palReadPort(GPIOD) & 0x02) >> 1);
98
99         // un-strobe row
100         switch (row) {
101             case 0: palClearPad(GPIOB, 2);  break;
102             case 1: palClearPad(GPIOB, 3);  break;
103             case 2: palClearPad(GPIOB, 18); break;
104             case 3: palClearPad(GPIOB, 19); break;
105             case 4: palClearPad(GPIOC, 0);  break;
106             case 5: palClearPad(GPIOC, 9);  break;
107             case 6: palClearPad(GPIOC, 10); break;
108             case 7: palClearPad(GPIOC, 11); break;
109             case 8: palClearPad(GPIOD, 0);  break;
110         }
111
112         if (matrix_debouncing[row] != data) {
113             matrix_debouncing[row] = data;
114             debouncing = true;
115             debouncing_time = timer_read();
116         }
117     }
118
119     uint8_t offset = 0;
120 #ifdef MASTER_IS_ON_RIGHT
121     if (is_serial_link_master()) {
122         offset = MATRIX_ROWS - LOCAL_MATRIX_ROWS;
123     }
124 #endif
125
126     if (debouncing && timer_elapsed(debouncing_time) > DEBOUNCE) {
127         for (int row = 0; row < LOCAL_MATRIX_ROWS; row++) {
128             matrix[offset + row] = matrix_debouncing[row];
129         }
130         debouncing = false;
131     }
132     matrix_scan_quantum();
133     return 1;
134 }
135
136 bool matrix_is_on(uint8_t row, uint8_t col)
137 {
138     return (matrix[row] & (1<<col));
139 }
140
141 matrix_row_t matrix_get_row(uint8_t row)
142 {
143     return matrix[row];
144 }
145
146 void matrix_print(void)
147 {
148     xprintf("\nr/c 01234567\n");
149     for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
150         xprintf("%X0: ", row);
151         matrix_row_t data = matrix_get_row(row);
152         for (int col = 0; col < MATRIX_COLS; col++) {
153             if (data & (1<<col))
154                 xprintf("1");
155             else
156                 xprintf("0");
157         }
158         xprintf("\n");
159     }
160 }
161
162 void matrix_set_remote(matrix_row_t* rows, uint8_t index) {
163     uint8_t offset = 0;
164 #ifdef MASTER_IS_ON_RIGHT
165     offset = MATRIX_ROWS - LOCAL_MATRIX_ROWS * (index + 2);
166 #else
167     offset = LOCAL_MATRIX_ROWS * (index + 1);
168 #endif
169     for (int row = 0; row < LOCAL_MATRIX_ROWS; row++) {
170         matrix[offset + row] = rows[row];
171     }
172 }