summaryrefslogtreecommitdiffstats
path: root/README.mkd
diff options
context:
space:
mode:
Diffstat (limited to 'README.mkd')
-rw-r--r--README.mkd10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.mkd b/README.mkd
index 96b969ee..28aee721 100644
--- a/README.mkd
+++ b/README.mkd
@@ -53,21 +53,21 @@ what we need is another layer on top of that to handle the repeated requests.
void my_callback(const DiagnosticResponse* response) {
}
- DiagnosticRequestHandler handler = diagnostic_init(my_callback);
+ DiagnosticRequestHandle handle = diagnostic_init(my_callback);
DiagnosticRequest request = {
arbitratin_id: 0x7df,
mode: OBD2_MODE_POWERTRAIN_DIAGNOSTIC_REQUEST,
pid: 3
};
- diagnostic_send(&handler, &request);
+ diagnostic_send(&handle, &request);
while(true) {
- diagnostic_handle_can_frame(&handler, 42, data, 8);
+ diagnostic_handle_can_frame(&handle, 42, data, 8);
}
- diagnostic_request_pid(&handler, DIAGNOSTIC_STANDARD_PID, 42
+ diagnostic_request_pid(&handle, DIAGNOSTIC_STANDARD_PID, 42
- diagnostic_destroy(&handler);
+ diagnostic_destroy(&handle);
## Testing