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
87 f=open("/sys/bus/w1/devices/w1_bus_master1/w1_master_search","r+b",0)
\r
92 print "Open Hex File ...",
\r
93 fi=open(sys.argv[1],"r")
\r
95 for l in fi.readlines():
\r
96 sys.stdout.write(".")
\r
101 chsm=bc+(fw>>8)+(fw&0xFF)+ty
\r
102 for i in range(bc):
\r
107 chsm=(chsm+int(l[9+bc*2:11+bc*2],16))&0xFF
\r
109 print "Error Checksum...."
\r
111 #print bc,fw,ty,chsm
\r
115 l=subprocess.check_output("ls /sys/bus/w1/devices/", shell=True)
\r
118 for g in (l.split("\n")):
\r
126 print "No 1-Wire Device found"
\r
128 n=int(raw_input("No. of Device: "))
\r
130 if (n>dc-1)or(n<0):
\r
133 if (s!="a3-55aa55aa55aa"):
\r
134 sys.stdout.write('Go to Flashmode....')
\r
139 for i in range (20):
\r
140 l=subprocess.check_output("ls /sys/bus/w1/devices/", shell=True)
\r
143 sys.stdout.write(".")
\r
145 for g in (l.split("\n")):
\r
146 if (g[0:15]=="a3-55aa55aa55aa"):
\r
148 if (g[0:15]!="a3-55aa55aa55aa"):
\r
150 if (g[0:15]=="a3-55aa55aa55aa"):
\r
153 print "ERROR Enter Flashmode!"
\r
155 f=open("/sys/bus/w1/devices/w1_bus_master1/w1_master_remove","r+b",0)
\r
161 print("Disable Device Search (Wait 15s)")
\r
162 f=open("/sys/bus/w1/devices/w1_bus_master1/w1_master_search","r+b",0)
\r
167 s="a3-55aa55aa55aa"
\r
171 print "Code to big ... Max 7552 Byte (118 Pages)"
\r
174 for i in range(64-(l%64)):
\r
177 pages= len(prog)/64
\r
179 print "Code to big ... Max 7552 Byte (118 Pages)"
\r
183 print "Programm Page (of ", pages,")"
\r
185 for i in range(pages):
\r
186 sys.stdout.write("%i " % (i+1) )
\r
193 mem=[hl,hh]+prog[h:h+64]
\r
196 owcom(s,[0x0F]+mem,0)
\r
197 rmem=owcom(s,[0xAA],66)
\r
202 print "WRITING ERROR ... "
\r
207 owcom(s,[0xB8,hl,hh],0)
\r
209 rmem=owcom(s,[0xAA],66)
\r
211 print "error in flash"
\r
216 print "WRITING ERROR ... "
\r
220 # print "%02X " % (v),
\r
222 print "\nReset AVR"
\r
225 f=open("/sys/bus/w1/devices/w1_bus_master1/w1_master_remove","r+b",0)
\r
226 f.write("a3-55aa55aa55aa")
\r
229 print("Enable Device Search")
\r
230 f=open("/sys/bus/w1/devices/w1_bus_master1/w1_master_search","r+b",0)
\r
240 #for i in range (64):
\r
242 #owcom(s,[0x0F]+mem,0)
\r
243 #rmem=owcom(s,[0xAA],70)
\r
247 #owcom(s,[0xB8,0x00,0x02],0)
\r
249 #rmem=owcom(s,[0xAA],70)
\r
252 # print "%02X " % (v)
\r