7 #include <util/delay.h>
10 #include "controller.h"
11 #include "matrix_skel.h"
13 // matrix is active low. (key on: 0/key off: 1)
15 // HHKB has no ghost and no bounce.
16 // row: HC4051 select input channel(0-8)
17 // PB0, PB1, PB2(A, B, C)
18 // col: LS145 select low output line(0-8)
19 // PB3, PB4, PB5, PB6(A, B, C, D)
20 // use D as ENABLE: (enable: 0/unenable: 1)
21 // key: KEY: (on: 0/ off:1)
22 // KEY_PREV: (on: 1/ off: 0)
23 // PE6,PE7(KEY, KEY_PREV)
24 #define COL_ENABLE (1<<6)
25 #define KEY_SELELCT(ROW, COL) (PORTB = COL_ENABLE|(((COL)&0x07)<<3)|((ROW)&0x07))
26 #define KEY_ENABLE (PORTB &= ~COL_ENABLE)
27 #define KEY_UNABLE (PORTB |= COL_ENABLE)
28 #define KEY_STATE (PINE&(1<<6))
29 #define KEY_PREV_ON (PORTE |= (1<<7))
30 #define KEY_PREV_OFF (PORTE &= ~(1<<7))
32 // matrix state buffer
33 static uint8_t *matrix;
34 static uint8_t *matrix_prev;
35 static uint8_t _matrix0[MATRIX_ROWS];
36 static uint8_t _matrix1[MATRIX_ROWS];
51 // this must be called once before matrix_scan.
52 void matrix_init(void)
54 // row & col output(PB0-6)
56 PORTB = KEY_SELELCT(0, 0);
57 // KEY: input with pullup(PE6)
58 // KEY_PREV: output(PE7)
62 // initialize matrix state: all keys off
63 for (int i=0; i < MATRIX_ROWS; i++) _matrix0[i] = 0x00;
64 for (int i=0; i < MATRIX_ROWS; i++) _matrix1[i] = 0x00;
66 matrix_prev = _matrix1;
77 for (int row = 0; row < MATRIX_ROWS; row++) {
78 for (int col = 0; col < MATRIX_COLS; col++) {
79 KEY_SELELCT(row, col);
80 _delay_us(40); // from logic analyzer chart
81 if (matrix_prev[row] & (1<<col)) {
84 _delay_us(7); // from logic analyzer chart
86 _delay_us(10); // from logic analyzer chart
88 matrix[row] &= ~(1<<col);
90 matrix[row] |= (1<<col);
94 _delay_us(150); // from logic analyzer chart
100 bool matrix_is_modified(void)
102 for (int i = 0; i < MATRIX_ROWS; i++) {
103 if (matrix[i] != matrix_prev[i])
110 bool matrix_has_ghost(void)
116 bool matrix_is_on(int row, int col)
118 return (matrix[row] & (1<<col));
122 uint16_t matrix_get_row(int row)
127 void matrix_print(void)
129 print("\nr/c 01234567\n");
130 for (int row = 0; row < matrix_rows(); row++) {
131 phex(row); print(": ");
132 pbin_reverse(matrix_get_row(row));
137 int matrix_key_count(void)
140 for (int i = 0; i < MATRIX_ROWS; i++) {
141 count += bitpop(matrix[i]);