From 07f39f72a945b6f94aafa3f3370fcf35ab87618e Mon Sep 17 00:00:00 2001 From: Christopher Peplin Date: Sat, 24 May 2014 21:30:12 -0400 Subject: Fix typo in example for raw message format. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c17eb6de..edef8f8d 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ discrete pieces of information in the measurement. The format for a raw CAN message: - {"bus": 1, "id": 1234, "value": "0x12345678"} + {"bus": 1, "id": 1234, "data": "0x12345678"} **bus** - the numerical identifier of the CAN bus where this message originated, most likely 1 or 2 (for a vehicle interface with 2 CAN controllers). -- cgit 1.2.3-korg From e40ef7b8d0db0198ed6a77a446c7aa350271fa66 Mon Sep 17 00:00:00 2001 From: Christopher Peplin Date: Wed, 11 Jun 2014 23:28:53 -0400 Subject: Remove factor and offset from diag requests - left up to clients. --- CHANGELOG.md | 6 ++++++ README.md | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32f48535..66d73c1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # OpenXC Message Format Changelog +## v0.3.1-dev + +* Removed factor and offset from diagnostic requests to minimize the number of + fields, and since this is such an uncommon use case and one that can be + handled by the client receiving the data. We may add them back in the future. + ## v0.3 * Add diagnostic message request/response format. diff --git a/README.md b/README.md index edef8f8d..b0647dae 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,6 @@ with this command format: "pid": 5, "payload": "0x1234", "multiple_responses": false, - "factor": 1.0, - "offset": 0, "frequency": 1, "name": "my_pid" } -- cgit 1.2.3-korg