Skip to content

Added BoardIdentify gRPC call. #2794

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

Merged
merged 9 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added BoardIdentify gRPC call
  • Loading branch information
cmaglie committed Jan 7, 2025
commit 02d232f4214b0259e8d98453e34626688c31971a
210 changes: 183 additions & 27 deletions rpc/cc/arduino/cli/commands/v1/board.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions rpc/cc/arduino/cli/commands/v1/board.proto
Original file line number Diff line number Diff line change
Expand Up @@ -237,3 +237,15 @@ message BoardSearchResponse {
// List of installed and installable boards.
repeated BoardListItem boards = 1;
}

message BoardIdentifyRequest {
// Arduino Core Service instance from the `Init` response.
Instance instance = 1;
// A set of properties to search (can be taken from a Port message).
map<string, string> properties = 2;
}

message BoardIdentifyResponse {
// List of matching boards (they may have an FQBN with options set).
repeated BoardListItem boards = 1;
}
Loading