Skip to content

Commit a74fce2

Browse files
committed
Fix acro
1 parent 7fa6a4d commit a74fce2

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

articles/iot-develop/quickstart-devkit-stm-b-l475e-freertos.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ ms.custom: mode-other
1818

1919
In this quickstart, you use the Azure FreeRTOS middleware to connect the STMicroelectronics B-L475E-IOT01A Discovery kit (from now on, the STM DevKit) to Azure IoT Central.
2020

21-
You'll complete the following tasks:
21+
You complete the following tasks:
2222

23-
* Install a set of embedded development tools for programming an STM DevKit
23+
* Install a set of embedded development tools to program an STM DevKit
2424
* Build an image and flash it onto the STM DevKit
2525
* Use Azure IoT Central to create cloud components, view properties, view device telemetry, and call direct commands
2626

@@ -39,7 +39,7 @@ To set up your development environment, first you clone a GitHub repo that conta
3939

4040
### Clone the repo
4141

42-
Clone the following repo to download all sample device code, setup scripts, and offline versions of the documentation. If you previously cloned this repo in another tutorial, you don't need to do it again.
42+
Clone the following repo to download all sample device code, setup scripts, and offline versions of the documentation. If you previously cloned this repo in another tutorial, you don't have to do it again.
4343

4444
To clone the repo, run the following command:
4545

@@ -49,7 +49,7 @@ git clone --recursive https://github.com/Azure-Samples/iot-middleware-freertos-s
4949

5050
### Install Ninja
5151

52-
Ninja is a build tool that you'll use to build an image for the STM DevKit.
52+
Ninja is a build tool that you use to build an image for the STM DevKit.
5353

5454
1. Download [Ninja](https://github.com/ninja-build/ninja/releases) and unzip it to your local disk.
5555
1. Add the path to the Ninja executable to a PATH environment variable.
@@ -60,7 +60,7 @@ Ninja is a build tool that you'll use to build an image for the STM DevKit.
6060

6161
### Install the tools
6262

63-
The cloned repo contains a setup script that installs and configures the required tools. If you installed these tools in another tutorial in the getting started guide, you don't need to do it again.
63+
The cloned repo contains a setup script that installs and configures the required tools. If you installed these tools in another tutorial in the getting started guide, you don't have to do it again.
6464
6565
> Note: The setup script installs the following tools:
6666
> * [CMake](https://cmake.org): Build
@@ -83,7 +83,7 @@ To install the tools:
8383
[!INCLUDE [iot-develop-embedded-create-central-app-with-device](../../includes/iot-develop-embedded-create-central-app-with-device.md)]
8484
8585
## Prepare the device
86-
To connect the STM DevKit to Azure, you'll modify configuration settings, build the image, and flash the image to the device.
86+
To connect the STM DevKit to Azure, modify configuration settings, build the image, and flash the image to the device.
8787
8888
### Add configuration
8989
@@ -137,10 +137,10 @@ To connect the STM DevKit to Azure, you'll modify configuration settings, build
137137
138138
1. In File Explorer, find the STM Devkit board that's connected to your computer. The device appears as a drive on your system with the drive label **DIS_L4IOT**.
139139

140-
1. Paste the binary file into the root folder of the STM Devkit. Flashing starts automatically and completes in a few seconds.
140+
1. Paste the binary file into the root folder of the STM Devkit. The process to flash the board starts automatically and completes in a few seconds.
141141

142142
> [!NOTE]
143-
> During the flashing process, an LED toggles between red and green on the STM DevKit.
143+
> During the process, an LED toggles between red and green on the STM DevKit.
144144

145145
### Confirm device connection details
146146

@@ -186,7 +186,7 @@ You can use the **Termite** app to monitor communication and confirm that your d
186186
> [!IMPORTANT]
187187
> If the DNS client initialization fails and notifies you that the Wi-Fi firmware is out of date, you'll need to update the Wi-Fi module firmware. Download and install the [Inventek ISM 43362 Wi-Fi module firmware update](https://www.st.com/resource/en/utilities/inventek_fw_updater.zip). Then press the **Reset** button on the device to recheck your connection, and continue with this quickstart.
188188
189-
Keep Termite open to monitor device output in the following steps.
189+
Keep Termite open to monitor device output in the remaining steps.
190190
191191
## Verify the device status
192192
@@ -215,11 +215,11 @@ You can also use IoT Central to call a command that you have implemented on your
215215
To call a command in IoT Central portal:
216216
217217
1. Select the **Command** tab from the device page.
218-
1. Set the **State** dropdown value to *True*, and then select **Run**. The LED light should turn on.
218+
1. Set the **State** dropdown value to *True*, and then select **Run**. The LED light should turn on.
219219
220220
:::image type="content" source="media/quickstart-devkit-stm-b-l475e-freertos/iot-central-invoke-method.png" alt-text="Screenshot of calling a direct method on a device in IoT Central":::
221221
222-
1. Set the **State** dropdown value to *False*, and then select **Run**. The LED light should turn off.
222+
1. Set the **State** dropdown value to *False*, and then select **Run**. The LED light should turn off.
223223
224224
## View device information
225225
@@ -231,9 +231,9 @@ Select **About** tab from the device page.
231231
232232
## Troubleshoot and debug
233233
234-
If you experience issues building the device code, flashing the device, or connecting, see [Troubleshooting](troubleshoot-embedded-device-quickstarts.md).
234+
If you experience issues when you build the device code, flash the device, or connect, see [Troubleshooting](troubleshoot-embedded-device-quickstarts.md).
235235
236-
For debugging the application, see [Debugging with Visual Studio Code](https://github.com/azure-rtos/getting-started/blob/master/docs/debugging.md).
236+
To debug the application, see [Debugging with Visual Studio Code](https://github.com/azure-rtos/getting-started/blob/master/docs/debugging.md).
237237
238238
## Clean up resources
239239
@@ -252,9 +252,9 @@ To remove the entire Azure IoT Central sample application and all its devices an
252252

253253
## Next Steps
254254

255-
In this quickstart, you built a custom image that contains the Azure FreeRTOS middleware sample code, and then you flashed the image to the STM DevKit device. You also used the IoT Central portal to create Azure resources, connect the STM DevKit securely to Azure, view telemetry, and send messages.
255+
In this quickstart, you built a custom image that contains the Azure FreeRTOS middleware sample code. Then you flashed the image to the STM DevKit device. You also used the IoT Central portal to create Azure resources, connect the STM DevKit securely to Azure, view telemetry, and send messages.
256256

257-
As a next step, explore the following articles to learn more about working with embedded devices and connecting them to Azure IoT.
257+
As a next step, explore the following articles to learn how to work with embedded devices and connect them to Azure IoT.
258258

259259
> [!div class="nextstepaction"]
260260
> [Azure FreeRTOS middleware samples](https://github.com/Azure-Samples/iot-middleware-freertos-samples)

0 commit comments

Comments
 (0)