资料介绍
Table of Contents
AD-FMCADC4-EBZ FMC Board
Introduction
The EVAL-AD-FMCADC4-EBZ board has been retired, and is no longer available for sale. It has been removed from the HDL and software repository, but is still available in the history.
The EVAL-AD-FMCADC4-EBZ is a high speed four channel data acquisition board featuring two AD9680 dual channel ADC at 1000 MSPS (1240 MSPS) and four ADA4961 ADA4961 low distortion, 3.2 GHz, RF DGA driving each converter. The FMC form factor supports the JESD204B high speed serial interface. All clocking and channel synchronization is provisioned on-board using the AD9528 AD9528 clock generator. This board meets most of the FMC specifications in terms of mechanical size, mounting hole locations etc., for further details, please refer to the FMC specification.
Although this board does meet most of the FMC specifications, it is not meant as a commercial off the shelf (COTS) board. If a commercial, ready to go integrate product is required, please refer to one of the many FMC manufacturers.
ADI also provides reference designs (HDL and software) for this board to work with commonly available Altera and Xilinx development boards.
Hardware
The AD-FMCADC4-EBZ board's primary purpose is to demonstrate the capabilities of the devices on board quickly and easily by providing a seamless interface to an FMC carrier platform and running the reference design on the carrier FPGA. The board is designed to self power and self clock when connected to the FMC carrier. The analog signals (up to four) are connected to J301A, J301B, J301C and J301D. This rapid prototyping board can also be synchronized across channels.
Devices
The FMC board includes the following products by Analog Devices:
- ADA4961 Low Distortion, 3.2 GHz, RF Digital Gain Amplifier.
- AD9528 JESD204B Clock Generator with 14 LVDS Outputs
- ADM7172 6.5 V, 2 A, Ultralow Noise, High PSRR, Fast Transient Response CMOS LDO
- ADP1741 is a 2A, low Vin, low dropout, CMOS linear regulator
Top View
Bottom View
Clocking
The AD-FMCADC4-EBZ includes an on-board 80MHz reference oscillator from Crystek. This feature can be disconnected and an external reference can be applied through J901. When referencing the schematic make sure the proper component changes are made in order to directly route the input into the AD9528.
Analog Front End
The AD-FMCADC4-EBZ uses a passive front end designed for very wide bandwidth. A single ended input needs to be provided to the analog inputs mentioned earlier. A 1:2 impedance ratio broadband balun then converts the input signal differentially to the ADA4961 inputs and has a 1.6GHz bandwidth at -3dB. Each channel amplifier can be adjusted independently in terms of gain.
Revision A
The revision A board supports amplifier gain control via spi. After power-up, the gain of the amplifier defaults to an attenuated state. Use a low jitter, low noise signal source with a level at -20dBm to the analog inputs (J301-A/B/C/D). Apply a signal source no greater than -10dBm to achieve full-scale of the converter when maximum gain of the amplifier is applied.
Running No-OS Application & Changing Sampling Rate to 1.24GHz
The HDL reference design is built around a processor as in an embedded system. You may use either Linux or No-OS software to demonstrate the design (details in the downloads section). In order to run the HDL with the No-OS application, first we need to build the HDL bit file and software elf file.
At the time of this writing, we are using the 'dev' branch for both. The HDL user guide contains the instructions to build the bit file. Please make sure you use the 'dev' branch (checkout dev right after cloning).
Once the bit file is ready, follow these instructions to build the elf file. This assumes you are following our directory structures. If you are not, just get the idea from here and port it to your environment. However you have to figure out things on your own.
- Clone No-OS repository
- Checkout the latest release branch (git checkout branch)hdl release notes
- Change the directory to `fmcadc4/zc706`.
- Make the elf file by running `make` or `make HDF-FILE=
/projects/fmcadc4/zc706/fmcadc4_zc706.sdk/system_top.hdf` - `make run` to download trough JTAG the hdl bitstream and software elf, this will also start the processor
- `make capture` read through the memory debugger the captured samples in RAM. Tha data will be saved in .csv files
If you are more comfortable with the GUI, import all the files (or folders) that the make uses.
A typical run looks like this:
[~/github/noos/ad-fmcadc4-ebz/zc706]> make HDF-FILE=~/github/hdl/projects/fmcadc4/zc706/fmcadc4_zc706.sdk/system_top.hdf xsct -s ../../scripts/xilinx_xsct.tcl ~/github/hdl/projects/fmcadc4/zc706/fmcadc4_zc706.sdk/system_top.hdf >> xilinx_xsct.log 2>&1 arm-xilinx-eabi-gcc -DXILINX -Ibsp/ps7_cortexa9_0/include -I.. -I../../common_drivers/adc_core -I../../common_drivers/jesd204b_gt -I../../common_drivers/jesd204b_v51 -I../../common_drivers/xilinx_platform_drivers -I../../drivers/ad9528 -I../../drivers/ad9680 -Os -ffunction-sections -fdata-sections -o zc706.elf sw/src/platform.c ../ad_fmcadc4_ebz.c ../../common_drivers/adc_core/adc_core.c ../../common_drivers/jesd204b_gt/jesd204b_gt.c ../../common_drivers/jesd204b_v51/jesd204b_v51.c ../../common_drivers/xilinx_platform_drivers/platform_drivers.c ../../drivers/ad9528/ad9528.c ../../drivers/ad9680/ad9680.c -Lbsp/ps7_cortexa9_0/lib/ -Tsw/src/lscript.ld -Wl,--start-group,-lxil,-lgcc,-lc,--end-group [~/github/noos/ad-fmcadc4-ebz/zc706]
Start an UART terminal.
[USB0] port = /dev/ttyUSB0 speed = 115200 bits = 8 stopbits = 1 parity = none crlfauto = True ## if not set, expect non-aligned text [~/github/noos/ad-fmcadc4-ebz/zc706]> gtkterm -c USB0 &
For the `make run` case. You can also run it using Vivado or SDK - up to you.
[~/github/noos/fmcadc4/zc706]> make run make run xsdb ../../../no-OS/scripts/xsdb.tcl ZYNQ_PS7 attempting to launch hw_server Xilinx hw_server v2017.4.1 Build date : Jan 30 2018-15:42:25 Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. INFO: hw_server application started INFO: Use Ctrl-C to exit hw_server application INFO: To connect to this hw_server instance use url: TCP:127.0.0.1:3121 100% 6MB 1.7MB/s 00:03 Downloading Program -- ~/github/noos/fmcadc4/zc706/sw/Release/sw.elf section, .text: 0x00100000 - 0x00113487 section, .init: 0x00113488 - 0x0011349f section, .fini: 0x001134a0 - 0x001134b7 section, .rodata: 0x001134b8 - 0x00114387 section, .data: 0x00114388 - 0x00114de3 section, .eh_frame: 0x00114de4 - 0x00114de7 section, .mmu_tbl: 0x00118000 - 0x0011bfff section, .ARM.exidx: 0x0011c000 - 0x0011c007 section, .init_array: 0x0011c008 - 0x0011c00b section, .fini_array: 0x0011c00c - 0x0011c00f section, .bss: 0x0011c010 - 0x0011c373 section, .heap: 0x0011c374 - 0x0011e37f section, .stack: 0x0011e380 - 0x00121b7f 100% 0MB 0.6MB/s 00:00 Setting PC to Program Start Address 0x00100000 Successfully downloaded ~/github/noos/fmcadc4/zc706/sw/Release/sw.elf
The following messages should appear on the terminal.
QPLL ENABLE Rx link is enabled Measured Link Clock: 250 MHz Link status: DATA SYSREF captured: Yes adc_setup adc core initialized (1000 MHz). adc_setup adc core initialized (1000 MHz). RX capture done.A brief background information on what is happening. Let's look at the No-OS main function. First, it configures and sets the GPIO based on the board.
ad_gpio_set(GPIO_AD9528_STATUS, 0x0); ad_gpio_set(GPIO_AD9528_RSTN, 0x0); // reset ad_gpio_set(GPIO_AD9528_RSTN, 0x1); // bring out of reset
The clock chip is programmed to output the desired clocks and sys-ref signals. The default setting is 1GHz for the AD9680 and 500MHz for the FPGA.
ad9528_setup(&ad9528_spi_device, &ad9528_param);
The transceiver cores are initialized. Here only DRP access is possible. If you are planning to change the transceivers, this is where they should be.
xcvr_setup(&ad9680_xcvr);
The AD9680 devices are initialized (checking the PLL status)
ad9680_setup(&ad9680_0_spi_device, ad9680_0_param); ad9680_setup(&ad9680_1_spi_device, ad9680_1_param);
The design uses ADI's JESD IP- it needs to be programmed to match the device settings (frame count, byte count, scrambling and such).
jesd_setup(ad9680_jesd);
After the above setup, bring the transceivers up, here we check for everything on the link, starting from the PLL locked to SYNC deasserted.
axi_jesd204_rx_status_read(ad9680_jesd);
The individual AD9680 cores are brought out of reset.
adc_setup(ad9680_0_core);
The ADC has a PRBS generator at the sample level that can be monitored in the FPGA. This is a robust way to confirming the link status. The software monitors this and reports any errors.
This is setting the PRBS generator in the device.
ad9680_test(&ad9680_0_spi_device, AD9680_TEST_PN9);
This is setting the PRBS monitors in the FPGA.
adc_pn_mon(ad9680_0_core, ADC_PN9)
If you don't see any other messages in the UART other than the ones mentioned above- all is well.
Here is the ILA plot screen capture
Downloads (Hardware)
Downloads (HDL)
Projects list and dependencies for master
AD40XXFMC
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD40XXFMC | ad40xx_fmc | zcu102 | axi_clkgen |
axi_dmac | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_spi_engine | |||
axi_sysid | |||
spi_engine_execution | |||
spi_engine_interconnect | |||
spi_engine_offload | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc | |||
util_i2c_mixer |
AD5758SDZ
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD5766SDZ | ad5758_sdz | zed | axi_clkgen |
axi_dmac | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc |
AD5766SDZ
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD5766SDZ | ad5766_sdz | zed | axi_ad5766 |
axi_clkgen | |||
axi_dmac | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_spi_engine | |||
axi_sysid | |||
spi_engine_execution | |||
spi_engine_interconnect | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc |
AD6676EVB
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD6676EBZ | ad6676evb | vc707 | ad_ip_jesd204_tpl_adc |
zc706 | axi_ad6676 | ||
axi_adxcvr | |||
axi_clkgen | |||
axi_dmac | |||
axi_hdmi_tx | |||
axi_jesd204_common | |||
axi_jesd204_rx | |||
axi_spdif_tx | |||
axi_sysid | |||
jesd204_common | |||
jesd204_rx | |||
sysid_rom | |||
util_adxcvr | |||
util_axis_fifo | |||
util_cdc |
AD7134FMC
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
NA | ad7134_fmc | zed | axi_clkgen |
axi_dmac | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_spi_engine | |||
axi_sysid | |||
spi_engine_execution | |||
spi_engine_interconnect | |||
spi_engine_offload | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc |
AD738xFMC
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD738xFMC | ad738x_fmc | zed | axi_clkgen |
axi_dmac | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_spi_engine | |||
axi_sysid | |||
spi_engine_execution | |||
spi_engine_interconnect | |||
spi_engine_offload | |||
sysid_rom | |||
util_axis_fifo | |||
util_axis_upscale | |||
util_cdc | |||
util_i2c_mixer |
AD7405FMC
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD7405FMC | ad7405_fmc | zed | axi_clkgen |
axi_dmac | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc | |||
util_dec256sinc24b |
AD7616SDZ
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD7616SDZ | ad7616_sdz | zc706 | axi_ad7616 |
zed | axi_clkgen | ||
axi_dmac | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_spi_engine | |||
axi_sysid | |||
spi_engine_execution | |||
spi_engine_interconnect | |||
spi_engine_offload | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc |
AD77681EVB
AD7768EVB
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD7768EBZ | ad7768evb | zed | axi_clkgen |
axi_dmac | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc |
AD9208DUALEBZ
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
NA | ad9208_dual_ebz | vcu118 | axi_adxcvr |
axi_dmac | |||
axi_jesd204_common | |||
axi_jesd204_rx | |||
axi_sysid | |||
jesd204_common | |||
jesd204_rx | |||
sysid_rom | |||
util_adcfifo | |||
util_adxcvr | |||
util_axis_fifo | |||
util_cdc |
AD9265FMC
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD9265-FMC-125EBZ | ad9265_fmc | zc706 | axi_ad9265 |
axi_clkgen | |||
axi_dmac | |||
axi_hdmi_tx | |||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo |
AD9434FMC
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD9434-FMC-500EBZ | ad9434_fmc | zc706 | axi_ad9434 |
axi_clkgen | |||
axi_dmac | |||
axi_hdmi_tx | |||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo |
AD9467FMC
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD9467-FMC-250EBZ | ad9467_fmc | kc705 | axi_ad9467 |
zed | axi_clkgen | ||
axi_dmac | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc |
AD9739AFMC
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD9739A-FMC-EBZ | ad9739a_fmc | zc706 | axi_ad9739a |
axi_clkgen | |||
axi_dmac | |||
axi_hdmi_tx | |||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo |
ADFMCLIDAR1EBZ
ADAQ7980SDZ
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
ADAQ7980-SDZ | adaq7980_sdz | zed | axi_clkgen |
axi_dmac | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_spi_engine | |||
axi_sysid | |||
spi_engine_execution | |||
spi_engine_interconnect | |||
spi_engine_offload | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc | |||
util_i2c_mixer |
ADRV9008/9
ADRV9009ZU11EG
ADRV9361Z7035
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
ADRV1CRR-BOB | adrv9361z7035 | ccbob_cmos | axi_ad9361 |
ADRV1CRR-BOB | ccbob_lvds | axi_clkgen | |
ADRV1CRR-FMC | ccfmc_lvds | axi_dmac | |
ADRV-PACKRF | ccpackrf_lvds | axi_gpreg | |
NA | axi_hdmi_tx | ||
NA | axi_i2s_adi | ||
axi_spdif_tx | |||
axi_sysid | |||
axi_xcvrlb | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc | |||
util_clkdiv | |||
util_cpack2 | |||
util_rfifo | |||
util_tdd_sync | |||
util_upack2 |
ADRV9364Z7020
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
ADRV1CRR-BOB | adrv9364z7020 | ccbob_cmos | axi_ad9361 |
ADRV1CRR-BOB | ccbob_lvds | axi_dmac | |
ADRV-PACKRF | ccpackrf_lvds | axi_gpreg | |
NA | axi_i2s_adi | ||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc | |||
util_clkdiv | |||
util_cpack2 | |||
util_rfifo | |||
util_tdd_sync | |||
util_upack2 |
ADRV9371
ADV7511OnBoard
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
NA | adv7511 | zc702 | axi_clkgen |
zc706 | axi_dmac | ||
zed | axi_hdmi_tx | ||
axi_i2s_adi | |||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc |
ARRadio
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
ARRadio | arradio | c5soc | axi_ad9361 |
axi_dmac | |||
util_axis_fifo | |||
util_cdc | |||
util_cpack2 | |||
util_rfifo | |||
util_upack2 |
CN0363
CN0506MII
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
CN0506 | cn0506_mii | a10soc | axi_clkgen |
zc706 | axi_dmac | ||
zcu102 | axi_hdmi_tx | ||
zed | axi_i2s_adi | ||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc |
CN0506RGMII
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
CN0506 | cn0506_rgmii | a10soc | axi_clkgen |
zc706 | axi_dmac | ||
zcu102 | axi_hdmi_tx | ||
zed | axi_i2s_adi | ||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc |
DACFMCEBZ
FMCDAQ2
FMCDAQ3
FMCADC2/FMCADC3
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD-FMCADC2-EBZ | fmcadc2 | vc707 | axi_ad9625 |
AD-FMCADC3-EBZ | zc706 | axi_adcfifo | |
axi_adxcvr | |||
axi_clkgen | |||
axi_dmac | |||
axi_hdmi_tx | |||
axi_jesd204_common | |||
axi_jesd204_rx | |||
axi_spdif_tx | |||
axi_sysid | |||
jesd204_common | |||
jesd204_rx | |||
sysid_rom | |||
util_adcfifo | |||
util_adxcvr | |||
util_axis_fifo |
FMCADC5
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD-FMCADC5-EBZ | fmcadc5 | vc707 | axi_ad9625 |
axi_adxcvr | |||
axi_dmac | |||
axi_fmcadc5_sync | |||
axi_jesd204_common | |||
axi_jesd204_rx | |||
axi_sysid | |||
jesd204_common | |||
jesd204_rx | |||
sysid_rom | |||
util_adcfifo | |||
util_adxcvr | |||
util_axis_fifo | |||
util_cdc |
FMCJESDADC1
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD-FMCJESDADC1-EBZ | fmcjesdadc1 | kc705 | ad_ip_jesd204_tpl_adc |
vc707 | axi_ad9250 | ||
zc706 | axi_adxcvr | ||
axi_clkgen | |||
axi_dmac | |||
axi_hdmi_tx | |||
axi_jesd204_common | |||
axi_jesd204_rx | |||
axi_spdif_tx | |||
axi_sysid | |||
jesd204_common | |||
jesd204_rx | |||
sysid_rom | |||
util_adxcvr | |||
util_axis_fifo | |||
util_bsplit | |||
util_cdc |
FMCOMMS11
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD-FMCOMMS11-EBZ | fmcomms11 | zc706 | axi_adcfifo |
axi_adxcvr | |||
axi_clkgen | |||
axi_dmac | |||
axi_hdmi_tx | |||
axi_jesd204_common | |||
axi_jesd204_rx | |||
axi_jesd204_tx | |||
axi_spdif_tx | |||
axi_sysid | |||
jesd204_common | |||
jesd204_rx | |||
jesd204_tx | |||
sysid_rom | |||
util_adxcvr | |||
util_axis_fifo | |||
util_cdc | |||
util_dacfifo |
FMCOMMS2/FMCOMMS3/FMCOMMS4
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD-FMCOMMS2-EBZ | fmcomms2 | kc705 | axi_ad9361 |
AD-FMCOMMS3-EBZ | kcu105 | axi_clkgen | |
AD-FMCOMMS4-EBZ | vc707 | axi_dmac | |
zc702 | axi_hdmi_tx | ||
zc706 | axi_i2s_adi | ||
zcu102 | axi_spdif_tx | ||
zed | axi_sysid | ||
sysid_rom | |||
util_axis_fifo | |||
util_cdc | |||
util_clkdiv | |||
util_cpack2 | |||
util_i2c_mixer | |||
util_rfifo | |||
util_tdd_sync | |||
util_upack2 |
FMCOMMS5
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD-FMCOMMS5-EBZ | fmcomms5 | zc702 | axi_ad9361 |
zc706 | axi_clkgen | ||
zcu102 | axi_dmac | ||
axi_hdmi_tx | |||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc | |||
util_clkdiv | |||
util_cpack2 | |||
util_rfifo | |||
util_upack2 |
FMCIMAGEONG
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AES-FMC-IMAGEON-G | imageon | zed | axi_clkgen |
axi_dmac | |||
axi_hdmi_rx | |||
axi_hdmi_tx | |||
axi_i2s_adi | |||
axi_spdif_rx | |||
axi_spdif_tx | |||
axi_sysid | |||
sysid_rom | |||
util_axis_fifo | |||
util_cdc |
M2K
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
ADALM2000 | m2k | m2k | axi_ad9963 |
axi_adc_decimate | |||
axi_adc_trigger | |||
axi_dac_interpolate | |||
axi_dmac | |||
axi_logic_analyzer | |||
axi_rd_wr_combiner | |||
util_axis_fifo | |||
util_cdc | |||
util_cic |
PLUTO
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
ADALM-PLUTO | pluto | pluto | axi_ad9361 |
axi_dmac | |||
util_axis_fifo | |||
util_cdc | |||
util_cpack2 |
SIDEKIQZ2
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
SIDEKIQ-Z2 | sidekiqz2 | sidekiqz2 | axi_ad9361 |
axi_dmac | |||
util_axis_fifo | |||
util_cdc | |||
util_cpack2 |
USRPE31X
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
USRPE-31X | usrpe31x | usrpe31x | axi_ad9361 |
axi_dmac | |||
util_axis_fifo | |||
util_cdc | |||
util_cpack2 | |||
util_tdd_sync |
AD9656
Hardware | Project | Carriers | Library Cores |
---|---|---|---|
AD9656 | ad9656_fmc | zcu102 | axi_dmac |
axi_sysid | |||
ad_ip_jesd204_tpl_adc | |||
axi_jesd204_rx | |||
jesd204_rx | |||
sysid_rom | |||
util_cpack2 | |||
axi_adxcvr | |||
util_adxcvr |
Help & Support
- The carriers (abbrevations can be found here) are commonly available FPGA evaluation boards.
- The HDL user guide contains all the documentation, build instructions and register map tables.
- The following quick links allows you to browse the github repository for a list of current branches, library components, and projects.
Help & Support
- The carriers (abbrevations can be found here) are commonly available FPGA evaluation boards.
- The HDL user guide contains all the documentation, build instructions and register map tables.
- The following quick links allows you to browse the github repository for a list of current branches, library components, and projects.
Downloads (Linux)
- AD-FMCADC3-EBZ用户指南
- AD9136/AD9135-FMC-EBZ评估板快速入门指南
- AD-FMCOMMS6-EBZ用户指南
- AD-FMCADC7-EBZ FPGA支持信息
- AD-FMCADC7-EBZ FMC板用户指南
- AD-FMCADC3-EBZ参考设计
- UG-1460:AD9671EBZ评估板用户指南
- AD-FMCOMMS4-EBZ用户指南
- AD-FMCOMMS2-EBZ用户指南
- AD-FMCADC3-EBZ FPGA支持信息
- AD-FMCOMMS3-EBZ用户指南
- AD-FMCADC2-EBZ电路板&Xilinx参考设计
- ADS8-V1EBZ评估板用户指南
- AD-FMCOMMS11-EBZ用户指南
- EVAL-CN0522-EBZ用户指南
- GD32 MCU 入门教程】GD32 MCU 常见外设介绍(12)FMC 模块介绍 634次阅读
- 【GD32F470紫藤派开发板使用手册】第四讲 FMC-片内Flash擦写读实验 903次阅读
- 迅为RK3568开发板驱动开发指南-输入子系统 575次阅读
- AN-1006:使用 EVAL-ADUSB2EBZ 1170次阅读
- CPK-RA6M4评估板入门指南(六) 2169次阅读
- CPK-RA6M4评估板入门指南(五) 2256次阅读
- CPK-RA6M4评估板入门指南(四) 1236次阅读
- CPK-RA6M4评估板入门指南(一) 1355次阅读
- Xilinx FPGA的FMC介绍 5643次阅读
- digilent FMC Pcam适配器介绍 2731次阅读
- digilent FMC-HDMI:双HDMI输入扩展子板介绍 4286次阅读
- 关于FPGA的FMC接口的详细介绍 1.1w次阅读
- 基于FPGA 的FMC 接口应用实例 1w次阅读
- stm32案例分享之使D-CACHE时FMC外设运行不正常原因 1w次阅读
- FMC+标准将嵌入式设计推到全新的高度 1945次阅读
下载排行
本周
- 1电子电路原理第七版PDF电子教材免费下载
- 0.00 MB | 1491次下载 | 免费
- 2单片机典型实例介绍
- 18.19 MB | 95次下载 | 1 积分
- 3S7-200PLC编程实例详细资料
- 1.17 MB | 27次下载 | 1 积分
- 4笔记本电脑主板的元件识别和讲解说明
- 4.28 MB | 18次下载 | 4 积分
- 5开关电源原理及各功能电路详解
- 0.38 MB | 11次下载 | 免费
- 6100W短波放大电路图
- 0.05 MB | 4次下载 | 3 积分
- 7基于单片机和 SG3525的程控开关电源设计
- 0.23 MB | 4次下载 | 免费
- 8基于AT89C2051/4051单片机编程器的实验
- 0.11 MB | 4次下载 | 免费
本月
- 1OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234313次下载 | 免费
- 2PADS 9.0 2009最新版 -下载
- 0.00 MB | 66304次下载 | 免费
- 3protel99下载protel99软件下载(中文版)
- 0.00 MB | 51209次下载 | 免费
- 4LabView 8.0 专业版下载 (3CD完整版)
- 0.00 MB | 51043次下载 | 免费
- 5555集成电路应用800例(新编版)
- 0.00 MB | 33562次下载 | 免费
- 6接口电路图大全
- 未知 | 30320次下载 | 免费
- 7Multisim 10下载Multisim 10 中文版
- 0.00 MB | 28588次下载 | 免费
- 8开关电源设计实例指南
- 未知 | 21539次下载 | 免费
总榜
- 1matlab软件下载入口
- 未知 | 935053次下载 | 免费
- 2protel99se软件下载(可英文版转中文版)
- 78.1 MB | 537793次下载 | 免费
- 3MATLAB 7.1 下载 (含软件介绍)
- 未知 | 420026次下载 | 免费
- 4OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234313次下载 | 免费
- 5Altium DXP2002下载入口
- 未知 | 233046次下载 | 免费
- 6电路仿真软件multisim 10.0免费下载
- 340992 | 191183次下载 | 免费
- 7十天学会AVR单片机与C语言视频教程 下载
- 158M | 183277次下载 | 免费
- 8proe5.0野火版下载(中文版免费下载)
- 未知 | 138039次下载 | 免费
评论
查看更多