Skip to content

Commit

Permalink
programmer: revert to 0.05 delay in send
Browse files Browse the repository at this point in the history
  • Loading branch information
adumont committed Oct 31, 2021
1 parent de0fc22 commit 83a7c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programmer.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def cmd_send(args):
print("#%04X" % chks, end="")
ser.write( str.encode( "#%04X\r" % chks ) )

sleep(0.02)
sleep(0.05)

b="".join([chr(i) for i in get_response(show=False) ])
b=b.strip()
Expand Down

0 comments on commit 83a7c2d

Please sign in to comment.