The USRP FPGA build system requires a UNIX-like environment with the following dependencies
The N200 will work with the WebPack version of ISE.
source <install_dir>/Xilinx/12.2/ISE_DS/settings64.sh (64-bit platform)source <install_dir>/Xilinx/12.2/ISE_DS/settings32.sh (32-bit platform)usrp2/top/{project} where project is:make <target> where the target is specific to each product. To get a list of supported targets run make help.usrp2/top/{project}/build directory. Run make help for more information.build-<target>/u2plus.bit : Configuration bitstream with headerbuild-<target>/u2plus.bin : Configuration bitstream without headerbuild-<target>/u2plus.syr : Xilinx system reportbuild-<target>/u2plus.twr : Xilinx timing reportAs part of the USRP FPGA build-framework, there are several convenient places for users to insert custom DSP modules into the transmit and receive chains.
Each USRP device has a makefile associated with it. This makefile contains all of the necessary build rules. When making a customized FPGA design, start by copying the current makefile for your device. Makefiles can be found in usrp2/top/{product}/Makefile
Edit your new makefile:
CUSTOM_DEFS is a string of space-separate key-value pairs. Set the CUSTOM_DEFS variable so the FPGA fabric glue will substitute your custom modules into the DSP chain.
Example:
CUSTOM_DEFS = "TX_ENG0_MODULE=my_tx_engine RX_ENG0_MODULE=my_rx_engine"
Where my_tx_engine and my_rx_engine are the names of custom verilog modules.
The following module definition keys are possible (X is a DSP number):
TX_ENG<X>_MODULE: Set the module for the transmit chain engine.RX_ENG<X>_MODULE: Set the module for the receive chain engine.RX_DSP<X>_MODULE: Set the module for the transmit dsp chain.TX_DSP<X>_MODULE: Set the module for the receive dsp chain.Examples of custom modules can be found in the Verilog files in usrp2/custom/.