summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTsquash <caleblightfoot05@gmail.com>2020-10-09 22:09:19 -0500
committerTsquash <caleblightfoot05@gmail.com>2020-10-10 11:10:17 -0500
commit8d4e80c23a51ab4f1499c21086f76549d56ababd (patch)
treed9f4b0aec17ff26054d98d2e7f0ee39a699d20e5 /docs
parent5401afc002ba086ca964aa7a164fbc6dbd1898b1 (diff)
Added Dfu-Util to setup instructions
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/dev-setup.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/docs/dev-setup.md b/docs/docs/dev-setup.md
index 114fe0b..521d5d0 100644
--- a/docs/docs/dev-setup.md
+++ b/docs/docs/dev-setup.md
@@ -168,6 +168,10 @@ Chocolatey is recommended and used for the following instructions. You can manua
choco install ninja gperf python git
```
+It is recommended to install `dfu-util` to avoid any later confusion while flashing devices. You can do this by running this command with chocolatey:
+``` shell
+choco install dfu-util
+```
</TabItem>
<TabItem value="mac">
@@ -176,7 +180,7 @@ Chocolatey is recommended and used for the following instructions. You can manua
Homebrew is required to install the system dependencies. If you haven't done so, visit [Homebrew](https://brew.sh/) for instructions. Once installed, use it to install the base dependencies:
```
-brew install cmake ninja python3 ccache dtc git wget
+brew install cmake ninja python3 ccache dtc git wget dfu-util
```
</TabItem>