summaryrefslogtreecommitdiff
path: root/FAQ.md
diff options
context:
space:
mode:
authortmk <tmk@users.noreply.github.com>2014-04-11 19:32:25 -0700
committertmk <tmk@users.noreply.github.com>2014-04-11 19:32:25 -0700
commitd3388d34682f6fc9a801442db7240689661e9a13 (patch)
tree19c2014e68bf1ef73ba5dcf48da9c9e8f81a60d9 /FAQ.md
parentcecb912e536002ea888ccd56fd097848928cb52b (diff)
Updated FAQ (markdown)
Diffstat (limited to 'FAQ.md')
-rw-r--r--FAQ.md20
1 files changed, 19 insertions, 1 deletions
diff --git a/FAQ.md b/FAQ.md
index 63a6435cdf..a00b7c8b3c 100644
--- 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