-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[zephyr] Fixed defining thread stack for Matter thread (#14625)
* [zephyr] Fixed defining thread stack for Matter thread By the way of enabling hardware FPU it turned out that we use wrong Zephyr macro to define thread stack size and it may happen that it will not be consistent with exact thread stack size. * Removed using K_THREAD_STACK_LEN macro * Changed ThreadStack to be pointer on k_thread_stack_t, as Zephyr API doesn't expose API to calculate aligned Thread stack size based on desired stack size * Aligned other methods API to ThreadStack changes * Enabled using hardware floating-point unit for nrfconnect platform * Disabled HW FPU for builds with libprotobuf-nanopb Libprotobuf-nanpobd seems to not support building with hardware floating-point unit and linking the target fails.
- Loading branch information
1 parent
b21b8ca
commit 2722354
Showing
6 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters