From 1fecb9131a952403af680ce46c28e9890c60618d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Feb 2025 09:08:48 +0000 Subject: [PATCH 1/2] Bump third_party/openthread/repo from `287dbfa` to `bc54d67` Bumps [third_party/openthread/repo](https://github.com/openthread/openthread) from `287dbfa` to `bc54d67`. - [Release notes](https://github.com/openthread/openthread/releases) - [Commits](https://github.com/openthread/openthread/compare/287dbfa25130ead5010877e934effbb0a2534265...bc54d67ed892ba17213d47cab59ac1437aa001ce) --- updated-dependencies: - dependency-name: third_party/openthread/repo dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- third_party/openthread/repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/openthread/repo b/third_party/openthread/repo index 287dbfa25130ea..bc54d67ed892ba 160000 --- a/third_party/openthread/repo +++ b/third_party/openthread/repo @@ -1 +1 @@ -Subproject commit 287dbfa25130ead5010877e934effbb0a2534265 +Subproject commit bc54d67ed892ba17213d47cab59ac1437aa001ce From 7621c95426c697298d36b2007326e175a7ccf22b Mon Sep 17 00:00:00 2001 From: Dieter Van der Meulen Date: Mon, 24 Feb 2025 20:53:59 +0100 Subject: [PATCH 2/2] [QPG] Fix for OpenThread Stack bump compile issue --- .../platform/qpg/project_include/OpenThreadConfig.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/examples/platform/qpg/project_include/OpenThreadConfig.h b/examples/platform/qpg/project_include/OpenThreadConfig.h index a5dd275eb10fbb..6f6bced6c35fa6 100644 --- a/examples/platform/qpg/project_include/OpenThreadConfig.h +++ b/examples/platform/qpg/project_include/OpenThreadConfig.h @@ -82,6 +82,16 @@ #define OPENTHREAD_PLATFORM_NEXUS 0 +#if !defined(OPENTHREAD_FTD) && !defined(OPENTHREAD_MTD) +#if defined(CHIP_DEVICE_CONFIG_THREAD_FTD) && CHIP_DEVICE_CONFIG_THREAD_FTD +#define OPENTHREAD_FTD 1 +#define OPENTHREAD_MTD 0 +#else +#define OPENTHREAD_FTD 0 +#define OPENTHREAD_MTD 1 +#endif +#endif + // Use the Qorvo-supplied default platform configuration for remainder // of OpenThread config options. //