File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -215,3 +215,12 @@ message StartDiveCtrl {
215
215
// at which point the user exited the dive view.
216
216
message EndDiveCtrl {
217
217
}
218
+
219
+ // Message sent when the user wants to format a connected removable storage device.
220
+ //
221
+ // The app will receive a RemovableStorageTel message with information about the newly formatted drive.
222
+ //
223
+ // Warning: The drone will delete any partitions and format the drive with a single exFat partition.
224
+ // Any data on the drive will be lost.
225
+ message FormatRemovableStorageDeviceCtrl {
226
+ }
Original file line number Diff line number Diff line change @@ -583,6 +583,8 @@ message StorageSpace {
583
583
int64 free_space = 2 ; // Available bytes of storage space (B).
584
584
}
585
585
586
+ bool wrong_file_system_found = 4; // The wrong file system is found.
587
+ bool device_is_read_only = 5; // The device is in read-only mode.
586
588
// Compass calibration state.
587
589
message CalibrationState {
588
590
Original file line number Diff line number Diff line change @@ -148,7 +148,13 @@ message CanisterBottomHumidityTel {
148
148
149
149
// Video storage info.
150
150
message VideoStorageSpaceTel {
151
- StorageSpace storage_space = 1 ; // Video storage information.
151
+ StorageSpace storage_space = 1 ; // Internal Video storage information.
152
+ StorageSpace removable_space = 2 ; // Removable Video storage information. Can be empty.
153
+ }
154
+
155
+ // Information about removable storage device.
156
+ message RemovableStorageTel {
157
+ RemovableStorageDevice storage_device = 1 ; // Information about the storage device (such as partitions)
152
158
}
153
159
154
160
// Data storage info.
You can’t perform that action at this time.
0 commit comments