]> git.donarmstrong.com Git - qmk_firmware.git/blob - FAQ.md
Updated FAQ (markdown)
[qmk_firmware.git] / FAQ.md
1 # Documents You Need To Read\r
2 Read these yet?\r
3  \r
4 1. First **README** under top directory : https://github.com/tmk/tmk_keyboard/blob/master/README.md\r
5 2. For **Build**: https://github.com/tmk/tmk_keyboard/blob/master/doc/build.md\r
6 3. And **README** under each project(keyboard/converter) directory\r
7 \r
8 Note that you should read two **README**.\r
9 \r
10 \r
11 # Build\r
12 ## How to Build\r
13 See this first!\r
14 https://github.com/tmk/tmk_keyboard/blob/master/doc/build.md\r
15 \r
16 In short,\r
17 \r
18     $ make clean\r
19     $ make [KEYMAP=...]\r
20 \r
21 \r
22 ## Do 'make clean' before 'make'\r
23 You'll need `make clean` after you edit **config.h** or change options like `KEYMAP`.\r
24 \r
25 Frist remove all files made in previous build,\r
26 \r
27     $ make clean\r
28 \r
29 then build new frimware. \r
30 \r
31     $ make [KEYMAP=...]\r
32 \r
33 Also you can always try `make clean` when you get other strange result during build.\r
34 \r
35 \r
36 ## WINAVR is obsolete\r
37 It is no longer recommended and may cause some problem.\r
38 See [Issue #99](https://github.com/tmk/tmk_keyboard/issues/99).\r
39 \r
40 ## USB stack: LUFA or PJRC?\r
41 Use **LUFA**.\r
42 \r
43 **PJRC** stack won't be supported actively anymore. There is no reason to hesitate to use LUFA except for binary size(about 1KB lager?). But **PJRC** is still very useful for debug and development purpose.\r
44 See also [Issue #50](https://github.com/tmk/tmk_keyboard/issues/50) and [Issue #58](https://github.com/tmk/tmk_keyboard/issues/58).\r
45 \r
46 \r
47 ## Edit configuration but not change\r
48 Try these.\r
49 ### 1. make clean\r
50 This will be needed when you edit **config.h**.\r
51 \r
52 ### 2. Remove Drivers from Device Manager(Windows)\r
53 Windows only. Linux, OSX and other OS's doesn't require this. It looks like Windows keeps using driver installed when device was connected first time even after the device changes its configuration. To load proper drivers for new configuration you need to remove existent drivers from **Drvice Manager**.\r
54 \r
55 You will need this after editing `CONSOLE_ENABLE`, `NKRO_ENABLE`, `EXTRAKEY_ENABLE` or `MOUSEKEY_ENABLE` option in **Makefile**.\r
56 \r
57 \r
58 # Keymap\r
59 ## Power key doesn't work\r
60 Use `KC_PWR` instead of `KC_POWER` or vice versa.\r
61 - `KC_PWR` works with Windows and Linux, not with OSX.\r
62 - `KC_POWER` works with OSX and Linux, not with Windows.\r
63 \r
64 http://geekhack.org/index.php?topic=14290.msg1327264#msg1327264\r
65 \r
66 ## Oneshot modifier\r
67 Solves my personal 'the' problem. I often got 'the' or 'THe' wrongly instead of 'The'.  Oneshot Shift mitgates this for me.\r
68 https://github.com/tmk/tmk_keyboard/issues/67\r
69 \r
70 ## Modifier/Layer stuck\r
71 Modifier keys or layers can be stuck unless layer switching is configured properly.\r
72 For Modifier keys and layer actions you have to place `KC_TRANS` on same position of destination layer to  unregister the modifier key or return to previous layer on release event.\r
73 \r
74 https://github.com/tmk/tmk_keyboard/blob/master/doc/keymap.md#31-momentary-switching\r
75 http://geekhack.org/index.php?topic=57008.msg1492604#msg1492604\r
76 \r
77 \r
78 ## Mechanical Lock Switch Support\r
79 https://github.com/tmk/tmk_keyboard#mechanical-locking-support\r
80 \r
81 LOCKING_SUPPORT is for mechanical lock switch like this Alps one. http://deskthority.net/wiki/Alps_SKCL_Lock\r
82 \r
83 Using enabling LOCKING_SUPPORT and using LCAP keycode in keymap you can use physical locking Capslock key as you expected. For example, Apple Extended Keyboard(AEK) and AEK II have.\r
84 \r
85 Old vintage mechanical keyboard occasionally has lock switch but modern ones including your HHKB don't have. You don't need LOCKING_SUPPORT for HHKB and just use CAPS for Capslock.\r
86 \r
87 \r
88 \r
89 # Degug Console\r
90 ## hid_listen can't recognize device\r
91 When debug console of your device is not ready you will see like this:\r
92 \r
93     Waiting for device:.........\r
94 \r
95 once the device is pluged in then *hid_listen* finds it you will get this message:\r
96 \r
97     Waiting for new device:.........................\r
98     Listening:\r
99 \r
100 Check if you can't get this 'Listening:' message:\r
101 - build with `CONSOLE_ENABLE=yes` in **Makefile**.\r
102 \r
103 ## Can't get message on console\r
104 Check:\r
105 - *hid_listen* finds your device. See above.\r
106 - Enable debug with pressing **Magic**+d. See [Magic Commands](https://github.com/tmk/tmk_keyboard#magic-commands).\r
107 - set `debug_enable=yes` usually in `matrix_init()` in **matrix.c**.\r
108 - try using 'print' function instead of debug print. See **common/print.h**.\r
109 - disconnect other devices with console function. See [Issue #97](https://github.com/tmk/tmk_keyboard/issues/97).\r
110 \r
111 ## Linux or UNIX like system requires Super User privilege\r
112 Just use 'sudo' to execute *hid_listen* with privilege.\r
113 ```\r
114 $ sudo hid_listen\r
115 ```\r
116 \r
117 Or add an *udev rule* for TMK devices with placing a file in rules directory. The directory may vary on each system.\r
118 \r
119 File: /etc/udev/rules.d/52-tmk-keyboard.rules(in case of Ubuntu)\r
120 ```\r
121 # tmk keyboard products     https://github.com/tmk/tmk_keyboard\r
122 SUBSYSTEMS=="usb", ATTRS{idVendor}=="feed", MODE:="0666"\r
123 ```\r
124 \r
125 ***\r
126 \r
127 # Miscellaneous\r
128 ## NKRO Doesn't work\r
129 1. Build with this option of Makefile\r
130 \r
131     NKRO_ENABLE = yes\r
132 \r
133 2. After boot keyboard may be in **boot mode**(6KRO), you will need to replug keyboard to enable NKRO.\r
134 \r
135 3. Or use `Magic` **N** command to toggle NKRO function.(`LShift+RShift+N` by default)\r
136 \r
137 \r
138 \r
139 ## TrackPoint needs reset circuit(PS/2 mouse support)\r
140 Without reset circuit you will have inconsistent reuslt due to improper initialize of the hardware. See circuit schematic of TPM754.\r
141 \r
142 - http://geekhack.org/index.php?topic=50176.msg1127447#msg1127447\r
143 - http://www.mikrocontroller.net/attachment/52583/tpm754.pdf\r
144 \r
145 \r
146 ## Can't read comlumn of matrix beyond 16 \r
147 Use `1UL<<16` intead of `1<<16` in `read_cols()` in **matrix.h** when your columns goes beyond 16.\r
148 \r
149 In C `1` means one of **int** type which is **16bit** in case of AVR so you can't shift left more than 15. You will get unexpected zero when you say `1<<16`. You have to use **unsigned long** type with `1UL`.\r
150 \r
151 http://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279\r
152 \r
153 \r
154 \r
155 ## Pull-up Resistor\r
156 In some case converters needed to have pull-up resistors to work correctly. Place the resistor between VCC and signal line in parallel.\r
157 \r
158 For example:\r
159 ```\r
160 Keyboard       Conveter\r
161                ,------.\r
162 5V------+------|VCC   |\r
163         |      |      |\r
164         R      |      |\r
165         |      |      |\r
166 Signal--+------|PD0   |\r
167                |      |\r
168 GND------------|GND   |\r
169                `------'\r
170 R: 1K Ohm resistor\r
171 ```\r
172 \r
173 https://github.com/tmk/tmk_keyboard/issues/71\r
174 \r
175 \r
176 ## Arduino Micro's pin naming is confusing\r
177 Note that Arduino Micro PCB marking is different from real AVR port name. D0 of Arduino Micro is not PD0, PD0 is D3. Check schematic yourself.\r
178 http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf\r
179 \r
180 \r
181 \r
182 ## Bootloader jump doesn't work\r
183 Properly configure boot section size in Makefile. With wrong section size bootloader won't probably start with **Magic command** and **Boot Magic**.\r
184 - https://github.com/tmk/tmk_keyboard#magic-commands\r
185 - https://github.com/tmk/tmk_keyboard#bootloader\r
186 \r
187 ```\r
188 # Boot Section Size in *bytes*\r
189 #   Teensy halfKay   512\r
190 #   Teensy++ halfKay 1024\r
191 #   Atmel DFU loader 4096       (TMK Alt Controller)\r
192 #   LUFA bootloader  4096\r
193 #   USBaspLoader     2048\r
194 OPT_DEFS += -DBOOTLOADER_SIZE=4096\r
195 ```\r
196 http://geekhack.org/index.php?topic=12047.msg1292018#msg1292018\r
197 \r
198 \r
199 ## Special Extra key doesn't work(System, Audio control keys)\r
200 You need to define `EXTRAKEY_ENABLE` in **makefile** to use them in TMK.\r
201 ```\r
202 EXTRAKEY_ENABLE = yes          # Audio control and System control\r
203 ```\r
204 http://deskthority.net/workshop-f7/tmk-keyboard-firmware-collection-t4478-60.html#p157919\r
205 \r
206 \r
207 ## Wakeup from sleep doesn't work\r
208 In Windows check `Allow this device to wake the computer` setting in Power **Management property** tab of **Device Manager**. Also check BIOS setting.\r
209 \r
210 Pressing any key during sleep should wake host.\r
211 \r
212 \r
213 ## Using Arduino?\r
214 **Note that Arduino pin naming is different from actual chip.** For example, Arduino pin `D0` is not `PD0`. Check circuit with its schematics yourself.\r
215 \r
216 - http://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf\r
217 - http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf\r
218 \r
219 Arduino leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem.\r
220 \r
221 \r
222 ## Using PF4-7 pins of USB AVR?\r
223 You need to set JTD bit of MCUCR yourself to use PF4-7 as GPIO. Those pins are configured to serve JTAG function by default. MCUs like ATMega*U* or AT90USB* are affeteced with this.\r
224 \r
225 If you are using Teensy this isn't needed. Teensy is shipped with JTAGEN fuse bit unprogrammed to disable the function.\r
226 \r
227 See this code.\r
228 ```\r
229     // JTAG disable for PORT F. write JTD bit twice within four cycles.\r
230     MCUCR |= (1<<JTD);\r
231     MCUCR |= (1<<JTD);\r
232 ```\r
233 https://github.com/tmk/tmk_keyboard/blob/master/keyboard/hbkb/matrix.c#L67\r
234 \r
235 And read **26.5.1 MCU Control Register – MCUCR** of ATMega32U4 datasheet.\r
236 \r
237 \r
238 ## Adding LED indicators of Lock keys\r
239 You need your own LED indicators for CapsLock, ScrollLock and NumLock? See this post.\r
240 \r
241 http://deskthority.net/workshop-f7/tmk-keyboard-firmware-collection-t4478-120.html#p191560