2 # Copyright (c) 2015, Tobias Mueller tm(at)tm3d.de
\r
3 # All rights reserved.
\r
5 # Redistribution and use in source and binary forms, with or without
\r
6 # modification, are permitted provided that the following conditions are
\r
9 # * Redistributions of source code must retain the above copyright
\r
10 # notice, this list of conditions and the following disclaimer.
\r
11 # * Redistributions in binary form must reproduce the above copyright
\r
12 # notice, this list of conditions and the following disclaimer in the
\r
13 # documentation and/or other materials provided with the
\r
15 # * All advertising materials mentioning features or use of this
\r
16 # software must display the following acknowledgement: This product
\r
17 # includes software developed by tm3d.de and its contributors.
\r
18 # * Neither the name of tm3d.de nor the names of its contributors may
\r
19 # be used to endorse or promote products derived from this software
\r
20 # without specific prior written permission.
\r
22 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
\r
23 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
\r
24 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
\r
25 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
\r
26 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
\r
27 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
\r
28 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
\r
29 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
\r
30 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
\r
31 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
\r
32 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\r
41 def owcom(dev,send,rc):
\r
43 f=open("/sys/bus/w1/devices/%s/rw" %(dev),"r+b",0)
\r
44 f.write("".join(map(chr, send)))
\r
46 res=map(ord,f.read(rc))
\r
61 lscrc=(lscrc>>1)^0x8c
\r
68 for c in s.lower()[:]:
\r
69 if not((c) in ['0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f','-']):
\r
84 print "Open Hex File ...",
\r
85 fi=open(sys.argv[1],"r")
\r
87 for l in fi.readlines():
\r
88 sys.stdout.write(".")
\r
93 chsm=bc+(fw>>8)+(fw&0xFF)+ty
\r
99 chsm=(chsm+int(l[9+bc*2:11+bc*2],16))&0xFF
\r
101 print "Error Checksum...."
\r
103 #print bc,fw,ty,chsm
\r
107 l=subprocess.check_output("ls /sys/bus/w1/devices/", shell=True)
\r
110 for g in (l.split("\n")):
\r
117 print "No 1-Wire Device found"
\r
119 n=int(raw_input("No. of Device: "))
\r
121 if (n>dc-1)or(n<0):
\r
124 sys.stdout.write('Go to Flashmode....')
\r
129 for i in range (20):
\r
130 l=subprocess.check_output("ls /sys/bus/w1/devices/", shell=True)
\r
133 sys.stdout.write(".")
\r
135 for g in (l.split("\n")):
\r
136 if (g[0:15]=="a3-55aa55aa55aa"):
\r
138 if (g[0:15]!="a3-55aa55aa55aa"):
\r
140 if (g[0:15]=="a3-55aa55aa55aa"):
\r
143 print "ERROR Enter Flashmode!"
\r
145 f=open("/sys/bus/w1/devices/w1_bus_master1/w1_master_remove","r+b",0)
\r
149 s="a3-55aa55aa55aa"
\r
153 print "Code to big ... Max 7616 Byte (119 Pages)"
\r
156 for i in range(64-(l%64)):
\r
159 pages= len(prog)/64
\r
161 print "Code to big ... Max 7616 Byte (119 Pages)"
\r
165 print "Programm Page (of ", pages,")"
\r
167 for i in range(pages):
\r
168 sys.stdout.write("%i " % (i+1) )
\r
175 mem=[hl,hh]+prog[h:h+64]
\r
178 owcom(s,[0x0F]+mem,0)
\r
179 rmem=owcom(s,[0xAA],66)
\r
184 print "WRITING ERROR ... "
\r
189 owcom(s,[0xB8,hl,hh],0)
\r
191 rmem=owcom(s,[0xAA],66)
\r
193 print "error in flash"
\r
198 print "WRITING ERROR ... "
\r
202 # print "%02X " % (v),
\r
204 print "\nReset AVR"
\r
207 f=open("/sys/bus/w1/devices/w1_bus_master1/w1_master_remove","r+b",0)
\r
208 f.write("a3-55aa55aa55aa")
\r
217 #for i in range (64):
\r
219 #owcom(s,[0x0F]+mem,0)
\r
220 #rmem=owcom(s,[0xAA],70)
\r
224 #owcom(s,[0xB8,0x00,0x02],0)
\r
226 #rmem=owcom(s,[0xAA],70)
\r
229 # print "%02X " % (v)
\r