summaryrefslogtreecommitdiffstats
path: root/openxc.proto
diff options
context:
space:
mode:
authorChristopher Peplin <chris.peplin@rhubarbtech.com>2013-10-01 14:46:03 -0400
committerChristopher Peplin <chris.peplin@rhubarbtech.com>2014-01-07 13:18:09 -0500
commitd356b057aa38ea088cedfe26f562b981171239fc (patch)
tree50bf67c2f0de856b7522caf90c4ad5682b68bb7f /openxc.proto
parentb4915d0bca3b66943296044d0eb7c8db9540e4ae (diff)
Add a bus field to RawMessage and make data an 64-bit int.
Diffstat (limited to 'openxc.proto')
-rw-r--r--openxc.proto5
1 files 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 {