File tree 3 files changed +33
-4
lines changed
examples/lit-icd-app/lit-icd-common
3 files changed +33
-4
lines changed Original file line number Diff line number Diff line change @@ -1764,6 +1764,7 @@ endpoint 0 {
1764
1764
callback attribute clientsSupportedPerFabric;
1765
1765
ram attribute userActiveModeTriggerHint default = 0x110D;
1766
1766
ram attribute userActiveModeTriggerInstruction default = "Restart the application";
1767
+ ram attribute operatingMode default = 0;
1767
1768
callback attribute generatedCommandList;
1768
1769
callback attribute acceptedCommandList;
1769
1770
callback attribute eventList;
Original file line number Diff line number Diff line change 1874
1874
" side" : " server" ,
1875
1875
" type" : " bitmap32" ,
1876
1876
" included" : 1 ,
1877
- " storageOption" : " RAM " ,
1877
+ " storageOption" : " External " ,
1878
1878
" singleton" : 0 ,
1879
1879
" bounded" : 0 ,
1880
- " defaultValue" : " 0 " ,
1880
+ " defaultValue" : null ,
1881
1881
" reportable" : 1 ,
1882
1882
" minInterval" : 1 ,
1883
1883
" maxInterval" : 65534 ,
1890
1890
" side" : " server" ,
1891
1891
" type" : " int16u" ,
1892
1892
" included" : 1 ,
1893
- " storageOption" : " RAM " ,
1893
+ " storageOption" : " External " ,
1894
1894
" singleton" : 0 ,
1895
1895
" bounded" : 0 ,
1896
- " defaultValue" : " 2 " ,
1896
+ " defaultValue" : null ,
1897
1897
" reportable" : 1 ,
1898
1898
" minInterval" : 0 ,
1899
1899
" maxInterval" : 65344 ,
3519
3519
" maxInterval" : 65534 ,
3520
3520
" reportableChange" : 0
3521
3521
},
3522
+ {
3523
+ " name" : " OperatingMode" ,
3524
+ " code" : 8 ,
3525
+ " mfgCode" : null,
3526
+ " side" : " server" ,
3527
+ " type" : " OperatingModeEnum" ,
3528
+ " included" : 1 ,
3529
+ " storageOption" : " RAM" ,
3530
+ " singleton" : 0 ,
3531
+ " bounded" : 0 ,
3532
+ " defaultValue" : " 0" ,
3533
+ " reportable" : 1 ,
3534
+ " minInterval" : 1 ,
3535
+ " maxInterval" : 65534 ,
3536
+ " reportableChange" : 0
3537
+ },
3522
3538
{
3523
3539
" name" : " GeneratedCommandList" ,
3524
3540
" code" : 65528 ,
Original file line number Diff line number Diff line change @@ -89,13 +89,25 @@ tests:
89
89
response :
90
90
value : beforeRebootICDCounter + 101
91
91
92
+ - label : " Verify the ICD is operating as a LIT ICD"
93
+ command : " readAttribute"
94
+ attribute : OperatingMode
95
+ response :
96
+ value : 1
97
+
92
98
- label : " Unregister Client Registered During Commissioning"
93
99
command : " UnregisterClient"
94
100
arguments :
95
101
values :
96
102
- name : " CheckInNodeID"
97
103
value : commissionerNodeId
98
104
105
+ - label : " Verify the ICD is operating as a SIT ICD"
106
+ command : " readAttribute"
107
+ attribute : OperatingMode
108
+ response :
109
+ value : 0
110
+
99
111
- label : " Read Feature Map"
100
112
command : " readAttribute"
101
113
attribute : " FeatureMap"
You can’t perform that action at this time.
0 commit comments