diff options
Diffstat (limited to 'keyboards/hhkb/ansi/hhkb_avr.h')
-rw-r--r-- | keyboards/hhkb/ansi/hhkb_avr.h | 157 |
1 files changed, 157 insertions, 0 deletions
diff --git a/keyboards/hhkb/ansi/hhkb_avr.h b/keyboards/hhkb/ansi/hhkb_avr.h new file mode 100644 index 000000000..f9446deef --- /dev/null +++ b/keyboards/hhkb/ansi/hhkb_avr.h | |||
@@ -0,0 +1,157 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <stdint.h> | ||
4 | #include <stdbool.h> | ||
5 | #include <avr/io.h> | ||
6 | #include <avr/interrupt.h> | ||
7 | #include <util/delay.h> | ||
8 | |||
9 | |||
10 | // Timer resolution check | ||
11 | #if (1000000/TIMER_RAW_FREQ > 20) | ||
12 | # error "Timer resolution(>20us) is not enough for HHKB matrix scan tweak on V-USB." | ||
13 | #endif | ||
14 | |||
15 | |||
16 | /* | ||
17 | * HHKB Matrix I/O | ||
18 | * | ||
19 | * row: HC4051[A,B,C] selects scan row0-7 | ||
20 | * row-ext: [En0,En1] row extention for JP | ||
21 | * col: LS145[A,B,C,D] selects scan col0-7 and enable(D) | ||
22 | * key: on: 0/off: 1 | ||
23 | * prev: hysteresis control: assert(1) when previous key state is on | ||
24 | */ | ||
25 | |||
26 | |||
27 | #if defined(__AVR_ATmega32U4__) | ||
28 | /* | ||
29 | * For TMK HHKB alt controller(ATMega32U4) | ||
30 | * | ||
31 | * row: PB0-2 | ||
32 | * col: PB3-5,6 | ||
33 | * key: PD7(pull-uped) | ||
34 | * prev: PB7 | ||
35 | * power: PD4(L:off/H:on) | ||
36 | * row-ext: PC6,7 for HHKB JP(active low) | ||
37 | */ | ||
38 | static inline void KEY_ENABLE(void) { (PORTB &= ~(1<<6)); } | ||
39 | static inline void KEY_UNABLE(void) { (PORTB |= (1<<6)); } | ||
40 | static inline bool KEY_STATE(void) { return (PIND & (1<<7)); } | ||
41 | static inline void KEY_PREV_ON(void) { (PORTB |= (1<<7)); } | ||
42 | static inline void KEY_PREV_OFF(void) { (PORTB &= ~(1<<7)); } | ||
43 | #ifdef HHKB_POWER_SAVING | ||
44 | static inline void KEY_POWER_ON(void) { | ||
45 | DDRB = 0xFF; PORTB = 0x40; // change pins output | ||
46 | DDRD |= (1<<4); PORTD |= (1<<4); // MOS FET switch on | ||
47 | /* Without this wait you will miss or get false key events. */ | ||
48 | _delay_ms(5); // wait for powering up | ||
49 | } | ||
50 | static inline void KEY_POWER_OFF(void) { | ||
51 | /* input with pull-up consumes less than without it when pin is open. */ | ||
52 | DDRB = 0x00; PORTB = 0xFF; // change pins input with pull-up | ||
53 | DDRD |= (1<<4); PORTD &= ~(1<<4); // MOS FET switch off | ||
54 | } | ||
55 | static inline bool KEY_POWER_STATE(void) { return PORTD & (1<<4); } | ||
56 | #else | ||
57 | static inline void KEY_POWER_ON(void) {} | ||
58 | static inline void KEY_POWER_OFF(void) {} | ||
59 | static inline bool KEY_POWER_STATE(void) { return true; } | ||
60 | #endif | ||
61 | static inline void KEY_INIT(void) | ||
62 | { | ||
63 | /* row,col,prev: output */ | ||
64 | DDRB = 0xFF; | ||
65 | PORTB = 0x40; // unable | ||
66 | /* key: input with pull-up */ | ||
67 | DDRD &= ~0x80; | ||
68 | PORTD |= 0x80; | ||
69 | |||
70 | KEY_UNABLE(); | ||
71 | KEY_PREV_OFF(); | ||
72 | |||
73 | KEY_POWER_OFF(); | ||
74 | } | ||
75 | static inline void KEY_SELECT(uint8_t ROW, uint8_t COL) | ||
76 | { | ||
77 | PORTB = (PORTB & 0xC0) | (((COL) & 0x07)<<3) | ((ROW) & 0x07); | ||
78 | |||
79 | } | ||
80 | |||
81 | |||
82 | #elif defined(__AVR_AT90USB1286__) | ||
83 | /* | ||
84 | * For Teensy++(AT90USB1286) | ||
85 | * | ||
86 | * HHKB pro HHKB pro2 | ||
87 | * row: PB0-2 (6-8) (5-7) | ||
88 | * col: PB3-5,6 (9-12) (8-11) | ||
89 | * key: PE6(pull-uped) (4) (3) | ||
90 | * prev: PE7 (5) (4) | ||
91 | * | ||
92 | * TODO: convert into 'staitc inline' function | ||
93 | */ | ||
94 | #define KEY_INIT() do { \ | ||
95 | DDRB |= 0x7F; \ | ||
96 | DDRE |= (1<<7); \ | ||
97 | DDRE &= ~(1<<6); \ | ||
98 | PORTE |= (1<<6); \ | ||
99 | } while (0) | ||
100 | #define KEY_SELECT(ROW, COL) (PORTB = (PORTB & 0xC0) | \ | ||
101 | (((COL) & 0x07)<<3) | \ | ||
102 | ((ROW) & 0x07)) | ||
103 | #define KEY_ENABLE() (PORTB &= ~(1<<6)) | ||
104 | #define KEY_UNABLE() (PORTB |= (1<<6)) | ||
105 | #define KEY_STATE() (PINE & (1<<6)) | ||
106 | #define KEY_PREV_ON() (PORTE |= (1<<7)) | ||
107 | #define KEY_PREV_OFF() (PORTE &= ~(1<<7)) | ||
108 | #define KEY_POWER_ON() | ||
109 | #define KEY_POWER_OFF() | ||
110 | #define KEY_POWER_STATE() true | ||
111 | |||
112 | |||
113 | #else | ||
114 | # error "define code for matrix scan" | ||
115 | #endif | ||
116 | |||
117 | |||
118 | #if 0 | ||
119 | // For ATMega328P with V-USB | ||
120 | // | ||
121 | // #elif defined(__AVR_ATmega328P__) | ||
122 | // Ports for V-USB | ||
123 | // key: PB0(pull-uped) | ||
124 | // prev: PB1 | ||
125 | // row: PB2-4 | ||
126 | // col: PC0-2,3 | ||
127 | // power: PB5(Low:on/Hi-z:off) | ||
128 | #define KEY_INIT() do { \ | ||
129 | DDRB |= 0x3E; \ | ||
130 | DDRB &= ~(1<<0); \ | ||
131 | PORTB |= 1<<0; \ | ||
132 | DDRC |= 0x0F; \ | ||
133 | KEY_UNABLE(); \ | ||
134 | KEY_PREV_OFF(); \ | ||
135 | } while (0) | ||
136 | #define KEY_SELECT(ROW, COL) do { \ | ||
137 | PORTB = (PORTB & 0xE3) | ((ROW) & 0x07)<<2; \ | ||
138 | PORTC = (PORTC & 0xF8) | ((COL) & 0x07); \ | ||
139 | } while (0) | ||
140 | #define KEY_ENABLE() (PORTC &= ~(1<<3)) | ||
141 | #define KEY_UNABLE() (PORTC |= (1<<3)) | ||
142 | #define KEY_STATE() (PINB & (1<<0)) | ||
143 | #define KEY_PREV_ON() (PORTB |= (1<<1)) | ||
144 | #define KEY_PREV_OFF() (PORTB &= ~(1<<1)) | ||
145 | // Power supply switching | ||
146 | #define KEY_POWER_ON() do { \ | ||
147 | KEY_INIT(); \ | ||
148 | PORTB &= ~(1<<5); \ | ||
149 | _delay_ms(1); \ | ||
150 | } while (0) | ||
151 | #define KEY_POWER_OFF() do { \ | ||
152 | DDRB &= ~0x3F; \ | ||
153 | PORTB &= ~0x3F; \ | ||
154 | DDRC &= ~0x0F; \ | ||
155 | PORTC &= ~0x0F; \ | ||
156 | } while (0) | ||
157 | #endif | ||