From f09d1b9540b77ddedc6679e2a7e603c33c32a080 Mon Sep 17 00:00:00 2001 From: Levi Pearson Date: Sun, 6 Mar 2022 09:56:50 +0000 Subject: [PATCH] Update 'Software Setup' --- Software-Setup.md | 60 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 59 insertions(+), 1 deletion(-) diff --git a/Software-Setup.md b/Software-Setup.md index fed92c0..d1fd74e 100644 --- a/Software-Setup.md +++ b/Software-Setup.md @@ -1,4 +1,62 @@ # Software Setup -## Installing Rust Components +## Prerequisites ++ Native Rust compiler managed by [rustup](https://rustup.rs/) ++ Basic native C development tools ++ A working `git` installation +## Installing Rust Cross-compiling Components + > rustup target add thumbv7m-none-eabi + ## Flash/Debug Tools +### Debian/Ubuntu Prerequisites +To build the Rust debugger tools, the following packages need to be installed: + + > sudo apt install -y pkg-config libusb-1.0-0-dev libftdi1-dev + +You may also need to remove old versions of libusb: + + > sudo apt remove libusb-dev +### Windows Prerequisites +If you don't have `vcpkg`, install that first: + + > git clone https://github.com/microsoft/vcpkg + > .\vcpkg\bootstrap-vcpkg.bat + +Then use it to install `libusb` and `libftdi` + + > vcpkg install libusb:x64-windows-static-md libftdi1:x64-windows-static-md + +### macOS Prerequisites +If you don't have `brew` installed, install that first: + + > /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" + +Then install `libftdi` + + > brew install libftdi + +### Install cargo plugins +These are the tools that interface `cargo` to the STLinkV2 clone: + + > cargo install cargo-flash + > cargo install cargo-embed + +### Windows STLink Drivers +You won't be able to use the STLinkV2 clone debugger without the [STLink driver](https://www.st.com/en/development-tools/stsw-link009.html). + +### Linux `udev` rules +This `udev` rule lets you use the STLinkV2 clone without root privilege. + +Create the file `/etc/udev/rules.d/70-st-link.rules` with the contents shown below. + +``` +# ST-LINK/V2 +ATTRS{idVendor}=="0483", ATTRS{idProduct}=="3748", TAG+="uaccess" + +# ST-LINK/V2-1 +ATTRS{idVendor}=="0483", ATTRS{idProduct}=="374b", TAG+="uaccess" +``` +Then reload all the udev rules with: + + sudo udevadm control --reload-rules + ## Crate Setup \ No newline at end of file