From c03427dbf9b01e244706cf5ee6c2ecf8c480c548 Mon Sep 17 00:00:00 2001 From: Kristin Davidson Date: Sun, 16 Aug 2020 19:42:28 -0500 Subject: [PATCH] Add additional command to try when verifying installation. --- src/intro/install/verify.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/intro/install/verify.md b/src/intro/install/verify.md index 2b114ffb..5f2605ba 100644 --- a/src/intro/install/verify.md +++ b/src/intro/install/verify.md @@ -47,18 +47,22 @@ and move to the [next section]. [next section]: ../../start/index.md -If you didn't get the "breakpoints" line then try the following command. +If you didn't get the "breakpoints" line then try one of the following commands. ``` console $ openocd -f interface/stlink-v2.cfg -f target/stm32f3x.cfg ``` -If that command works that means you got an old hardware revision of the +``` console +$ openocd -f interface/stlink-v2-1.cfg -f target/stm32f3x.cfg +``` + +If one of those commands works it means you got an old hardware revision of the discovery board. That won't be a problem but commit that fact to memory as you'll need to configure things a bit differently later on. You can move to the [next section]. -If neither command worked as a normal user then try to run them with root +If none of the commands work as a normal user then try to run them with root permission (e.g. `sudo openocd ..`). If the commands do work with root permission then check that the [udev rules] have been correctly set.