Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PowerDebug #37

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add PowerDebug
  • Loading branch information
aprosvetova committed Sep 18, 2022
commit 8222abc0372801faf763f15ce2d7afb8ee7f88d6
3 changes: 3 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [0.13]
### Added
- System message: PowerDebug

## [0.12]
### Added
Expand Down
2 changes: 2 additions & 0 deletions flipper.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions system.options
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 8 additions & 0 deletions system.proto
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,11 @@ message PowerInfoResponse {
string key = 1;
string value = 2;
}

message PowerDebugRequest {
}

message PowerDebugResponse {
string key = 1;
string value = 2;
}