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; +}