]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Updates docs - planck 6 and macos instructions (#4201)
authorColin T.A. Gray <colinta@gmail.com>
Mon, 22 Oct 2018 18:19:51 +0000 (14:19 -0400)
committerDrashna Jaelre <drashna@live.com>
Mon, 22 Oct 2018 18:19:51 +0000 (11:19 -0700)
* add note about how to install rev6 (dfu-util)

* include instructions on installing dfu-util on macOS

docs/faq_build.md
docs/getting_started_build_tools.md
keyboards/planck/readme.md

index 00a0d386b913f8eb582146f70ab03ae8d1c0f669..465a283aef24796dce2e8710a04eb78e4d4f3193 100644 (file)
@@ -105,10 +105,12 @@ The solution is to remove and reinstall all affected modules.
 ```
 brew rm avr-gcc
 brew rm dfu-programmer
+brew rm dfu-util
 brew rm gcc-arm-none-eabi
 brew rm avrdude
 brew install avr-gcc
 brew install dfu-programmer
+brew install dfu-util
 brew install gcc-arm-none-eabi
 brew install avrdude
 ```
index c1e02d4e07273af93ba4501cbe13d01820596647..dd3e7805a9f502d6130a7d788346592f63a85cf3 100644 (file)
@@ -58,6 +58,7 @@ If you're using [homebrew,](http://brew.sh/) you can use the following commands:
     brew update
     brew install avr-gcc@7
     brew install dfu-programmer
+    brew install dfu-util
     brew install gcc-arm-none-eabi
     brew install avrdude
 
index f857c546cc88537bb374c62d705453fd2d30a7be..083279e8a62d3fe6910892fc5f4019ce5b2b07e2 100644 (file)
@@ -13,4 +13,8 @@ Make example for this keyboard (after setting up your build environment):
 
     make planck/rev4:default
 
+Install examples:
+
+    make planck/rev6:default:dfu-util
+
 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.