From: Christopher Peplin Date: Mon, 6 Jan 2014 17:03:18 +0000 (-0500) Subject: DRY up the float parser. X-Git-Tag: 5.0.2~277^2~6 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=cc2f44eeedac7d6e86005543c7e1596c3c78d551;p=apps%2Fagl-service-can-low-level.git DRY up the float parser. --- diff --git a/src/canutil/read.c b/src/canutil/read.c index b662e9bd..d0cbb71a 100644 --- a/src/canutil/read.c +++ b/src/canutil/read.c @@ -2,10 +2,14 @@ #include #include +static float decode_float(uint64_t raw, float factor, float offset) { + return raw * factor + offset; +} + float eightbyte_parse_float(uint64_t data, uint8_t bit_offset, uint8_t bit_size, float factor, float offset) { - uint64_t raw = eightbyte_get_bitfield(data, bit_offset, bit_size, true); - return raw * factor + offset; + return decode_float(eightbyte_get_bitfield(data, bit_offset, bit_size, + true), factor, offset); } bool eightbyte_parse_bool(uint64_t data, uint8_t bit_offset, uint8_t bit_size, @@ -17,10 +21,8 @@ bool eightbyte_parse_bool(uint64_t data, uint8_t bit_offset, uint8_t bit_size, float bitfield_parse_float(const uint8_t source[], const uint16_t source_length, const uint8_t bit_offset, const uint8_t bit_size, const float factor, const float offset) { - uint64_t raw = get_bitfield(source, source_length, bit_offset, bit_size); - // TODO seems dumb that this is repeated from eightbyte_parse_float - is it - // really worth keeping around these two implementations? - return raw * factor + offset; + return decode_float(get_bitfield(source, source_length, bit_offset, bit_size), + factor, offset); } bool bitfield_parse_bool(const uint8_t source[], const uint16_t source_length,