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:
authorAnna Prosvetova <anna@prosvetova.me>2022-09-18 20:40:19 +0300
committerAnna Prosvetova <anna@prosvetova.me>2022-09-18 20:40:19 +0300
commit8222abc0372801faf763f15ce2d7afb8ee7f88d6 (patch)
tree069abbe1c5dbe3614ea8d7935203ef6cd5ca7d38
parent6727eaf287db077dcd28719cd764f5804712223e (diff)
Add PowerDebugktq/power_debug
-rw-r--r--Changelog3
-rw-r--r--flipper.proto2
-rw-r--r--system.options2
-rw-r--r--system.proto8
4 files changed, 15 insertions, 0 deletions
diff --git a/Changelog b/Changelog
index 8e644d5..6146ac5 100644
--- a/Changelog
+++ b/Changelog
@@ -1,5 +1,8 @@
# Changelog
+## [0.13]
+### Added
+- System message: PowerDebug
## [0.12]
### Added
diff --git a/flipper.proto b/flipper.proto
index 911c09a..9a17d8e 100644
--- a/flipper.proto
+++ b/flipper.proto
@@ -79,6 +79,8 @@ message Main {
.PB_System.UpdateResponse system_update_response = 46;
.PB_System.PowerInfoRequest system_power_info_request = 44;
.PB_System.PowerInfoResponse system_power_info_response = 45;
+ .PB_System.PowerDebugRequest system_power_debug_request = 59;
+ .PB_System.PowerDebugResponse system_power_debug_response = 60;
.PB_Storage.InfoRequest storage_info_request = 28;
.PB_Storage.InfoResponse storage_info_response = 29;
.PB_Storage.StatRequest storage_stat_request = 24;
diff --git a/system.options b/system.options
index b400c3e..852409a 100644
--- a/system.options
+++ b/system.options
@@ -14,3 +14,5 @@ PB_System.DateTime.weekday int_size:IS_8
PB_System.UpdateRequest.update_manifest type:FT_POINTER
PB_System.PowerInfoResponse.key type:FT_POINTER
PB_System.PowerInfoResponse.value type:FT_POINTER
+PB_System.PowerDebugResponse.key type:FT_POINTER
+PB_System.PowerDebugResponse.value type:FT_POINTER \ No newline at end of file
diff --git a/system.proto b/system.proto
index 90238e8..7a47274 100644
--- a/system.proto
+++ b/system.proto
@@ -93,3 +93,11 @@ message PowerInfoResponse {
string key = 1;
string value = 2;
}
+
+message PowerDebugRequest {
+}
+
+message PowerDebugResponse {
+ string key = 1;
+ string value = 2;
+} \ No newline at end of file