-
Notifications
You must be signed in to change notification settings - Fork 239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[controller] add ncp host #2329
Conversation
40e0e02
to
33b3138
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2329 +/- ##
===========================================
- Coverage 55.77% 37.56% -18.22%
===========================================
Files 87 93 +6
Lines 6890 10560 +3670
Branches 0 763 +763
===========================================
+ Hits 3843 3967 +124
- Misses 3047 6392 +3345
- Partials 0 201 +201 ☔ View full report in Codecov by Sentry. |
06262dd
to
56c7b7b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
44d1ac8
to
5cc76cb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
92e54a9
to
6edaae2
Compare
This PR adds the
NcpHost
class which is the implementation ofThreadController
under NCP case.This PR updates
ThreadController::Create
to createNcpHost
underthe NCP case, allowing
otbr-agent
to start when the co-processor isa NCP, though no functionalities have been implemented yet.
This PR also adds a CI workflow to use expect script to test otbr-agent
in NCP case. For this PR, a simple test is added to start otbr-agent
with NCP (dry run) and check the co-processor version.
This PR is a subset of PR #2283