aboutsummaryrefslogtreecommitdiff
path: root/doc/build.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/build.md')
-rw-r--r--doc/build.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/build.md b/doc/build.md
index 2e8157e09..bfe5de9fd 100644
--- a/doc/build.md
+++ b/doc/build.md
@@ -71,14 +71,14 @@ Or to program with `dfu-programmer` run:
71#### FLIP GUI tutorial 71#### FLIP GUI tutorial
721. On menu bar click Device -> Select, then. `ATmega32u4`. 721. On menu bar click Device -> Select, then. `ATmega32u4`.
732. On menu bar click Settings -> Communication -> USB, then click 'Open' button on 'USB Port Connection' dialog. 732. On menu bar click Settings -> Communication -> USB, then click 'Open' button on 'USB Port Connection' dialog.
74At this point you'll see greyouted widgets on the app get colored and ready. 74At this point you'll see grey-outed widgets on the app get colored and ready.
75 75
763. On menu bar click File -> Load HEX File, then select your firmware hex file on File Selector dialog. 763. On menu bar click File -> Load HEX File, then select your firmware hex file on File Selector dialog.
774. On 'Operations Flow' panel click 'Run' button to load the firmware binary to the chip. Note that you should keep 'Erase', 'Blank Check', 'Program' and 'Verify' check boxes selected. 774. On 'Operations Flow' panel click 'Run' button to load the firmware binary to the chip. Note that you should keep 'Erase', 'Blank Check', 'Program' and 'Verify' check boxes selected.
785. Re-plug USB cord or click 'Start Application' button to restart your controller. 785. Re-plug USB cord or click 'Start Application' button to restart your controller.
79Done. 79Done.
80 80
81See also these instaructions if you need. 81See also these instructions if you need.
82 82
83- <http://code.google.com/p/micropendous/wiki/LoadingFirmwareWithFLIP> 83- <http://code.google.com/p/micropendous/wiki/LoadingFirmwareWithFLIP>
84- <http://www.atmel.com/Images/doc7769.pdf> 84- <http://www.atmel.com/Images/doc7769.pdf>
@@ -95,7 +95,7 @@ Or use this command if you have command line version of Teensy Loader installed.
95 95
96 96
97### 4. Program with Other programmer 97### 4. Program with Other programmer
98You may want to use other programmer like `avrdude` with AVRISPmkII, Aruduino or USBasp. In that case you can still use make target `program` for build with configuring `PROGRAM_CMD` in Makefile. 98You may want to use other programmer like `avrdude` with AVRISPmkII, Arduino or USBasp. In that case you can still use make target `program` for build with configuring `PROGRAM_CMD` in Makefile.
99 99
100 $ make -f Makefile.<variant> program 100 $ make -f Makefile.<variant> program
101 101
@@ -135,7 +135,7 @@ Optional. Note that ***comment out*** to disable them.
135 #BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality 135 #BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
136 136
137### 3. Programmer 137### 3. Programmer
138Optional. Set proper command for your controller, bootloader and programmer. This command can be used with `make program`. Not needed if you use `FLIP`, `dfu-programmer` or `Teesy Loader`. 138Optional. Set proper command for your controller, bootloader and programmer. This command can be used with `make program`. Not needed if you use `FLIP`, `dfu-programmer` or `Teensy Loader`.
139 139
140 # avrdude with AVRISPmkII 140 # avrdude with AVRISPmkII
141 PROGRAM_CMD = avrdude -p $(MCU) -c avrispmkII -P USB -U flash:w:$(TARGET).hex 141 PROGRAM_CMD = avrdude -p $(MCU) -c avrispmkII -P USB -U flash:w:$(TARGET).hex
@@ -158,7 +158,7 @@ Config.h Options
158 158
159 /* Mechanical locking CapsLock support. Use KC_LCAP instead of KC_CAPS in keymap */ 159 /* Mechanical locking CapsLock support. Use KC_LCAP instead of KC_CAPS in keymap */
160 #define CAPSLOCK_LOCKING_ENABLE 160 #define CAPSLOCK_LOCKING_ENABLE
161 /* Locking CapsLock resynchronize hack */ 161 /* Locking CapsLock re-synchronize hack */
162 #define CAPSLOCK_LOCKING_RESYNC_ENABLE 162 #define CAPSLOCK_LOCKING_RESYNC_ENABLE
163 163
164### 3. Disable Debug and Print 164### 3. Disable Debug and Print