summaryrefslogtreecommitdiffstats
path: root/openxc.proto
diff options
context:
space:
mode:
authorChristopher Peplin <chris.peplin@rhubarbtech.com>2014-01-17 16:38:23 -0500
committerChristopher Peplin <chris.peplin@rhubarbtech.com>2014-01-17 16:38:23 -0500
commit6f4799ca62b964e5626d9b22c4d292e6bd378d57 (patch)
tree6f1998a6ce3fff0a8730f89ffe5a5017fb523301 /openxc.proto
parentd5d62371b4b6b2c2c7211aef55a3a967540948fe (diff)
Store raw CAN payload in bytes instead of uint64_t.
Diffstat (limited to 'openxc.proto')
-rw-r--r--openxc.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/openxc.proto b/openxc.proto
index cc135a6c..a825e1c3 100644
--- a/openxc.proto
+++ b/openxc.proto
@@ -15,7 +15,7 @@ message VehicleMessage {
message RawMessage {
optional int32 bus = 1;
optional uint32 message_id = 2;
- optional uint64 data = 3;
+ optional bytes data = 3;
}
message DiagnosticMessage {