Skip to content

Commit

Permalink
Bump third_party/openthread/repo from d4155e4 to 8c2abba
Browse files Browse the repository at this point in the history
Bumps [third_party/openthread/repo](https://github.com/openthread/openthread) from `d4155e4` to `8c2abba`.
- [Release notes](https://github.com/openthread/openthread/releases)
- [Commits](openthread/openthread@d4155e4...8c2abba)

---
updated-dependencies:
- dependency-name: third_party/openthread/repo
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 4, 2023
1 parent 105b771 commit 58c5094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 64 files
+2 −2 .github/workflows/codeql.yml
+1 −1 .github/workflows/scorecards.yml
+2 −0 etc/cmake/options.cmake
+2 −0 examples/config/ot-core-config-check-size-br.h
+2 −0 examples/config/ot-core-config-check-size-ftd.h
+2 −0 examples/config/ot-core-config-check-size-mtd.h
+2 −2 examples/platforms/utils/uart_rtt.c
+1 −1 include/openthread/instance.h
+25 −0 include/openthread/link_metrics.h
+2 −2 include/openthread/thread_ftd.h
+4 −0 script/test
+36 −0 src/cli/README.md
+170 −3 src/cli/cli.cpp
+9 −2 src/core/BUILD.gn
+4 −1 src/core/CMakeLists.txt
+20 −1 src/core/api/link_metrics_api.cpp
+1 −1 src/core/api/thread_ftd_api.cpp
+3 −0 src/core/common/instance.cpp
+9 −0 src/core/common/instance.hpp
+3 −0 src/core/common/notifier.cpp
+58 −0 src/core/config/link_metrics_manager.h
+14 −0 src/core/config/mle.h
+1 −1 src/core/mac/data_poll_sender.hpp
+2 −1 src/core/mac/mac.cpp
+1 −1 src/core/mac/mac_filter.cpp
+10 −3 src/core/meshcop/commissioner.cpp
+4 −15 src/core/meshcop/dataset_manager.cpp
+14 −0 src/core/meshcop/meshcop_tlvs.cpp
+10 −0 src/core/meshcop/meshcop_tlvs.hpp
+1 −0 src/core/openthread-core-config.h
+2 −293 src/core/thread/child.cpp
+550 −0 src/core/thread/child.hpp
+1 −2 src/core/thread/child_supervision.hpp
+1 −1 src/core/thread/child_table.hpp
+1 −1 src/core/thread/dua_manager.hpp
+1 −1 src/core/thread/indirect_sender.cpp
+2 −2 src/core/thread/mesh_forwarder.hpp
+10 −10 src/core/thread/mesh_forwarder_ftd.cpp
+4 −1 src/core/thread/mle.hpp
+2 −2 src/core/thread/mle_router.cpp
+5 −4 src/core/thread/mle_router.hpp
+2 −2 src/core/thread/mle_types.cpp
+3 −3 src/core/thread/mle_types.hpp
+1 −1 src/core/thread/mlr_manager.hpp
+261 −0 src/core/thread/neighbor.cpp
+4 −704 src/core/thread/neighbor.hpp
+1 −1 src/core/thread/neighbor_table.hpp
+2 −1 src/core/thread/network_diagnostic_tlvs.hpp
+120 −0 src/core/thread/router.cpp
+240 −0 src/core/thread/router.hpp
+1 −1 src/core/thread/router_table.hpp
+1 −1 src/core/thread/src_match_controller.cpp
+377 −0 src/core/utils/link_metrics_manager.cpp
+223 −0 src/core/utils/link_metrics_manager.hpp
+1 −1 src/core/utils/otns.hpp
+60 −0 tests/scripts/expect/v1_2-linkmetricsmgr.exp
+6 −0 tests/scripts/thread-cert/node.py
+271 −0 tests/scripts/thread-cert/v1_2_LowPower_test_link_metrics_manager.py
+2 −0 tests/toranj/openthread-core-toranj-config.h
+21 −0 tests/unit/CMakeLists.txt
+1 −1 tests/unit/test_child.cpp
+222 −0 tests/unit/test_link_metrics_manager.cpp
+3 −3 tests/unit/test_mle.cpp
+1 −1 tests/unit/test_toolchain.cpp

0 comments on commit 58c5094

Please sign in to comment.