m2k: Disable AD9963 core RX datapath again
The RX datapath has a lot of things (IQ correction, DC filter, ...) that take up a lot of space which are all not really needed in this project. So disable the RX datapath. It was previously enabled because the ad9963 core did not perform sign-extension on the ADC data signal when the datapath was disabled. But this has now been addressed. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>main
parent
547dc04857
commit
b206f8f37a
|
@ -49,6 +49,7 @@ set_property -dict [list CONFIG.CYCLIC {true}] $pattern_generator_dmac
|
||||||
|
|
||||||
set axi_ad9963 [create_bd_cell -type ip -vlnv analog.com:user:axi_ad9963:1.0 axi_ad9963]
|
set axi_ad9963 [create_bd_cell -type ip -vlnv analog.com:user:axi_ad9963:1.0 axi_ad9963]
|
||||||
set_property -dict [list CONFIG.DAC_DATAPATH_DISABLE {1}] $axi_ad9963
|
set_property -dict [list CONFIG.DAC_DATAPATH_DISABLE {1}] $axi_ad9963
|
||||||
|
set_property -dict [list CONFIG.ADC_DATAPATH_DISABLE {1}] $axi_ad9963
|
||||||
|
|
||||||
set adc_trigger_fifo [create_bd_cell -type ip -vlnv analog.com:user:util_var_fifo:1.0 adc_trigger_fifo]
|
set adc_trigger_fifo [create_bd_cell -type ip -vlnv analog.com:user:util_var_fifo:1.0 adc_trigger_fifo]
|
||||||
set_property -dict [list CONFIG.DATA_WIDTH {32} ] $adc_trigger_fifo
|
set_property -dict [list CONFIG.DATA_WIDTH {32} ] $adc_trigger_fifo
|
||||||
|
|
Loading…
Reference in New Issue