]> git.donarmstrong.com Git - qmk_firmware.git/blob - FAQ.md
Updated FAQ (markdown)
[qmk_firmware.git] / FAQ.md
1 # Build
2 ## 'make clean' needs after changing config.h
3 To build with new **config.h** you need
4
5     $ make clean
6
7 ## WINAVR is obsolete
8 It is no longer recommended and may cause some problem.
9 See [Issue #99](https://github.com/tmk/tmk_keyboard/issues/99).
10
11 ## USB stack: LUFA or PJRC?
12 Use **LUFA**.
13
14 **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.
15 See also [Issue #50](https://github.com/tmk/tmk_keyboard/issues/50) and [Issue #58](https://github.com/tmk/tmk_keyboard/issues/58).
16
17
18 ## Edit configuration but not change
19 Try these.
20 ### 1. make clean
21 This will be needed when you edit **config.h**.
22
23 ### 2. Remove Drivers from Device Manager(Windows)
24 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**.
25
26 You will need this after editing `CONSOLE_ENABLE`, `NKRO_ENABLE`, `EXTRAKEY_ENABLE` or `MOUSEKEY_ENABLE` option in **Makefile**.
27
28
29 # Degug Console
30 ## hid_listen can't find device
31 When debug console of your device is not ready you will see like this:
32
33     Waiting for device:.........
34
35 once the device is pluged in then *hid_listen* finds it you will get this message:
36
37     Waiting for new device:.........................
38     Listening:
39
40 Check if you can't get this 'Listening:' message:
41 - build with `CONSOLE_ENABLE=yes` in **Makefile**.
42
43 ## Can't get message from console
44 Check:
45 - connect the device to *hid_listen*. See above.
46 - push **LShift+RShift+d** to enable debug. See [Magic Commands](https://github.com/tmk/tmk_keyboard#magic-commands).
47 - set `debug_enable=yes` usually in `matrix_init()` in **matrix.c**.
48 - try using 'print' function instead of debug print. See **common/print.h**.
49 - disconnect other devices with console function. See [Issue #97](https://github.com/tmk/tmk_keyboard/issues/97).
50
51 ***
52
53 # Miscellaneous
54 ## NKRO Doesn't work
55 1. Build with this option of Makefile
56
57     NKRO_ENABLE = yes
58
59 2. After boot keyboard may be in **boot mode**(6KRO), you will need to replug keyboard to enable NKRO.
60
61 3. Or use `Magic` **N** command to toggle NKRO function.
62
63
64
65
66
67 ## TrackPoint needs reset circuit(PS/2 mouse support)
68 Without reset circuit you will have inconsistent reuslt due to improper initialize of the hardware. See circuit schematic of TPM754.
69
70 - http://geekhack.org/index.php?topic=50176.msg1127447#msg1127447
71 - http://www.mikrocontroller.net/attachment/52583/tpm754.pdf
72
73
74 ## Can't read comlumn of matrix beyond 16 
75 Use `1UL<<16` intead of `1<<16` in `read_cols()` in **matrix.h** when your columns goes beyond 16.
76
77 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`.
78
79 http://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279
80
81
82
83 ## Pull-up Resistor
84 In some case converters needed to have pull-up resistors to work correctly. Place the resistor between VCC and signal line in parallel.
85
86 ```
87 Keyboard       Conveter
88                ,------.
89 5V------+------|VCC   |
90         |      |      |
91         R      |      |
92         |      |      |
93 Signal--+------|PD0   |
94                |      |
95 GND------------|GND   |
96                `------'
97 R: 1K Ohm resistor
98 ```
99
100
101 ## Arduino Micro's pin naming is confusing
102 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.
103 http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf
104
105
106
107 ## Bootloader jump doesn't work
108 Properly configure boot section size in Makefile. With wrong section size bootloader won't probably start with **Magic command** and **Boot Magic**.
109 - https://github.com/tmk/tmk_keyboard#magic-commands
110 - https://github.com/tmk/tmk_keyboard#bootloader
111
112 ```
113 # Boot Section Size in *bytes*
114 #   Teensy halfKay   512
115 #   Teensy++ halfKay 1024
116 #   Atmel DFU loader 4096       (TMK Alt Controller)
117 #   LUFA bootloader  4096
118 #   USBaspLoader     2048
119 OPT_DEFS += -DBOOTLOADER_SIZE=4096
120 ```
121 http://geekhack.org/index.php?topic=12047.msg1292018#msg1292018
122
123
124 ## Special Extra key doesn't work(System, Audio control keys)
125 You need to define `EXTRAKEY_ENABLE` in **makefile** to use them in TMK.
126 ```
127 EXTRAKEY_ENABLE = yes          # Audio control and System control
128 ```
129 http://deskthority.net/workshop-f7/tmk-keyboard-firmware-collection-t4478-60.html#p157919
130
131
132 ## Wakeup from sleep doesn't work
133 In Windows check `Allow this device to wake the computer` setting in Power **Management property** tab of **Device Manager**. Also check BIOS setting.
134
135 Pressing any key during sleep should wake host.