@@ -58,19 +58,19 @@ message BoardDetailsResponse {
5858 repeated ToolsDependencies tools_dependencies = 10 ;
5959 // The board's custom configuration options.
6060 repeated ConfigOption config_options = 11 ;
61- // List of programmers supported by the board
61+ // List of programmers supported by the board.
6262 repeated Programmer programmers = 13 ;
6363 reserved 14 ;
6464 // Identifying information for the board (e.g., USB VID/PID).
6565 repeated BoardIdentificationProperties identification_properties = 15 ;
66- // Board build properties used for compiling
66+ // Board build properties used for compiling.
6767 repeated string build_properties = 16 ;
68- // Default programmer for the board
68+ // Default programmer for the board.
6969 string default_programmer_id = 17 ;
7070}
7171
7272message 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.
7474 map <string , string > properties = 1 ;
7575}
7676
@@ -157,7 +157,7 @@ message ConfigValue {
157157message BoardListRequest {
158158 // Arduino Core Service instance from the `Init` response.
159159 Instance instance = 1 ;
160- // Search for boards for the given time (in milliseconds)
160+ // Search for boards for the given time (in milliseconds).
161161 int64 timeout = 2 ;
162162 // The fully qualified board name of the board you want information about
163163 // (e.g., `arduino:avr:uno`).
@@ -174,7 +174,7 @@ message BoardListResponse {
174174message DetectedPort {
175175 // The possible boards attached to the port.
176176 repeated BoardListItem matching_boards = 1 ;
177- // The port details
177+ // The port details.
178178 Port port = 2 ;
179179}
180180
@@ -183,7 +183,7 @@ message BoardListAllRequest {
183183 Instance instance = 1 ;
184184 // The search query to filter the board list by.
185185 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.
187187 bool include_hidden_boards = 3 ;
188188}
189189
@@ -198,11 +198,11 @@ message BoardListWatchRequest {
198198}
199199
200200message BoardListWatchResponse {
201- // Event type as received from the serial discovery tool
201+ // Event type as received from the serial discovery tool.
202202 string event_type = 1 ;
203- // Information about the port
203+ // Information about the port.
204204 DetectedPort port = 2 ;
205- // Eventual errors when detecting connected boards
205+ // Eventual errors when detecting connected boards.
206206 string error = 3 ;
207207}
208208
@@ -211,9 +211,9 @@ message BoardListItem {
211211 string name = 1 ;
212212 // The fully qualified board name. Used to identify the board to a machine.
213213 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.
215215 bool is_hidden = 3 ;
216- // Platform this board belongs to
216+ // Platform this board belongs to.
217217 Platform platform = 6 ;
218218}
219219
@@ -223,7 +223,7 @@ message BoardSearchRequest {
223223 // The search query to filter the board list by.
224224 string search_args = 2 ;
225225 // Set to true to get also the boards marked as "hidden" in installed
226- // platforms
226+ // platforms.
227227 bool include_hidden_boards = 3 ;
228228}
229229
0 commit comments