-
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 `a5c17b7` to `6de5cd8`. - [Commits](openthread/openthread@a5c17b7...6de5cd8) --- 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
11bd0d9
commit 54d22cb
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openthread
updated
19 files
+2 −2 | .github/workflows/simulation-1.2.yml | |
+1 −0 | doc/ot_api_doc.h | |
+1 −0 | etc/cmake/options.cmake | |
+1 −0 | include/openthread/BUILD.gn | |
+1 −1 | include/openthread/instance.h | |
+101 −0 | include/openthread/verhoeff_checksum.h | |
+30 −0 | src/cli/README.md | |
+55 −0 | src/cli/cli.cpp | |
+3 −0 | src/core/BUILD.gn | |
+2 −0 | src/core/CMakeLists.txt | |
+60 −0 | src/core/api/verhoeff_checksum_api.cpp | |
+10 −0 | src/core/config/misc.h | |
+13 −0 | src/core/instance/instance.cpp | |
+20 −0 | src/core/instance/instance.hpp | |
+149 −0 | src/core/utils/verhoeff_checksum.cpp | |
+99 −0 | src/core/utils/verhoeff_checksum.hpp | |
+42 −0 | src/lib/spinel/radio_spinel.cpp | |
+4 −0 | src/lib/spinel/radio_spinel.hpp | |
+62 −0 | tests/unit/test_checksum.cpp |