]> git.donarmstrong.com Git - qmk_firmware.git/blob - docs/faq_debug.md
convert to unix line-endings [skip ci]
[qmk_firmware.git] / docs / faq_debug.md
1 # Debugging FAQ
2
3 This page details various common questions people have about troubleshooting their keyboards.
4
5 # Debug Console
6
7 ## hid_listen can't recognize device
8 When debug console of your device is not ready you will see like this:
9
10 ```
11 Waiting for device:.........
12 ```
13
14 once the device is pluged in then *hid_listen* finds it you will get this message:
15
16 ```
17 Waiting for new device:.........................
18 Listening:
19 ```
20
21 If you can't get this 'Listening:' message try building with `CONSOLE_ENABLE=yes` in [Makefile]
22
23 You may need privilege to access the device on OS like Linux.
24 - try `sudo hid_listen`
25
26 ## Can't get message on console
27 Check:
28 - *hid_listen* finds your device. See above.
29 - Enable debug with pressing **Magic**+d. See [Magic Commands](https://github.com/tmk/tmk_keyboard#magic-commands).
30 - set `debug_enable=true` usually in `matrix_init()` in **matrix.c**.
31 - try using 'print' function instead of debug print. See **common/print.h**.
32 - disconnect other devices with console function. See [Issue #97](https://github.com/tmk/tmk_keyboard/issues/97).
33
34 ## Linux or UNIX like system requires Super User privilege
35 Just use 'sudo' to execute *hid_listen* with privilege.
36 ```
37 $ sudo hid_listen
38 ```
39
40 Or add an *udev rule* for TMK devices with placing a file in rules directory. The directory may vary on each system.
41
42 File: /etc/udev/rules.d/52-tmk-keyboard.rules(in case of Ubuntu)
43 ```
44 # tmk keyboard products     https://github.com/tmk/tmk_keyboard
45 SUBSYSTEMS=="usb", ATTRS{idVendor}=="feed", MODE:="0666"
46 ```
47
48 ***
49
50 # Miscellaneous
51 ## Safety Considerations
52
53 You probably don't want to "brick" your keyboard, making it impossible
54 to rewrite firmware onto it.  Here are some of the parameters to show
55 what things are (and likely aren't) too risky.
56
57 - If your keyboard map does not include RESET, then, to get into DFU
58   mode, you will need to press the reset button on the PCB, which
59   requires unscrewing the bottom.
60 - Messing with tmk_core / common files might make the keyboard
61   inoperable
62 - Too large a .hex file is trouble; `make dfu` will erase the block,
63   test the size (oops, wrong order!), which errors out, failing to
64   flash the keyboard, leaving it in DFU mode.
65   - To this end, note that the maximum .hex file size on Planck is
66     7000h (28672 decimal)
67
68 ```
69 Linking: .build/planck_rev4_cbbrowne.elf                                                            [OK]
70 Creating load file for Flash: .build/planck_rev4_cbbrowne.hex                                       [OK]
71
72 Size after:
73    text    data     bss     dec     hex filename
74       0   22396       0   22396    577c planck_rev4_cbbrowne.hex
75 ```
76
77   - The above file is of size 22396/577ch, which is less than
78     28672/7000h
79   - As long as you have a suitable alternative .hex file around, you
80     can retry, loading that one
81   - Some of the options you might specify in your keyboard's Makefile
82     consume extra memory; watch out for BOOTMAGIC_ENABLE,
83     MOUSEKEY_ENABLE, EXTRAKEY_ENABLE, CONSOLE_ENABLE, API_SYSEX_ENABLE
84 - DFU tools do /not/ allow you to write into the bootloader (unless
85   you throw in extra fruitsalad of options), so there is little risk
86   there.
87 - EEPROM has around a 100000 write cycle.  You shouldn't rewrite the
88   firmware repeatedly and continually; that'll burn the EEPROM
89   eventually.
90 ## NKRO Doesn't work
91 First you have to compile frimware with this build option `NKRO_ENABLE` in **Makefile**.
92
93 Try `Magic` **N** command(`LShift+RShift+N` by default) when **NKRO** still doesn't work. You can use this command to toggle between **NKRO** and **6KRO** mode temporarily. In some situations **NKRO** doesn't work you need to switch to **6KRO** mode, in particular when you are in BIOS.
94
95 If your firmware built with `BOOTMAGIC_ENABLE` you need to turn its switch on by `BootMagic` **N** command(`Space+N` by default). This setting is stored in EEPROM and keeped over power cycles.
96
97 https://github.com/tmk/tmk_keyboard#boot-magic-configuration---virtual-dip-switch
98
99
100 ## TrackPoint needs reset circuit(PS/2 mouse support)
101 Without reset circuit you will have inconsistent reuslt due to improper initialize of the hardware. See circuit schematic of TPM754.
102
103 - http://geekhack.org/index.php?topic=50176.msg1127447#msg1127447
104 - http://www.mikrocontroller.net/attachment/52583/tpm754.pdf
105
106
107 ## Can't read column of matrix beyond 16 
108 Use `1UL<<16` instead of `1<<16` in `read_cols()` in [matrix.h] when your columns goes beyond 16.
109
110 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`.
111
112 http://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279
113
114
115 ## Bootloader jump doesn't work
116 Properly configure bootloader size in **Makefile**. With wrong section size bootloader won't probably start with **Magic command** and **Boot Magic**.
117 ```
118 # Size of Bootloaders in bytes:
119 #   Atmel DFU loader(ATmega32U4)   4096    
120 #   Atmel DFU loader(AT90USB128)   8192    
121 #   LUFA bootloader(ATmega32U4)    4096             
122 #   Arduino Caterina(ATmega32U4)   4096             
123 #   USBaspLoader(ATmega***)        2048             
124 #   Teensy   halfKay(ATmega32U4)   512              
125 #   Teensy++ halfKay(AT90USB128)   2048
126 OPT_DEFS += -DBOOTLOADER_SIZE=4096
127 ```
128 AVR Boot section size are defined by setting **BOOTSZ** fuse in fact. Consult with your MCU datasheet.
129 Note that **Word**(2 bytes) size and address are used in datasheet while TMK uses **Byte**.
130
131 AVR Boot section is located at end of Flash memory like the followings.
132 ```
133 byte     Atmel/LUFA(ATMega32u4)          byte     Atmel(AT90SUB1286)
134 0x0000   +---------------+               0x00000  +---------------+
135          |               |                        |               |
136          |               |                        |               |
137          |  Application  |                        |  Application  |
138          |               |                        |               | 
139          =               =                        =               =
140          |               | 32KB-4KB               |               | 128KB-8KB
141 0x6000   +---------------+               0x1E000  +---------------+
142          |  Bootloader   | 4KB                    |  Bootloader   | 8KB
143 0x7FFF   +---------------+               0x1FFFF  +---------------+
144
145  
146 byte     Teensy(ATMega32u4)              byte     Teensy++(AT90SUB1286)
147 0x0000   +---------------+               0x00000  +---------------+
148          |               |                        |               |
149          |               |                        |               |
150          |  Application  |                        |  Application  |
151          |               |                        |               |
152          =               =                        =               =
153          |               | 32KB-512B              |               | 128KB-2KB
154 0x7E00   +---------------+               0x1FC00  +---------------+
155          |  Bootloader   | 512B                   |  Bootloader   | 2KB
156 0x7FFF   +---------------+               0x1FFFF  +---------------+
157 ```
158
159 And see this discussion for further reference.
160 https://github.com/tmk/tmk_keyboard/issues/179
161
162
163 ## Special Extra key doesn't work(System, Audio control keys)
164 You need to define `EXTRAKEY_ENABLE` in `rules.mk` to use them in QMK.
165
166 ```
167 EXTRAKEY_ENABLE = yes          # Audio control and System control
168 ```
169
170 ## Wakeup from sleep doesn't work
171
172 In Windows check `Allow this device to wake the computer` setting in Power **Management property** tab of **Device Manager**. Also check BIOS setting.
173
174 Pressing any key during sleep should wake host.
175
176 ## Using Arduino?
177
178 **Note that Arduino pin naming is different from actual chip.** For example, Arduino pin `D0` is not `PD0`. Check circuit with its schematics yourself.
179
180 - http://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf
181 - http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf
182
183 Arduino leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem.
184
185
186 ## Using PF4-7 pins of USB AVR?
187 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.
188
189 If you are using Teensy this isn't needed. Teensy is shipped with JTAGEN fuse bit unprogrammed to disable the function.
190
191 See this code.
192 ```
193     // JTAG disable for PORT F. write JTD bit twice within four cycles.
194     MCUCR |= (1<<JTD);
195     MCUCR |= (1<<JTD);
196 ```
197 https://github.com/tmk/tmk_keyboard/blob/master/keyboard/hbkb/matrix.c#L67
198
199 And read **26.5.1 MCU Control Register – MCUCR** of ATMega32U4 datasheet.
200
201
202 ## Adding LED indicators of Lock keys
203 You need your own LED indicators for CapsLock, ScrollLock and NumLock? See this post.
204
205 http://deskthority.net/workshop-f7/tmk-keyboard-firmware-collection-t4478-120.html#p191560
206
207 ## Program Arduino Micro/Leonardo
208 Push reset button and then run command like this within 8 seconds.
209
210 ```
211 avrdude -patmega32u4 -cavr109 -b57600 -Uflash:w:adb_usb.hex -P/dev/ttyACM0
212 ```
213
214 Device name will vary depending on your system.
215
216 http://arduino.cc/en/Main/ArduinoBoardMicro
217 https://geekhack.org/index.php?topic=14290.msg1563867#msg1563867
218
219
220 ## USB 3 compatibility
221 I heard some people have a problem with USB 3 port, try USB 2 port.
222
223
224 ## Mac compatibility
225 ### OS X 10.11 and Hub
226 https://geekhack.org/index.php?topic=14290.msg1884034#msg1884034
227
228
229 ## Problem on BIOS(UEFI)/Resume(Sleep&Wake)/Power cycles
230 Some people reported their keyboard stops working on BIOS and/or after resume(power cycles).
231
232 As of now root of its cause is not clear but some build options seem to be related. In Makefile try to disable those options like `CONSOLE_ENABLE`, `NKRO_ENABLE`, `SLEEP_LED_ENABLE` and/or others. 
233
234 https://github.com/tmk/tmk_keyboard/issues/266
235 https://geekhack.org/index.php?topic=41989.msg1967778#msg1967778
236
237
238
239 ## FLIP doesn't work
240 ### AtLibUsbDfu.dll not found
241 Remove current driver and reinstall one FLIP provides from DeviceManager.
242 http://imgur.com/a/bnwzy