From: Christopher Peplin Date: Tue, 7 Oct 2014 03:20:36 +0000 (-0400) Subject: Give diagnostic request field a more specific name. X-Git-Tag: 5.0.2~275^2~8^2~6 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=58dfea8e7562588b3dfc71e07c3c8736187e29dc;p=apps%2Fagl-service-can-low-level.git Give diagnostic request field a more specific name. Fixed #18. --- diff --git a/JSON.mkd b/JSON.mkd index 71546bc9..43f7ea9c 100644 --- a/JSON.mkd +++ b/JSON.mkd @@ -65,7 +65,7 @@ A diagnostic request is added or cancelled with a JSON object like this example: { "command": "diagnostic_request", "action": "add", - "request": { + "diagnostic_request": { "bus": 1, "id": 1234, "mode": 1, @@ -92,7 +92,7 @@ simple one-time diagnostic request: { "command": "diagnostic_request", "action": "add", - "request": { + "diagnostic_request": { "bus": 1, "id": 1234, "mode": 1, @@ -111,7 +111,7 @@ previous example as a recurring request at 1Hz: { "command": "diagnostic_request", "action": "add", - "request": { + "diagnostic_request": { "bus": 1, "id": 1234, "mode": 1, @@ -125,7 +125,7 @@ To cancel a recurring request, send a `cancel` action with the same key, e.g.: { "command": "diagnostic_request", "action": "cancel", - "request": { + "diagnostic_request": { "bus": 1, "id": 1234, "mode": 1,