@@ -58,19 +58,19 @@ message BoardDetailsResponse {
58
58
repeated ToolsDependencies tools_dependencies = 10 ;
59
59
// The board's custom configuration options.
60
60
repeated ConfigOption config_options = 11 ;
61
- // List of programmers supported by the board
61
+ // List of programmers supported by the board.
62
62
repeated Programmer programmers = 13 ;
63
63
reserved 14 ;
64
64
// Identifying information for the board (e.g., USB VID/PID).
65
65
repeated BoardIdentificationProperties identification_properties = 15 ;
66
- // Board build properties used for compiling
66
+ // Board build properties used for compiling.
67
67
repeated string build_properties = 16 ;
68
- // Default programmer for the board
68
+ // Default programmer for the board.
69
69
string default_programmer_id = 17 ;
70
70
}
71
71
72
72
message BoardIdentificationProperties {
73
- // A set of properties that must all be matched to identify the board
73
+ // A set of properties that must all be matched to identify the board.
74
74
map <string , string > properties = 1 ;
75
75
}
76
76
@@ -157,7 +157,7 @@ message ConfigValue {
157
157
message BoardListRequest {
158
158
// Arduino Core Service instance from the `Init` response.
159
159
Instance instance = 1 ;
160
- // Search for boards for the given time (in milliseconds)
160
+ // Search for boards for the given time (in milliseconds).
161
161
int64 timeout = 2 ;
162
162
// The fully qualified board name of the board you want information about
163
163
// (e.g., `arduino:avr:uno`).
@@ -174,7 +174,7 @@ message BoardListResponse {
174
174
message DetectedPort {
175
175
// The possible boards attached to the port.
176
176
repeated BoardListItem matching_boards = 1 ;
177
- // The port details
177
+ // The port details.
178
178
Port port = 2 ;
179
179
}
180
180
@@ -183,7 +183,7 @@ message BoardListAllRequest {
183
183
Instance instance = 1 ;
184
184
// The search query to filter the board list by.
185
185
repeated string search_args = 2 ;
186
- // Set to true to get also the boards marked as "hidden" in the platform
186
+ // Set to true to get also the boards marked as "hidden" in the platform.
187
187
bool include_hidden_boards = 3 ;
188
188
}
189
189
@@ -198,11 +198,11 @@ message BoardListWatchRequest {
198
198
}
199
199
200
200
message BoardListWatchResponse {
201
- // Event type as received from the serial discovery tool
201
+ // Event type as received from the serial discovery tool.
202
202
string event_type = 1 ;
203
- // Information about the port
203
+ // Information about the port.
204
204
DetectedPort port = 2 ;
205
- // Eventual errors when detecting connected boards
205
+ // Eventual errors when detecting connected boards.
206
206
string error = 3 ;
207
207
}
208
208
@@ -211,9 +211,9 @@ message BoardListItem {
211
211
string name = 1 ;
212
212
// The fully qualified board name. Used to identify the board to a machine.
213
213
string fqbn = 2 ;
214
- // If the board is marked as "hidden" in the platform
214
+ // If the board is marked as "hidden" in the platform.
215
215
bool is_hidden = 3 ;
216
- // Platform this board belongs to
216
+ // Platform this board belongs to.
217
217
Platform platform = 6 ;
218
218
}
219
219
@@ -223,7 +223,7 @@ message BoardSearchRequest {
223
223
// The search query to filter the board list by.
224
224
string search_args = 2 ;
225
225
// Set to true to get also the boards marked as "hidden" in installed
226
- // platforms
226
+ // platforms.
227
227
bool include_hidden_boards = 3 ;
228
228
}
229
229
0 commit comments