From 2a9969bf1d9fcdd100463f57206417ac18d1a53b Mon Sep 17 00:00:00 2001 From: Uwe Seimet Date: Wed, 15 Sep 2021 11:13:30 +0200 Subject: [PATCH] Comment update --- src/raspberrypi/rascsi_interface.proto | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/raspberrypi/rascsi_interface.proto b/src/raspberrypi/rascsi_interface.proto index 8d7102bd..58093258 100644 --- a/src/raspberrypi/rascsi_interface.proto +++ b/src/raspberrypi/rascsi_interface.proto @@ -61,11 +61,10 @@ enum PbOperation { RESERVE = 14; // Create an image file. The image file must not yet exist. // PbCommand.params(0) contains the filename, PbCommand.params(1) contains the file size in bytes. - // The filename always refers to the default image folder and must not contain a slash. + // The filename is relative to the default image folder and must not contain a slash. CREATE_IMAGE = 15; - // Delete an image file - // PbCommand.params(0) contains the filename. - // The filename always refers to the default image folder and must not contain a slash. + // Delete an image file. PbCommand.params(0) contains the filename. + // The filename is relative to the default image folder and must not contain a slash. DELETE_IMAGE = 16; }