Skip to content

Commit cb28876

Browse files
marius-alex-tacheMartin-NXP
authored andcommitted
[NXP][common] The minimum ActiveModeThreshold value for a LIT ICD is 5 seconds
During initialization, the app would stuck in an assert if the app was configured as a LIT ICD: VerifyOrDieWithMsg(ICDConfigurationData::GetInstance().GetMinLitActiveModeThreshold() <= ICDConfigurationData::GetInstance().GetActiveModeThreshold(), AppServer, "The minimum ActiveModeThreshold value for a LIT ICD is 5 seconds."); Setting the default value of nxp_active_mode_threshold_ms to 5000ms fixes the issue. Signed-off-by: marius-alex-tache <marius.tache@nxp.com>
1 parent dc8187b commit cb28876

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

third_party/nxp/nxp_sdk.gni

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ declare_args() {
5353

5454
nxp_idle_mode_duration_s = 600 # 10min Idle Mode Interval
5555
nxp_active_mode_duration_ms = 10000 # 10s Active Mode Interval
56-
nxp_active_mode_threshold_ms = 1000 # 1s Active Mode Threshold
56+
nxp_active_mode_threshold_ms = 5000 # 5s Active Mode Threshold
5757
nxp_icd_supported_clients_per_fabric = 2 # 2 registration slots per fabric
5858
}
5959

0 commit comments

Comments
 (0)