You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
5.1 KiB

  1. # Miscellaneous FAQ
  2. ## How do I test my keyboard? :id=testing
  3. Testing your keyboard is usually pretty straightforward. Press every single key and make sure it sends the keys you expect. You can use [QMK Configurator](https://config.qmk.fm/#/test/)'s test mode to check your keyboard, even if it doesn't run QMK.
  4. ## Safety Considerations
  5. You probably don't want to "brick" your keyboard, making it impossible
  6. to rewrite firmware onto it. Here are some of the parameters to show
  7. what things are (and likely aren't) too risky.
  8. - If your keyboard map does not include QK_BOOT, then, to get into DFU
  9. mode, you will need to press the reset button on the PCB, which
  10. requires unscrewing the bottom.
  11. - Messing with tmk_core / common files might make the keyboard
  12. inoperable
  13. - Too large a .hex file is trouble; `make dfu` will erase the block,
  14. test the size (oops, wrong order!), which errors out, failing to
  15. flash the keyboard, leaving it in DFU mode.
  16. - To this end, note that the maximum .hex file size on e.g. Planck
  17. is 7000h (28672 decimal)
  18. ```
  19. Linking: .build/planck_rev4_cbbrowne.elf [OK]
  20. Creating load file for Flash: .build/planck_rev4_cbbrowne.hex [OK]
  21. Size after:
  22. text data bss dec hex filename
  23. 0 22396 0 22396 577c planck_rev4_cbbrowne.hex
  24. ```
  25. - The above file is of size 22396/577ch, which is less than
  26. 28672/7000h
  27. - As long as you have a suitable alternative .hex file around, you
  28. can retry, loading that one
  29. - Some of the options you might specify in your keyboard's Makefile
  30. consume extra memory; watch out for BOOTMAGIC_ENABLE,
  31. MOUSEKEY_ENABLE, EXTRAKEY_ENABLE, CONSOLE_ENABLE
  32. - DFU tools do /not/ allow you to write into the bootloader (unless
  33. you throw in an extra fruit salad of options), so there is little risk
  34. there.
  35. - EEPROM has around a 100000 (100k) write cycle. You shouldn't rewrite
  36. the firmware repeatedly and continually; that'll burn the EEPROM
  37. eventually.
  38. ## NKRO Doesn't work
  39. First you have to compile firmware with the build option `NKRO_ENABLE` in **Makefile**.
  40. 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 and you will need to switch to **6KRO** mode, in particular when you are in BIOS.
  41. ## TrackPoint Needs Reset Circuit (PS/2 Mouse Support)
  42. Without reset circuit you will have inconsistent result due to improper initialization of the hardware. See circuit schematic of TPM754:
  43. - https://geekhack.org/index.php?topic=50176.msg1127447#msg1127447
  44. - https://www.mikrocontroller.net/attachment/52583/tpm754.pdf
  45. ## Can't Read Column of Matrix Beyond 16
  46. Use `1UL<<16` instead of `1<<16` in `read_cols()` in [matrix.h] when your columns goes beyond 16.
  47. In C `1` means one of [int] type which is [16 bit] in case of AVR, so you can't shift left more than 15. Thus, calculating `1<<16` will unexpectedly equal zero. To work around this, you have to use [unsigned long] type with `1UL`.
  48. https://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279
  49. ## Special Extra Key Doesn't Work (System, Audio Control Keys)
  50. You need to define `EXTRAKEY_ENABLE` in `rules.mk` to use them in QMK.
  51. ```
  52. EXTRAKEY_ENABLE = yes # Audio control and System control
  53. ```
  54. ## Wake from Sleep Doesn't Work
  55. In Windows check `Allow this device to wake the computer` setting in **Power Management** property tab of **Device Manager**. Also check your BIOS settings. Pressing any key during sleep should wake host.
  56. ## Using Arduino?
  57. **Note that Arduino pin naming is different from actual chip.** For example, Arduino pin `D0` is not `PD0`. Check circuit with its schematics yourself.
  58. - https://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf
  59. - https://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf
  60. Arduino Leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem.
  61. ## Enabling JTAG
  62. By default, the JTAG debugging interface is disabled as soon as the keyboard starts up. JTAG-capable MCUs come from the factory with the `JTAGEN` fuse set, and it takes over certain pins of the MCU that the board may be using for the switch matrix, LEDs, etc.
  63. If you would like to keep JTAG enabled, just add the following to your `config.h`:
  64. ```c
  65. #define NO_JTAG_DISABLE
  66. ```
  67. ## USB 3 Compatibility
  68. Some problems can be fixed by switching from a USB 3.x port to a USB 2.0 port.
  69. ## Mac Compatibility
  70. ### OS X 10.11 and Hub
  71. See here: https://geekhack.org/index.php?topic=14290.msg1884034#msg1884034
  72. ## Problem in BIOS (UEFI) Setup/Resume (Sleep & Wake)/Power Cycles
  73. Some people reported their keyboard stops working in BIOS and/or after resume(power cycles).
  74. As of now the root cause is not clear, but some build options seem to be related. In Makefile, try to disable options like `CONSOLE_ENABLE`, `NKRO_ENABLE`, `SLEEP_LED_ENABLE` and/or others.
  75. More info:
  76. - https://github.com/tmk/tmk_keyboard/issues/266
  77. - https://geekhack.org/index.php?topic=41989.msg1967778#msg1967778