File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,15 @@ service MissionRawService {
31
31
/*
32
32
* Download a list of raw mission items from the system (asynchronous).
33
33
*/
34
- rpc DownloadMission (DownloadMissionRequest ) returns (DownloadMissionResponse ) {}
34
+ rpc DownloadMission (DownloadMissionRequest ) returns (DownloadMissionResponse ) {}
35
+ /*
36
+ * Download a list of raw geofence items from the system (asynchronous).
37
+ */
38
+ rpc DownloadGeofence (DownloadGeofenceRequest ) returns (DownloadGeofenceResponse ) {}
39
+ /*
40
+ * Download a list of raw rallypoint items from the system (asynchronous).
41
+ */
42
+ rpc DownloadRallypoints (DownloadRallypointsRequest ) returns (DownloadRallypointsResponse ) {}
35
43
/*
36
44
* Cancel an ongoing mission download.
37
45
*/
@@ -129,6 +137,18 @@ message DownloadMissionResponse {
129
137
repeated MissionItem mission_items = 2 ; // The mission items
130
138
}
131
139
140
+ message DownloadGeofenceRequest {}
141
+ message DownloadGeofenceResponse {
142
+ MissionRawResult mission_raw_result = 1 ;
143
+ repeated MissionItem geofence_items = 2 ; // The geofence items
144
+ }
145
+
146
+ message DownloadRallypointsRequest {}
147
+ message DownloadRallypointsResponse {
148
+ MissionRawResult mission_raw_result = 1 ;
149
+ repeated MissionItem rallypoint_items = 2 ; // The rallypoint items
150
+ }
151
+
132
152
message CancelMissionDownloadRequest {}
133
153
message CancelMissionDownloadResponse {
134
154
MissionRawResult mission_raw_result = 1 ;
You can’t perform that action at this time.
0 commit comments