mirror of https://github.com/m-labs/artiq.git
spi: RTIO_SPI_CHANNEL -> RTIO_FIRST_SPI_CHANNEL
This commit is contained in:
parent
5480099f1b
commit
ad34927b0a
|
@ -259,7 +259,7 @@ class NIST_CLOCK(_NIST_Ions):
|
||||||
|
|
||||||
phy = spi.SPIMaster(spi_pins)
|
phy = spi.SPIMaster(spi_pins)
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
self.config["RTIO_SPI_CHANNEL"] = len(rtio_channels)
|
self.config["RTIO_FIRST_SPI_CHANNEL"] = len(rtio_channels)
|
||||||
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))
|
||||||
|
|
||||||
|
|
|
@ -200,7 +200,7 @@ trce -v 12 -fastpaths -tsi {build_name}.tsi -o {build_name}.twr {build_name}.ncd
|
||||||
spi_pins.cs_n = pmod.d[3:]
|
spi_pins.cs_n = pmod.d[3:]
|
||||||
phy = spi.SPIMaster(spi_pins)
|
phy = spi.SPIMaster(spi_pins)
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
self.config["RTIO_SPI_CHANNEL"] = len(rtio_channels)
|
self.config["RTIO_FIRST_SPI_CHANNEL"] = len(rtio_channels)
|
||||||
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))
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
void spi_write(long long int timestamp, int channel, int addr,
|
void spi_write(long long int timestamp, int channel, int addr,
|
||||||
unsigned int data)
|
unsigned int data)
|
||||||
{
|
{
|
||||||
rtio_chan_sel_write(CONFIG_RTIO_SPI_CHANNEL + channel);
|
rtio_chan_sel_write(CONFIG_RTIO_FIRST_SPI_CHANNEL + channel);
|
||||||
rtio_o_address_write(addr);
|
rtio_o_address_write(addr);
|
||||||
rtio_o_data_write(data);
|
rtio_o_data_write(data);
|
||||||
rtio_o_timestamp_write(timestamp);
|
rtio_o_timestamp_write(timestamp);
|
||||||
|
|
Loading…
Reference in New Issue