@@ -112,6 +112,11 @@ class SilabsConfig
112
112
static constexpr Key KConfigKey_ProductLabel = SilabsConfigKey(kMatterFactory_KeyBase , 0x10 );
113
113
static constexpr Key kConfigKey_ProductURL = SilabsConfigKey(kMatterFactory_KeyBase , 0x11 );
114
114
static constexpr Key kConfigKey_PartNumber = SilabsConfigKey(kMatterFactory_KeyBase , 0x12 );
115
+ static constexpr Key kConfigKey_CACerts = SilabsConfigKey(kMatterFactory_KeyBase , 0x13 );
116
+ static constexpr Key kConfigKey_DeviceCerts = SilabsConfigKey(kMatterFactory_KeyBase , 0x14 );
117
+ static constexpr Key kConfigKey_hostname = SilabsConfigKey(kMatterFactory_KeyBase , 0x15 );
118
+ static constexpr Key kConfigKey_clientid = SilabsConfigKey(kMatterFactory_KeyBase , 0x16 );
119
+ static constexpr Key kConfigKey_Test_Event_Trigger_Key = SilabsConfigKey(kMatterFactory_KeyBase , 0x17 );
115
120
static constexpr Key kConfigKey_UniqueId = SilabsConfigKey(kMatterFactory_KeyBase , 0x1F );
116
121
static constexpr Key kConfigKey_Creds_KeyId = SilabsConfigKey(kMatterFactory_KeyBase , 0x20 );
117
122
static constexpr Key kConfigKey_Creds_Base_Addr = SilabsConfigKey(kMatterFactory_KeyBase , 0x21 );
@@ -121,7 +126,11 @@ class SilabsConfig
121
126
static constexpr Key kConfigKey_Creds_PAI_Size = SilabsConfigKey(kMatterFactory_KeyBase , 0x25 );
122
127
static constexpr Key kConfigKey_Creds_CD_Offset = SilabsConfigKey(kMatterFactory_KeyBase , 0x26 );
123
128
static constexpr Key kConfigKey_Creds_CD_Size = SilabsConfigKey(kMatterFactory_KeyBase , 0x27 );
124
- static constexpr Key kConfigKey_Test_Event_Trigger_Key = SilabsConfigKey(kMatterFactory_KeyBase , 0x28 );
129
+ static constexpr Key kConfigKey_Provision_Request = SilabsConfigKey(kMatterFactory_KeyBase , 0x28 );
130
+ static constexpr Key kConfigKey_Provision_Version = SilabsConfigKey(kMatterFactory_KeyBase , 0x29 );
131
+
132
+ static constexpr Key kOtaTlvEncryption_KeyId = SilabsConfigKey(kMatterFactory_KeyBase , 0x30 );
133
+
125
134
// Matter Config Keys
126
135
static constexpr Key kConfigKey_ServiceConfig = SilabsConfigKey(kMatterConfig_KeyBase , 0x01 );
127
136
static constexpr Key kConfigKey_PairedAccountId = SilabsConfigKey(kMatterConfig_KeyBase , 0x02 );
@@ -162,7 +171,7 @@ class SilabsConfig
162
171
163
172
// Set key id limits for each group.
164
173
static constexpr Key kMinConfigKey_MatterFactory = SilabsConfigKey(kMatterFactory_KeyBase , 0x00 );
165
- static constexpr Key kMaxConfigKey_MatterFactory = SilabsConfigKey(kMatterFactory_KeyBase , 0x2F );
174
+ static constexpr Key kMaxConfigKey_MatterFactory = SilabsConfigKey(kMatterFactory_KeyBase , 0x30 );
166
175
static constexpr Key kMinConfigKey_MatterConfig = SilabsConfigKey(kMatterConfig_KeyBase , 0x00 );
167
176
static constexpr Key kMaxConfigKey_MatterConfig = SilabsConfigKey(kMatterConfig_KeyBase , 0x22 );
168
177
0 commit comments