diff options
| author | skullydazed <skullydazed@users.noreply.github.com> | 2018-08-11 22:35:07 -0700 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2018-08-11 22:35:07 -0700 |
| commit | 3be4d2417c8e24d14e56bac6ce70190e2261a22b (patch) | |
| tree | 150ca1343da60ef2085b3f2997014ad251bcf314 | |
| parent | f0e0ca402c10fe2ade7129b28a0066bdf10d018d (diff) | |
| download | qmk_firmware-3be4d2417c8e24d14e56bac6ce70190e2261a22b.tar.gz qmk_firmware-3be4d2417c8e24d14e56bac6ce70190e2261a22b.zip | |
Keyboard: Make tada68 build .bin files by default (#3630)
| -rwxr-xr-x | keyboards/tada68/readme.md | 6 | ||||
| -rwxr-xr-x | keyboards/tada68/rules.mk | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/keyboards/tada68/readme.md b/keyboards/tada68/readme.md index 25b054ba1..393666fc8 100755 --- a/keyboards/tada68/readme.md +++ b/keyboards/tada68/readme.md | |||
| @@ -9,10 +9,14 @@ Hardware Availability: [kbdfans](https://kbdfans.myshopify.com/products/tada68-m | |||
| 9 | 9 | ||
| 10 | Make example for this keyboard (after setting up your build environment): | 10 | Make example for this keyboard (after setting up your build environment): |
| 11 | 11 | ||
| 12 | make tada68:default:bin | 12 | make tada68:default |
| 13 | 13 | ||
| 14 | See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. | 14 | See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. |
| 15 | 15 | ||
| 16 | ## Firmware Format | ||
| 17 | |||
| 18 | Out of the box the tada68 uses a .bin firmware file instead of a .hex like other custom keyboards. By default QMK will build and copy the correct .bin file for you. If for some reason you need a hex file instead, you can add `:hex` to your make command, or look inside `qmk_firmware/.build` to find the hex file. | ||
| 19 | |||
| 16 | ## Flashing Instructions (Win) | 20 | ## Flashing Instructions (Win) |
| 17 | 21 | ||
| 18 | *Read all the instructions, there are a few warnings of things to avoid doing to avoid bricking your Tada68. __It is much too easy to do!__* | 22 | *Read all the instructions, there are a few warnings of things to avoid doing to avoid bricking your Tada68. __It is much too easy to do!__* |
diff --git a/keyboards/tada68/rules.mk b/keyboards/tada68/rules.mk index dd5b2bbe0..2af733b6b 100755 --- a/keyboards/tada68/rules.mk +++ b/keyboards/tada68/rules.mk | |||
| @@ -48,6 +48,8 @@ OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | |||
| 48 | # USBaspLoader 2048 | 48 | # USBaspLoader 2048 |
| 49 | OPT_DEFS += -DBOOTLOADER_SIZE=4096 | 49 | OPT_DEFS += -DBOOTLOADER_SIZE=4096 |
| 50 | 50 | ||
| 51 | # Mass storage bootloader on the tada68 uses bin files | ||
| 52 | FIRMWARE_FORMAT=bin | ||
| 51 | 53 | ||
| 52 | # Build Options | 54 | # Build Options |
| 53 | # comment out to disable the options. | 55 | # comment out to disable the options. |
