-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumps [openthread](https://github.com/openthread/openthread) from `9277bce` to `8d39758`. - [Commits](openthread/openthread@9277bce...8d39758) --- updated-dependencies: - dependency-name: openthread dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c6d5577
commit 81a776d
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openthread
updated
28 files
+1 −1 | include/openthread/instance.h | |
+40 −0 | include/openthread/thread.h | |
+11 −0 | src/cli/README.md | |
+37 −1 | src/cli/cli.cpp | |
+5 −0 | src/cli/cli.hpp | |
+2 −0 | src/core/BUILD.gn | |
+1 −0 | src/core/CMakeLists.txt | |
+13 −0 | src/core/api/thread_api.cpp | |
+1 −2 | src/core/coap/coap.cpp | |
+26 −0 | src/core/config/wakeup.h | |
+5 −0 | src/core/instance/instance.hpp | |
+52 −1 | src/core/mac/mac.cpp | |
+10 −0 | src/core/mac/mac.hpp | |
+1 −0 | src/core/mac/mac_frame.cpp | |
+11 −1 | src/core/mac/sub_mac.cpp | |
+170 −0 | src/core/mac/wakeup_tx_scheduler.cpp | |
+132 −0 | src/core/mac/wakeup_tx_scheduler.hpp | |
+88 −165 | src/core/meshcop/secure_transport.cpp | |
+3 −17 | src/core/meshcop/secure_transport.hpp | |
+5 −0 | src/core/net/socket.cpp | |
+10 −0 | src/core/net/socket.hpp | |
+1 −2 | src/core/net/srp_server.cpp | |
+3 −0 | src/core/radio/radio_callbacks.cpp | |
+0 −2 | src/core/thread/child.hpp | |
+53 −0 | src/core/thread/mle.cpp | |
+47 −0 | src/core/thread/mle.hpp | |
+18 −21 | src/core/thread/neighbor.hpp | |
+9 −0 | src/posix/platform/openthread-core-posix-config.h |