From 4128509aa3b62068b260d76507332373350635dd Mon Sep 17 00:00:00 2001 From: Justin Wood Date: Mon, 12 Sep 2022 06:52:49 -0700 Subject: [PATCH] [SVE2] Fix kMaxThreadNameLength (#22367) * chip-cert: Updated Tool to Support Comand Line Key/Cert Inputs. (#22142) Other text updates. * [SVE2] Fix kMaxThreadNameLength (#22337) Fix https://github.com/project-chip/connectedhomeip/issues/22336 Signed-off-by: Doru Gucea Signed-off-by: Doru Gucea * Revert "chip-cert: Updated Tool to Support Comand Line Key/Cert Inputs. (#22142)" This reverts commit 0962e0b82254cc2ee7c86ac37e8e3d99805422f1. Signed-off-by: Doru Gucea Co-authored-by: Evgeny Margolis Co-authored-by: doru91 Co-authored-by: Andrei Litvin --- src/include/platform/DiagnosticDataProvider.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/platform/DiagnosticDataProvider.h b/src/include/platform/DiagnosticDataProvider.h index 8e26e6153207fe..2f09b10f6bb77f 100644 --- a/src/include/platform/DiagnosticDataProvider.h +++ b/src/include/platform/DiagnosticDataProvider.h @@ -33,7 +33,7 @@ namespace DeviceLayer { // Maximum length of vendor defined name or prefix of the software thread that is // static for the duration of the thread. -static constexpr size_t kMaxThreadNameLength = 32; +static constexpr size_t kMaxThreadNameLength = 8; // 48-bit IEEE MAC Address or a 64-bit IEEE MAC Address (e.g. EUI-64). constexpr size_t kMaxHardwareAddrSize = 8;