More boards need to install usb driver on Windows 7 than Windows 10. 1) Added instructions to install usb driver for stm32f4discovery board in blinky tutorial (This is needed in Widows 7 but not in Windows 10). 2) Also added the instructions to install usb driver for slinky tutorial for Olimex STM32-E407 board. Instructions are provided for the blinky tutorial but not for slinky tutorial. (This is needed for both Windows 7 and 10). Also cleaned up the instructions for the blinky tutorial.
Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/70ee1c58 Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/70ee1c58 Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/70ee1c58 Branch: refs/heads/develop Commit: 70ee1c5886122e5acb58765bd49331f423750a6a Parents: 985809e Author: cwanda <[email protected]> Authored: Mon May 15 16:37:45 2017 -0700 Committer: cwanda <[email protected]> Committed: Mon May 15 16:47:08 2017 -0700 ---------------------------------------------------------------------- docs/os/tutorials/blinky_stm32f4disc.md | 9 +++++++++ docs/os/tutorials/olimex.md | 6 +++--- docs/os/tutorials/project-stm32-slinky.md | 9 +++++++++ 3 files changed, 21 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/70ee1c58/docs/os/tutorials/blinky_stm32f4disc.md ---------------------------------------------------------------------- diff --git a/docs/os/tutorials/blinky_stm32f4disc.md b/docs/os/tutorials/blinky_stm32f4disc.md index 283e592..131334b 100644 --- a/docs/os/tutorials/blinky_stm32f4disc.md +++ b/docs/os/tutorials/blinky_stm32f4disc.md @@ -156,6 +156,15 @@ Run the `newt load stm32f4disc_boot` command to load the bootloader onto the boa $newt load stm32f4disc_boot Loading bootloader ``` + +Note: If you are using Windows and get a `open failed` or `no device found` error, you will need to install the usb driver. Download [Zadig](http://zadig.akeo.ie) and run it: + +* Select Options > List All Devices. +* Select `STM32 STLink` from the drop down menu. +* Select the `WinUSB` driver. +* Click Install Driver. +* Run the `newt load stm32f4disc_boot` command again. + <br> Run the `newt load stm32f4disc_blinky` command to load the Blinky application image onto the board. ```no-highlight http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/70ee1c58/docs/os/tutorials/olimex.md ---------------------------------------------------------------------- diff --git a/docs/os/tutorials/olimex.md b/docs/os/tutorials/olimex.md index 290f6d4..be6f728 100644 --- a/docs/os/tutorials/olimex.md +++ b/docs/os/tutorials/olimex.md @@ -158,11 +158,11 @@ Load command: ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_dev Successfully loaded image. ``` -Note: If you are using Windows and get the `no device found` error, you will need to install the usb drivers for your Olimex debugger. Download [Zadig](http://zadig.akeo.ie) and run it: +Note: If you are using Windows and get a `no device found` error, you will need to install the usb driver. Download [Zadig](http://zadig.akeo.ie) and run it: * Select Options > List All Devices. -* Select Olimex OpenOCD JTAG ARM-USB-TINY-H from the drop down menu. -* Select the WinUSB drivers. +* Select `Olimex OpenOCD JTAG ARM-USB-TINY-H` from the drop down menu. +* Select the `WinUSB` driver. * Click Install Driver. * Run the `newt load boot_olimex` command again. http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/70ee1c58/docs/os/tutorials/project-stm32-slinky.md ---------------------------------------------------------------------- diff --git a/docs/os/tutorials/project-stm32-slinky.md b/docs/os/tutorials/project-stm32-slinky.md index e7d9127..2d87349 100644 --- a/docs/os/tutorials/project-stm32-slinky.md +++ b/docs/os/tutorials/project-stm32-slinky.md @@ -129,6 +129,15 @@ Loading bootloader $ ``` <br> +Note: If you are using Windows and get a `no device found` error, you will need to install the usb driver. Download [Zadig](http://zadig.akeo.ie) and run it: + +* Select Options > List All Devices. +* Select `Olimex OpenOCD JTAG ARM-USB-TINY-H` from the drop down menu. +* Select the `WinUSB` driver. +* Click Install Driver. +* Run the `newt load stm32_boot` command again. + +<br> Run the `newt load stm32_slinky` command to load the Slinky application image onto the board: ```no-highlight $ newt load stm32_slinky
