-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
submodule: bump third_party/openthread/repo from
68c0565
to `3b2911…
…0` (#1970) Bumps [third_party/openthread/repo](https://github.com/openthread/openthread) from `68c0565` to `3b29110`. - [Commits](openthread/openthread@68c0565...3b29110) --- updated-dependencies: - dependency-name: third_party/openthread/repo 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
d45ef8f
commit 3e43571
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule repo
updated
24 files
+3 −3 | .github/workflows/otns.yml | |
+7 −0 | examples/platforms/utils/CMakeLists.txt | |
+136 −0 | examples/platforms/utils/uart_rtt.c | |
+118 −0 | examples/platforms/utils/uart_rtt.h | |
+1 −2 | src/core/mac/data_poll_sender.cpp | |
+2 −2 | src/core/mac/mac.cpp | |
+205 −107 | src/core/mac/mac_frame.cpp | |
+14 −7 | src/core/mac/mac_frame.hpp | |
+18 −0 | src/core/mac/mac_types.cpp | |
+71 −3 | src/core/mac/mac_types.hpp | |
+5 −7 | src/core/thread/mesh_forwarder.cpp | |
+4 −1 | src/core/thread/mesh_forwarder.hpp | |
+1 −2 | src/core/thread/mesh_forwarder_ftd.cpp | |
+13 −8 | src/core/thread/mle.cpp | |
+40 −4 | src/core/thread/mle.hpp | |
+8 −9 | src/core/thread/mle_router.cpp | |
+15 −1 | src/core/thread/mle_router.hpp | |
+3 −4 | src/core/thread/mle_types.cpp | |
+44 −128 | src/core/thread/mle_types.hpp | |
+2 −2 | src/core/thread/network_data_leader_ftd.cpp | |
+3 −0 | src/core/thread/network_data_leader_ftd.hpp | |
+4 −4 | src/core/thread/router_table.cpp | |
+14 −5 | src/core/thread/router_table.hpp | |
+96 −48 | tests/unit/test_mac_frame.cpp |