Skip to content

Commit 1e3cee6

Browse files
committed
Minor corrections to getting started and security feature docs
1 parent 195edf6 commit 1e3cee6

File tree

3 files changed

+389
-209
lines changed

3 files changed

+389
-209
lines changed

AWSSetup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# AWS IoT Core Setup
2-
In case you already have an AWS account and user created, you can skip steps 1 and 2 and directly got to step 3 (Registering your board with AWS IoT).
2+
In case you already have an AWS account and user created, you can skip steps 1 and 2 and directly go to step 3 (Registering your board with AWS IoT).
33

44
## 1 Sign up for an AWS account
55

66
1. Open https://portal.aws.amazon.com/billing/signup.
77
2. Follow the online instructions. **NOTE:** Part of the sign-up procedure involves receiving a phone call and entering a verification code on the phone keypad.
8-
3. Make a note of your AWS account number as it will be needed for following steps.
8+
3. Make a note of your AWS account number as it will be needed for the following steps.
99

1010
## 2 Create an Administrator IAM user and grant it permissions
1111

12-
It’s strongly recommended that you adhere to the best practice of using the `Administrator` IAM user that the following steps show you how to create and securely lock away the root user credentials. One should only sign in as the root user to perform a few [account and service management tasks](https://docs.aws.amazon.com/general/latest/gr/root-vs-iam.html#aws_tasks-that-require-root).
12+
It’s strongly recommended that you adhere to the best practice of using the `Administrator` IAM user. The following steps show you how to create and securely lock away the root user credentials. One should only sign in as the root user to perform a few [account and service management tasks](https://docs.aws.amazon.com/general/latest/gr/root-vs-iam.html#aws_tasks-that-require-root).
1313

1414
1. Sign in to the [IAM console](https://console.aws.amazon.com/iam/) as the account owner by choosing **Root user** and entering your AWS account email address. On the next page, enter your password.
1515
2. On the navigation bar, click your account name, and then click Account.

GettingStartedGuide.md

Lines changed: 175 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting Started Guide
22

3-
This guide contains instructions on how to setup, build and run the demo without use of the security features of the ESP32-C3 enabled i.e. without the DS peripheral, flash encryption and Secure Boot. It is meant to provide a developer with a friendly first use experience.
3+
This guide contains instructions on how to setup, build and run the demo without use of the security features of the ESP32-C3 i.e. without enabling the DS peripheral, flash encryption and Secure Boot. The guide is meant to provide the user with a friendly first-use experience.
44

55
Once completed, one can progress to the [Use Security Features](UseSecurityFeatures.md) guide.
66

@@ -181,7 +181,7 @@ Create a binary with a higher version number.
181181
```
182182
idf.py build
183183
```
184-
If successful, there will be a new binary under the 'build' directory - build/GoldenReferenceIntegration.bin. Copy this binary to another location, otherwise it will be overwritten in the next step.
184+
If successful, there will be a new binary under the 'build' directory - build/FeaturedFreeRTOSIoTIntegration.bin. Copy this binary to another location, otherwise it will be overwritten in the next step.
185185

186186
### 5.4 Build and flash the device with a binary with a lower version number
187187
1. Follow the same steps in 5.3 starting with running idf.py menuconfig, but this time, set the `Application version build` number to '0'.
@@ -235,40 +235,58 @@ Once all the firmware image chunks are downloaded and the signature is validated
235235
You can see the new version number of the demo binary in the terminal console output. Look for the string "Application version"
236236

237237
```
238-
I (461802) esp_image: Verifying image signature...
239-
I (461812) secure_boot_v2: Take trusted digest key(s) from eFuse block(s)
240-
I (461822) secure_boot_v2: #0 app key digest == #0 trusted key digest
241-
I (461822) secure_boot_v2: Verifying with RSA-PSS...
242-
I (461872) secure_boot_v2: Signature verified successfully!
243-
I (461872) esp_image: segment 0: paddr=001b0020 vaddr=3c0e0020 size=2d668h (185960) map
244-
I (461902) esp_image: segment 1: paddr=001dd690 vaddr=3fc91800 size=02988h ( 10632)
245-
I (461902) esp_image: segment 2: paddr=001e0020 vaddr=42000020 size=da904h (895236) map
246-
I (462022) esp_image: segment 3: paddr=002ba92c vaddr=3fc94188 size=00df4h ( 3572)
247-
I (462022) esp_image: segment 4: paddr=002bb728 vaddr=40380000 size=11720h ( 71456)
248-
I (462032) esp_image: segment 5: paddr=002cce50 vaddr=50000010 size=00010h ( 16)
249-
I (462032) esp_image: segment 6: paddr=002cce68 vaddr=00000000 size=03168h ( 12648)
250-
I (462042) esp_image: Verifying image signature...
251-
I (462042) secure_boot_v2: Take trusted digest key(s) from eFuse block(s)
252-
I (462052) secure_boot_v2: #0 app key digest == #0 trusted key digest
253-
I (462062) secure_boot_v2: Verifying with RSA-PSS...
254-
I (462112) secure_boot_v2: Signature verified successfully!
255-
I (462652) wifi:state: run -> init (0)
256-
I (462652) wifi:pm stop, total sleep time: 382862279 us / 461539198 us
257-
258-
W (462652) wifi:<ba-del>idx
259-
W (462652) wifi:<ba-del>idx
260-
I (462652) wifi:new:<6,0>, old:<6,0>, ap:<255,255>, sta:<6,0>, prof:1
261-
I (462662) core_mqtt_agent_network_manager: WiFi disconnected.
262-
I (462662) app_wifi: Disconnected. Connecting to the AP again...
263-
E (462672) esp-tls-mbedtls: read error :-0x004C:
264-
I (462672) core_mqtt_agent_network_manager: coreMQTT-Agent disconnected.
265-
I (462682) MQTT: coreMQTT-Agent disconnected.
266-
I (462692) sub_pub_unsub_demo: coreMQTT-Agent disconnected. Preventing coreMQTT-Agent commands from being enqueued.
267-
I (462702) temp_sub_pub_demo: coreMQTT-Agent disconnected. Preventing coreMQTT-Agent commands from being enqueued.
268-
I (462712) ota_over_mqtt_demo: coreMQTT-Agent disconnected. Suspending OTA agent.
269-
I (462722) wifi:flush txq
270-
I (462722) wifi:stop sw txq
271-
I (462722) wifi:lmac stop hw txq
238+
I (336900) AWS_OTA: Number of blocks remaining: 1
239+
I (336900) ota_over_mqtt_demo: OTA Event processing completed. Freeing the event buffer to pool.
240+
I (336900) AWS_OTA: Current State=[WaitingForFileBlock], Event=[ReceivedFileBlock], New state=[WaitingForFileBlock]
241+
I (336910) AWS_OTA: Received valid file block: Block index=282, Size=704
242+
I (336920) AWS_OTA: Received final block of the update.
243+
I (337450) AWS_OTA: Signature verification succeeded.
244+
I (337450) AWS_OTA: Received entire update and validated the signature.
245+
I (337450) ota_over_mqtt_demo: Received: 283 Queued: 283 Processed: 282 Dropped: 0
246+
I (338460) ota_over_mqtt_demo: Received: 283 Queued: 283 Processed: 282 Dropped: 0
247+
I (339460) ota_over_mqtt_demo: Received: 283 Queued: 283 Processed: 282 Dropped: 0
248+
I (339880) coreMQTT: Publishing message to $aws/things/thing_esp32c3_nonOta/jobs/AFR_OTA-c3-27340/update.
249+
250+
I (340040) coreMQTT: Packet received. ReceivedBytes=2.
251+
I (340050) coreMQTT: Ack packet deserialized with result: MQTTSuccess.
252+
I (340050) coreMQTT: State record updated. New state=MQTTPublishDone.
253+
I (340050) coreMQTT: Packet received. ReceivedBytes=96.
254+
I (340060) coreMQTT: De-serialized incoming PUBLISH packet: DeserializerResult=MQTTSuccess.
255+
I (340070) coreMQTT: State record updated. New state=MQTTPublishDone.
256+
W (340080) core_mqtt_agent_manager: WARN: Received an unsolicited publish from topic $aws/things/thing_esp32c3_nonOta/jobs/AFR_OTA-c3-27340/update/accepted
257+
I (340070) ota_over_mqtt_demo: Sent PUBLISH packet to broker $aws/things/thing_esp32c3_nonOta/jobs/AFR_OTA-c3-27340/update to broker.
258+
259+
260+
I (340100) ota_over_mqtt_demo: Received OtaJobEventActivate callback from OTA Agent.
261+
I (340110) esp_image: segment 0: paddr=001b0020 vaddr=3c0e0020 size=2ced8h (184024) map
262+
I (340140) esp_image: segment 1: paddr=001dcf00 vaddr=3fc91800 size=03118h ( 12568)
263+
I (340150) esp_image: segment 2: paddr=001e0020 vaddr=42000020 size=d86e8h (886504) map
264+
I (340260) esp_image: segment 3: paddr=002b8710 vaddr=3fc94918 size=0048ch ( 1164)
265+
I (340260) esp_image: segment 4: paddr=002b8ba4 vaddr=40380000 size=116dch ( 71388)
266+
I (340280) esp_image: segment 5: paddr=002ca288 vaddr=50000010 size=00010h ( 16)
267+
I (340280) esp_image: segment 0: paddr=001b0020 vaddr=3c0e0020 size=2ced8h (184024) map
268+
I (340310) esp_image: segment 1: paddr=001dcf00 vaddr=3fc91800 size=03118h ( 12568)
269+
I (340310) esp_image: segment 2: paddr=001e0020 vaddr=42000020 size=d86e8h (886504) map
270+
I (340430) esp_image: segment 3: paddr=002b8710 vaddr=3fc94918 size=0048ch ( 1164)
271+
I (340430) esp_image: segment 4: paddr=002b8ba4 vaddr=40380000 size=116dch ( 71388)
272+
I (340440) esp_image: segment 5: paddr=002ca288 vaddr=50000010 size=00010h ( 16)
273+
I (340490) ota_over_mqtt_demo: Received: 283 Queued: 283 Processed: 283 Dropped: 0
274+
I (341000) wifi:state: run -> init (0)
275+
I (341000) wifi:pm stop, total sleep time: 271785664 us / 337788344 us
276+
277+
W (341000) wifi:<ba-del>idx
278+
W (341000) wifi:<ba-del>idx
279+
I (341000) wifi:new:<6,0>, old:<6,0>, ap:<255,255>, sta:<6,0>, prof:1
280+
I (341010) core_mqtt_agent_manager: WiFi disconnected.
281+
I (341010) app_wifi: Disconnected. Connecting to the AP again...
282+
E (341020) esp-tls-mbedtls: read error :-0x004C:
283+
I (341020) sub_pub_unsub_demo: coreMQTT-Agent disconnected. Preventing coreMQTT-Agent commands from being enqueued.
284+
I (341030) ota_over_mqtt_demo: coreMQTT-Agent disconnected. Suspending OTA agent.
285+
I (341040) core_mqtt_agent_manager: coreMQTT-Agent disconnected.
286+
I (341050) temp_sub_pub_and_led_control_demo: coreMQTT-Agent disconnected. Preventing coreMQTT-Agent commands from being enqueued.
287+
I (341060) wifi:flush txq
288+
I (341060) wifi:stop sw txq
289+
I (341070) wifi:lmac stop hw txq
272290
ESP-ROM:esp32c3-api1-20210207
273291
Build:Feb 7 2021
274292
rst:0x3 (RTC_SW_SYS_RST),boot:0xc (SPI_FAST_FLASH_BOOT)
@@ -277,74 +295,129 @@ Saved PC:0x403805d8
277295
278296
SPIWP:0xee
279297
mode:DIO, clock div:1
280-
Valid secure boot key blocks: 0
281-
secure boot verification succeeded
282-
load:0x3fcd6268,len:0x2e94
298+
load:0x3fcd6100,len:0x16b4
283299
load:0x403ce000,len:0x930
284-
load:0x403d0000,len:0x4db4
300+
load:0x403d0000,len:0x2dac
285301
entry 0x403ce000
286-
I (75) boot: ESP-IDF v4.4 2nd stage bootloader
287-
I (75) boot: compile time 17:29:01
288-
I (75) boot: chip revision: 3
289-
I (76) boot.esp32c3: SPI Speed : 80MHz
290-
I (81) boot.esp32c3: SPI Mode : DIO
291-
I (86) boot.esp32c3: SPI Flash Size : 4MB
292-
I (91) boot: Enabling RNG early entropy source...
293-
I (96) boot: Partition Table:
294-
I (100) boot: ## Label Usage Type ST Offset Length
295-
I (107) boot: 0 esp_secure_cert unknown 3f 06 0000d000 00006000
296-
I (115) boot: 1 nvs WiFi data 01 02 00013000 00006000
297-
I (122) boot: 2 otadata OTA data 01 00 00019000 00002000
298-
I (130) boot: 3 phy_init RF data 01 01 0001b000 00001000
299-
I (137) boot: 4 ota_0 OTA app 00 10 00020000 00190000
300-
I (145) boot: 5 ota_1 OTA app 00 11 001b0000 00190000
301-
I (152) boot: 6 storage WiFi data 01 02 00340000 00010000
302-
I (160) boot: 7 nvs_key NVS keys 01 04 00350000 00001000
303-
I (167) boot: End of partition table
304-
I (172) esp_image: segment 0: paddr=001b0020 vaddr=3c0e0020 size=2d668h (185960) map
305-
I (208) esp_image: segment 1: paddr=001dd690 vaddr=3fc91800 size=02988h ( 10632) load
306-
I (210) esp_image: segment 2: paddr=001e0020 vaddr=42000020 size=da904h (895236) map
307-
I (348) esp_image: segment 3: paddr=002ba92c vaddr=3fc94188 size=00df4h ( 3572) load
308-
I (349) esp_image: segment 4: paddr=002bb728 vaddr=40380000 size=11720h ( 71456) load
309-
I (367) esp_image: segment 5: paddr=002cce50 vaddr=50000010 size=00010h ( 16) load
310-
I (367) esp_image: segment 6: paddr=002cce68 vaddr=00000000 size=03168h ( 12648)
311-
I (374) esp_image: Verifying image signature...
312-
I (378) secure_boot_v2: Verifying with RSA-PSS...
313-
I (386) secure_boot_v2: Signature verified successfully!
314-
I (394) boot: Loaded app from partition at offset 0x1b0000
315-
I (395) secure_boot_v2: enabling secure boot v2...
316-
I (401) secure_boot_v2: secure boot v2 is already enabled, continuing..
317-
I (408) boot: Disabling RNG early entropy source...
318-
I (425) cpu_start: Pro cpu up.
319-
I (433) cpu_start: Pro cpu start user code
320-
I (433) cpu_start: cpu freq: 160000000
321-
I (433) cpu_start: Application information:
322-
I (436) cpu_start: Project name: GoldenReferenceIntegration
323-
I (442) cpu_start: App version: c506f74-dirty
324-
I (448) cpu_start: Compile time: Apr 27 2022 14:21:30
325-
I (454) cpu_start: ELF file SHA256: 6b1586752c298eb4...
326-
I (460) cpu_start: ESP-IDF: v4.4
327-
I (465) heap_init: Initializing. RAM available for dynamic allocation:
328-
I (472) heap_init: At 3FCACE60 len 000131A0 (76 KiB): DRAM
329-
I (478) heap_init: At 3FCC0000 len 0001F060 (124 KiB): STACK/DRAM
330-
I (485) heap_init: At 50000020 len 00001FE0 (7 KiB): RTCRAM
331-
I (491) spi_flash: detected chip: generic
332-
I (496) spi_flash: flash io: dio
333-
I (500) sleep: Configure to isolate all GPIO pins in sleep state
334-
I (507) sleep: Enable automatic switching of GPIO sleep configuration
335-
I (514) coexist: coexist rom version 9387209
336-
I (519) cpu_start: Starting scheduler.
337-
I (524) main:
302+
I (35) boot: ESP-IDF v4.4 2nd stage bootloader
303+
I (35) boot: compile time 15:33:46
304+
I (35) boot: chip revision: 3
305+
I (37) boot.esp32c3: SPI Speed : 80MHz
306+
I (41) boot.esp32c3: SPI Mode : DIO
307+
I (46) boot.esp32c3: SPI Flash Size : 4MB
308+
I (51) boot: Enabling RNG early entropy source...
309+
I (56) boot: Partition Table:
310+
I (60) boot: ## Label Usage Type ST Offset Length
311+
I (67) boot: 0 esp_secure_cert unknown 3f 06 0000d000 00006000
312+
I (75) boot: 1 nvs WiFi data 01 02 00013000 00006000
313+
I (82) boot: 2 otadata OTA data 01 00 00019000 00002000
314+
I (89) boot: 3 phy_init RF data 01 01 0001b000 00001000
315+
I (97) boot: 4 ota_0 OTA app 00 10 00020000 00190000
316+
I (104) boot: 5 ota_1 OTA app 00 11 001b0000 00190000
317+
I (112) boot: 6 storage WiFi data 01 02 00340000 00010000
318+
I (119) boot: 7 nvs_key NVS keys 01 04 00350000 00001000
319+
I (127) boot: End of partition table
320+
I (178) esp_image: segment 0: paddr=001b0020 vaddr=3c0e0020 size=2ced8h (184024) map
321+
I (206) esp_image: segment 1: paddr=001dcf00 vaddr=3fc91800 size=03118h ( 12568) load
322+
I (209) esp_image: segment 2: paddr=001e0020 vaddr=42000020 size=d86e8h (886504) map
323+
I (345) esp_image: segment 3: paddr=002b8710 vaddr=3fc94918 size=0048ch ( 1164) load
324+
I (345) esp_image: segment 4: paddr=002b8ba4 vaddr=40380000 size=116dch ( 71388) load
325+
I (364) esp_image: segment 5: paddr=002ca288 vaddr=50000010 size=00010h ( 16) load
326+
I (369) boot: Loaded app from partition at offset 0x1b0000
327+
I (369) boot: Disabling RNG early entropy source...
328+
I (384) cpu_start: Pro cpu up.
329+
I (392) cpu_start: Pro cpu start user code
330+
I (393) cpu_start: cpu freq: 160000000
331+
I (393) cpu_start: Application information:
332+
I (395) cpu_start: Project name: FeaturedFreeRTOSIoTIntegration
333+
I (402) cpu_start: App version: v202204.00-dirty
334+
I (408) cpu_start: Compile time: Apr 29 2022 15:33:03
335+
I (414) cpu_start: ELF file SHA256: 5da757c870ca6788...
336+
I (420) cpu_start: ESP-IDF: v4.4
337+
I (425) heap_init: Initializing. RAM available for dynamic allocation:
338+
I (432) heap_init: At 3FCACB20 len 000134E0 (77 KiB): DRAM
339+
I (438) heap_init: At 3FCC0000 len 0001F060 (124 KiB): STACK/DRAM
340+
I (445) heap_init: At 50000020 len 00001FE0 (7 KiB): RTCRAM
341+
I (452) spi_flash: detected chip: generic
342+
I (456) spi_flash: flash io: dio
343+
I (460) sleep: Configure to isolate all GPIO pins in sleep state
344+
I (467) sleep: Enable automatic switching of GPIO sleep configuration
345+
I (474) coexist: coexist rom version 9387209
346+
I (479) cpu_start: Starting scheduler.
347+
I (484) main:
338348
...
339-
I (764) temp_pub_sub_demo: Sending subscribe request to agent for topic filter: /filter/Publisher0 with id
340-
1
341-
I (814) pp: pp rom version: 9387209
342-
I (814) net80211: net80211 rom version: 9387209
343-
I (814) ota_over_mqtt_demo: OTA over MQTT demo, Application version 0.9.1
344-
I (834) ota_over_mqtt_demo: Received: 0 Queued: 0 Processed: 0 Dropped: 0
345-
I (844) AWS_OTA: otaPal_GetPlatformImageState
346-
I (844) esp_ota_ops: aws_esp_ota_get_boot_flags: 1
347-
I (854) esp_ota_ops: [1] aflags/seq:0xffffffff/0x2, pflags/seq:0x2/0x1
348-
I (854) AWS_OTA: Current State=[RequestingJob], Event=[Start], New state=[RequestingJob]
349+
I (884) app_driver: Initializing Temperature sensor
350+
I (914) ota_over_mqtt_demo: OTA over MQTT demo, Application version 0.0.1
351+
I (924) temp_sub_pub_and_led_control_demo: Sending subscribe request to agent for topic filter: /filter/TempSubPubLED with id 1
352+
I (934) AWS_OTA: otaPal_GetPlatformImageState
353+
I (944) esp_ota_ops: aws_esp_ota_get_boot_flags: 1
354+
I (944) esp_ota_ops: [1] aflags/seq:0x1/0x2, pflags/seq:0x2/0x1
355+
I (954) AWS_OTA: Current State=[RequestingJob], Event=[Start], New state=[RequestingJob]
356+
I (964) ota_over_mqtt_demo: Received: 0 Queued: 0 Processed: 0 Dropped: 0
357+
I (934) pp: pp rom version: 9387209
358+
I (974) net80211: net80211 rom version: 9387209
359+
I (994) wifi:wifi driver task: 3fcbc2c0, prio:23, stack:6656, core=0
360+
I (994) system_api: Base MAC address is not set
361+
I (994) system_api: read default base MAC address from EFUSE
362+
I (1004) wifi:wifi firmware version: 7679c42
363+
I (1004) wifi:wifi certification version: v7.0
364+
I (1004) wifi:config NVS flash: enabled
365+
I (1004) wifi:config nano formating: disabled
366+
I (1014) wifi:Init data frame dynamic rx buffer num: 32
367+
I (1014) wifi:Init management frame dynamic rx buffer num: 32
368+
I (1024) wifi:Init management short buffer num: 32
369+
I (1024) wifi:Init dynamic tx buffer num: 32
370+
I (1034) wifi:Init static tx FG buffer num: 2
371+
I (1034) wifi:Init static rx buffer size: 1600
372+
I (1044) wifi:Init static rx buffer num: 10
373+
I (1044) wifi:Init dynamic rx buffer num: 32
374+
I (1044) wifi_init: rx ba win: 6
375+
I (1054) wifi_init: tcpip mbox: 32
376+
I (1054) wifi_init: udp mbox: 6
377+
I (1064) wifi_init: tcp mbox: 6
378+
I (1064) wifi_init: tcp tx win: 5744
379+
I (1064) wifi_init: tcp rx win: 5744
380+
I (1074) wifi_init: tcp mss: 1440
381+
I (1074) wifi_init: WiFi IRAM OP enabled
382+
I (1084) wifi_init: WiFi RX IRAM OP enabled
383+
W (1084) BTDM_INIT: esp_bt_mem_release not implemented, return OK
384+
I (1094) wifi_prov_scheme_ble: BT memory released
385+
I (1094) app_wifi: Already provisioned, starting Wi-Fi STA
386+
W (1104) BTDM_INIT: esp_bt_mem_release not implemented, return OK
387+
I (1114) wifi_prov_scheme_ble: BTDM memory released
388+
I (1114) phy_init: phy_version 907,3369105-dirty,Dec 3 2021,14:55:12
389+
I (1164) wifi:mode : sta (84:f7:03:5f:f1:40)
390+
I (1164) wifi:enable tsf
391+
I (1164) wifi:new:<6,0>, old:<1,0>, ap:<255,255>, sta:<6,0>, prof:1
392+
I (1164) wifi:state: init -> auth (b0)
393+
I (1164) wifi:state: auth -> assoc (0)
394+
I (1174) wifi:state: assoc -> run (10)
395+
W (1184) wifi:<ba-add>idx:0 (ifx:0, 8c:6a:8d:fc:31:8e), tid:0, ssn:0, winSize:64
396+
I (1194) wifi:connected with Stranger 5, aid = 12, channel 6, BW20, bssid = 8c:6a:8d:fc:31:8e
397+
I (1194) wifi:security: WPA2-PSK, phy: bgn, rssi: -55
398+
I (1194) wifi:pm start, type: 1
399+
400+
I (1194) wifi:set rx beacon pti, rx_bcn_pti: 14, bcn_timeout: 14, mt_pti: 25000, mt_time: 10000
401+
W (1204) wifi:<ba-add>idx:1 (ifx:0, 8c:6a:8d:fc:31:8e), tid:6, ssn:0, winSize:64
402+
I (1284) wifi:BcnInt:102400, DTIM:1
403+
I (1924) core_mqtt_agent_manager: WiFi connected.
404+
I (1924) app_wifi: Connected with IP Address:10.0.0.140
405+
I (1924) esp_netif_handlers: sta ip: 10.0.0.140, mask: 255.255.255.0, gw: 10.0.0.1
406+
I (1974) ota_over_mqtt_demo: Received: 0 Queued: 0 Processed: 0 Dropped: 0
407+
I (3104) ota_over_mqtt_demo: Received: 0 Queued: 0 Processed: 0 Dropped: 0
408+
I (3254) coreMQTT: Packet received. ReceivedBytes=2.
409+
I (3254) coreMQTT: CONNACK session present bit not set.
410+
I (3254) coreMQTT: Connection accepted.
411+
I (3254) coreMQTT: Received MQTT CONNACK successfully from broker.
412+
I (3264) coreMQTT: MQTT connection established with the broker.
413+
I (3274) core_mqtt_agent_manager: Session present: 0
414+
415+
I (3274) sub_pub_unsub_demo: coreMQTT-Agent connected.
416+
I (3284) ota_over_mqtt_demo: coreMQTT-Agent connected. Resuming OTA agent.
417+
I (3294) core_mqtt_agent_manager: coreMQTT-Agent connected.
418+
I (3294) temp_sub_pub_and_led_control_demo: coreMQTT-Agent connected.
419+
I (3304) sub_pub_unsub_demo: Task "SubPub0" sending subscribe request to coreMQTT-Agent for topic filter: /filter/SubPub0 with id 1
420+
I (3444) coreMQTT: Packet received. ReceivedBytes=3.
421+
I (3444) ota_over_mqtt_demo: Subscribed to topic $aws/things/thing_esp32c3_nonOta/jobs/notify-next.
349422
```
350423

0 commit comments

Comments
 (0)