-
Notifications
You must be signed in to change notification settings - Fork 6
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 `9b0d3db` to `650e30f`. - [Commits](openthread/openthread@9b0d3db...650e30f) --- 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
8d53752
commit 7bf2c6a
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openthread
updated
18 files
+1 −1 | include/openthread/instance.h | |
+10 −0 | include/openthread/thread_ftd.h | |
+20 −0 | src/cli/cli.cpp | |
+8 −3 | src/core/api/thread_ftd_api.cpp | |
+153 −0 | src/core/common/trickle_timer.cpp | |
+42 −1 | src/core/common/trickle_timer.hpp | |
+3 −2 | src/core/net/ip6_mpl.cpp | |
+27 −3 | src/core/thread/mle_router.cpp | |
+31 −2 | src/core/thread/mle_router.hpp | |
+3 −10 | src/core/thread/mle_types.hpp | |
+7 −0 | src/core/thread/neighbor_table.cpp | |
+4 −2 | src/core/thread/router_table.cpp | |
+5 −3 | src/core/thread/router_table.hpp | |
+6 −0 | tests/toranj/cli/cli.py | |
+162 −0 | tests/toranj/cli/test-024-mle-adv-imax-change.py | |
+1 −0 | tests/toranj/start.sh | |
+21 −0 | tests/unit/CMakeLists.txt | |
+516 −0 | tests/unit/test_trickle_timer.cpp |