-
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 `0c6c2fe` to `9e4cbb8`. - [Commits](openthread/openthread@0c6c2fe...9e4cbb8) --- 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
9258464
commit 689779c
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openthread
updated
26 files
+0 −264 | src/cli/cli.cpp | |
+0 −75 | src/cli/cli.hpp | |
+5 −6 | src/cli/cli_br.cpp | |
+1 −1 | src/cli/cli_commissioner.cpp | |
+1 −2 | src/cli/cli_dns.cpp | |
+2 −2 | src/cli/cli_history.cpp | |
+1 −1 | src/cli/cli_joiner.cpp | |
+6 −6 | src/cli/cli_network_data.cpp | |
+1 −1 | src/cli/cli_ping.cpp | |
+1 −1 | src/cli/cli_tcp.cpp | |
+2 −3 | src/cli/cli_udp.cpp | |
+265 −0 | src/cli/cli_utils.cpp | |
+112 −0 | src/cli/cli_utils.hpp | |
+31 −40 | src/lib/spinel/radio_spinel.cpp | |
+16 −28 | src/lib/spinel/radio_spinel.hpp | |
+31 −4 | src/lib/spinel/spinel_driver.cpp | |
+13 −7 | src/lib/spinel/spinel_driver.hpp | |
+1 −0 | src/posix/platform/CMakeLists.txt | |
+50 −0 | src/posix/platform/coprocessor_type.h | |
+46 −2 | src/posix/platform/platform-posix.h | |
+4 −113 | src/posix/platform/radio.cpp | |
+3 −14 | src/posix/platform/radio.hpp | |
+224 −0 | src/posix/platform/spinel_manager.cpp | |
+131 −0 | src/posix/platform/spinel_manager.hpp | |
+13 −0 | src/posix/platform/system.cpp | |
+2 −1 | src/posix/platform/virtual_time.cpp |