From: Callum Date: Thu, 31 Oct 2013 22:33:07 +0000 (+0800) Subject: Update dilatometer.c X-Git-Url: https://git.ucc.asn.au/?p=matches%2FMCTX3420.git;a=commitdiff_plain;h=94b29639d801e84a270a7f97a55d6233cac83909 Update dilatometer.c --- diff --git a/server/sensors/dilatometer.c b/server/sensors/dilatometer.c index 8d04fb5..60532a2 100644 --- a/server/sensors/dilatometer.c +++ b/server/sensors/dilatometer.c @@ -263,8 +263,8 @@ bool Dilatometer_GetExpansion( int id, double * value, int samples) { // Find the rate of expansion and convert to mm. Will give a negative result for compression. *value = (average - lastPosition) * SCALE *2; - lastPosition = average; // Current position now becomes the last position } + lastPosition = average; // Current position now becomes the last position return result; default: return false; }