From d356b057aa38ea088cedfe26f562b981171239fc Mon Sep 17 00:00:00 2001 From: Christopher Peplin Date: Tue, 1 Oct 2013 14:46:03 -0400 Subject: [PATCH] Add a bus field to RawMessage and make data an 64-bit int. --- openxc.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 { -- 2.16.6