author | laurent |
Wed, 21 Dec 2011 19:42:49 +0100 | |
changeset 657 | 340c0b9caeca |
parent 576 | 7fcdc0d3d8d9 |
permissions | -rw-r--r-- |
453 | 1 |
import ctypes |
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
2 |
from LPCProto import * |
482
7c83eb6a55bd
fixed greg's crap in win32, enhanced debug stability, implemented preliminary retain
edouard
parents:
453
diff
changeset
|
3 |
|
554 | 4 |
LPC_STATUS={0xaa : "Started", |
5 |
0x55 : "Stopped"} |
|
448 | 6 |
|
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
7 |
class LPCAppProto(LPCProto): |
448 | 8 |
def HandleTransaction(self, transaction): |
9 |
self.TransactionLock.acquire() |
|
10 |
try: |
|
11 |
transaction.SetPseudoFile(self.serialPort) |
|
12 |
# send command, wait ack (timeout) |
|
13 |
transaction.SendCommand() |
|
14 |
current_plc_status = transaction.GetCommandAck() |
|
15 |
if current_plc_status is not None: |
|
16 |
res = transaction.ExchangeData() |
|
17 |
else: |
|
563 | 18 |
raise LPCProtoError("controller did not answer as expected") |
19 |
except Exception, e: |
|
576
7fcdc0d3d8d9
Some typo fixes to make debug related methods in LPCAppOject stop throwing exceptions, less agressive error message when unplugging LPC
edouard
parents:
571
diff
changeset
|
20 |
raise LPCProtoError("application mode transaction error : "+str(e)) |
448 | 21 |
finally: |
22 |
self.TransactionLock.release() |
|
508 | 23 |
return LPC_STATUS.get(current_plc_status,"Broken"), res |
448 | 24 |
|
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
25 |
class LPCAppTransaction: |
453 | 26 |
def __init__(self, command, optdata = ""): |
27 |
self.Command = command |
|
28 |
self.OptData = optdata |
|
29 |
self.pseudofile = None |
|
448 | 30 |
|
453 | 31 |
def SetPseudoFile(self, pseudofile): |
448 | 32 |
self.pseudofile = pseudofile |
33 |
||
34 |
def SendCommand(self): |
|
35 |
# send command thread |
|
36 |
self.pseudofile.write(chr(self.Command)) |
|
37 |
||
38 |
def GetCommandAck(self): |
|
453 | 39 |
res = self.pseudofile.read(2) |
40 |
if len(res) == 2: |
|
41 |
comm_status, current_plc_status = map(ord, res) |
|
42 |
else: |
|
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
43 |
raise LPCProtoError("LPC transaction error - controller did not ack order") |
448 | 44 |
# LPC returns command itself as an ack for command |
45 |
if(comm_status == self.Command): |
|
46 |
return current_plc_status |
|
47 |
return None |
|
48 |
||
453 | 49 |
def SendData(self): |
50 |
length = len(self.OptData) |
|
51 |
# transform length into a byte string |
|
52 |
# we presuppose endianess of LPC same as PC |
|
482
7c83eb6a55bd
fixed greg's crap in win32, enhanced debug stability, implemented preliminary retain
edouard
parents:
453
diff
changeset
|
53 |
lengthstr = ctypes.string_at(ctypes.pointer(ctypes.c_int(length)),4) |
7c83eb6a55bd
fixed greg's crap in win32, enhanced debug stability, implemented preliminary retain
edouard
parents:
453
diff
changeset
|
54 |
buffer = lengthstr + self.OptData |
536 | 55 |
return self.pseudofile.write(buffer) |
453 | 56 |
|
57 |
def GetData(self): |
|
58 |
lengthstr = self.pseudofile.read(4) |
|
59 |
# transform a byte string into length |
|
60 |
length = ctypes.cast(ctypes.c_char_p(lengthstr), ctypes.POINTER(ctypes.c_int)).contents.value |
|
61 |
return self.pseudofile.read(length) |
|
62 |
||
63 |
def ExchangeData(self): |
|
64 |
pass |
|
65 |
||
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
66 |
class IDLETransaction(LPCAppTransaction): |
453 | 67 |
def __init__(self): |
570
46abd6b2f639
LPC application mode IDLE comamnd is now the same as PLCID (0x07)
Edouqrd Tisserant <edouard.tisserant@gmail.com>
parents:
563
diff
changeset
|
68 |
LPCAppTransaction.__init__(self, 0x07) |
46abd6b2f639
LPC application mode IDLE comamnd is now the same as PLCID (0x07)
Edouqrd Tisserant <edouard.tisserant@gmail.com>
parents:
563
diff
changeset
|
69 |
ExchangeData = LPCAppTransaction.GetData |
453 | 70 |
|
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
71 |
class STARTTransaction(LPCAppTransaction): |
453 | 72 |
def __init__(self): |
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
73 |
LPCAppTransaction.__init__(self, 0x01) |
453 | 74 |
|
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
75 |
class STOPTransaction(LPCAppTransaction): |
453 | 76 |
def __init__(self): |
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
77 |
LPCAppTransaction.__init__(self, 0x02) |
453 | 78 |
|
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
79 |
class RESETTransaction(LPCAppTransaction): |
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
80 |
def __init__(self): |
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
81 |
LPCAppTransaction.__init__(self, 0x03) |
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
82 |
|
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
83 |
class SET_TRACE_VARIABLETransaction(LPCAppTransaction): |
453 | 84 |
def __init__(self, data): |
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
85 |
LPCAppTransaction.__init__(self, 0x04, data) |
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
86 |
ExchangeData = LPCAppTransaction.SendData |
453 | 87 |
|
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
88 |
class GET_TRACE_VARIABLETransaction(LPCAppTransaction): |
453 | 89 |
def __init__(self): |
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
90 |
LPCAppTransaction.__init__(self, 0x05) |
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
91 |
ExchangeData = LPCAppTransaction.GetData |
453 | 92 |
|
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
93 |
class GET_PLCIDTransaction(LPCAppTransaction): |
453 | 94 |
def __init__(self): |
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
95 |
LPCAppTransaction.__init__(self, 0x07) |
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
96 |
ExchangeData = LPCAppTransaction.GetData |
453 | 97 |
|
448 | 98 |
if __name__ == "__main__": |
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
570
diff
changeset
|
99 |
__builtins__.BMZ_DBG = True |
545
627e5c636a4f
Refactored LPC connector for new bootloader and application modes
Lolitech
parents:
536
diff
changeset
|
100 |
TestConnection = LPCAppProto(6,115200,2) |
482
7c83eb6a55bd
fixed greg's crap in win32, enhanced debug stability, implemented preliminary retain
edouard
parents:
453
diff
changeset
|
101 |
# TestConnection.HandleTransaction(GET_PLCIDTransaction()) |
453 | 102 |
TestConnection.HandleTransaction(STARTTransaction()) |
482
7c83eb6a55bd
fixed greg's crap in win32, enhanced debug stability, implemented preliminary retain
edouard
parents:
453
diff
changeset
|
103 |
# TestConnection.HandleTransaction(SET_TRACE_VARIABLETransaction( |
7c83eb6a55bd
fixed greg's crap in win32, enhanced debug stability, implemented preliminary retain
edouard
parents:
453
diff
changeset
|
104 |
# "\x03\x00\x00\x00"*200)) |
7c83eb6a55bd
fixed greg's crap in win32, enhanced debug stability, implemented preliminary retain
edouard
parents:
453
diff
changeset
|
105 |
# TestConnection.HandleTransaction(STARTTransaction()) |
508 | 106 |
while True: |
107 |
TestConnection.HandleTransaction(SET_TRACE_VARIABLETransaction( |
|
108 |
"\x01\x00\x00\x00"+ |
|
109 |
"\x04"+ |
|
110 |
"\x01\x02\x02\x04"+ |
|
111 |
"\x01\x00\x00\x00"+ |
|
112 |
"\x08"+ |
|
113 |
"\x01\x02\x02\x04"+ |
|
114 |
"\x01\x02\x02\x04"+ |
|
115 |
"\x01\x00\x00\x00"+ |
|
116 |
"\x04"+ |
|
117 |
"\x01\x02\x02\x04")) |
|
502 | 118 |
#status,res = TestConnection.HandleTransaction(GET_TRACE_VARIABLETransaction()) |
119 |
#print len(res) |
|
120 |
#print "GOT : ", map(hex, map(ord, res)) |
|
453 | 121 |
#TestConnection.HandleTransaction(STOPTransaction()) |