-
Notifications
You must be signed in to change notification settings - Fork 7.6k
openthread: Add header for OpenThread module #90588
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix the compliance.
@rlubos Fixed compliance and documentation build. |
* Add header with public API of OpenThread module. * Add module include directory to Zephyr include directories. * Use new header in platform implementation. Signed-off-by: Adrian Gielniewski <[email protected]>
Use OpenThread module header instead of redefining its API. Signed-off-by: Adrian Gielniewski <[email protected]>
Add openthread module header to INPUT due to dependencies to symbols in `zephyr/net/openthread.h` Signed-off-by: Adrian Gielniewski <[email protected]>
@rlubos @ArekBalysNordic I replaced usage of old API in |
|
In #89090, the OpenThread implementation was moved from
net
to themodule
, but no public API header was added. As a result, it was not possible to use the implementation without includingzephyr/net/openthread.h
.This PR adds a public API header to the OpenThread module and removes the corresponding declarations from
zephyr/net/openthread.h
in favor of including the new module header.