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
1 changed files with 1 additions and 1 deletions

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,