Skip to content

Commit a0a5b37

Browse files
authored
Merge pull request #237 from BluEye-Robotics/jp-pino/removable-storage
Add STATUS_UNPLUGGED to RemovableStorageDevice's Status enum
2 parents 725468a + b09fbdf commit a0a5b37

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

protobuf_definitions/message_formats.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,8 +657,9 @@ message RemovableStorageDevice {
657657
enum Status {
658658
STATUS_UNSPECIFIED = 0; // Unspecified.
659659
STATUS_READY = 1; // The storage device is valid and ready for use.
660-
STATUS_FORMATTING = 2; // The storage device is being formatted
660+
STATUS_FORMATTING = 2; // The storage device is being formatted.
661661
STATUS_ERROR = 3; // The storage device is in an error state.
662+
STATUS_UNPLUGGED = 4; // The storage device is not present.
662663
}
663664
string vendor_name = 1; // USB vendor name.
664665
string model_name = 2; // Model name of the USB storage device.

0 commit comments

Comments
 (0)