Add a bus field to RawMessage and make data an 64-bit int.
authorChristopher Peplin <chris.peplin@rhubarbtech.com>
Tue, 1 Oct 2013 18:46:03 +0000 (14:46 -0400)
committerChristopher Peplin <chris.peplin@rhubarbtech.com>
Tue, 7 Jan 2014 18:18:09 +0000 (13:18 -0500)
openxc.proto

index 1917b0b..3913083 100644 (file)
@@ -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 {