From a8ef4197acd4e879141077820abcf5d9bc76535b Mon Sep 17 00:00:00 2001 From: doru91 Date: Wed, 9 Jun 2021 22:55:16 +0300 Subject: [PATCH] [K32W] Increase IM timeout (#7490) * [K32W] Increase IM timeout On K32W, chip-device-ctrl times out while waiting for the OpCSR. Double the IM timeout for the moment. See also: - https://github.com/project-chip/connectedhomeip/issues/7489 Signed-off-by: Doru Gucea * Restyled by clang-format Co-authored-by: Restyled.io --- src/app/InteractionModelEngine.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/InteractionModelEngine.h b/src/app/InteractionModelEngine.h index f459d8bf464cf4..e5307223282ae5 100644 --- a/src/app/InteractionModelEngine.h +++ b/src/app/InteractionModelEngine.h @@ -59,8 +59,9 @@ namespace chip { namespace app { constexpr size_t kMaxSecureSduLengthBytes = 1024; -constexpr uint32_t kImMessageTimeoutMsec = 6000; -constexpr FieldId kRootFieldId = 0; +/* TODO: https://github.com/project-chip/connectedhomeip/issues/7489 */ +constexpr uint32_t kImMessageTimeoutMsec = 12000; +constexpr FieldId kRootFieldId = 0; /** * @class InteractionModelEngine