File tree 3 files changed +34
-0
lines changed
config/esp32/components/chip
examples/all-clusters-app/esp32
3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,26 @@ menu "CHIP Core"
183
183
or failure during certification tests. Even if it passes, it may fail
184
184
to function properly with actual controllers.
185
185
186
+ config MAX_GROUP_ENDPOINTS_PER_FABRIC
187
+ int "Maximum Group Endpoints per Fabric"
188
+ default 1
189
+ help
190
+ Specifies the maximum number of group endpoints supported per fabric.
191
+
192
+ config MAX_GROUPS_PER_FABRIC_PER_ENDPOINT
193
+ int "Maximum Groups per Fabric per Endpoint"
194
+ default 4
195
+ help
196
+ Specifies the maximum number of groups per fabric for each endpoint.
197
+ The value of CHIP_CONFIG_MAX_GROUPS_PER_FABRIC is calculated as:
198
+ (MAX_GROUP_ENDPOINTS_PER_FABRIC * MAX_GROUPS_PER_FABRIC_PER_ENDPOINT)
199
+
200
+ config MAX_GROUP_KEYS_PER_FABRIC
201
+ int "Maximum Number of Group Key Sets per Fabric"
202
+ default 3
203
+ help
204
+ Specifies the maximum number of group key sets supported per fabric.
205
+
186
206
endmenu # "General Options"
187
207
188
208
menu "Networking Options"
Original file line number Diff line number Diff line change @@ -72,3 +72,5 @@ CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH=y
72
72
73
73
# Increase LwIP IPv6 address number
74
74
CONFIG_LWIP_IPV6_NUM_ADDRESSES=6
75
+
76
+ CONFIG_MAX_GROUP_ENDPOINTS_PER_FABRIC=3
Original file line number Diff line number Diff line change 69
69
#define CHIP_CONFIG_MAX_FABRICS CONFIG_MAX_FABRICS
70
70
#endif
71
71
72
+ #ifndef CHIP_CONFIG_MAX_GROUP_ENDPOINTS_PER_FABRIC
73
+ #define CHIP_CONFIG_MAX_GROUP_ENDPOINTS_PER_FABRIC CONFIG_MAX_GROUP_ENDPOINTS_PER_FABRIC
74
+ #endif
75
+
76
+ #ifndef CHIP_CONFIG_MAX_GROUPS_PER_FABRIC
77
+ #define CHIP_CONFIG_MAX_GROUPS_PER_FABRIC (CONFIG_MAX_GROUPS_PER_FABRIC_PER_ENDPOINT * CHIP_CONFIG_MAX_GROUP_ENDPOINTS_PER_FABRIC)
78
+ #endif
79
+
80
+ #ifndef CHIP_CONFIG_MAX_GROUP_KEYS_PER_FABRIC
81
+ #define CHIP_CONFIG_MAX_GROUP_KEYS_PER_FABRIC CONFIG_MAX_GROUP_KEYS_PER_FABRIC
82
+ #endif
83
+
72
84
#ifdef CONFIG_ENABLE_WIFI_STATION
73
85
#define CHIP_DEVICE_CONFIG_ENABLE_WIFI_STATION 1
74
86
#else
You can’t perform that action at this time.
0 commit comments