examples/master: sync device_db with kc705_nist_clock

This commit is contained in:
Robert Jördens 2018-02-27 19:37:42 +01:00
parent 916b10ca94
commit f97163cdee
1 changed files with 9 additions and 4 deletions

View File

@ -162,7 +162,7 @@ device_db = {
# DAC # DAC
"spi_ams101": { "spi_ams101": {
"type": "local", "type": "local",
"module": "artiq.coredevice.spi", "module": "artiq.coredevice.spi2",
"class": "SPIMaster", "class": "SPIMaster",
"arguments": {"channel": 22} "arguments": {"channel": 22}
}, },
@ -174,7 +174,7 @@ device_db = {
}, },
"spi_zotino": { "spi_zotino": {
"type": "local", "type": "local",
"module": "artiq.coredevice.spi", "module": "artiq.coredevice.spi2",
"class": "SPIMaster", "class": "SPIMaster",
"arguments": {"channel": 30} "arguments": {"channel": 30}
}, },
@ -188,12 +188,17 @@ device_db = {
"type": "local", "type": "local",
"module": "artiq.coredevice.ad5360", "module": "artiq.coredevice.ad5360",
"class": "AD5360", "class": "AD5360",
"arguments": {"spi_device": "spi_zotino", "ldac_device": "ttl_zotino_ldac"} "arguments": {
"spi_device": "spi_zotino",
"ldac_device": "ttl_zotino_ldac",
"div_write": 30,
"div_read": 40
}
}, },
"spi_urukul": { "spi_urukul": {
"type": "local", "type": "local",
"module": "artiq.coredevice.spi", "module": "artiq.coredevice.spi2",
"class": "SPIMaster", "class": "SPIMaster",
"arguments": {"channel": 32} "arguments": {"channel": 32}
}, },