forked from project-chip/connectedhomeip-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathERROR_CODES.html
1562 lines (1404 loc) · 83.2 KB
/
ERROR_CODES.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<title>Matter SDK CHIP_ERROR enums values — Matter documentation</title>
<script data-cfasync="false">
document.documentElement.dataset.mode = localStorage.getItem("mode") || "";
document.documentElement.dataset.theme = localStorage.getItem("theme") || "light";
</script>
<!-- Loaded before other Sphinx assets -->
<link href="_static/styles/theme.css?digest=12da95d707ffb74b382d" rel="stylesheet" />
<link href="_static/styles/bootstrap.css?digest=12da95d707ffb74b382d" rel="stylesheet" />
<link href="_static/styles/pydata-sphinx-theme.css?digest=12da95d707ffb74b382d" rel="stylesheet" />
<link href="_static/vendor/fontawesome/6.1.2/css/all.min.css?digest=12da95d707ffb74b382d" rel="stylesheet" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="_static/vendor/fontawesome/6.1.2/webfonts/fa-solid-900.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2" />
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" href="_static/styles/sphinx-book-theme.css?digest=14f4ca6b54d191a8c7657f6c759bf11a5fb86285" type="text/css" />
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="_static/scripts/bootstrap.js?digest=12da95d707ffb74b382d" />
<link rel="preload" as="script" href="_static/scripts/pydata-sphinx-theme.js?digest=12da95d707ffb74b382d" />
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/_sphinx_javascript_frameworks_compat.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/sphinx_highlight.js"></script>
<script src="_static/scripts/sphinx-book-theme.js?digest=5a5c038af52cf7bc1a1ec88eea08e6366ee68824"></script>
<script>DOCUMENTATION_OPTIONS.pagename = 'ERROR_CODES';</script>
<link rel="shortcut icon" href="_static/favicon.ico"/>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="prev" title="Code generation" href="code_generation.html" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="docsearch:language" content="en"/>
</head>
<body data-bs-spy="scroll" data-bs-target=".bd-toc-nav" data-offset="180" data-bs-root-margin="0px 0px -60%" data-default-mode="">
<a class="skip-link" href="#main-content">Skip to main content</a>
<input type="checkbox"
class="sidebar-toggle"
name="__primary"
id="__primary"/>
<label class="overlay overlay-primary" for="__primary"></label>
<input type="checkbox"
class="sidebar-toggle"
name="__secondary"
id="__secondary"/>
<label class="overlay overlay-secondary" for="__secondary"></label>
<div class="search-button__wrapper">
<div class="search-button__overlay"></div>
<div class="search-button__search-container">
<form class="bd-search d-flex align-items-center"
action="search.html"
method="get">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="search"
class="form-control"
name="q"
id="search-input"
placeholder="Search..."
aria-label="Search..."
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"/>
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd>K</kbd></span>
</form></div>
</div>
<nav class="bd-header navbar navbar-expand-lg bd-navbar">
</nav>
<div class="bd-container">
<div class="bd-container__inner bd-page-width">
<div class="bd-sidebar-primary bd-sidebar">
<div class="sidebar-header-items sidebar-primary__section">
</div>
<div class="sidebar-primary-items__start sidebar-primary__section">
<div class="sidebar-primary-item">
<a class="navbar-brand logo" href="index.html">
<img src="_static/logo.png" class="logo__image only-light" alt="Logo image"/>
<script>document.write(`<img src="_static/logo.png" class="logo__image only-dark" alt="Logo image"/>`);</script>
</a></div>
<div class="sidebar-primary-item"><ul class="navbar-icon-links navbar-nav"
aria-label="Icon Links">
<li class="nav-item">
<a href="https://github.com/project-chip/connectedhomeip" title="GitHub" class="nav-link" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><span><i class="fa-brands fa-square-github"></i></span>
<label class="sr-only">GitHub</label></a>
</li>
</ul></div>
<div class="sidebar-primary-item"><nav class="bd-links" id="bd-docs-nav" aria-label="Main">
<div class="bd-toc-item navbar-nav active">
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Contents</span></p>
<ul class="current nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="QUICK_START.html">Quick Start</a></li>
<li class="toctree-l1"><a class="reference internal" href="PROJECT_FLOW.html">Matter Project Flow</a></li>
<li class="toctree-l1"><a class="reference internal" href="VSCODE_DEVELOPMENT.html">Visual Studio Code Development</a></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="api/index.html">API</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-1"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="api/device_runner.html">CHIP on-device testing</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/device_runner_dispatch.html">CHIP on-device test dispatch</a></li>
</ul>
</li>
<li class="toctree-l1 has-children"><a class="reference internal" href="discussion/index.html">Discussion</a><input class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-2"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="discussion/lwip_ipv6.html">LwIP changes for Matter</a></li>
</ul>
</li>
<li class="toctree-l1 has-children"><a class="reference internal" href="guides/index.html">Guides</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="guides/BUILDING.html">Building Matter</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/README.html">Guides</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/access-control-guide.html">Access Control Guide</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/android_building.html">Building Android</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/chip_tool_guide.html">Working with the CHIP Tool</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/darwin.html">Testing with Apple Devices</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/infineon_psoc6_software_update.html">Matter Software Update with Infineon PSoC6 example applications</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/ip_commissioning.html">IP commissioning</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/matter-repl.html">Matter Python REPL</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/mbedos_add_new_target.html">Mbed-OS add new hardware target</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/mbedos_commissioning.html">Matter Arm Mbed OS provisioning guide</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/mbedos_platform_overview.html">Mbed-OS platform overview</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/nrfconnect_android_commissioning.html">Commissioning nRF Connect Accessory using Android CHIPTool</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/nrfconnect_examples_cli.html">Using CLI in nRF Connect examples</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/nrfconnect_examples_configuration.html">Configuring nRF Connect examples</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/nrfconnect_examples_software_update.html">Performing Device Firmware Upgrade in the nRF Connect examples</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/nrfconnect_factory_data_configuration.html">Configuring factory data for the nRF Connect examples</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/nrfconnect_platform_overview.html">nRF Connect platform overview</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/nxp_imx8m_linux_examples.html">Building and Running CHIP Linux Examples for i.MX 8M Mini EVK</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/nxp_k32w_android_commissioning.html">Commissioning NXP K32W using Android CHIPTool</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/openiotsdk_commissioning.html">Commissioning Open IoT SDK devices</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/openiotsdk_platform_overview.html">Open IoT SDK platform port</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/openthread_border_router_pi.html">Setup OpenThread Border Router on Raspberry Pi</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/openthread_rcp_nrf_dongle.html">Configuring OpenThread Radio Co-processor on nRF52840 Dongle</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/python_chip_controller_advanced_usage.html">Using Python CHIP Controller advanced features</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/python_chip_controller_building.html">Deprecation notice</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/silabs_efr32_building.html">Building Silicon Labs EFR32 examples</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/silabs_efr32_software_update.html">Matter Software Update with EFR32 example applications</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/simulated_device_linux.html">Simulated Device How-To (Linux)</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/ti_platform_overview.html">Texas Instruments platform overview</a></li>
<li class="toctree-l2"><a class="reference internal" href="guides/troubleshooting_avahi.html">Troubleshooting Avahi</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="guides/esp32/README.html">Espressif (ESP32) Getting Started Guide</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="guides/esp32/build_app_and_commission.html">ESP32 Application Usage Guide</a></li>
<li class="toctree-l3"><a class="reference internal" href="guides/esp32/factory_data.html">Using ESP32 Factory Data Provider</a></li>
<li class="toctree-l3"><a class="reference internal" href="guides/esp32/flash_nvs_encryption.html">Flash and NVS encryption</a></li>
<li class="toctree-l3"><a class="reference internal" href="guides/esp32/ota.html">Matter OTA</a></li>
<li class="toctree-l3"><a class="reference internal" href="guides/esp32/rpc_console.html">RPC Console and Device Tracing</a></li>
<li class="toctree-l3"><a class="reference internal" href="guides/esp32/setup_idf_chip.html">Setup ESP-IDF and Matter Environment</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l1 has-children"><a class="reference internal" href="style/index.html">Style Guides</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="style/STYLE_MAKEFILES.html">CHIP Makefile Style Guide</a></li>
<li class="toctree-l2"><a class="reference internal" href="style/style_guide.html">Matter Documentation Style Guide</a></li>
</ul>
</li>
<li class="toctree-l1 has-children"><a class="reference internal" href="examples/index.html">Examples</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-app/ameba/README.html">CHIP Ameba All Clusters Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-app/cc13x2x7_26x2x7/README.html">Matter CC1352 CC2652 All-clusters Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-app/esp32/README.html">CHIP ESP32 All Clusters Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-app/infineon/psoc6/README.html">CHIP PSoC6 All Clusters Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-app/linux/README.html">Matter Linux/Mac All Clusters Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-app/mbed/README.html">Matter Arm Mbed OS All Clusters Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-app/nrfconnect/README.html">Matter nRF Connect All Clusters Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-app/nxp/mw320/README.html">Matter MW320 All Clusters Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-app/telink/Readme.html">Matter Telink All Clusters Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-minimal-app/ameba/README.html">CHIP Ameba All Clusters Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-minimal-app/cc13x2x7_26x2x7/README.html">Matter CC1352 CC2652 All-clusters Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-minimal-app/esp32/README.html">CHIP ESP32 All Clusters Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-minimal-app/infineon/psoc6/README.html">CHIP PSoC6 All Clusters Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-minimal-app/mbed/README.html">Matter Arm Mbed OS All Clusters Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-minimal-app/nrfconnect/README.html">Matter nRF Connect All Clusters Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/all-clusters-minimal-app/telink/Readme.html">Matter Telink All Clusters Minimal Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/bridge-app/esp32/README.html">CHIP ESP32 Bridge App Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/bridge-app/linux/README.html">CHIP Linux Bridge Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/contact-sensor-app/nxp/k32w/k32w0/README.html">CHIP K32W061 Contact Sensor Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/contact-sensor-app/telink/README.html">Matter Telink Contact Sensor Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/chef/README.html">MATTER CHEF APP</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/chef/README_DEVICE.html">Matter Shell - Device Layer module</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/chef/README_OTCLI.html">Matter Shell - OpenThread CLI pass-through</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/chef/README_SHELL.html">Matter Shell Reference</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/chef/nrfconnect/README.html">CHIP nRF Connect SDK Shell Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/chef/sample_app_util/README.html">Chef Build Conventions</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/chip-tool/README.html">Matter Client Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/darwin-framework-tool/README.html">Matter darwin-framework-tool</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/dynamic-bridge-app/linux/README.html">CHIP Linux Bridge Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/java-matter-controller/README.html">Matter Controller Java App Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/ameba/README.html">CHIP Ameba Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/beken/README.html">Matter BEKEN Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/bouffalolab/README.html"><code class="docutils literal notranslate"><span class="pre">Bouffalo</span> <span class="pre">Lab</span></code></a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/esp32/README.html">Matter ESP32 Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/genio/README.html">Matter <code class="docutils literal notranslate"><span class="pre">Genio</span></code> Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/infineon/cyw30739/README.html">Matter CYW30739 Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/infineon/psoc6/README.html">CHIP PSoC6 Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/linux/README.html">CHIP Linux Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/mbed/README.html">Matter Arm Mbed OS Lighting Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/nrfconnect/README.html">Matter nRF Connect Lighting Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/nxp/k32w/k32w0/README.html">CHIP K32W061 Lighting Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/python/README.html">Python-based lighting example (bridge) device to DALI</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/qpg/README.html">Matter QPG6105 SDK</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/silabs/SiWx917/README.html">Matter SiWx917 Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/silabs/efr32/README.html">Matter EFR32 Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/telink/README.html">Matter Telink Lighting Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/tizen/README.html">CHIP Tizen Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lighting-app/qpg/APPLICATION.html">Matter QPG6105 Lighting Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/light-switch-app/ameba/README.html">CHIP Ameba Light Switch Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/light-switch-app/esp32/README.html">Matter ESP32 Light-switch Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/light-switch-app/genio/README.html">Matter <code class="docutils literal notranslate"><span class="pre">Genio</span></code> Light Switch Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/light-switch-app/nrfconnect/README.html">Matter nRF Connect Light Switch Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/light-switch-app/silabs/SiWx917/README.html">Matter SiWx917 Light Switch Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/light-switch-app/silabs/efr32/README.html">Matter EFR32 Light Switch Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/light-switch-app/telink/README.html">Matter Telink Light Switch Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/cc13x2x7_26x2x7/README.html">Matter CC1352 CC2652 Lock Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/cc32xx/README.html">Matter <code class="docutils literal notranslate"><span class="pre">CC32XXSF</span></code> Lock Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/esp32/README.html">Matter ESP32 Lock Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/genio/README.html">Matter <code class="docutils literal notranslate"><span class="pre">Genio</span></code> Lock Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/infineon/cyw30739/README.html">Matter CYW30739 Lock Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/infineon/psoc6/README.html">Matter PSoC6 Lock Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/linux/README.html">Lock Application for Linux</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/mbed/README.html">Matter Arm Mbed OS Lock Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/nrfconnect/README.html">Matter nRF Connect Lock Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/nxp/k32w/k32w0/README.html">CHIP K32W061 Lock Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/openiotsdk/README.html">Matter Open IoT SDK Lock-App Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/qpg/README.html">Matter QPG6105 SDK</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/silabs/SiWx917/README.html">Matter SiWx917 Lock Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/silabs/efr32/README.html">Matter EFR32 Lock Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/telink/README.html">Matter Telink Lock Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/lock-app/qpg/APPLICATION.html">Matter QPG6105 Lock Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/log-source-app/linux/README.html">log-source-app</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/minimal-mdns/README.html">Minimal mDNS example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/openiotsdk_examples.html">Matter Open IoT SDK Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/ota-provider-app/esp32/README.html">CHIP ESP32 OTA Provider Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/ota-provider-app/linux/README.html">ota-provider-app</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/ota-requestor-app/ameba/README.html">CHIP Ameba OTA Requestor Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/ota-requestor-app/esp32/README.html">CHIP ESP32 OTA Requestor Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/ota-requestor-app/genio/README.html">Matter <code class="docutils literal notranslate"><span class="pre">Genio</span></code> Lighting Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/ota-requestor-app/infineon/cyw30739/README.html">Matter CYW30739 OTA Requestor Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/ota-requestor-app/linux/README.html">ota-requestor-app (Linux)</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/ota-requestor-app/mbed/README.html">Matter Arm Mbed OS Lock Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/ota-requestor-app/telink/Readme.html">Build and flash</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/persistent-storage/cc13x2x7_26x2x7/README.html">Matter CC1352 CC2652 Persistent Storage Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/persistent-storage/esp32/README.html">CHIP ESP32 Persistent Storage Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/persistent-storage/infineon/psoc6/README.html">CHIP PSoC6 Persistent Storage Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/persistent-storage/linux/README.html">CHIP Linux Persistent Storage Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/persistent-storage/qpg/README.html">Matter QPG6105 SDK</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/persistent-storage/qpg/APPLICATION.html">CHIP QPG6105 Persistent Storage Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pigweed-app/ameba/README.html">CHIP Ameba Pigweed Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pigweed-app/esp32/README.html">CHIP ESP32 Pigweed Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pigweed-app/mbed/README.html">Matter Arm Mbed OS Pigweed Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pigweed-app/nrfconnect/README.html">Matter nRF Connect Pigweed Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pump-app/cc13x2x7_26x2x7/README.html">Matter CC1352 CC2652 Pump Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pump-app/nrfconnect/README.html">Matter nRF Connect Pump Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pump-app/telink/README.html">Matter Telink Pump Controller Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pump-app/cc13x2x7_26x2x7/doc/programming-ccs.html">Programming and Debugging with CCS</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pump-app/cc13x2x7_26x2x7/doc/programming-uniflash.html">Programming with UniFlash</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pump-controller-app/cc13x2x7_26x2x7/README.html">Matter CC1352 CC2652 Pump Controller Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pump-controller-app/nrfconnect/README.html">Matter nRF Connect Pump Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pump-controller-app/telink/README.html">Matter Telink Pump Controller Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pump-controller-app/cc13x2x7_26x2x7/doc/programming-ccs.html">Programming and Debugging with CCS</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/pump-controller-app/cc13x2x7_26x2x7/doc/programming-uniflash.html">Programming with UniFlash</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/shell/README.html">Matter Shell Reference</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/shell/README_DEVICE.html">Matter Shell - Device Layer module</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/shell/README_OTCLI.html">Matter Shell - OpenThread CLI pass-through</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/shell/README_SERVER.html">Matter Shell - App Server module</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/shell/cc13x2x7_26x2x7/README.html">Matter CC1352 CC2652 Shell Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/shell/mbed/README.html">Matter Arm Mbed OS Shell Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/shell/nrfconnect/README.html">Matter nRF Connect SDK Shell Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/shell/nxp/k32w/k32w0/README.html">CHIP NXP K32W Shell Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/shell/openiotsdk/README.html">Matter Open IoT SDK Shell Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/temperature-measurement-app/esp32/README.html">Matter ESP32 Temperature Sensor Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/temperature-measurement-app/telink/README.html">Matter Telink Temperature Measurement Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/thermostat/genio/README.html">Matter <code class="docutils literal notranslate"><span class="pre">Genio</span></code> Thermostat Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/thermostat/silabs/efr32/README.html">Matter EFR32 Thermostat Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/thermostat/telink/Readme.html">Matter Telink Thermostat Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/tv-app/linux/README.html">CHIP TV Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/tv-casting-app/android/README.html">Matter TV Casting Android App Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/tv-casting-app/darwin/TvCasting/README.html">Matter TV Casting iOS App Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/tv-casting-app/linux/README.html">CHIP TV Casting App Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/window-app/nrfconnect/README.html">Matter nRF Connect Window Covering Example Application</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/window-app/silabs/SiWx917/README.html">Matter SiWx917 Window Covering Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/window-app/silabs/efr32/README.html">Matter EFR32 Window Covering Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="examples/window-app/telink/README.html">Matter Telink Window Example Application</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="BUG_REPORT.html">Reporting bugs</a></li>
<li class="toctree-l1"><a class="reference internal" href="code_generation.html">Code generation</a></li>
<li class="toctree-l1 current active"><a class="current reference internal" href="#">Matter SDK <code class="docutils literal notranslate"><span class="pre">CHIP_ERROR</span></code> enums values</a></li>
</ul>
</div>
</nav></div>
</div>
<div class="sidebar-primary-items__end sidebar-primary__section">
</div>
<div id="rtd-footer-container"></div>
</div>
<main id="main-content" class="bd-main">
<div class="sbt-scroll-pixel-helper"></div>
<div class="bd-content">
<div class="bd-article-container">
<div class="bd-header-article">
<div class="header-article-items header-article__inner">
<div class="header-article-items__start">
<div class="header-article-item"><label class="sidebar-toggle primary-toggle btn btn-sm" for="__primary" title="Toggle primary sidebar" data-bs-placement="bottom" data-bs-toggle="tooltip">
<span class="fa-solid fa-bars"></span>
</label></div>
</div>
<div class="header-article-items__end">
<div class="header-article-item">
<div class="article-header-buttons">
<a href="https://github.com/project-chip/connectedhomeip/edit/master/docs/ERROR_CODES.md" target="_blank"
class="btn btn-sm btn-source-edit-button"
title="Suggest edit"
data-bs-placement="bottom" data-bs-toggle="tooltip"
>
<span class="btn__icon-container">
<i class="fas fa-pencil-alt"></i>
</span>
</a>
<div class="dropdown dropdown-download-buttons">
<button class="btn dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false" aria-label="Download this page">
<i class="fas fa-download"></i>
</button>
<ul class="dropdown-menu">
<li><a href="_sources/ERROR_CODES.md" target="_blank"
class="btn btn-sm btn-download-source-button dropdown-item"
title="Download source file"
data-bs-placement="left" data-bs-toggle="tooltip"
>
<span class="btn__icon-container">
<i class="fas fa-file"></i>
</span>
<span class="btn__text-container">.md</span>
</a>
</li>
<li>
<button onclick="window.print()"
class="btn btn-sm btn-download-pdf-button dropdown-item"
title="Print to PDF"
data-bs-placement="left" data-bs-toggle="tooltip"
>
<span class="btn__icon-container">
<i class="fas fa-file-pdf"></i>
</span>
<span class="btn__text-container">.pdf</span>
</button>
</li>
</ul>
</div>
<button onclick="toggleFullScreen()"
class="btn btn-sm btn-fullscreen-button"
title="Fullscreen mode"
data-bs-placement="bottom" data-bs-toggle="tooltip"
>
<span class="btn__icon-container">
<i class="fas fa-expand"></i>
</span>
</button>
<script>
document.write(`
<button class="theme-switch-button btn btn-sm btn-outline-primary navbar-btn rounded-circle" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-toggle="tooltip">
<span class="theme-switch" data-mode="light"><i class="fa-solid fa-sun"></i></span>
<span class="theme-switch" data-mode="dark"><i class="fa-solid fa-moon"></i></span>
<span class="theme-switch" data-mode="auto"><i class="fa-solid fa-circle-half-stroke"></i></span>
</button>
`);
</script>
<script>
document.write(`
<button class="btn btn-sm navbar-btn search-button search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
`);
</script>
<label class="sidebar-toggle secondary-toggle btn btn-sm" for="__secondary"title="Toggle secondary sidebar" data-bs-placement="bottom" data-bs-toggle="tooltip">
<span class="fa-solid fa-list"></span>
</label>
</div></div>
</div>
</div>
</div>
<div id="jb-print-docs-body" class="onlyprint">
<h1>Matter SDK CHIP_ERROR enums values</h1>
<!-- Table of contents -->
<div id="print-main-content">
<div id="jb-print-toc">
<div>
<h2> Contents </h2>
</div>
<nav aria-label="Page">
<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#table-of-contents">Table of contents</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#sdk-core-errors">SDK Core errors</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#sdk-inet-layer-errors">SDK Inet Layer errors</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#sdk-device-layer-errors">SDK Device Layer errors</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#asn1-layer-errors">ASN1 Layer errors</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#ble-layer-errors">BLE Layer errors</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#im-global-errors-errors">IM Global errors errors</a></li>
</ul>
</nav>
</div>
</div>
</div>
<div id="searchbox"></div>
<article class="bd-article" role="main">
<section id="matter-sdk-chip-error-enums-values">
<h1>Matter SDK <code class="docutils literal notranslate"><span class="pre">CHIP_ERROR</span></code> enums values<a class="headerlink" href="#matter-sdk-chip-error-enums-values" title="Permalink to this heading">#</a></h1>
<p>This file was <strong>AUTOMATICALLY</strong> generated by
<code class="docutils literal notranslate"><span class="pre">python</span> <span class="pre">scripts/error_table.py</span> <span class="pre">></span> <span class="pre">docs/ERROR_CODES.md</span></code>. DO NOT EDIT BY HAND!</p>
<section id="table-of-contents">
<h2>Table of contents<a class="headerlink" href="#table-of-contents" title="Permalink to this heading">#</a></h2>
<ul class="simple">
<li><p><a class="reference internal" href="#sdk-core-errors">SDK Core errors: range <code class="docutils literal notranslate"><span class="pre">0x000..0x0FF</span></code></a></p></li>
<li><p><a class="reference internal" href="#sdk-inet-layer-errors">SDK Inet Layer errors: range <code class="docutils literal notranslate"><span class="pre">0x100..0x1FF</span></code></a></p></li>
<li><p><a class="reference internal" href="#sdk-device-layer-errors">SDK Device Layer errors: range <code class="docutils literal notranslate"><span class="pre">0x200..0x2FF</span></code></a></p></li>
<li><p><a class="reference internal" href="#asn1-layer-errors">ASN1 Layer errors: range <code class="docutils literal notranslate"><span class="pre">0x300..0x3FF</span></code></a></p></li>
<li><p><a class="reference internal" href="#ble-layer-errors">BLE Layer errors: range <code class="docutils literal notranslate"><span class="pre">0x400..0x4FF</span></code></a></p></li>
<li><p><a class="reference internal" href="#im-global-errors-errors">IM Global errors errors: range <code class="docutils literal notranslate"><span class="pre">0x500..0x5FF</span></code></a></p></li>
</ul>
</section>
<section id="sdk-core-errors">
<h2>SDK Core errors<a class="headerlink" href="#sdk-core-errors" title="Permalink to this heading">#</a></h2>
<table class="colwidths-auto table">
<thead>
<tr class="row-odd"><th class="head"><p>Decimal</p></th>
<th class="head"><p>Hex</p></th>
<th class="head"><p>Name</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>0</p></td>
<td><p>0x00</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_NO_ERROR</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>1</p></td>
<td><p>0x01</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_SENDING_BLOCKED</span></code></p></td>
</tr>
<tr class="row-even"><td><p>2</p></td>
<td><p>0x02</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CONNECTION_ABORTED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>3</p></td>
<td><p>0x03</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INCORRECT_STATE</span></code></p></td>
</tr>
<tr class="row-even"><td><p>4</p></td>
<td><p>0x04</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_MESSAGE_TOO_LONG</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>5</p></td>
<td><p>0x05</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_UNSUPPORTED_EXCHANGE_VERSION</span></code></p></td>
</tr>
<tr class="row-even"><td><p>6</p></td>
<td><p>0x06</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_TOO_MANY_UNSOLICITED_MESSAGE_HANDLERS</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>7</p></td>
<td><p>0x07</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_NO_UNSOLICITED_MESSAGE_HANDLER</span></code></p></td>
</tr>
<tr class="row-even"><td><p>8</p></td>
<td><p>0x08</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_NO_CONNECTION_HANDLER</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>9</p></td>
<td><p>0x09</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_TOO_MANY_PEER_NODES</span></code></p></td>
</tr>
<tr class="row-even"><td><p>10</p></td>
<td><p>0x0A</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_SENTINEL</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>11</p></td>
<td><p>0x0B</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_NO_MEMORY</span></code></p></td>
</tr>
<tr class="row-even"><td><p>12</p></td>
<td><p>0x0C</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_NO_MESSAGE_HANDLER</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>13</p></td>
<td><p>0x0D</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_MESSAGE_INCOMPLETE</span></code></p></td>
</tr>
<tr class="row-even"><td><p>14</p></td>
<td><p>0x0E</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_DATA_NOT_ALIGNED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>15</p></td>
<td><p>0x0F</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_UNKNOWN_KEY_TYPE</span></code></p></td>
</tr>
<tr class="row-even"><td><p>16</p></td>
<td><p>0x10</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_KEY_NOT_FOUND</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>17</p></td>
<td><p>0x11</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_WRONG_ENCRYPTION_TYPE</span></code></p></td>
</tr>
<tr class="row-even"><td><p>19</p></td>
<td><p>0x13</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INTEGRITY_CHECK_FAILED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>20</p></td>
<td><p>0x14</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_SIGNATURE</span></code></p></td>
</tr>
<tr class="row-even"><td><p>23</p></td>
<td><p>0x17</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_UNSUPPORTED_SIGNATURE_TYPE</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>24</p></td>
<td><p>0x18</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_MESSAGE_LENGTH</span></code></p></td>
</tr>
<tr class="row-even"><td><p>25</p></td>
<td><p>0x19</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_BUFFER_TOO_SMALL</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>26</p></td>
<td><p>0x1A</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_DUPLICATE_KEY_ID</span></code></p></td>
</tr>
<tr class="row-even"><td><p>27</p></td>
<td><p>0x1B</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_WRONG_KEY_TYPE</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>28</p></td>
<td><p>0x1C</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_WELL_UNINITIALIZED</span></code></p></td>
</tr>
<tr class="row-even"><td><p>29</p></td>
<td><p>0x1D</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_WELL_EMPTY</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>30</p></td>
<td><p>0x1E</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_STRING_LENGTH</span></code></p></td>
</tr>
<tr class="row-even"><td><p>31</p></td>
<td><p>0x1F</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_LIST_LENGTH</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>33</p></td>
<td><p>0x21</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_END_OF_TLV</span></code></p></td>
</tr>
<tr class="row-even"><td><p>34</p></td>
<td><p>0x22</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_TLV_UNDERRUN</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>35</p></td>
<td><p>0x23</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_TLV_ELEMENT</span></code></p></td>
</tr>
<tr class="row-even"><td><p>36</p></td>
<td><p>0x24</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_TLV_TAG</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>37</p></td>
<td><p>0x25</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_UNKNOWN_IMPLICIT_TLV_TAG</span></code></p></td>
</tr>
<tr class="row-even"><td><p>38</p></td>
<td><p>0x26</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_WRONG_TLV_TYPE</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>39</p></td>
<td><p>0x27</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_TLV_CONTAINER_OPEN</span></code></p></td>
</tr>
<tr class="row-even"><td><p>42</p></td>
<td><p>0x2A</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_MESSAGE_TYPE</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>43</p></td>
<td><p>0x2B</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_UNEXPECTED_TLV_ELEMENT</span></code></p></td>
</tr>
<tr class="row-even"><td><p>45</p></td>
<td><p>0x2D</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_NOT_IMPLEMENTED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>46</p></td>
<td><p>0x2E</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_ADDRESS</span></code></p></td>
</tr>
<tr class="row-even"><td><p>47</p></td>
<td><p>0x2F</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_ARGUMENT</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>48</p></td>
<td><p>0x30</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_PATH_LIST</span></code></p></td>
</tr>
<tr class="row-even"><td><p>49</p></td>
<td><p>0x31</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_DATA_LIST</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>50</p></td>
<td><p>0x32</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_TIMEOUT</span></code></p></td>
</tr>
<tr class="row-even"><td><p>51</p></td>
<td><p>0x33</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_DEVICE_DESCRIPTOR</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>56</p></td>
<td><p>0x38</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_PASE_PARAMETER</span></code></p></td>
</tr>
<tr class="row-even"><td><p>59</p></td>
<td><p>0x3B</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_USE_OF_SESSION_KEY</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>60</p></td>
<td><p>0x3C</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CONNECTION_CLOSED_UNEXPECTEDLY</span></code></p></td>
</tr>
<tr class="row-even"><td><p>61</p></td>
<td><p>0x3D</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_MISSING_TLV_ELEMENT</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>62</p></td>
<td><p>0x3E</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_RANDOM_DATA_UNAVAILABLE</span></code></p></td>
</tr>
<tr class="row-even"><td><p>65</p></td>
<td><p>0x41</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_HOST_PORT_LIST_EMPTY</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>69</p></td>
<td><p>0x45</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_FORCED_RESET</span></code></p></td>
</tr>
<tr class="row-even"><td><p>70</p></td>
<td><p>0x46</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_NO_ENDPOINT</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>71</p></td>
<td><p>0x47</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_DESTINATION_NODE_ID</span></code></p></td>
</tr>
<tr class="row-even"><td><p>72</p></td>
<td><p>0x48</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_NOT_CONNECTED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>74</p></td>
<td><p>0x4A</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CA_CERT_NOT_FOUND</span></code></p></td>
</tr>
<tr class="row-even"><td><p>75</p></td>
<td><p>0x4B</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CERT_PATH_LEN_CONSTRAINT_EXCEEDED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>76</p></td>
<td><p>0x4C</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CERT_PATH_TOO_LONG</span></code></p></td>
</tr>
<tr class="row-even"><td><p>77</p></td>
<td><p>0x4D</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CERT_USAGE_NOT_ALLOWED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>78</p></td>
<td><p>0x4E</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CERT_EXPIRED</span></code></p></td>
</tr>
<tr class="row-even"><td><p>79</p></td>
<td><p>0x4F</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CERT_NOT_VALID_YET</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>80</p></td>
<td><p>0x50</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_UNSUPPORTED_CERT_FORMAT</span></code></p></td>
</tr>
<tr class="row-even"><td><p>81</p></td>
<td><p>0x51</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_UNSUPPORTED_ELLIPTIC_CURVE</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>83</p></td>
<td><p>0x53</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CERT_NOT_FOUND</span></code></p></td>
</tr>
<tr class="row-even"><td><p>84</p></td>
<td><p>0x54</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_CASE_PARAMETER</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>86</p></td>
<td><p>0x56</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CERT_LOAD_FAILED</span></code></p></td>
</tr>
<tr class="row-even"><td><p>87</p></td>
<td><p>0x57</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CERT_NOT_TRUSTED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>89</p></td>
<td><p>0x59</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_WRONG_CERT_DN</span></code></p></td>
</tr>
<tr class="row-even"><td><p>92</p></td>
<td><p>0x5C</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_WRONG_NODE_ID</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>100</p></td>
<td><p>0x64</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_RETRANS_TABLE_FULL</span></code></p></td>
</tr>
<tr class="row-even"><td><p>104</p></td>
<td><p>0x68</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_TRANSACTION_CANCELED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>107</p></td>
<td><p>0x6B</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_SUBSCRIPTION</span></code></p></td>
</tr>
<tr class="row-even"><td><p>108</p></td>
<td><p>0x6C</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_UNSUPPORTED_CHIP_FEATURE</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>112</p></td>
<td><p>0x70</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_UNSOLICITED_MSG_NO_ORIGINATOR</span></code></p></td>
</tr>
<tr class="row-even"><td><p>113</p></td>
<td><p>0x71</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_FABRIC_INDEX</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>114</p></td>
<td><p>0x72</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_TOO_MANY_CONNECTIONS</span></code></p></td>
</tr>
<tr class="row-even"><td><p>115</p></td>
<td><p>0x73</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_SHUT_DOWN</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>116</p></td>
<td><p>0x74</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_CANCELLED</span></code></p></td>
</tr>
<tr class="row-even"><td><p>118</p></td>
<td><p>0x76</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_TLV_TAG_NOT_FOUND</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>119</p></td>
<td><p>0x77</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_MISSING_SECURE_SESSION</span></code></p></td>
</tr>
<tr class="row-even"><td><p>120</p></td>
<td><p>0x78</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_ADMIN_SUBJECT</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>121</p></td>
<td><p>0x79</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INSUFFICIENT_PRIVILEGE</span></code></p></td>
</tr>
<tr class="row-even"><td><p>125</p></td>
<td><p>0x7D</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_MESSAGE_COUNTER_EXHAUSTED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>126</p></td>
<td><p>0x7E</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_FABRIC_EXISTS</span></code></p></td>
</tr>
<tr class="row-even"><td><p>128</p></td>
<td><p>0x80</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_WRONG_ENCRYPTION_TYPE_FROM_PEER</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>133</p></td>
<td><p>0x85</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_KEY_ID</span></code></p></td>
</tr>
<tr class="row-even"><td><p>134</p></td>
<td><p>0x86</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_TIME</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>142</p></td>
<td><p>0x8E</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_SCHEMA_MISMATCH</span></code></p></td>
</tr>
<tr class="row-even"><td><p>143</p></td>
<td><p>0x8F</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INVALID_INTEGER_VALUE</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>146</p></td>
<td><p>0x92</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_BAD_REQUEST</span></code></p></td>
</tr>
<tr class="row-even"><td><p>157</p></td>
<td><p>0x9D</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_WRONG_CERT_TYPE</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>159</p></td>
<td><p>0x9F</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_PERSISTED_STORAGE_FAILED</span></code></p></td>
</tr>
<tr class="row-even"><td><p>160</p></td>
<td><p>0xA0</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_PERSISTED_STORAGE_VALUE_NOT_FOUND</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>161</p></td>
<td><p>0xA1</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_IM_FABRIC_DELETED</span></code></p></td>
</tr>
<tr class="row-even"><td><p>165</p></td>
<td><p>0xA5</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_ACCESS_DENIED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>166</p></td>
<td><p>0xA6</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_UNKNOWN_RESOURCE_ID</span></code></p></td>
</tr>
<tr class="row-even"><td><p>167</p></td>
<td><p>0xA7</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_VERSION_MISMATCH</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>171</p></td>
<td><p>0xAB</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_EVENT_ID_FOUND</span></code></p></td>
</tr>
<tr class="row-even"><td><p>172</p></td>
<td><p>0xAC</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_INTERNAL</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>173</p></td>
<td><p>0xAD</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_OPEN_FAILED</span></code></p></td>
</tr>
<tr class="row-even"><td><p>174</p></td>
<td><p>0xAE</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_READ_FAILED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>175</p></td>
<td><p>0xAF</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_WRITE_FAILED</span></code></p></td>
</tr>
<tr class="row-even"><td><p>176</p></td>
<td><p>0xB0</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_DECODE_FAILED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>180</p></td>
<td><p>0xB4</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_MDNS_COLLISION</span></code></p></td>
</tr>
<tr class="row-even"><td><p>181</p></td>
<td><p>0xB5</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_IM_MALFORMED_ATTRIBUTE_PATH_IB</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>182</p></td>
<td><p>0xB6</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_IM_MALFORMED_EVENT_PATH_IB</span></code></p></td>
</tr>
<tr class="row-even"><td><p>185</p></td>
<td><p>0xB9</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_IM_MALFORMED_COMMAND_DATA_IB</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>186</p></td>
<td><p>0xBA</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_IM_MALFORMED_EVENT_DATA_IB</span></code></p></td>
</tr>
<tr class="row-even"><td><p>188</p></td>
<td><p>0xBC</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_PEER_NODE_NOT_FOUND</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>189</p></td>
<td><p>0xBD</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_HSM</span></code></p></td>
</tr>
<tr class="row-even"><td><p>191</p></td>
<td><p>0xBF</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">CHIP_ERROR_REAL_TIME_NOT_SYNCED</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>192</p></td>
<td><p>0xC0</p></td>