forked from M-Labs/artiq
1
0
Fork 0

kasli_tester: enable EEPROM for Urukul synchronization

This commit is contained in:
Sebastien Bourdeauducq 2019-03-13 15:35:23 +08:00
parent 04e0c23e78
commit 346299e7f8
1 changed files with 9 additions and 1 deletions

View File

@ -57,6 +57,12 @@ for i in range(8):
# Urukul (EEM1) starting at RTIO channel 12 # Urukul (EEM1) starting at RTIO channel 12
device_db.update( device_db.update(
eeprom_urukul0={
"type": "local",
"module": "artiq.coredevice.kasli_i2c",
"class": "KasliEEPROM",
"arguments": {"port": "EEM1"}
},
spi_urukul0={ spi_urukul0={
"type": "local", "type": "local",
"module": "artiq.coredevice.spi2", "module": "artiq.coredevice.spi2",
@ -122,7 +128,9 @@ for i in range(4):
"pll_n": 32, "pll_n": 32,
"chip_select": 4 + i, "chip_select": 4 + i,
"cpld_device": "urukul0_cpld", "cpld_device": "urukul0_cpld",
"sw_device": "ttl_urukul0_sw" + str(i) "sw_device": "ttl_urukul0_sw" + str(i),
"sync_delay_seed": "eeprom_urukul0:" + str(48 + 4*i),
"io_update_delay": "eeprom_urukul0:" + str(48 + 4*i),
} }
} }