aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjaseg <git@jaseg.net>2017-12-10 16:12:12 +0100
committerjaseg <git@jaseg.net>2017-12-10 16:12:30 +0100
commit75d4d0f3dff0e388f3df72ffaf551246bc4d3b78 (patch)
treefdec4d0bd5592c96adc4d96d8522a365f0c75657
parent582e6d77861661991cac818f035a1c67a4d92f74 (diff)
download7seg-75d4d0f3dff0e388f3df72ffaf551246bc4d3b78.tar.gz
7seg-75d4d0f3dff0e388f3df72ffaf551246bc4d3b78.tar.bz2
7seg-75d4d0f3dff0e388f3df72ffaf551246bc4d3b78.zip
Prettified the python side of things a bit
-rwxr-xr-xfw/test.py43
1 files changed, 25 insertions, 18 deletions
diff --git a/fw/test.py b/fw/test.py
index dab5482..a552816 100755
--- a/fw/test.py
+++ b/fw/test.py
@@ -50,6 +50,28 @@ def unstuff(data):
def receive_frame(ser):
return unstuff(read_frame(ser))
+def send_framebuffer(ser, mac, frame):
+ formatted = format_packet(frame)
+ mac_packet = struct.pack('<I', mac)
+ framed = frame_packet(mac_packet) + frame_packet(formatted[:162]) + frame_packet(formatted[162:])
+ ser.write(framed)
+
+def discover_macs(ser, count=20):
+ found_macs = []
+ while True:
+ ser.write(b'\0')
+ frame = receive_frame(ser)
+ if len(frame) == 4:
+ mac, = struct.unpack('<I', frame)
+ if mac not in found_macs:
+ print('Discovered new MAC: {:2} {:08x}'.format(len(found_macs), mac))
+ found_macs.append(mac)
+ if len(found_macs) == count:
+ return found_macs
+ elif len(frame) != 0:
+ print('Invalid frame of length {}:'.format(len(frame)), frame)
+ time.sleep(0.05)
+
if __name__ == '__main__':
import argparse
import time
@@ -72,27 +94,12 @@ if __name__ == '__main__':
#frames = [red, black]*5
#frames = [ x for l in [[([0]*i+[255]+[0]*(7-i))*32]*2 for i in range(8)] for x in l ]
- found_macs = set()
- while True:
- ser.write(b'\0')
- frame = receive_frame(ser)
- if len(frame) == 4:
- mac, = struct.unpack('<I', frame)
- if mac not in found_macs:
- found_macs.add(mac)
- print('Discovered new MAC: {:08x}'.format(mac))
- break
- elif len(frame) != 0:
- print('Invalid frame of length {}:'.format(len(frame)), frame)
- time.sleep(0.05)
+ found_macs = discover_macs(ser, 1)
while True:
for i, frame in enumerate(frames):
- formatted = format_packet(frame)
mac, = found_macs
- mac_packet = struct.pack('<I', mac)
- framed = frame_packet(mac_packet) + frame_packet(formatted[:162]) + frame_packet(formatted[162:])
- print('sending', i, len(frame), len(formatted), len(framed))
- ser.write(framed)
+ send_framebuffer(ser, mac, frame)
+ print('sending', i, len(frame))
time.sleep(0.02)
# to produce framing errors: ser.write(b'\02a\0')