From 2c5a79efa59b40153616e1b413aa4e0a85bef902 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 16 Jul 2020 18:38:40 +0800 Subject: [PATCH] examples/device_db: add aliases for ARTIQ test suite --- examples/device_db.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/examples/device_db.py b/examples/device_db.py index 0432395b..fbac672d 100644 --- a/examples/device_db.py +++ b/examples/device_db.py @@ -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", +)