Skip to content

Commit

Permalink
arduino#1447 - Add a proto changes draft.
Browse files Browse the repository at this point in the history
Update `compile.proto`.
  • Loading branch information
4ntoine committed Sep 13, 2021
1 parent 826adc5 commit aeebba5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rpc/cc/arduino/cli/commands/v1/compile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ message CompileRequest {
google.protobuf.BoolValue export_binaries = 23;
// List of paths to library root folders
repeated string library = 24;
// Return the content of the compiled binary (in addition to paths).
bool return_file_content = 25;
}

message CompileResponse {
Expand All @@ -93,6 +95,8 @@ message CompileResponse {
repeated Library used_libraries = 4;
// The size of the executable split by sections
repeated ExecutableSectionSize executable_sections_size = 5;
// The content of the compiled binary.
string file_content = 6;
}

message ExecutableSectionSize {
Expand Down

0 comments on commit aeebba5

Please sign in to comment.