]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Updated FAQ (markdown)
authortmk <tmk@users.noreply.github.com>
Sat, 12 Apr 2014 02:32:25 +0000 (19:32 -0700)
committertmk <tmk@users.noreply.github.com>
Sat, 12 Apr 2014 02:32:25 +0000 (19:32 -0700)
FAQ.md

diff --git a/FAQ.md b/FAQ.md
index 63a6435cdf870487c42ab2ce4af6fcc5be11fc7b..a00b7c8b3c1f86f451d87e62c69c6dccbe350097 100644 (file)
--- a/FAQ.md
+++ b/FAQ.md
@@ -111,4 +111,22 @@ R: 1K Ohm resistor
 
 ## Arduino Micro's pin naming is confusing
 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.
-http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf
\ No newline at end of file
+http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf
+
+
+
+## Bootloader jump doesn't work
+Properly configure boot section size in Makefile. With wrong section size bootloader won't probably start with **Magic command** and **Boot Magic**.
+- https://github.com/tmk/tmk_keyboard#magic-commands
+- https://github.com/tmk/tmk_keyboard#bootloader
+
+```
+# Boot Section Size in *bytes*
+#   Teensy halfKay   512
+#   Teensy++ halfKay 1024
+#   Atmel DFU loader 4096       (TMK Alt Controller)
+#   LUFA bootloader  4096
+#   USBaspLoader     2048
+OPT_DEFS += -DBOOTLOADER_SIZE=4096
+```
+http://geekhack.org/index.php?topic=12047.msg1292018#msg1292018
\ No newline at end of file