X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=client%2Fgoodfet.cc;h=6d8eed120ccd2ce48b7d961cfc9bd0d7e163552d;hb=fc8ff13bd2ee78c191c2442d71715a1b044acc1b;hp=e233d659ceaae5831509687000123c95effca7e6;hpb=ecb9432850549952b9fe14b67fcf6798bbab0261;p=goodfet diff --git a/client/goodfet.cc b/client/goodfet.cc index e233d65..6d8eed1 100755 --- a/client/goodfet.cc +++ b/client/goodfet.cc @@ -115,6 +115,7 @@ if(sys.argv[1]=="flash"): pagelen = 2048; #2kB pages in 32-bit words bcount = 0; + print "Wiping Flash." #Wipe all of flash. client.CCchiperase(); #Wipe the RAM buffer for the next flash page. @@ -133,7 +134,7 @@ if(sys.argv[1]=="flash"): h[i]); bcount+=1; if(i%0x100==0): - print "%04x at %06x" % (i,page); + print "Buffering %04x to %06x" % (i,page); #last page client.CCflashpage(page); print "Flashed final page at %06x" % page;