You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The log level of the tags cannot be bigger than the maximum log level. The maximum log level is determined by the menuconfig option `LOG_MAXIMUM_LEVEL`.
208
+
209
+
### mcast
210
+
211
+
Use this command to join or leave a multicast group.
212
+
213
+
```bash
214
+
> mcast join ff04::123
215
+
216
+
Done
217
+
> mcast leave ff04::123
218
+
219
+
Done
220
+
```
221
+
222
+
### ota
223
+
224
+
Used for downloading border router firmware and updating the border router or the RCP alone.
225
+
226
+
```
227
+
> ota download https://192.168.1.2:8070/br_ota_image
228
+
```
229
+
230
+
After downloading the device will restart and update itself with the new firmware. The RCP will also be updated if the firmware version changes.
231
+
232
+
```
233
+
> ota rcpudate
234
+
```
235
+
236
+
This command will enforce a RCP update regardless of the RCP version.
237
+
131
238
### tcpsockserver
132
239
133
240
Used for creating a tcp server.
@@ -472,102 +579,3 @@ connected
472
579
Done
473
580
```
474
581
475
-
### ota
476
-
477
-
Used for downloading border router firmware and updating the border router or the RCP alone.
478
-
479
-
```
480
-
> ota download https://192.168.1.2:8070/br_ota_image
481
-
```
482
-
483
-
After downloading the device will restart and update itself with the new firmware. The RCP will also be updated if the firmware version changes.
484
-
485
-
```
486
-
> ota rcpudate
487
-
```
488
-
489
-
This command will enforce a RCP update regardless of the RCP version.
490
-
491
-
### dns64server
492
-
493
-
Used for setting the dns64 server. Note that the border router must support NAT64.
494
-
495
-
```
496
-
> dns64server 8.8.8.8
497
-
```
498
-
499
-
### curl
500
-
501
-
Used for fetching the content of a HTTP web page. Note that the border router must support NAT64.
502
-
503
-
```
504
-
> curl http://www.espressif.com
505
-
Done
506
-
<html>
507
-
<head><title>301 Moved Permanently</title></head>
508
-
<body bgcolor="white">
509
-
<center><h1>301 Moved Permanently</h1></center>
510
-
<hr><center>CloudFront</center>
511
-
</body>
512
-
</html>
513
-
```
514
-
515
-
### heapdiag
516
-
517
-
Used for heap diagnostics.
518
-
519
-
To get the current heap usage:
520
-
521
-
```
522
-
> heapdiag print
523
-
Description Internal SPIRAM
524
-
Current Free Memory 246680 0
525
-
Largest Free Block 180224 0
526
-
Min. Ever Free Size 246072 0
527
-
Done
528
-
```
529
-
530
-
To start or stop the daemon task that prints the heap usage periodically:
531
-
532
-
```
533
-
heapdiag daemon on <period_ms>
534
-
heapdiag daemon off
535
-
```
536
-
537
-
To reset the heap trace baseline if the menuconfig option `HEAP_TRACING_STANDALONE` is selected:
538
-
539
-
```
540
-
> heapdiag tracereset
541
-
```
542
-
543
-
To dump the heap trace record if the menuconfig option `HEAP_TRACING_STANDALONE` is selected:
544
-
545
-
```
546
-
> heapdiag tracedump
547
-
```
548
-
549
-
To dump heap usage of each task of the menuconfig option `HEAP_TASK_TRACKING` is selected:
550
-
551
-
```
552
-
> heapdiag tracetask
553
-
```
554
-
555
-
### loglevel
556
-
557
-
Used for setting the log level for various log tag
- The log level of the tags cannot be bigger than the maximum log level. The maximum log level is determined by the menuconfig option `LOG_MAXIMUM_LEVEL`.
0 commit comments