annotate Keymap/betkb.h @ 48:8eee22f99cae

Completing the BETKB support - Keyboard is fully functional - LED, Beeper, and keyboard input not yet implemented
author Jacob Alexander <triplehaata@gmail.com>
date Tue, 27 Mar 2012 00:04:43 -0400
parents 0ee2207c5919
children 37f0411655cd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
1 /* Copyright (C) 2012 by Jacob Alexander
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
2 *
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
3 * Permission is hereby granted, free of charge, to any person obtaining a copy
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
4 * of this software and associated documentation files (the "Software"), to deal
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
5 * in the Software without restriction, including without limitation the rights
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
7 * copies of the Software, and to permit persons to whom the Software is
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
8 * furnished to do so, subject to the following conditions:
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
9 *
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
10 * The above copyright notice and this permission notice shall be included in
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
11 * all copies or substantial portions of the Software.
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
12 *
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
19 * THE SOFTWARE.
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
20 */
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
21
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
22 #ifndef __BETKB_H
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
23 #define __BETKB_H
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
24
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
25 // This file contains various key layouts for the Burroughs Ergonomic Terminal Keyboard (Kokusai)
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
26
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
27
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
28 // ----- Variables -----
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
29 static uint8_t betkb_ModifierMask[] = { 0x20, 0x2D, 0x2E, 0x30, 0x3E, 0x60 };
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
30
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
31 static uint8_t betkb_DefaultMap[] = {
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
32 0, // 0x00
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
33 0, // 0x01
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
34 0, // 0x02
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
35 0, // 0x03
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
36 0, // 0x04
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
37 0, // 0x05
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
38 0, // 0x06
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
39 0, // 0x07
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
40 0, // 0x08
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
41 0, // 0x09
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
42 0, // 0x0A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
43 0, // 0x0B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
44 0, // 0x0C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
45 0, // 0x0D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
46 0, // 0x0E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
47 0, // 0x0F
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
48 0, // 0x10
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
49 0, // 0x11
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
50 0, // 0x12
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
51 0, // 0x13
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
52 0, // 0x14
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
53 0, // 0x15
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
54 0, // 0x16
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
55 0, // 0x17
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
56 0, // 0x18
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
57 0, // 0x19
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
58 0, // 0x1A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
59 0, // 0x1B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
60 0, // 0x1C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
61 0, // 0x1D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
62 0, // 0x1E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
63 0, // 0x1F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
64 KEY_LEFT_SHIFT, // 0x20
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
65 0, // 0x21
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
66 KEY_Z, // 0x22
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
67 KEY_X, // 0x23
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
68 KEY_C, // 0x24
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
69 KEY_V, // 0x25
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
70 KEY_B, // 0x26
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
71 KEY_N, // 0x27
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
72 KEY_M, // 0x28
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
73 KEY_COMMA, // 0x29
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
74 KEY_PERIOD, // 0x2A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
75 KEY_SLASH, // 0x2B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
76 0, // 0x2C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
77 KEY_RIGHT_SHIFT, // 0x2D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
78 KEY_LEFT_ALT, // 0x2E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
79 KEY_SPACE, // 0x2F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
80 KEY_LEFT_CTRL, // 0x30
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
81 KEY_A, // 0x31
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
82 KEY_S, // 0x32
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
83 KEY_D, // 0x33
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
84 KEY_F, // 0x34
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
85 KEY_G, // 0x35
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
86 KEY_H, // 0x36
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
87 KEY_J, // 0x37
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
88 KEY_K, // 0x38
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
89 KEY_L, // 0x39
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
90 KEY_SEMICOLON, // 0x3A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
91 KEY_QUOTE, // 0x3B
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
92 0, // 0x3C
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
93 KEY_ENTER, // 0x3D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
94 KEY_RIGHT_GUI, // 0x3E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
95 KEYPAD_1, // 0x3F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
96 KEY_TAB, // 0x40
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
97 KEY_Q, // 0x41
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
98 KEY_W, // 0x42
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
99 KEY_E, // 0x43
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
100 KEY_R, // 0x44
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
101 KEY_T, // 0x45
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
102 KEY_Y, // 0x46
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
103 KEY_U, // 0x47
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
104 KEY_I, // 0x48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
105 KEY_O, // 0x49
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
106 KEY_P, // 0x4A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
107 KEY_LEFT_BRACE, // 0x4B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
108 KEY_RIGHT_BRACE, // 0x4C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
109 KEY_BACKSLASH, // 0x4D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
110 KEY_DELETE, // 0x4E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
111 KEYPAD_4, // 0x4F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
112 KEY_ESC, // 0x50
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
113 KEY_1, // 0x51
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
114 KEY_2, // 0x52
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
115 KEY_3, // 0x53
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
116 KEY_4, // 0x54
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
117 KEY_5, // 0x55
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
118 KEY_6, // 0x56
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
119 KEY_7, // 0x57
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
120 KEY_8, // 0x58
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
121 KEY_9, // 0x59
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
122 KEY_0, // 0x5A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
123 KEY_MINUS, // 0x5B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
124 KEY_EQUAL, // 0x5C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
125 KEY_TILDE, // 0x5D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
126 KEY_BACKSPACE, // 0x5E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
127 KEY_NUM_LOCK, // 0x5F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
128 KEY_LEFT_GUI, // 0x60
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
129 KEY_HOME, // 0x61
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
130 KEY_END, // 0x62
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
131 KEY_INSERT, // 0x63
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
132 KEY_DELETE, // 0x64
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
133 KEY_F1, // 0x65
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
134 KEY_F2, // 0x66
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
135 KEY_F3, // 0x67
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
136 KEY_F4, // 0x68
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
137 KEY_F5, // 0x69
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
138 KEY_F6, // 0x6A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
139 KEY_F7, // 0x6B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
140 KEY_F8, // 0x6C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
141 KEY_F9, // 0x6D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
142 KEY_F10, // 0x6E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
143 KEY_PRINTSCREEN, // 0x6F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
144 KEY_PAGE_UP, // 0x70
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
145 KEY_PAGE_DOWN, // 0x71
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
146 KEY_F11, // 0x72
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
147 KEYPAD_7, // 0x73
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
148 KEYPAD_8, // 0x74
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
149 KEYPAD_9, // 0x75
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
150 KEYPAD_5, // 0x76
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
151 KEYPAD_6, // 0x77
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
152 KEYPAD_2, // 0x78
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
153 KEYPAD_3, // 0x79
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
154 KEYPAD_0, // 0x7A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
155 KEYPAD_00, // 0x7B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
156 KEYPAD_ENTER, // 0x7C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
157 0, // 0x7D
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
158 0, // 0x7E
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
159 0, // 0x7F
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
160 };
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
161
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
162 static uint8_t betkb_ColemakMap[] = {
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
163 0, // 0x00
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
164 0, // 0x01
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
165 0, // 0x02
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
166 0, // 0x03
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
167 0, // 0x04
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
168 0, // 0x05
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
169 0, // 0x06
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
170 0, // 0x07
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
171 0, // 0x08
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
172 0, // 0x09
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
173 0, // 0x0A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
174 0, // 0x0B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
175 0, // 0x0C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
176 0, // 0x0D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
177 0, // 0x0E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
178 0, // 0x0F
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
179 0, // 0x10
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
180 0, // 0x11
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
181 0, // 0x12
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
182 0, // 0x13
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
183 0, // 0x14
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
184 0, // 0x15
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
185 0, // 0x16
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
186 0, // 0x17
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
187 0, // 0x18
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
188 0, // 0x19
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
189 0, // 0x1A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
190 0, // 0x1B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
191 0, // 0x1C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
192 0, // 0x1D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
193 0, // 0x1E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
194 0, // 0x1F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
195 KEY_LEFT_SHIFT, // 0x20
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
196 0, // 0x21
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
197 KEY_Z, // 0x22
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
198 KEY_X, // 0x23
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
199 KEY_C, // 0x24
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
200 KEY_V, // 0x25
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
201 KEY_B, // 0x26
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
202 KEY_K, // 0x27
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
203 KEY_M, // 0x28
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
204 KEY_COMMA, // 0x29
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
205 KEY_PERIOD, // 0x2A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
206 KEY_SLASH, // 0x2B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
207 0, // 0x2C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
208 KEY_RIGHT_SHIFT, // 0x2D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
209 KEY_LEFT_ALT, // 0x2E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
210 KEY_SPACE, // 0x2F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
211 KEY_LEFT_CTRL, // 0x30
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
212 KEY_A, // 0x31
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
213 KEY_R, // 0x32
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
214 KEY_S, // 0x33
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
215 KEY_T, // 0x34
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
216 KEY_D, // 0x35
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
217 KEY_H, // 0x36
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
218 KEY_N, // 0x37
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
219 KEY_E, // 0x38
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
220 KEY_I, // 0x39
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
221 KEY_O, // 0x3A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
222 KEY_QUOTE, // 0x3B
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
223 0, // 0x3C
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
224 KEY_ENTER, // 0x3D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
225 KEY_RIGHT_GUI, // 0x3E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
226 KEYPAD_1, // 0x3F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
227 KEY_TAB, // 0x40
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
228 KEY_Q, // 0x41
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
229 KEY_W, // 0x42
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
230 KEY_F, // 0x43
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
231 KEY_P, // 0x44
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
232 KEY_G, // 0x45
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
233 KEY_J, // 0x46
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
234 KEY_L, // 0x47
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
235 KEY_U, // 0x48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
236 KEY_Y, // 0x49
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
237 KEY_SEMICOLON, // 0x4A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
238 KEY_LEFT_BRACE, // 0x4B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
239 KEY_RIGHT_BRACE, // 0x4C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
240 KEY_BACKSLASH, // 0x4D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
241 KEY_DELETE, // 0x4E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
242 KEYPAD_4, // 0x4F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
243 KEY_ESC, // 0x50
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
244 KEY_1, // 0x51
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
245 KEY_2, // 0x52
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
246 KEY_3, // 0x53
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
247 KEY_4, // 0x54
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
248 KEY_5, // 0x55
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
249 KEY_6, // 0x56
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
250 KEY_7, // 0x57
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
251 KEY_8, // 0x58
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
252 KEY_9, // 0x59
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
253 KEY_0, // 0x5A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
254 KEY_MINUS, // 0x5B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
255 KEY_EQUAL, // 0x5C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
256 KEY_TILDE, // 0x5D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
257 KEY_BACKSPACE, // 0x5E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
258 KEY_NUM_LOCK, // 0x5F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
259 KEY_LEFT_GUI, // 0x60
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
260 KEY_HOME, // 0x61
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
261 KEY_END, // 0x62
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
262 KEY_INSERT, // 0x63
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
263 KEY_DELETE, // 0x64
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
264 KEY_F1, // 0x65
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
265 KEY_F2, // 0x66
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
266 KEY_F3, // 0x67
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
267 KEY_F4, // 0x68
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
268 KEY_F5, // 0x69
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
269 KEY_F6, // 0x6A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
270 KEY_F7, // 0x6B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
271 KEY_F8, // 0x6C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
272 KEY_F9, // 0x6D
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
273 KEY_F10, // 0x6E
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
274 KEY_PRINTSCREEN, // 0x6F
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
275 KEY_PAGE_UP, // 0x70
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
276 KEY_PAGE_DOWN, // 0x71
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
277 KEY_F11, // 0x72
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
278 KEYPAD_7, // 0x73
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
279 KEYPAD_8, // 0x74
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
280 KEYPAD_9, // 0x75
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
281 KEYPAD_5, // 0x76
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
282 KEYPAD_6, // 0x77
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
283 KEYPAD_2, // 0x78
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
284 KEYPAD_3, // 0x79
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
285 KEYPAD_0, // 0x7A
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
286 KEYPAD_00, // 0x7B
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
287 KEYPAD_ENTER, // 0x7C
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
288 0, // 0x7D
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
289 0, // 0x7E
48
8eee22f99cae Completing the BETKB support
Jacob Alexander <triplehaata@gmail.com>
parents: 47
diff changeset
290 0, // 0x7F
47
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
291 };
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
292
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
293
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
294
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
295 #endif
0ee2207c5919 Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
296