diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2013-10-05 16:25:51 -0400 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-01-07 13:18:10 -0500 |
commit | 341e0fbd06aac57ecdec5fd4802bb5175c939e1b (patch) | |
tree | be2516995e2390d092f73f7fa2165026cfc64347 /openxc.proto | |
parent | b68150231d6f1a2608e2d33187e05d5d3bf4a5f1 (diff) |
Switch raw data field to uint64 to fit all values and update benchmark.
Diffstat (limited to 'openxc.proto')
-rw-r--r-- | openxc.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openxc.proto b/openxc.proto index 0748e75f..b3dd3bad 100644 --- a/openxc.proto +++ b/openxc.proto @@ -12,7 +12,7 @@ message VehicleMessage { message RawMessage { optional int32 bus = 1; optional uint32 message_id = 2; - optional sint64 data = 3; + optional uint64 data = 3; } message TranslatedMessage { |