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

[FL-2468] Added Update boot mode; fixed manifest field name #28

Merged
merged 1 commit into from
Apr 15, 2022
Merged
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
6 changes: 6 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.6]
### Added
- System message: RebootRequest: added UPDATE restart mode
### Fixed
- System message: UpdateRequest: renamed manifest field

## [0.5]
### Added
- System message: PowerInfo
Expand Down
2 changes: 1 addition & 1 deletion system.options
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ PB_System.DateTime.day int_size:IS_8
PB_System.DateTime.month int_size:IS_8
PB_System.DateTime.year int_size:IS_16
PB_System.DateTime.weekday int_size:IS_8
PB_System.UpdateRequest.update_folder type:FT_POINTER
PB_System.UpdateRequest.update_manifest type:FT_POINTER
PB_System.PowerInfoResponse.key type:FT_POINTER
PB_System.PowerInfoResponse.value type:FT_POINTER
3 changes: 2 additions & 1 deletion system.proto
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ message RebootRequest {
enum RebootMode {
OS = 0; // default value
DFU = 1;
UPDATE = 2;
}
RebootMode mode = 1;
}
Expand Down Expand Up @@ -65,7 +66,7 @@ message ProtobufVersionResponse {
}

message UpdateRequest {
string update_folder = 1;
string update_manifest = 1;
}

message PowerInfoRequest {
Expand Down