From: Andreas Neiser Date: Mon, 7 Jul 2014 09:04:26 +0000 (+0200) Subject: ADC Addon: Fix CS numbering X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=c285bb61a9ad438b0a8c6b3f11a4cc9d15575cb2;p=trb3.git ADC Addon: Fix CS numbering --- diff --git a/ADC/trb3_periph_adc.vhd b/ADC/trb3_periph_adc.vhd index 9e51e7b..dfadae8 100644 --- a/ADC/trb3_periph_adc.vhd +++ b/ADC/trb3_periph_adc.vhd @@ -589,8 +589,8 @@ THE_SPI_RELOAD : entity work.spi_flash_and_fpga_reload LMK_CLK <= spi_SCK when spi_CS(5 downto 4) /= b"11" else '1' ; LMK_DATA <= spi_SDO when spi_CS(5 downto 4) /= b"11" else '0' ; - LMK_LE_1 <= spi_CS(3); -- active low - LMK_LE_2 <= spi_CS(4); -- active low + LMK_LE_1 <= spi_CS(4); -- active low + LMK_LE_2 <= spi_CS(5); -- active low ---------------------------------------------------------------------------