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-09-21 13:45:06 +0300
committerAlbert Kharisov <albert@flipperdevices.com>2021-09-21 13:45:38 +0300
commitdc5f0c175c661ee5f93c43c309d801da131fd9c0 (patch)
tree2b4d4f43fc1d54fb1db62b397290db23be3f3acc
parentbbff1fd6632c076cc10f3049645e43bb253c5a4f (diff)
Rename and fix build
-rw-r--r--flipper.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/flipper.proto b/flipper.proto
index 5c4c301..5e25393 100644
--- a/flipper.proto
+++ b/flipper.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
import "storage.proto";
import "status.proto";
-enum Status {
+enum CommandStatus {
OK = 0;
ERROR = 1;
ERROR_NO_SPACE = 2;
@@ -10,8 +10,8 @@ enum Status {
}
message Main {
- uint64 uid = 1;
- Status status = 2;
+ uint64 command_id = 1;
+ CommandStatus command_status = 2;
bool last = 3;
oneof content {
.Status.PingRequest ping_request = 4;