@@ -340,13 +340,27 @@ menu "CHIP Device Layer"
340
340
help
341
341
Enables or Disables the support for Commissionable Device Type.
342
342
343
- config ENABLE_ICD_SERVER
343
+ menuconfig ENABLE_ICD_SERVER
344
344
bool "Enable ICD server"
345
345
depends on OPENTHREAD_MTD
346
346
default n
347
347
help
348
348
Enables or Disables ICD server
349
349
350
+ config ICD_ENFORCE_SIT_SLOW_POLL_LIMIT
351
+ bool "Enforce SIT Slow Polling Max value to 15 seconds"
352
+ depends on ENABLE_ICD_SERVER
353
+ default n
354
+ help
355
+ Set to true to enforce SIT Slow Polling Max value to 15seconds
356
+
357
+ config ICD_REPORT_ON_ACTIVE_MODE
358
+ bool "Emit a report on entering active mode"
359
+ depends on ENABLE_ICD_SERVER
360
+ default n
361
+ help
362
+ Make the ICD manager emit a report on entering active mode
363
+
350
364
config ICD_SLOW_POLL_INTERVAL_MS
351
365
int "ICD Slow Polling Interval(ms)"
352
366
depends on ENABLE_ICD_SERVER
@@ -389,14 +403,48 @@ menu "CHIP Device Layer"
389
403
This value indicates the minimum amount of time in milliseconds the server typically
390
404
will stay active after network activity when in active mode.
391
405
406
+ config ENABLE_ICD_LIT
407
+ bool "Enable Long Idle Time ICD"
408
+ depends on ENABLE_ICD_SERVER
409
+ default n
410
+ help
411
+ Enables or Disables LIT ICD
412
+
413
+ config ENABLE_ICD_CIP
414
+ bool "Enable Check-in protocol"
415
+ depends on ENABLE_ICD_LIT
416
+ default y
417
+ help
418
+ Enables or Disables ICD Check-in protocol
419
+
392
420
config ICD_CLIENTS_SUPPORTED_PER_FABRIC
393
421
int "ICD Clients Number Supported Per Fabric"
394
- depends on ENABLE_ICD_SERVER
422
+ depends on ENABLE_ICD_CIP
395
423
default 1
396
424
help
397
425
This value indicates the maximum number of entries that the ICD server is able to store
398
426
for each fabric in the RegisteredClients attribute.
399
427
428
+ config ICD_MAX_NOTIFICATION_SUBSCRIBERS
429
+ int "Max ICD notification subscribers"
430
+ depends on ENABLE_ICD_SERVER
431
+ default 1
432
+ help
433
+ The ICDManager implements the ICDListener functions and is always subscribed to the ICDNotifier
434
+ This allows other Matter modules to inform the ICDManager that it needs to go and may have to stay in Active Mode,
435
+ outside of its standard ActiveModeDuration and IdleModeDuration, without being tightly coupled the application
436
+ data model
437
+
438
+ This implementation also allows other modules to implement an ICDListener and subscribe to ICDNotifier
439
+ to couple behaviours with the ICD cycles. In such cases, ICD_MAX_NOTIFICATION_SUBSCRIBERS need to be adjusted
440
+
441
+ config ENABLE_ICD_USER_ACTIVE_MODE_TRIGGER
442
+ bool "Enable User Active Mode Trigger feature"
443
+ depends on ENABLE_ICD_LIT
444
+ default y
445
+ help
446
+ Enables or Disables ICD User Active Mode Trigger feature
447
+
400
448
config ENABLE_BG_EVENT_PROCESSING
401
449
bool "Enable Background event processing"
402
450
default n
0 commit comments