From 1a42bc3b70e23afa28f221b13428113c7bb79f23 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 9 Jan 2014 14:15:53 +0100 Subject: [PATCH] add debuglinklog message --- protob/messages.proto | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/protob/messages.proto b/protob/messages.proto index 45d331a452..db7344000a 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -52,6 +52,7 @@ enum MessageType { MessageType_DebugLinkGetState = 101 [(wire_debug_in) = true]; MessageType_DebugLinkState = 102 [(wire_debug_out) = true]; MessageType_DebugLinkStop = 103 [(wire_debug_in) = true]; + MessageType_DebugLinkLog = 104 [(wire_debug_out) = true]; } // **************************************************************************** @@ -344,3 +345,9 @@ message DebugLinkState { // Ask device to shutdown/restart message DebugLinkStop { } + +message DebugLinkLog { + optional uint32 level = 1; + optional bytes bucket = 2; + optional bytes text = 3; +}