Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/flipperdevices/flipperzero-protobuf.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Kharisov <albert@flipperdevices.com>2021-10-11 10:15:53 +0300
committerAlbert Kharisov <albert@flipperdevices.com>2021-10-11 10:15:53 +0300
commit41599b8e6a6b33a229e8f5fa58de1a2cfcc8184a (patch)
tree6989c6b55ab4ed3445cd90829f2bc4576a4fc3b5
parentda67562d1b0fa654aa21fcc8a0815f34dfafff60 (diff)
Rename not_last -> has_next
-rw-r--r--flipper.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/flipper.proto b/flipper.proto
index 061ddd1..f056b48 100644
--- a/flipper.proto
+++ b/flipper.proto
@@ -10,7 +10,7 @@ enum CommandStatus {
ERROR_DECODE = 2; /**< Command can't be decoded successfully - command_id in response may be wrong! */
ERROR_NOT_IMPLEMENTED = 3; /**< Command succesfully decoded, but not implemented (deprecated or not yet implemented) */
ERROR_BUSY = 4; /**< Somebody took global lock, so not all commands are available */
- ERROR_CONTINUOUS_COMMAND_INTERRUPTED = 14; /**< Not received not_last == 0 */
+ ERROR_CONTINUOUS_COMMAND_INTERRUPTED = 14; /**< Not received has_next == 0 */
ERROR_INVALID_PARAMETERS = 15; /**< not provided (or provided invalid) crucial parameters to perform rpc */
ERROR_STORAGE_NOT_READY = 5; /**< FS not ready */
ERROR_STORAGE_EXIST = 6; /**< File/Dir alrady exist */
@@ -33,7 +33,7 @@ message Empty {
message Main {
uint32 command_id = 1;
CommandStatus command_status = 2;
- bool not_last = 3;
+ bool has_next = 3;
oneof content {
Empty empty = 4;
.PB_Status.PingRequest ping_request = 5;