summaryrefslogtreecommitdiffstats
path: root/openxc.proto
diff options
context:
space:
mode:
authorChristopher Peplin <chris.peplin@rhubarbtech.com>2014-11-07 08:57:03 -0500
committerChristopher Peplin <chris.peplin@rhubarbtech.com>2014-11-07 08:57:03 -0500
commit75bc6db24e48f4b577f68a4e27cace82ff8e442c (patch)
tree810d127b459912698cabedf0ad060b580e7e88b9 /openxc.proto
parentb8f82bd6b22237928d16cfb5e97a9bcf30919698 (diff)
Back off change to CAN message ID for backwards compatibility.
I don't think this change is worth breaking compatibility with exiting trace files. The meaning of an ID is much more clean when inside a CAN message object, so that's why I think it make sense to be different than the "id" inside a diagnostic request.
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 252f214b..6bf15674 100644
--- a/openxc.proto
+++ b/openxc.proto
@@ -21,7 +21,7 @@ message CanMessage {
EXTENDED = 2;
}
optional int32 bus = 1;
- optional uint32 message_id = 2;
+ optional uint32 id = 2;
optional bytes data = 3;
optional FrameFormat frame_format = 4;
}