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:
authorあく <alleteam@gmail.com>2023-05-11 11:02:11 +0300
committerGitHub <noreply@github.com>2023-05-11 11:02:11 +0300
commita13c5ddd0397511bd4c6de4afdd1031a5b6f5bca (patch)
treef2ab941727dc1897b012cb8340f6d0047292681f
parent1f6b4a08c5d05c2b17926a3ba79f60109638932f (diff)
Desktop RPC (#42)0.16
-rw-r--r--Changelog4
-rw-r--r--desktop.proto10
-rw-r--r--flipper.proto3
3 files changed, 17 insertions, 0 deletions
diff --git a/Changelog b/Changelog
index b1c88f7..f833553 100644
--- a/Changelog
+++ b/Changelog
@@ -1,5 +1,9 @@
# Changelog
+## [0.16]
+### Added
+- Desktop service api
+
## [0.15]
### Modified
- ScreenFrame: additional orientation field
diff --git a/desktop.proto b/desktop.proto
new file mode 100644
index 0000000..49b8945
--- /dev/null
+++ b/desktop.proto
@@ -0,0 +1,10 @@
+syntax = "proto3";
+
+package PB_Desktop;
+option java_package = "com.flipperdevices.protobuf.desktop";
+
+message IsLockedRequest {
+}
+
+message UnlockRequest {
+}
diff --git a/flipper.proto b/flipper.proto
index 7a491fc..f02e75d 100644
--- a/flipper.proto
+++ b/flipper.proto
@@ -5,6 +5,7 @@ import "application.proto";
import "gui.proto";
import "gpio.proto";
import "property.proto";
+import "desktop.proto";
package PB;
option java_package = "com.flipperdevices.protobuf";
@@ -124,6 +125,8 @@ message Main {
.PB_App.AppStateResponse app_state_response = 58;
.PB_Property.GetRequest property_get_request = 61;
.PB_Property.GetResponse property_get_response = 62;
+ .PB_Desktop.IsLockedRequest desktop_is_locked_request = 66;
+ .PB_Desktop.UnlockRequest desktop_unlock_request = 67;
}
}