kasli_sysu: fix TTL directions in example device_db

pull/1017/head
Sebastien Bourdeauducq 2018-05-18 16:13:50 +08:00
parent 826a85950b
commit 73f8e61478
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ for i in range(40):
device_db["ttl" + str(i)] = {
"type": "local",
"module": "artiq.coredevice.ttl",
"class": "TTLInOut",
"class": "TTLInOut" if i < 4 else "TTLOut",
"arguments": {"channel": i},
}