@@ -157,6 +157,12 @@ menu "CHIP Core"
157
157
help
158
158
Option to enable/disable CHIP log level filtering APIs.
159
159
160
+ config ENABLE_CHIP_DATA_MODEL
161
+ bool "Enable CHIP data model"
162
+ default y
163
+ help
164
+ Option to enable/disable CHIP data model.
165
+
160
166
endmenu # "General Options"
161
167
162
168
menu "Networking Options"
@@ -1289,4 +1295,52 @@ menu "CHIP Device Layer"
1289
1295
1290
1296
endmenu
1291
1297
1298
+ menu "Network Commissioning Driver Endpoint Id"
1299
+ config THREAD_NETWORK_COMMISSIONING_DRIVER
1300
+ bool "Use the generic Thread network commissioning driver"
1301
+ depends on ENABLE_MATTER_OVER_THREAD && ENABLE_CHIP_DATA_MODEL
1302
+ default y
1303
+ help
1304
+ Option to enable/disable the use of generic Thread network commissioning driver.
1305
+
1306
+ config THREAD_NETWORK_ENDPOINT_ID
1307
+ int "Endpoint Id for Thread network"
1308
+ depends on THREAD_NETWORK_COMMISSIONING_DRIVER
1309
+ range 0 65534
1310
+ default 0
1311
+ help
1312
+ The endpoint id for the generic Thread network commissioning driver.
1313
+
1314
+ config WIFI_NETWORK_COMMISSIONING_DRIVER
1315
+ bool "Use ESP Wi-Fi network commissioning driver"
1316
+ depends on (ENABLE_WIFI_STATION || ENABLE_WIFI_AP) && ENABLE_CHIP_DATA_MODEL
1317
+ default y
1318
+ help
1319
+ Option to enable/disable the use of ESP Wi-Fi network commissioning driver.
1320
+
1321
+ config WIFI_NETWORK_ENDPOINT_ID
1322
+ int "Endpoint Id for Wi-Fi network"
1323
+ depends on WIFI_NETWORK_COMMISSIONING_DRIVER
1324
+ range 0 65534
1325
+ default 0
1326
+ help
1327
+ The endpoint id for the ESP Wi-Fi network commissioning driver.
1328
+
1329
+ config ETHERNET_NETWORK_COMMISSIONING_DRIVER
1330
+ bool "Use ESP Ethernet network commissioning driver"
1331
+ depends on ENABLE_ETHERNET_TELEMETRY && ENABLE_CHIP_DATA_MODEL
1332
+ default y
1333
+ help
1334
+ Option to enable/disable the use of ESP Ethernet network commissioning driver.
1335
+
1336
+ config ETHERNET_NETWORK_ENDPOINT_ID
1337
+ int "Endpoint Id for Ethernet network"
1338
+ depends on ETHERNET_NETWORK_COMMISSIONING_DRIVER
1339
+ range 0 65534
1340
+ default 0
1341
+ help
1342
+ The endpoint id for the ESP Ethernet network commissioning driver.
1343
+
1344
+ endmenu
1345
+
1292
1346
endmenu
0 commit comments