From c7dcca60c724c32ca3a688a6f20a055b0b4b3b1f Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 9 Feb 2018 17:13:41 +0100 Subject: [PATCH] protob: add `state` field to Initialize and Features --- protob/messages.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protob/messages.proto b/protob/messages.proto index 602c59ffe..5814537d7 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -108,6 +108,7 @@ enum MessageType { * @next Features */ message Initialize { + optional bytes state = 1; // assumed device state } /** @@ -149,6 +150,7 @@ message Features { optional uint32 fw_patch = 24; // reported firmware version if in bootloader mode optional string fw_vendor = 25; // reported firmware vendor if in bootloader mode optional bytes fw_vendor_keys = 26; // reported firmware vendor keys (their hash) + optional bytes state = 27; // current device state } /**