forked from M-Labs/artiq-zynq
examples/device_db: add aliases for ARTIQ test suite
This commit is contained in:
parent
9528e81bf0
commit
2c5a79efa5
|
@ -40,6 +40,7 @@ device_db = {
|
|||
},
|
||||
}
|
||||
|
||||
# TTLs on QC2 backplane
|
||||
for i in range(40):
|
||||
device_db["ttl" + str(i)] = {
|
||||
"type": "local",
|
||||
|
@ -47,3 +48,11 @@ for i in range(40):
|
|||
"class": "TTLInOut",
|
||||
"arguments": {"channel": 4+i}
|
||||
}
|
||||
|
||||
# for ARTIQ test suite
|
||||
device_db.update(
|
||||
loop_out="ttl0",
|
||||
loop_in="ttl1",
|
||||
ttl_out="ttl2",
|
||||
ttl_out_serdes="ttl2",
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue