mirror of https://github.com/m-labs/artiq.git
nist_clock: disable spi1/2
This commit is contained in:
parent
7d7a710a56
commit
f2ec8692c0
|
@ -262,7 +262,7 @@ class NIST_CLOCK(_NIST_Ions):
|
||||||
rtio_channels.append(rtio.Channel.from_phy(
|
rtio_channels.append(rtio.Channel.from_phy(
|
||||||
phy, ofifo_depth=4, ififo_depth=4))
|
phy, ofifo_depth=4, ififo_depth=4))
|
||||||
|
|
||||||
for i in range(3):
|
for i in range(1): # spi1 and spi2 collide in pinout with ttl
|
||||||
phy = spi.SPIMaster(self.platform.request("spi", i))
|
phy = spi.SPIMaster(self.platform.request("spi", i))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(
|
rtio_channels.append(rtio.Channel.from_phy(
|
||||||
|
|
|
@ -100,24 +100,12 @@
|
||||||
"class": "SPIMaster",
|
"class": "SPIMaster",
|
||||||
"arguments": {"channel": 22}
|
"arguments": {"channel": 22}
|
||||||
},
|
},
|
||||||
"spi1": {
|
|
||||||
"type": "local",
|
|
||||||
"module": "artiq.coredevice.spi",
|
|
||||||
"class": "SPIMaster",
|
|
||||||
"arguments": {"channel": 23}
|
|
||||||
},
|
|
||||||
"spi2": {
|
|
||||||
"type": "local",
|
|
||||||
"module": "artiq.coredevice.spi",
|
|
||||||
"class": "SPIMaster",
|
|
||||||
"arguments": {"channel": 24}
|
|
||||||
},
|
|
||||||
|
|
||||||
"ttl_clock_la32_p": {
|
"ttl_clock_la32_p": {
|
||||||
"type": "local",
|
"type": "local",
|
||||||
"module": "artiq.coredevice.ttl",
|
"module": "artiq.coredevice.ttl",
|
||||||
"class": "TTLClockGen",
|
"class": "TTLClockGen",
|
||||||
"arguments": {"channel": 25}
|
"arguments": {"channel": 23}
|
||||||
},
|
},
|
||||||
|
|
||||||
"dds_bus": {
|
"dds_bus": {
|
||||||
|
|
Loading…
Reference in New Issue