Skip to content

Commit 8bd95f7

Browse files
Merge pull request #214596 from timlt/iotdev-freshness3
Fix and refresh quickstart and IoT Central include
2 parents 4c595ff + 1d51b16 commit 8bd95f7

File tree

4 files changed

+52
-31
lines changed

4 files changed

+52
-31
lines changed
137 KB
Loading

articles/iot-develop/quickstart-devkit-renesas-rx65n-cloud-kit.md

Lines changed: 50 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ms.author: timlt
66
ms.service: iot-develop
77
ms.devlang: c
88
ms.topic: quickstart
9-
ms.date: 06/04/2021
10-
ms.custom: mode-other
9+
ms.date: 10/14/2022
10+
ms.custom: mode-other, engagement-fy23
1111
---
1212

1313
# Quickstart: Connect a Renesas RX65N Cloud Kit to IoT Central
@@ -97,7 +97,7 @@ To connect the Renesas RX65N to Azure, you'll modify a configuration file for Wi
9797
9898
|Constant name|Value|
9999
|-------------|-----|
100-
|`WIFI_SSID` |{*Your Wi-Fi ssid*}|
100+
|`WIFI_SSID` |{*Your Wi-Fi SSID*}|
101101
|`WIFI_PASSWORD` |{*Your Wi-Fi password*}|
102102
|`WIFI_MODE` |{*One of the enumerated Wi-Fi mode values in the file*}|
103103
@@ -162,9 +162,14 @@ To connect the Renesas RX65N to Azure, you'll modify a configuration file for Wi
162162
163163
:::image type="content" source="media/quickstart-devkit-renesas-rx65n-cloud-kit/rfp-auth.png" alt-text="Screenshot of Renesas Flash Programmer, Authentication":::
164164
165-
6. Select the *Browse...* button and locate the *rx65n_azure_iot.hex* file created in the previous section.
165+
6. Select the *Connect Settings* tab, select the *Speed* dropdown, and set the speed to 1,000,000 bps.
166+
> [!IMPORTANT]
167+
> If there are errors when you try to flash the board, you might need to lower the speed in this setting to 750,000 bps or lower.
166168
167-
7. Press *Start* to begin flashing. This process will take approximately 10 seconds.
169+
170+
6. Select the *Operation* tab, then select the *Browse...* button and locate the *rx65n_azure_iot.hex* file created in the previous section.
171+
172+
7. Press *Start* to begin flashing. This process takes less than a minute.
168173
169174
### Confirm device connection details
170175
@@ -186,38 +191,54 @@ You can use the **Termite** app to monitor communication and confirm that your d
186191
187192
```output
188193
Starting Azure thread
189-
194+
190195
Initializing WiFi
191-
Connecting to SSID 'iot'
192-
SUCCESS: WiFi connected to iot
193-
196+
MAC address:
197+
Firmware version 0.14
198+
SUCCESS: WiFi initialized
199+
200+
Connecting WiFi
201+
Connecting to SSID
202+
Attempt 1...
203+
SUCCESS: WiFi connected
204+
194205
Initializing DHCP
195-
IP address: 192.168.0.21
196-
Gateway: 192.168.0.1
206+
IP address: 192.168.0.31
207+
Mask: 255.255.255.0
208+
Gateway: 192.168.0.1
197209
SUCCESS: DHCP initialized
198-
210+
199211
Initializing DNS client
200-
DNS address: 75.75.76.76
212+
DNS address: 192.168.0.1
201213
SUCCESS: DNS client initialized
202-
203-
Initializing SNTP client
204-
SNTP server 0.pool.ntp.org
205-
SNTP IP address: 45.79.214.107
206-
SNTP time update: May 21, 2021 20:24:10.76 UTC
214+
215+
Initializing SNTP time sync
216+
SNTP server 0.pool.ntp.org
217+
SNTP server 1.pool.ntp.org
218+
SNTP time update: Oct 14, 2022 15:23:15.578 UTC
207219
SUCCESS: SNTP initialized
208-
220+
209221
Initializing Azure IoT DPS client
210-
DPS endpoint: global.azure-devices-provisioning.net
211-
DPS ID scope: ***
212-
Registration ID: mydevice
222+
DPS endpoint: global.azure-devices-provisioning.net
223+
DPS ID scope:
224+
Registration ID: mydevice
213225
SUCCESS: Azure IoT DPS client initialized
214-
226+
215227
Initializing Azure IoT Hub client
216-
Hub hostname: ***.azure-devices.net
217-
Device id: mydevice
218-
Model id: dtmi:azurertos:devkit:gsgrx65ncloud;1
219-
Connected to IoT Hub
220-
SUCCESS: Azure IoT Hub client initialized
228+
Hub hostname:
229+
Device id: mydevice
230+
Model id: dtmi:azurertos:devkit:gsgrx65ncloud;1
231+
SUCCESS: Connected to IoT Hub
232+
233+
Receive properties: {"desired":{"$version":1},"reported":{"$version":1}}
234+
Sending property: $iothub/twin/PATCH/properties/reported/?$rid=3{"deviceInformation":{"__t":"c","manufacturer":"Renesas","model":"RX65N Cloud Kit","swVersion":"1.0.0","osName":"Azure RTOS","processorArchitecture":"RX65N","processorManufacturer":"Renesas","totalStorage":2048,"totalMemory":640}}
235+
Sending property: $iothub/twin/PATCH/properties/reported/?$rid=5{"ledState":false}
236+
Sending property: $iothub/twin/PATCH/properties/reported/?$rid=7{"telemetryInterval":{"ac":200,"av":1,"value":10}}
237+
238+
Starting Main loop
239+
Telemetry message sent: {"humidity":29.37,"temperature":25.83,"pressure":92818.25,"gasResistance":151671.25}.
240+
Telemetry message sent: {"accelerometerX":-887,"accelerometerY":236,"accelerometerZ":8272}.
241+
Telemetry message sent: {"gyroscopeX":9,"gyroscopeY":1,"gyroscopeZ":4}.
221242
```
222243
223244
Keep Termite open to monitor device output in the following steps.
@@ -257,7 +278,7 @@ To call a method in IoT Central portal:
257278

258279
:::image type="content" source="media/quickstart-devkit-renesas-rx65n-cloud-kit/iot-central-invoke-method.png" alt-text="Screenshot of calling a direct method on a device in IoT Central":::
259280

260-
1. In the **State** dropdown, select **False**, and then select **Run**.. The LED light should turn off.
281+
1. In the **State** dropdown, select **False**, and then select **Run**. The LED light should turn off.
261282

262283
## View device information
263284

includes/iot-develop-embedded-create-central-app-with-device.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
author: timlt
55
ms.service: iot-develop
66
ms.topic: include
7-
ms.date: 05/17/2021
7+
ms.date: 10/14/2022
88
ms.author: timlt
99
ms.custom: include file
1010
---
@@ -35,7 +35,7 @@ To create a new application:
3535

3636
### Create a new device
3737

38-
In this section, you use the IoT Central application dashboard to create a new device. You will use the connection information for the newly created device to securely connect your physical device in a later section.
38+
In this section, you use the IoT Central application dashboard to create a new device. You'll use the connection information for the newly created device to securely connect your physical device in a later section.
3939

4040
To create a device:
4141

66.5 KB
Loading

0 commit comments

Comments
 (0)