From 871b3cb04aaa24637a3b2bfae7082dfacf34f7d2 Mon Sep 17 00:00:00 2001 From: Christopher Peplin Date: Mon, 6 Jan 2014 23:48:50 -0500 Subject: Grab PID from response without dereffing a type punned pointer. --- src/obd2/obd2.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/obd2') diff --git a/src/obd2/obd2.c b/src/obd2/obd2.c index c780fd8c..93cb8883 100644 --- a/src/obd2/obd2.c +++ b/src/obd2/obd2.c @@ -140,10 +140,8 @@ static bool handle_positive_response(DiagnosticRequestHandle* handle, response->mode = handle->request.mode; if(handle->request.pid_length > 0 && message->size > 1) { if(handle->request.pid_length == 2) { - response->pid = *(uint16_t*)&message->payload[PID_BYTE_INDEX]; - if(BYTE_ORDER == LITTLE_ENDIAN) { - response->pid = __builtin_bswap32(response->pid << 16); - } + response->pid = get_bitfield(message->payload, message->size, + PID_BYTE_INDEX * CHAR_BIT, sizeof(uint16_t) * CHAR_BIT); } else { response->pid = message->payload[PID_BYTE_INDEX]; } -- cgit 1.2.3-korg