remove workshop tooling from setup

This commit is contained in:
Jorge Aparicio 2021-01-25 16:13:32 +01:00
parent b08a82bacd
commit 3033f47b7c
2 changed files with 0 additions and 71 deletions

View file

@ -145,46 +145,6 @@ $ cargo install probe-run
Installed package `probe-run v0.1.8` (..)
```
### Workshop specific tools
The [workshop git repository](https://github.com/ferrous-systems/embedded-trainings-2020) contains custom crates that help you with flashing and debugging the workshops. Depending on the workshop you're attending, you need to install all or some of them.
In any case, clone and change into the repository first:
```console
$ git clone https://github.com/ferrous-systems/embedded-trainings-2020.git
$ cd embedded-trainings-2020
```
#### Beginner workshop
Change to the `tools` folder and run these commands *from different terminals so they'll run in parallel*:
```console
$ cd embedded-trainings-2020/tools
$ cargo install --path usb-list
$ # in a new terminal, for parallelization
$ cargo install --path dongle-flash
$ # in a new terminal, for parallelization
$ cargo install --path serial-term
$ # in a new terminal, for parallelization
$ cargo install --path change-channel
```
Leave the processes running in the background.
#### Advanced workshop
Change to the `tools` folder and run these commands:
```console
$ cd embedded-trainings-2020/tools
$ cargo install --path usb-list
```
Leave the process running in the background.
## Python
**Windows**: Go to [https://www.python.org/downloads/](https://www.python.org/downloads/) and run the Python *3* installer

View file

@ -15,34 +15,3 @@ nrfutil version 6.1.0
```
✅ Now let's make sure you've installed the tools shipped with the workshop material.
### Beginner workshop
Run the commands listed here and see if they produce similar output, i.e. *don't* yield `command not found: ...`
```console
$ usb-list
Bus 020 Device 007: ID 1b1c:0a42
Bus 020 Device 006: ID 1fc9:0132
(..)
$ dongle-flash
Error: expected exactly one argument
$ serial-term
(waiting for the Dongle to be connected)
$ change-channel
Error: expected exactly one argument
```
### Advanced workshop
Run the commands listed here and see if they produce similar output, i.e. *don't* yield `command not found: ...`
```console
$ usb-list
Bus 020 Device 007: ID 1b1c:0a42
Bus 020 Device 006: ID 1fc9:0132
(..)
```