aboutsummaryrefslogtreecommitdiff
path: root/docs/faq_build.md
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2017-12-09 16:56:58 +1100
committerJack Humbert <jack.humb@gmail.com>2017-12-09 10:46:11 -0500
commitbb53635f33c213e5a940edea8b07026ef89aed42 (patch)
tree7e170b424e37b7305f8be3072cd8c970f77ca073 /docs/faq_build.md
parentaf37bb2f78c39c224c995eb57c757c63034a3d9c (diff)
downloadqmk_firmware-bb53635f33c213e5a940edea8b07026ef89aed42.tar.gz
qmk_firmware-bb53635f33c213e5a940edea8b07026ef89aed42.zip
Trim trailing whitespace
Diffstat (limited to 'docs/faq_build.md')
-rw-r--r--docs/faq_build.md12
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
6You 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. 6You 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
8In short when your controller is ATMega32u4, 8In 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
81Note that Teensy2.0++ bootloader size is 2048byte. Some Makefiles may have wrong comment. 81Note 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
90OPT_DEFS += -DBOOTLOADER_SIZE=2048 90OPT_DEFS += -DBOOTLOADER_SIZE=2048
91``` 91```