connectors/LPC/LPCAppObject.py
changeset 577 04baf6607a44
parent 576 7fcdc0d3d8d9
child 578 6f5795bdee49
--- a/connectors/LPC/LPCAppObject.py	Fri Feb 18 12:29:48 2011 +0100
+++ b/connectors/LPC/LPCAppObject.py	Tue Feb 22 14:11:50 2011 +0100
@@ -98,7 +98,7 @@
                 if force !=None:
                     c_type,unpack_func, pack_func = self.TypeTranslator.get(iectype, (None,None,None))
                     forced_type_size = ctypes.sizeof(c_type)
-                    forcedsizestr = chr(forced_type_size)
+                    forced_type_size_str = chr(forced_type_size)
                     forcestr = ctypes.string_at(
                                 ctypes.pointer(
                                  pack_func(c_type,force)),
@@ -119,15 +119,16 @@
         strbuf = self.HandleSerialTransaction(
                                      GET_TRACE_VARIABLETransaction())
         if strbuf is not None and len(strbuf) > 4 and self.PLCStatus == "Started":
+            res=[]
             size = len(strbuf) - 4
             tick = ctypes.cast(
                     ctypes.c_char_p(strbuf[:4]),
                     ctypes.POINTER(ctypes.c_int)).contents
-            buffer = ctypes.cast(
+            buff = ctypes.cast(
                       ctypes.c_char_p(strbuf[4:]),
                       ctypes.c_void_p)
             for idx, iectype, forced in self._Idxs:
-                cursor = ctypes.c_void_p(buffer.value + offset)
+                cursor = ctypes.c_void_p(buff.value + offset)
                 c_type,unpack_func, pack_func = self.TypeTranslator.get(iectype, (None,None,None))
                 if c_type is not None and offset < size:
                     res.append(unpack_func(ctypes.cast(cursor,