diff options
Diffstat (limited to 'docs/faq_build.md')
-rw-r--r-- | docs/faq_build.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/faq_build.md b/docs/faq_build.md index 0474e2746..d38ca69d0 100644 --- a/docs/faq_build.md +++ b/docs/faq_build.md | |||
@@ -6,7 +6,7 @@ This page covers questions about building QMK. If you have not yet you should re | |||
6 | You will need proper permission to operate a device. For Linux users see udev rules below. Easy way is to use `sudo` command, if you are not familiar with this command check its manual with `man sudo` or this page on line. | 6 | You will need proper permission to operate a device. For Linux users see udev rules below. Easy way is to use `sudo` command, if you are not familiar with this command check its manual with `man sudo` or this page on line. |
7 | 7 | ||
8 | In short when your controller is ATMega32u4, | 8 | In short when your controller is ATMega32u4, |
9 | 9 | ||
10 | $ sudo dfu-programmer atmega32u4 erase --force | 10 | $ sudo dfu-programmer atmega32u4 erase --force |
11 | $ sudo dfu-programmer atmega32u4 flash your.hex | 11 | $ sudo dfu-programmer atmega32u4 flash your.hex |
12 | $ sudo dfu-programmer atmega32u4 reset | 12 | $ sudo dfu-programmer atmega32u4 reset |
@@ -81,11 +81,11 @@ make: *** [obj_alps64/protocol/lufa/lufa.o] Error 1 | |||
81 | Note that Teensy2.0++ bootloader size is 2048byte. Some Makefiles may have wrong comment. | 81 | Note that Teensy2.0++ bootloader size is 2048byte. Some Makefiles may have wrong comment. |
82 | 82 | ||
83 | ``` | 83 | ``` |
84 | # Boot Section Size in *bytes* | 84 | # Boot Section Size in *bytes* |
85 | # Teensy halfKay 512 | 85 | # Teensy halfKay 512 |
86 | # Teensy++ halfKay 2048 | 86 | # Teensy++ halfKay 2048 |
87 | # Atmel DFU loader 4096 (TMK Alt Controller) | 87 | # Atmel DFU loader 4096 (TMK Alt Controller) |
88 | # LUFA bootloader 4096 | 88 | # LUFA bootloader 4096 |
89 | # USBaspLoader 2048 | 89 | # USBaspLoader 2048 |
90 | OPT_DEFS += -DBOOTLOADER_SIZE=2048 | 90 | OPT_DEFS += -DBOOTLOADER_SIZE=2048 |
91 | ``` | 91 | ``` |