]> 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 # Degug Console\r
79 ## hid_listen can't recognize device\r
80 When debug console of your device is not ready you will see like this:\r
81 \r
82     Waiting for device:.........\r
83 \r
84 once the device is pluged in then *hid_listen* finds it you will get this message:\r
85 \r
86     Waiting for new device:.........................\r
87     Listening:\r
88 \r
89 Check if you can't get this 'Listening:' message:\r
90 - build with `CONSOLE_ENABLE=yes` in **Makefile**.\r
91 \r
92 ## Can't get message on console\r
93 Check:\r
94 - *hid_listen* finds your device. See above.\r
95 - Enable debug with pressing **Magic**+d. See [Magic Commands](https://github.com/tmk/tmk_keyboard#magic-commands).\r
96 - set `debug_enable=yes` usually in `matrix_init()` in **matrix.c**.\r
97 - try using 'print' function instead of debug print. See **common/print.h**.\r
98 - disconnect other devices with console function. See [Issue #97](https://github.com/tmk/tmk_keyboard/issues/97).\r
99 \r
100 ## Linux or UNIX like system requires Super User privilege\r
101 Just use 'sudo' to execute *hid_listen* with privilege.\r
102 ```\r
103 $ sudo hid_listen\r
104 ```\r
105 \r
106 Or add an *udev rule* for TMK devices with placing a file in rules directory. The directory may vary on each system.\r
107 \r
108 File: /etc/udev/rules.d/52-tmk-keyboard.rules(in case of Ubuntu)\r
109 ```\r
110 # tmk keyboard products     https://github.com/tmk/tmk_keyboard\r
111 SUBSYSTEMS=="usb", ATTRS{idVendor}=="feed", MODE:="0666"\r
112 ```\r
113 \r
114 ***\r
115 \r
116 # Miscellaneous\r
117 ## NKRO Doesn't work\r
118 1. Build with this option of Makefile\r
119 \r
120     NKRO_ENABLE = yes\r
121 \r
122 2. After boot keyboard may be in **boot mode**(6KRO), you will need to replug keyboard to enable NKRO.\r
123 \r
124 3. Or use `Magic` **N** command to toggle NKRO function.(`LShift+RShift+N` by default)\r
125 \r
126 \r
127 \r
128 ## TrackPoint needs reset circuit(PS/2 mouse support)\r
129 Without reset circuit you will have inconsistent reuslt due to improper initialize of the hardware. See circuit schematic of TPM754.\r
130 \r
131 - http://geekhack.org/index.php?topic=50176.msg1127447#msg1127447\r
132 - http://www.mikrocontroller.net/attachment/52583/tpm754.pdf\r
133 \r
134 \r
135 ## Can't read comlumn of matrix beyond 16 \r
136 Use `1UL<<16` intead of `1<<16` in `read_cols()` in **matrix.h** when your columns goes beyond 16.\r
137 \r
138 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
139 \r
140 http://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279\r
141 \r
142 \r
143 \r
144 ## Pull-up Resistor\r
145 In some case converters needed to have pull-up resistors to work correctly. Place the resistor between VCC and signal line in parallel.\r
146 \r
147 For example:\r
148 ```\r
149 Keyboard       Conveter\r
150                ,------.\r
151 5V------+------|VCC   |\r
152         |      |      |\r
153         R      |      |\r
154         |      |      |\r
155 Signal--+------|PD0   |\r
156                |      |\r
157 GND------------|GND   |\r
158                `------'\r
159 R: 1K Ohm resistor\r
160 ```\r
161 \r
162 https://github.com/tmk/tmk_keyboard/issues/71\r
163 \r
164 \r
165 ## Arduino Micro's pin naming is confusing\r
166 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
167 http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf\r
168 \r
169 \r
170 \r
171 ## Bootloader jump doesn't work\r
172 Properly configure boot section size in Makefile. With wrong section size bootloader won't probably start with **Magic command** and **Boot Magic**.\r
173 - https://github.com/tmk/tmk_keyboard#magic-commands\r
174 - https://github.com/tmk/tmk_keyboard#bootloader\r
175 \r
176 ```\r
177 # Boot Section Size in *bytes*\r
178 #   Teensy halfKay   512\r
179 #   Teensy++ halfKay 1024\r
180 #   Atmel DFU loader 4096       (TMK Alt Controller)\r
181 #   LUFA bootloader  4096\r
182 #   USBaspLoader     2048\r
183 OPT_DEFS += -DBOOTLOADER_SIZE=4096\r
184 ```\r
185 http://geekhack.org/index.php?topic=12047.msg1292018#msg1292018\r
186 \r
187 \r
188 ## Special Extra key doesn't work(System, Audio control keys)\r
189 You need to define `EXTRAKEY_ENABLE` in **makefile** to use them in TMK.\r
190 ```\r
191 EXTRAKEY_ENABLE = yes          # Audio control and System control\r
192 ```\r
193 http://deskthority.net/workshop-f7/tmk-keyboard-firmware-collection-t4478-60.html#p157919\r
194 \r
195 \r
196 ## Wakeup from sleep doesn't work\r
197 In Windows check `Allow this device to wake the computer` setting in Power **Management property** tab of **Device Manager**. Also check BIOS setting.\r
198 \r
199 Pressing any key during sleep should wake host.\r
200 \r
201 \r
202 ## Using Arduino?\r
203 **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
204 \r
205 - http://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf\r
206 - http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf\r
207 \r
208 Arduino leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem.\r
209 \r
210 \r
211 ## Using PF4-7 pins of USB AVR?\r
212 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
213 \r
214 If you are using Teensy this isn't needed. Teensy is shipped with JTAGEN fuse bit unprogrammed to disable the function.\r
215 \r
216 See this code.\r
217 ```\r
218     // JTAG disable for PORT F. write JTD bit twice within four cycles.\r
219     MCUCR |= (1<<JTD);\r
220     MCUCR |= (1<<JTD);\r
221 ```\r
222 https://github.com/tmk/tmk_keyboard/blob/master/keyboard/hbkb/matrix.c#L67\r
223 \r
224 And read **26.5.1 MCU Control Register – MCUCR** of ATMega32U4 datasheet.\r
225 \r
226 ## Adding LED indicators of Lock keys\r
227 You need your own LED indicators for CapsLock, ScrollLock and NumLock? See this post.\r
228 http://deskthority.net/workshop-f7/tmk-keyboard-firmware-collection-t4478-120.html#p191560