From ec07514ff1ed35d24749eeab807254c9b67d9cc9 Mon Sep 17 00:00:00 2001 From: viral_dna Date: Tue, 8 Dec 2020 01:07:59 -0800 Subject: [PATCH] Fixed some typos and made changes to required tools (#14) Added "libftdi1" to required tools as it's required by some builds before installing the nightly openocd-git build. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 61f5563..29c750a 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Please note that we recommend either a (full-size, not mini) J-Link/J-Link Edu, ## Connecting the debugger -When connecting the debugger ensrue that at least SWDIO, SWDCLK and GND are connected. Do *not* under any circumstances connect 3.3V to the VDD connection. If your debug probe (for example ST-Link clones) does not have a VTREF connector, just leave VDD unconnected. Connecting 3.3V to VDD will likely destroy your SPI flash. +When connecting the debugger ensure that at least SWDIO, SWDCLK and GND are connected. Do *not* under any circumstances connect 3.3V to the VDD connection. If your debug probe (for example ST-Link clones) does not have a VTREF connector, just leave VDD unconnected. Connecting 3.3V to VDD will likely destroy your SPI flash. ### Supported Debuggers @@ -37,7 +37,7 @@ Programmers we had a lot of trouble with: J-Link EDU Mini (does not work), cheap Install the required tools: ``` -sudo apt-get install gcc-arm-none-eabi binutils-arm-none-eabi openocd python3 +sudo apt-get install gcc-arm-none-eabi binutils-arm-none-eabi python3 libftdi1 ``` Note: The version of openocd included in Ubuntu 20.04 (0.10.0) does not include functionality that is needed by these scripts. A build from the unreleased master branch is needed. Please install a newer version either by building it yourself, or by installing a prebuilt package, e.g. from [this nightly build](https://github.com/kbeckmann/ubuntu-openocd-git-builder), using [xPack](https://xpack.github.io/openocd/) or similar. @@ -59,7 +59,7 @@ OPENOCD="/opt/openocd-git/bin/openocd" ; ./1_sanity_check.sh OPENOCD="/opt/openocd-git/bin/openocd" ; ./2_.... ``` -Finally you could just hardwire some variables in 'config.sh' +Finally, you could just hardwire some variables in 'config.sh' ### Mac Setup