File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
rpc/cc/arduino/cli/commands/v1 Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ service ArduinoCoreService {
182
182
// Start a debug session and communicate with the debugger tool.
183
183
rpc Debug (stream DebugRequest ) returns (stream DebugResponse ) {}
184
184
185
+ // Query the debugger information given a specific configuration.
185
186
rpc GetDebugConfig (GetDebugConfigRequest ) returns (GetDebugConfigResponse ) {}
186
187
187
188
// List all the settings.
Original file line number Diff line number Diff line change @@ -43,6 +43,14 @@ message DebugRequest {
43
43
bool send_interrupt = 3 ;
44
44
}
45
45
46
+ // The streaming response may contain chunks of data from the debugger or an error.
47
+ message DebugResponse {
48
+ // Incoming data from the debugger tool.
49
+ bytes data = 1 ;
50
+ // Incoming error output from the debugger tool.
51
+ string error = 2 ;
52
+ }
53
+
46
54
message GetDebugConfigRequest {
47
55
// Arduino Core Service instance from the `Init` response.
48
56
Instance instance = 1 ;
@@ -65,14 +73,6 @@ message GetDebugConfigRequest {
65
73
string programmer = 9 ;
66
74
}
67
75
68
- //
69
- message DebugResponse {
70
- // Incoming data from the debugger tool.
71
- bytes data = 1 ;
72
- // Incoming error output from the debugger tool.
73
- string error = 2 ;
74
- }
75
-
76
76
message GetDebugConfigResponse {
77
77
// The executable binary to debug
78
78
string executable = 1 ;
You can’t perform that action at this time.
0 commit comments