]> 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. Note that you should read two **README**.\r
7 4. And then, FAQ.\r
8 \r
9 - [[FAQ/Keymap]]\r
10 \r
11 \r
12 # Build\r
13 ## How to Build\r
14 See this first!\r
15 https://github.com/tmk/tmk_keyboard/blob/master/doc/build.md\r
16 \r
17 In short,\r
18 \r
19     $ make clean\r
20     $ make [KEYMAP=...]\r
21 \r
22 \r
23 ## Do 'make clean' before 'make'\r
24 You'll need `make clean` after you edit **config.h** or change options like `KEYMAP`.\r
25 \r
26 Frist remove all files made in previous build,\r
27 \r
28     $ make clean\r
29 \r
30 then build new frimware. \r
31 \r
32     $ make [KEYMAP=...]\r
33 \r
34 Also you can always try `make clean` when you get other strange result during build.\r
35 \r
36 \r
37 ## WINAVR is obsolete\r
38 It is no longer recommended and may cause some problem.\r
39 See [Issue #99](https://github.com/tmk/tmk_keyboard/issues/99).\r
40 \r
41 ## USB stack: LUFA or PJRC?\r
42 Use **LUFA**.\r
43 \r
44 **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
45 See also [Issue #50](https://github.com/tmk/tmk_keyboard/issues/50) and [Issue #58](https://github.com/tmk/tmk_keyboard/issues/58).\r
46 \r
47 \r
48 ## Edit configuration but not change\r
49 Try these.\r
50 ### 1. make clean\r
51 This will be needed when you edit **config.h**.\r
52 \r
53 ### 2. Remove Drivers from Device Manager(Windows)\r
54 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
55 \r
56 You will need this after editing `CONSOLE_ENABLE`, `NKRO_ENABLE`, `EXTRAKEY_ENABLE` or `MOUSEKEY_ENABLE` option in **Makefile**.\r
57 \r
58 \r
59 ## USB VID and PID\r
60 You can use any ID you want with editing `config.h`. Using any presumably unused ID will be no problem in fact except for very least chance of collision with other product.\r
61 \r
62 For example TMK uses following numbers by default.\r
63 ```\r
64 keyboard:\r
65 hhkb: FEED:CAFE\r
66 gh60: FEED:6060\r
67 \r
68 converter:\r
69 x68k: FEED:6800\r
70 ps2: FEED:6512\r
71 adb: FEED:0ADB\r
72 ibm4704: FEED:4704\r
73 pc98: FEED:9898\r
74 ```\r
75 \r
76 Also see this.\r
77 https://github.com/tmk/tmk_keyboard/issues/150\r
78 \r
79 You can buy a really unique VID:PID here. I don't think you need this for personal use.\r
80 - http://www.obdev.at/products/vusb/license.html\r
81 - http://www.mcselec.com/index.php?page=shop.product_details&flypage=shop.flypage&product_id=92&option=com_phpshop&Itemid=1\r
82 \r
83 \r
84 # Degug Console\r
85 ## hid_listen can't recognize device\r
86 When debug console of your device is not ready you will see like this:\r
87 \r
88     Waiting for device:.........\r
89 \r
90 once the device is pluged in then *hid_listen* finds it you will get this message:\r
91 \r
92     Waiting for new device:.........................\r
93     Listening:\r
94 \r
95 Check if you can't get this 'Listening:' message:\r
96 - build with `CONSOLE_ENABLE=yes` in **Makefile**.\r
97 \r
98 ## Can't get message on console\r
99 Check:\r
100 - *hid_listen* finds your device. See above.\r
101 - Enable debug with pressing **Magic**+d. See [Magic Commands](https://github.com/tmk/tmk_keyboard#magic-commands).\r
102 - set `debug_enable=yes` usually in `matrix_init()` in **matrix.c**.\r
103 - try using 'print' function instead of debug print. See **common/print.h**.\r
104 - disconnect other devices with console function. See [Issue #97](https://github.com/tmk/tmk_keyboard/issues/97).\r
105 \r
106 ## Linux or UNIX like system requires Super User privilege\r
107 Just use 'sudo' to execute *hid_listen* with privilege.\r
108 ```\r
109 $ sudo hid_listen\r
110 ```\r
111 \r
112 Or add an *udev rule* for TMK devices with placing a file in rules directory. The directory may vary on each system.\r
113 \r
114 File: /etc/udev/rules.d/52-tmk-keyboard.rules(in case of Ubuntu)\r
115 ```\r
116 # tmk keyboard products     https://github.com/tmk/tmk_keyboard\r
117 SUBSYSTEMS=="usb", ATTRS{idVendor}=="feed", MODE:="0666"\r
118 ```\r
119 \r
120 ***\r
121 \r
122 # Miscellaneous\r
123 ## NKRO Doesn't work\r
124 1. Build with this option of Makefile\r
125 \r
126     NKRO_ENABLE = yes\r
127 \r
128 2. After boot keyboard may be in **boot mode**(6KRO), you will need to replug keyboard to enable NKRO.\r
129 \r
130 3. Or use `Magic` **N** command to toggle NKRO function.(`LShift+RShift+N` by default)\r
131 \r
132 \r
133 \r
134 ## TrackPoint needs reset circuit(PS/2 mouse support)\r
135 Without reset circuit you will have inconsistent reuslt due to improper initialize of the hardware. See circuit schematic of TPM754.\r
136 \r
137 - http://geekhack.org/index.php?topic=50176.msg1127447#msg1127447\r
138 - http://www.mikrocontroller.net/attachment/52583/tpm754.pdf\r
139 \r
140 \r
141 ## Can't read comlumn of matrix beyond 16 \r
142 Use `1UL<<16` intead of `1<<16` in `read_cols()` in **matrix.h** when your columns goes beyond 16.\r
143 \r
144 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
145 \r
146 http://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279\r
147 \r
148 \r
149 \r
150 ## Pull-up Resistor\r
151 In some case converters needed to have pull-up resistors to work correctly. Place the resistor between VCC and signal line in parallel.\r
152 \r
153 For example:\r
154 ```\r
155 Keyboard       Conveter\r
156                ,------.\r
157 5V------+------|VCC   |\r
158         |      |      |\r
159         R      |      |\r
160         |      |      |\r
161 Signal--+------|PD0   |\r
162                |      |\r
163 GND------------|GND   |\r
164                `------'\r
165 R: 1K Ohm resistor\r
166 ```\r
167 \r
168 https://github.com/tmk/tmk_keyboard/issues/71\r
169 \r
170 \r
171 ## Arduino Micro's pin naming is confusing\r
172 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
173 http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf\r
174 \r
175 \r
176 \r
177 ## Bootloader jump doesn't work\r
178 Properly configure boot section size in Makefile. With wrong section size bootloader won't probably start with **Magic command** and **Boot Magic**.\r
179 - https://github.com/tmk/tmk_keyboard#magic-commands\r
180 - https://github.com/tmk/tmk_keyboard#bootloader\r
181 \r
182 ```\r
183 # Boot Section Size in *bytes*\r
184 #   Teensy halfKay   512\r
185 #   Teensy++ halfKay 1024\r
186 #   Atmel DFU loader 4096       (TMK Alt Controller)\r
187 #   LUFA bootloader  4096\r
188 #   USBaspLoader     2048\r
189 OPT_DEFS += -DBOOTLOADER_SIZE=4096\r
190 ```\r
191 http://geekhack.org/index.php?topic=12047.msg1292018#msg1292018\r
192 \r
193 \r
194 ## Special Extra key doesn't work(System, Audio control keys)\r
195 You need to define `EXTRAKEY_ENABLE` in **makefile** to use them in TMK.\r
196 ```\r
197 EXTRAKEY_ENABLE = yes          # Audio control and System control\r
198 ```\r
199 http://deskthority.net/workshop-f7/tmk-keyboard-firmware-collection-t4478-60.html#p157919\r
200 \r
201 \r
202 ## Wakeup from sleep doesn't work\r
203 In Windows check `Allow this device to wake the computer` setting in Power **Management property** tab of **Device Manager**. Also check BIOS setting.\r
204 \r
205 Pressing any key during sleep should wake host.\r
206 \r
207 \r
208 ## Using Arduino?\r
209 **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
210 \r
211 - http://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf\r
212 - http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf\r
213 \r
214 Arduino leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem.\r
215 \r
216 \r
217 ## Using PF4-7 pins of USB AVR?\r
218 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
219 \r
220 If you are using Teensy this isn't needed. Teensy is shipped with JTAGEN fuse bit unprogrammed to disable the function.\r
221 \r
222 See this code.\r
223 ```\r
224     // JTAG disable for PORT F. write JTD bit twice within four cycles.\r
225     MCUCR |= (1<<JTD);\r
226     MCUCR |= (1<<JTD);\r
227 ```\r
228 https://github.com/tmk/tmk_keyboard/blob/master/keyboard/hbkb/matrix.c#L67\r
229 \r
230 And read **26.5.1 MCU Control Register – MCUCR** of ATMega32U4 datasheet.\r
231 \r
232 \r
233 ## Adding LED indicators of Lock keys\r
234 You need your own LED indicators for CapsLock, ScrollLock and NumLock? See this post.\r
235 \r
236 http://deskthority.net/workshop-f7/tmk-keyboard-firmware-collection-t4478-120.html#p191560\r
237 \r
238 ## Program Arduino Micro/Leonardo\r
239 Push reset button and then run command like this within 8 seconds.\r
240 \r
241 ```\r
242 avrdude -patmega32u4 -cavr109 -b57600 -Uflash:w:adb_usb.hex -P/dev/ttyACM0\r
243 ```\r
244 \r
245 Device name will vary depending on your system.\r
246 \r
247 http://arduino.cc/en/Main/ArduinoBoardMicro\r
248 https://geekhack.org/index.php?topic=14290.msg1563867#msg1563867