summaryrefslogtreecommitdiffstats
path: root/gen/java
AgeCommit message (Collapse)AuthorFilesLines
2014-11-07Back off change to CAN message ID for backwards compatibility.Christopher Peplin1-453/+368
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.
2014-10-06Remove redundant 'type' field from binary SimpleVehicleMessage.Christopher Peplin1-312/+101
You can figure out the type based on the value and event DynamicFields. Fixed #19.
2014-10-06Deprecate "translated" and "raw" names in binary format.Christopher Peplin1-413/+412
Fixed #16.
2014-10-06Give frame format field a more specific name.Christopher Peplin1-89/+89
2014-10-06Add a field to CAN messages to explicitly set the frame format.Christopher Peplin1-54/+228
See openxc/vi-firmware:230.
2014-09-29Add a command to enable/disable pre-defined OBD-II requests.Christopher Peplin1-45/+658
See openxc/vi-firmware#303.
2014-09-27Standardize names for payload format.Christopher Peplin1-219/+219
2014-09-27Remove unnecessary 'bus' field from message format command.Christopher Peplin1-132/+50
2014-09-27Add a command to change message format while running.Christopher Peplin1-41/+827
2014-09-27Add a control command to control AF bypass status.Christopher Peplin1-39/+732
See openxc/vi-firmware#301.
2014-09-20Simplify passthrough command to just a boolean.Christopher Peplin1-166/+63
2014-09-20Add passthrough command and refactor commands in binary format.Christopher Peplin1-202/+1518
The ControlCommand is now more like a VehicleMessage - it has a 'type' and many optional fields pointing to the various types. If the type is diagnostic, the client should look at the diagnostic_request field.
2014-08-11Move action field to ControlCommand in binary format.Christopher Peplin1-203/+203
2014-08-10Add a 'status' field to command responses.Christopher Peplin1-27/+108
2014-08-10Remove 'update' feature of diag request commands.Christopher Peplin1-41/+32
2014-08-04Require an 'action' in diagnostic requests.Christopher Peplin1-20/+203
It wasn't very clean to try and infer a delete/create/update based on the value of the frequency field - this will require a little more code, but as they say in Python, explicit is better than implicit. Fixed https://github.com/openxc/openxc-message-format/issues/12
2014-03-26Refactor diagnostic fields for decoding payload.Christopher Peplin1-220/+232
2014-03-26Remove parse_payload from diagnostic messages, it's not needed.Christopher Peplin1-214/+132
2014-03-15Add 'name' and 'multiple_responses' fields to diag requests.Christopher Peplin1-81/+320
2014-03-06Add CommandResponse type to VehicleMessage (from VI to host).Christopher Peplin1-34/+810
2014-03-04Condense string/number/bool trio into a field.Christopher Peplin1-499/+1075
2014-03-04Move ControlCommand inside VehicleMessage so it can be on same stream.Christopher Peplin1-27/+230
2014-03-03Add a draft protobuf format for diagnostic requests.Christopher Peplin1-164/+1969
2014-02-19Add a value field to diagnostic responses for parsed payloads.Christopher Peplin1-11/+93
2014-01-17Store raw CAN payload in bytes instead of uint64_t.Christopher Peplin1-26/+29
2014-01-17Add Diagnostic type within VehicleMessage supertype.Christopher Peplin1-18/+220
2014-01-17Store diagnostic response payload as a byte array in protobuf.Christopher Peplin1-26/+69
2014-01-17Add a protobuf type for diagnostic message responses.Christopher Peplin1-11/+908
2014-01-07Minimize the number of separate protobuf types.Christopher Peplin1-211/+423
2014-01-07Revert "Switch back to many subtypes for binary messages."Christopher Peplin1-4363/+548
This reverts commit 3e954ea9c44bdd00b39d3f0d2cc43662e633c891.
2014-01-07Revert "Restore accidentally deleted data field from raw message."Christopher Peplin1-93/+12
This reverts commit e4a78ec9935af3b19d314e88b0ed935789162ca8.
2014-01-07Restore accidentally deleted data field from raw message.Christopher Peplin1-12/+93
2014-01-07Switch back to many subtypes for binary messages.Christopher Peplin1-548/+4363
Some protobuf libraries don't support checking if a field exists (they always return a default value), so although this style has more code it is easier to support.
2014-01-07Fix package name of generated protobuf objects.Christopher Peplin1-155/+155
2014-01-07Switch raw data field to uint64 to fit all values and update benchmark.Christopher Peplin1-15/+15
2014-01-07Merge all sub-types into a single TranslatedMessage type.Christopher Peplin1-1640/+589
2014-01-07Add generated protobuf implementations.Christopher Peplin1-0/+3668