@@ -20,21 +20,21 @@ package cc.arduino.cli.commands.v1;
20
20
option go_package = "github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1;commands" ;
21
21
22
22
message Instance {
23
- // The ID of the instance.
24
- int32 id = 1 ;
23
+ // The ID of the instance.
24
+ int32 id = 1 ;
25
25
}
26
26
27
27
message DownloadProgress {
28
- // URL of the download.
29
- string url = 1 ;
30
- // The file being downloaded.
31
- string file = 2 ;
32
- // Total size of the file being downloaded.
33
- int64 total_size = 3 ;
34
- // Size of the downloaded portion of the file.
35
- int64 downloaded = 4 ;
36
- // Whether the download is complete.
37
- bool completed = 5 ;
28
+ // URL of the download.
29
+ string url = 1 ;
30
+ // The file being downloaded.
31
+ string file = 2 ;
32
+ // Total size of the file being downloaded.
33
+ int64 total_size = 3 ;
34
+ // Size of the downloaded portion of the file.
35
+ int64 downloaded = 4 ;
36
+ // Whether the download is complete.
37
+ bool completed = 5 ;
38
38
}
39
39
40
40
message TaskProgress {
@@ -47,41 +47,41 @@ message TaskProgress {
47
47
}
48
48
49
49
message Programmer {
50
- string platform = 1 ;
51
- string id = 2 ;
52
- string name = 3 ;
50
+ string platform = 1 ;
51
+ string id = 2 ;
52
+ string name = 3 ;
53
53
}
54
54
55
55
message Platform {
56
- // Platform ID (e.g., `arduino:avr`).
57
- string id = 1 ;
58
- // Version of the platform.
59
- string installed = 2 ;
60
- // Newest available version of the platform.
61
- string latest = 3 ;
62
- // Name used to identify the platform to humans (e.g., "Arduino AVR Boards").
63
- string name = 4 ;
64
- // Maintainer of the platform's package.
65
- string maintainer = 5 ;
66
- // A URL provided by the author of the platform's package, intended to point
67
- // to their website.
68
- string website = 6 ;
69
- // Email of the maintainer of the platform's package.
70
- string email = 7 ;
71
- // List of boards provided by the platform. If the platform is installed,
72
- // this is the boards listed in the platform's boards.txt. If the platform is
73
- // not installed, this is an arbitrary list of board names provided by the
74
- // platform author for display and may not match boards.txt.
75
- repeated Board boards = 8 ;
76
- // If true this Platform has been installed manually in the user' sketchbook
77
- // hardware folder
78
- bool manually_installed = 9 ;
56
+ // Platform ID (e.g., `arduino:avr`).
57
+ string id = 1 ;
58
+ // Version of the platform.
59
+ string installed = 2 ;
60
+ // Newest available version of the platform.
61
+ string latest = 3 ;
62
+ // Name used to identify the platform to humans (e.g., "Arduino AVR Boards").
63
+ string name = 4 ;
64
+ // Maintainer of the platform's package.
65
+ string maintainer = 5 ;
66
+ // A URL provided by the author of the platform's package, intended to point
67
+ // to their website.
68
+ string website = 6 ;
69
+ // Email of the maintainer of the platform's package.
70
+ string email = 7 ;
71
+ // List of boards provided by the platform. If the platform is installed,
72
+ // this is the boards listed in the platform's boards.txt. If the platform is
73
+ // not installed, this is an arbitrary list of board names provided by the
74
+ // platform author for display and may not match boards.txt.
75
+ repeated Board boards = 8 ;
76
+ // If true this Platform has been installed manually in the user' sketchbook
77
+ // hardware folder
78
+ bool manually_installed = 9 ;
79
79
}
80
80
81
81
message Board {
82
- // Name used to identify the board to humans.
83
- string name = 1 ;
84
- // Fully qualified board name used to identify the board to machines. The FQBN
85
- // is only available for installed boards.
86
- string fqbn = 2 ;
82
+ // Name used to identify the board to humans.
83
+ string name = 1 ;
84
+ // Fully qualified board name used to identify the board to machines. The FQBN
85
+ // is only available for installed boards.
86
+ string fqbn = 2 ;
87
87
}
0 commit comments