Skip to content

Commit 602a1e3

Browse files
Fix qpg compile error ot bump (#37744)
* 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](openthread/openthread@287dbfa...bc54d67) --- updated-dependencies: - dependency-name: third_party/openthread/repo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * [QPG] Fix for OpenThread Stack bump compile issue --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 32de914 commit 602a1e3

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

examples/platform/qpg/project_include/OpenThreadConfig.h

+10
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,16 @@
8282

8383
#define OPENTHREAD_PLATFORM_NEXUS 0
8484

85+
#if !defined(OPENTHREAD_FTD) && !defined(OPENTHREAD_MTD)
86+
#if defined(CHIP_DEVICE_CONFIG_THREAD_FTD) && CHIP_DEVICE_CONFIG_THREAD_FTD
87+
#define OPENTHREAD_FTD 1
88+
#define OPENTHREAD_MTD 0
89+
#else
90+
#define OPENTHREAD_FTD 0
91+
#define OPENTHREAD_MTD 1
92+
#endif
93+
#endif
94+
8595
// Use the Qorvo-supplied default platform configuration for remainder
8696
// of OpenThread config options.
8797
//

third_party/openthread/repo

Submodule repo updated 437 files

0 commit comments

Comments
 (0)