From: travisutk Date: Sun, 6 Jun 2010 00:23:55 +0000 (+0000) Subject: Test issues. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=200726743676bdd7522a775fe4b99801bce9da51;hp=77e2b7db131ec0ccd0680d3ef0deb4373c160d0d Test issues. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@604 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/client/goodfet.msp430 b/client/goodfet.msp430 index e60733d..0cca0fd 100755 --- a/client/goodfet.msp430 +++ b/client/goodfet.msp430 @@ -89,12 +89,13 @@ if(sys.argv[1]=="selftest"): print "Test not run. Try again."; exit(0); - for i in range(0x3020,0x3030): - ret=client.peek8(i); + for i in range(0x3020,0x3030,2): + ret=client.peek16(i); if ret!=0: errors=errors+1; print "Failure at 0x%04x, returned %02xh." % (i,ret); - if ret==0: + + if errors==0: print "Test succeeded. Board is ready to ship." else: print "Test failed. Is it soldered correctly?"