summaryrefslogtreecommitdiffstats
path: root/FAQ.md
diff options
context:
space:
mode:
authortmk <tmk@users.noreply.github.com>2014-06-19 21:12:04 -0700
committertmk <tmk@users.noreply.github.com>2014-06-19 21:12:04 -0700
commit3c446334e9ab2761af3c76855250183585b61aed (patch)
tree2d5060f74c28c54607d05fc818f5101b23eebe27 /FAQ.md
parent520ddc19a11f8b8ad0ec0740f5a4b8dab673c671 (diff)
Updated FAQ (markdown)
Diffstat (limited to 'FAQ.md')
-rw-r--r--FAQ.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/FAQ.md b/FAQ.md
index 9bb74c7276..a411c7c6f1 100644
--- a/FAQ.md
+++ b/FAQ.md
@@ -178,4 +178,18 @@ Pressing any key during sleep should wake host.
- http://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf
- http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf
-Arduino leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem. \ No newline at end of file
+Arduino leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem.
+
+
+## Using PF4-7 pins of USB AVR(ATMega32U* or AT90USB*)?
+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. If you are using Teensy this isn't needed. Teensy is shipped with JTAGEN fuse bit unprogrammed to disable the function.
+
+See this code.
+```
+ // JTAG disable for PORT F. write JTD bit twice within four cycles.
+ MCUCR |= (1<<JTD);
+ MCUCR |= (1<<JTD);
+```
+https://github.com/tmk/tmk_keyboard/blob/master/keyboard/hbkb/matrix.c#L67
+
+And read **26.5.1 MCU Control Register – MCUCR** of ATMega32U4 datasheet. \ No newline at end of file