Skip to content

Commit b43cd70

Browse files
[ICD][Server] Bump default CHIP_CONFIG_ICD_OBSERVERS_POOL_SIZE to 3 (project-chip#42046) (project-chip#42051)
* Bump default CHIP_CONFIG_ICD_OBSERVERS_POOL_SIZE to 3 * update * Update examples/lit-icd-app/silabs/include/CHIPProjectConfig.h --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 1e4efd5 commit b43cd70

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/lit-icd-app/silabs/include/CHIPProjectConfig.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,6 @@
9090
/**
9191
* @brief CHIP_CONFIG_ICD_OBSERVERS_POOL_SIZE
9292
*
93-
* Increase default(2) by 1 to account for the AppTask registering
93+
* The SDK default is 3; this app adds 1 (AppTask), for a total of 4.
9494
*/
95-
#define CHIP_CONFIG_ICD_OBSERVERS_POOL_SIZE 3
95+
#define CHIP_CONFIG_ICD_OBSERVERS_POOL_SIZE 4

src/lib/core/CHIPConfig.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1817,10 +1817,10 @@ extern const char CHIP_NON_PRODUCTION_MARKER[];
18171817
* @def CHIP_CONFIG_ICD_OBSERVERS_POOL_SIZE
18181818
*
18191819
* @brief Defines the entry iterator delegate pool size of the ICDObserver object pool in ICDManager.h.
1820-
* Two are used in the default implementation. Users can increase it to register more observers.
1820+
* Three are used in the default implementation. Users can increase it to register more observers.
18211821
*/
18221822
#ifndef CHIP_CONFIG_ICD_OBSERVERS_POOL_SIZE
1823-
#define CHIP_CONFIG_ICD_OBSERVERS_POOL_SIZE 2
1823+
#define CHIP_CONFIG_ICD_OBSERVERS_POOL_SIZE 3
18241824
#endif
18251825

18261826
/**

0 commit comments

Comments
 (0)