nuttx-apps/examples/serialrx/send.py

21 lines
303 B
Python
Raw Normal View History

2014-04-22 16:40:48 +02:00
import sys
from time import sleep
f = open(sys.argv[1], "w")
s = ""
while len(s) < 960:
s += "1"
print("Sending to %s" % sys.argv[1])
while(True):
#f.write(s);
#f.flush();
for i in range(len(s)):
f.write(s[i])
f.flush()
#sleep(0.050)
sys.stdout.write(".")
sys.stdout.flush()