From 27225acbced9b993b4fee7138c64d53ac18afb1b Mon Sep 17 00:00:00 2001 From: Uwe Seimet Date: Sun, 29 Aug 2021 15:30:03 +0200 Subject: [PATCH] Comment update --- src/raspberrypi/rascsi_interface.proto | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/raspberrypi/rascsi_interface.proto b/src/raspberrypi/rascsi_interface.proto index 2ff1b73d..fa28b821 100644 --- a/src/raspberrypi/rascsi_interface.proto +++ b/src/raspberrypi/rascsi_interface.proto @@ -39,17 +39,17 @@ enum PbOperation { ATTACH = 4; // Detach device. Detach all devices if PbCommand.params == "all". In this case ID and unit are ignored. DETACH = 5; - // Insert media + // Insert medium INSERT = 6; - // Eject media + // Eject medium EJECT = 7; - // Write-protect media (not possible for read-only media) + // Write-protect medium (not possible for read-only media) PROTECT = 8; - // Make media writable (not possible for read-only media) + // Make medium writable (not possible for read-only media) UNPROTECT = 9; } -// The properties supported by a device +// The properties supported by a device, helping clients to offer a good user experience message PbDeviceProperties { // Read-only medium (e.g. CD-ROMs) are not protectable but permanently read-only bool read_only = 1;