]> 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 find 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 from console\r
93 Check:\r
94 - connect the device to *hid_listen*. See above.\r
95 - push **LShift+RShift+d** to enable debug. 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 ***\r
101 \r
102 # Miscellaneous\r
103 ## NKRO Doesn't work\r
104 1. Build with this option of Makefile\r
105 \r
106     NKRO_ENABLE = yes\r
107 \r
108 2. After boot keyboard may be in **boot mode**(6KRO), you will need to replug keyboard to enable NKRO.\r
109 \r
110 3. Or use `Magic` **N** command to toggle NKRO function.(`LShift+RShift+N` by default)\r
111 \r
112 \r
113 \r
114 ## TrackPoint needs reset circuit(PS/2 mouse support)\r
115 Without reset circuit you will have inconsistent reuslt due to improper initialize of the hardware. See circuit schematic of TPM754.\r
116 \r
117 - http://geekhack.org/index.php?topic=50176.msg1127447#msg1127447\r
118 - http://www.mikrocontroller.net/attachment/52583/tpm754.pdf\r
119 \r
120 \r
121 ## Can't read comlumn of matrix beyond 16 \r
122 Use `1UL<<16` intead of `1<<16` in `read_cols()` in **matrix.h** when your columns goes beyond 16.\r
123 \r
124 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
125 \r
126 http://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279\r
127 \r
128 \r
129 \r
130 ## Pull-up Resistor\r
131 In some case converters needed to have pull-up resistors to work correctly. Place the resistor between VCC and signal line in parallel.\r
132 \r
133 For example:\r
134 ```\r
135 Keyboard       Conveter\r
136                ,------.\r
137 5V------+------|VCC   |\r
138         |      |      |\r
139         R      |      |\r
140         |      |      |\r
141 Signal--+------|PD0   |\r
142                |      |\r
143 GND------------|GND   |\r
144                `------'\r
145 R: 1K Ohm resistor\r
146 ```\r
147 \r
148 https://github.com/tmk/tmk_keyboard/issues/71\r
149 \r
150 \r
151 ## Arduino Micro's pin naming is confusing\r
152 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
153 http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf\r
154 \r
155 \r
156 \r
157 ## Bootloader jump doesn't work\r
158 Properly configure boot section size in Makefile. With wrong section size bootloader won't probably start with **Magic command** and **Boot Magic**.\r
159 - https://github.com/tmk/tmk_keyboard#magic-commands\r
160 - https://github.com/tmk/tmk_keyboard#bootloader\r
161 \r
162 ```\r
163 # Boot Section Size in *bytes*\r
164 #   Teensy halfKay   512\r
165 #   Teensy++ halfKay 1024\r
166 #   Atmel DFU loader 4096       (TMK Alt Controller)\r
167 #   LUFA bootloader  4096\r
168 #   USBaspLoader     2048\r
169 OPT_DEFS += -DBOOTLOADER_SIZE=4096\r
170 ```\r
171 http://geekhack.org/index.php?topic=12047.msg1292018#msg1292018\r
172 \r
173 \r
174 ## Special Extra key doesn't work(System, Audio control keys)\r
175 You need to define `EXTRAKEY_ENABLE` in **makefile** to use them in TMK.\r
176 ```\r
177 EXTRAKEY_ENABLE = yes          # Audio control and System control\r
178 ```\r
179 http://deskthority.net/workshop-f7/tmk-keyboard-firmware-collection-t4478-60.html#p157919\r
180 \r
181 \r
182 ## Wakeup from sleep doesn't work\r
183 In Windows check `Allow this device to wake the computer` setting in Power **Management property** tab of **Device Manager**. Also check BIOS setting.\r
184 \r
185 Pressing any key during sleep should wake host.\r
186 \r
187 \r
188 ## Using Arduino?\r
189 **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
190 \r
191 - http://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf\r
192 - http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf\r
193 \r
194 Arduino leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem.\r
195 \r
196 \r
197 ## Using PF4-7 pins of USB AVR?\r
198 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
199 \r
200 If you are using Teensy this isn't needed. Teensy is shipped with JTAGEN fuse bit unprogrammed to disable the function.\r
201 \r
202 See this code.\r
203 ```\r
204     // JTAG disable for PORT F. write JTD bit twice within four cycles.\r
205     MCUCR |= (1<<JTD);\r
206     MCUCR |= (1<<JTD);\r
207 ```\r
208 https://github.com/tmk/tmk_keyboard/blob/master/keyboard/hbkb/matrix.c#L67\r
209 \r
210 And read **26.5.1 MCU Control Register – MCUCR** of ATMega32U4 datasheet.