forked from M-Labs/artiq
kasli_sysu: fix TTL directions in example device_db
This commit is contained in:
parent
826a85950b
commit
73f8e61478
|
@ -42,7 +42,7 @@ for i in range(40):
|
||||||
device_db["ttl" + str(i)] = {
|
device_db["ttl" + str(i)] = {
|
||||||
"type": "local",
|
"type": "local",
|
||||||
"module": "artiq.coredevice.ttl",
|
"module": "artiq.coredevice.ttl",
|
||||||
"class": "TTLInOut",
|
"class": "TTLInOut" if i < 4 else "TTLOut",
|
||||||
"arguments": {"channel": i},
|
"arguments": {"channel": i},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue