File tree 2 files changed +13
-13
lines changed
2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -347,21 +347,21 @@ config CHIP_ICD_FAST_POLLING_INTERVAL
347
347
Provides the Intermittently Connected Device fast polling interval in milliseconds while the
348
348
device is in the active mode. It determines the fastest frequency at which the device will be able
349
349
to receive the messages in the active mode. The CHIP_ICD_FAST_POLLING_INTERVAL shall be smaller than
350
- CHIP_ICD_ACTIVE_MODE_INTERVAL .
350
+ CHIP_ICD_ACTIVE_MODE_DURATION .
351
351
352
- config CHIP_ICD_IDLE_MODE_INTERVAL
353
- int "Intermittently Connected Device idle mode interval (s)"
352
+ config CHIP_ICD_IDLE_MODE_DURATION
353
+ int "Intermittently Connected Device idle mode duration (s)"
354
354
default 120
355
355
help
356
- Provides the Intermittently Connected Device idle mode interval in seconds.
356
+ Provides the Intermittently Connected Device idle mode duration in seconds.
357
357
It determines the maximum amount of time the device can stay in the idle mode, which means the
358
358
device may be unreachable and not able to receive messages.
359
359
360
- config CHIP_ICD_ACTIVE_MODE_INTERVAL
361
- int "Intermittently Connected Device active mode interval (ms)"
360
+ config CHIP_ICD_ACTIVE_MODE_DURATION
361
+ int "Intermittently Connected Device active mode duration (ms)"
362
362
default 300
363
363
help
364
- Provides the Intermittently Connected Device active mode interval in milliseconds.
364
+ Provides the Intermittently Connected Device active mode duration in milliseconds.
365
365
It determines the minimum amount of time the device shall stay in the active mode.
366
366
367
367
config CHIP_ICD_ACTIVE_MODE_THRESHOLD
Original file line number Diff line number Diff line change 113
113
#endif // CHIP_CONFIG_MRP_LOCAL_IDLE_RETRY_INTERVAL
114
114
115
115
#ifndef CHIP_CONFIG_ICD_IDLE_MODE_DURATION_SEC
116
- #ifdef CONFIG_CHIP_ICD_IDLE_MODE_INTERVAL
117
- #define CHIP_CONFIG_ICD_IDLE_MODE_DURATION_SEC CONFIG_CHIP_ICD_IDLE_MODE_INTERVAL
118
- #endif // CONFIG_CHIP_ICD_IDLE_MODE_INTERVAL
116
+ #ifdef CONFIG_CHIP_ICD_IDLE_MODE_DURATION
117
+ #define CHIP_CONFIG_ICD_IDLE_MODE_DURATION_SEC CONFIG_CHIP_ICD_IDLE_MODE_DURATION
118
+ #endif // CONFIG_CHIP_ICD_IDLE_MODE_DURATION
119
119
#endif // CHIP_CONFIG_ICD_IDLE_MODE_DURATION_SEC
120
120
121
121
#ifndef CHIP_CONFIG_ICD_ACTIVE_MODE_DURATION_MS
122
- #ifdef CONFIG_CHIP_ICD_ACTIVE_MODE_INTERVAL
123
- #define CHIP_CONFIG_ICD_ACTIVE_MODE_DURATION_MS CONFIG_CHIP_ICD_ACTIVE_MODE_INTERVAL
124
- #endif // CONFIG_CHIP_ICD_ACTIVE_MODE_INTERVAL
122
+ #ifdef CONFIG_CHIP_ICD_ACTIVE_MODE_DURATION
123
+ #define CHIP_CONFIG_ICD_ACTIVE_MODE_DURATION_MS CONFIG_CHIP_ICD_ACTIVE_MODE_DURATION
124
+ #endif // CONFIG_CHIP_ICD_ACTIVE_MODE_DURATION
125
125
#endif // CHIP_CONFIG_ICD_ACTIVE_MODE_DURATION_MS
126
126
127
127
#ifndef CHIP_CONFIG_ICD_ACTIVE_MODE_THRESHOLD_MS
You can’t perform that action at this time.
0 commit comments