From: Christopher Peplin Date: Tue, 1 Oct 2013 18:46:03 +0000 (-0400) Subject: Add a bus field to RawMessage and make data an 64-bit int. X-Git-Tag: 3.99.1~103^2~55 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=d356b057aa38ea088cedfe26f562b981171239fc;p=apps%2Flow-level-can-service.git Add a bus field to RawMessage and make data an 64-bit int. --- diff --git a/openxc.proto b/openxc.proto index 1917b0b..3913083 100644 --- a/openxc.proto +++ b/openxc.proto @@ -12,8 +12,9 @@ message VehicleMessage { } message RawMessage { - optional uint32 message_id = 1; - optional double data = 2; + optional int32 bus = 1; + optional uint32 message_id = 2; + optional sint64 data = 3; } message TranslatedStringMessage {