forked from M-Labs/artiq
kasli_generic: expose peripheral_processors dictionary. Closes #1403
This commit is contained in:
parent
5211534619
commit
8d61cd8344
|
@ -95,16 +95,18 @@ def peripheral_grabber(module, peripheral):
|
||||||
eem.Grabber.add_std(module, port, port_aux, port_aux2)
|
eem.Grabber.add_std(module, port, port_aux, port_aux2)
|
||||||
|
|
||||||
|
|
||||||
|
peripheral_processors = {
|
||||||
|
"dio": peripheral_dio,
|
||||||
|
"urukul": peripheral_urukul,
|
||||||
|
"novogorny": peripheral_novogorny,
|
||||||
|
"sampler": peripheral_sampler,
|
||||||
|
"suservo": peripheral_suservo,
|
||||||
|
"zotino": peripheral_zotino,
|
||||||
|
"grabber": peripheral_grabber,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
def add_peripherals(module, peripherals):
|
def add_peripherals(module, peripherals):
|
||||||
peripheral_processors = {
|
|
||||||
"dio": peripheral_dio,
|
|
||||||
"urukul": peripheral_urukul,
|
|
||||||
"novogorny": peripheral_novogorny,
|
|
||||||
"sampler": peripheral_sampler,
|
|
||||||
"suservo": peripheral_suservo,
|
|
||||||
"zotino": peripheral_zotino,
|
|
||||||
"grabber": peripheral_grabber,
|
|
||||||
}
|
|
||||||
for peripheral in peripherals:
|
for peripheral in peripherals:
|
||||||
peripheral_processors[peripheral["type"]](module, peripheral)
|
peripheral_processors[peripheral["type"]](module, peripheral)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue