From: Dan White Date: Mon, 14 May 2012 02:17:08 +0000 (-0500) Subject: Fix redundant send of POR AD524x value X-Git-Tag: calibrations~71 X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=253fef8b2a714326bcbb056b187eb807b4ee99a0;p=430.git Fix redundant send of POR AD524x value --- diff --git a/python-lib/usbio.py b/python-lib/usbio.py index a3d4fb8..edc3390 100644 --- a/python-lib/usbio.py +++ b/python-lib/usbio.py @@ -1291,8 +1291,8 @@ class DigiReg(AD524x): self.vb_min = min(vb) self.vb_max = max(vb) # POR pot position - self.posA = 128 - self.posB = 128 + self._posA = 128 + self._posB = 128 def _va_getter(self): return ((float(self.posA) / 255) * (self.va_max - self.va_min)