2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 11:18:27 +08:00

eem_7series: pass through kwargs for shuttler

This commit is contained in:
linuswck 2023-10-11 10:07:06 +08:00 committed by Sébastien Bourdeauducq
parent 96941d7c04
commit de41bd6655

View File

@ -141,7 +141,7 @@ def peripheral_shuttler(module, peripheral, **kwargs):
port, port_aux = peripheral["ports"]
else:
raise ValueError("wrong number of ports")
eem.Shuttler.add_std(module, port, port_aux)
eem.Shuttler.add_std(module, port, port_aux, **kwargs)
peripheral_processors = {
"dio": peripheral_dio,