-
Notifications
You must be signed in to change notification settings - Fork 67
/
hmi_debug.py
79 lines (64 loc) · 1.92 KB
/
hmi_debug.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python3
# SPDX-FileCopyrightText: 2012-2023 MOD Audio UG
# SPDX-License-Identifier: AGPL-3.0-or-later
import sys, tornado, serial, time
from mod.hmi import HMI
from mod.protocol import Protocol
from mod.settings import HMI_BAUD_RATE, HMI_SERIAL_PORT
from tornado import web, options
# Just reset
s = serial.Serial("/dev/ttyS0", 115200)
s.setRTS(1)
s.setDTR(1)
s.setRTS(0)
s.setDTR(0)
time.sleep(5)
fh = open(sys.argv[1])
SEND = 0
ASK = 1
queue = []
for line in fh:
sep = '[hmi] sending -> '
if sep in line:
queue.append((SEND, line.strip().split(sep)[1]))
if "received <- 'banks" in line:
queue.append((ASK, "ENTER BANKS MENU"))
sep = "received <- 'pedalboards "
if sep in line:
pid = int(line.split(sep)[1].split('\\x00')[0])
queue.append((ASK, "ENTER BANK %d" % pid))
sep = "received <- 'pedalboard "
if sep in line:
pid = int(line.split(sep)[1].split()[-1].split('\\x00')[0])
queue.append((ASK, "ENTER PEDALBOARD %d" % pid))
if len(queue) == 0:
print "Nothing to send"
sys.exit(1)
hmi = None
def consume(*args):
if len(queue) == 0:
print "Queue empty"
tornado.ioloop.IOLoop.instance().stop()
action, msg = queue.pop(0)
if action == SEND:
print 'sending %s' % msg
hmi.send(msg, consume)
elif action == ASK:
print msg
def reply(*args):
if len(queue) == 0:
print "Queue empty"
tornado.ioloop.IOLoop.instance().stop()
hmi.send(queue.pop(0)[1])
consume()
Protocol.register_cmd_callback("banks", reply)
Protocol.register_cmd_callback("pedalboards", reply)
Protocol.register_cmd_callback("pedalboard", reply)
def start():
print "pinging"
hmi.ping(consume)
#hmi = HMI(HMI_SERIAL_PORT, HMI_BAUD_RATE, ping)
hmi = HMI(HMI_SERIAL_PORT, HMI_BAUD_RATE, consume)
application = web.Application()
options.parse_command_line()
tornado.ioloop.IOLoop.instance().start()