实例介绍
对一段随机的音频信号进行实时频谱分析。从pc获取音频信号,经由PS的fft函数处理后送入OLED,进行音频频谱的实时显示。通过本实例学习vivado+zedboard软硬件设计的方法,学习控制zedboard外设的方法。本文结合以上两篇博文audio&oled的驱动,加上fft处理程序,整合为音频分析仪。本文重点介绍几个模块之间的配合和通信,关于vivado、sdk的基本使用流程见前面的博文。
【实例截图】
【核心代码】
audio_fre_sw
└── audio_fre_sw
├── audo_fre_sw
│ ├── audo_fre_sw.cache
│ │ └── wt
│ │ ├── java_command_handlers.wdf
│ │ ├── project.wpc
│ │ ├── synthesis.wdf
│ │ └── webtalk_pa.xml
│ ├── audo_fre_sw.runs
│ │ ├── impl_1
│ │ │ ├── ISEWrap.js
│ │ │ ├── ISEWrap.sh
│ │ │ ├── gen_run.xml
│ │ │ ├── htr.txt
│ │ │ ├── init_design.pb
│ │ │ ├── opt_design.pb
│ │ │ ├── place_design.pb
│ │ │ ├── project.wdf
│ │ │ ├── route_design.pb
│ │ │ ├── rundef.js
│ │ │ ├── runme.bat
│ │ │ ├── runme.log
│ │ │ ├── runme.sh
│ │ │ ├── system_wrapper.bit
│ │ │ ├── system_wrapper.tcl
│ │ │ ├── system_wrapper.vdi
│ │ │ ├── system_wrapper_clock_utilization_placed.rpt
│ │ │ ├── system_wrapper_control_sets_placed.rpt
│ │ │ ├── system_wrapper_drc_routed.pb
│ │ │ ├── system_wrapper_drc_routed.rpt
│ │ │ ├── system_wrapper_io_placed.rpt
│ │ │ ├── system_wrapper_opt.dcp
│ │ │ ├── system_wrapper_placed.dcp
│ │ │ ├── system_wrapper_power_routed.rpt
│ │ │ ├── system_wrapper_power_summary_routed.pb
│ │ │ ├── system_wrapper_routed.dcp
│ │ │ ├── system_wrapper_timing_summary_routed.pb
│ │ │ ├── system_wrapper_timing_summary_routed.rpt
│ │ │ ├── system_wrapper_utilization_placed.pb
│ │ │ ├── system_wrapper_utilization_placed.rpt
│ │ │ ├── usage_statistics_webtalk.html
│ │ │ ├── usage_statistics_webtalk.xml
│ │ │ ├── vivado.jou
│ │ │ ├── vivado.pb
│ │ │ └── write_bitstream.pb
│ │ └── synth_1
│ │ ├── ISEWrap.js
│ │ ├── ISEWrap.sh
│ │ ├── dont_touch.xdc
│ │ ├── fsm_encoding.os
│ │ ├── gen_run.xml
│ │ ├── htr.txt
│ │ ├── rundef.js
│ │ ├── runme.bat
│ │ ├── runme.log
│ │ ├── runme.sh
│ │ ├── system_wrapper.dcp
│ │ ├── system_wrapper.tcl
│ │ ├── system_wrapper.vds
│ │ ├── system_wrapper_utilization_synth.pb
│ │ ├── system_wrapper_utilization_synth.rpt
│ │ ├── vivado.jou
│ │ └── vivado.pb
│ ├── audo_fre_sw.sdk
│ │ └── SDK
│ │ └── SDK_Export
│ │ ├── RemoteSystemsTempFiles
│ │ ├── SDK.log
│ │ ├── audio_fre_sw
│ │ │ ├── Debug
│ │ │ │ ├── audio_fre_sw.elf
│ │ │ │ ├── audio_fre_sw.elf.size
│ │ │ │ ├── makefile
│ │ │ │ ├── objects.mk
│ │ │ │ ├── sources.mk
│ │ │ │ └── src
│ │ │ │ ├── adau1761.d
│ │ │ │ ├── adau1761.o
│ │ │ │ ├── fft.d
│ │ │ │ ├── fft.o
│ │ │ │ ├── fft_audio.d
│ │ │ │ ├── fft_audio.o
│ │ │ │ ├── oled.d
│ │ │ │ ├── oled.o
│ │ │ │ ├── subdir.mk
│ │ │ │ ├── test_audio.d
│ │ │ │ └── test_audio.o
│ │ │ └── src
│ │ │ ├── README.txt
│ │ │ ├── adau1761.c
│ │ │ ├── adau1761.h
│ │ │ ├── audio.h
│ │ │ ├── fft.c
│ │ │ ├── fft.h
│ │ │ ├── fft_audio.c
│ │ │ ├── fft_audio.h
│ │ │ ├── font.h
│ │ │ ├── lscript.ld
│ │ │ ├── oled.c
│ │ │ ├── oled.h
│ │ │ └── test_audio.c
│ │ ├── audio_fre_sw_bsp
│ │ │ ├── Makefile
│ │ │ ├── ps7_cortexa9_0
│ │ │ │ ├── include
│ │ │ │ │ ├── _profile_timer_hw.h
│ │ │ │ │ ├── bspconfig.h
│ │ │ │ │ ├── mblaze_nt_types.h
│ │ │ │ │ ├── oled_ip.h
│ │ │ │ │ ├── profile.h
│ │ │ │ │ ├── sleep.h
│ │ │ │ │ ├── smc.h
│ │ │ │ │ ├── vectors.h
│ │ │ │ │ ├── xadcps.h
│ │ │ │ │ ├── xadcps_hw.h
│ │ │ │ │ ├── xbasic_types.h
│ │ │ │ │ ├── xcpu_cortexa9.h
│ │ │ │ │ ├── xdebug.h
│ │ │ │ │ ├── xdevcfg.h
│ │ │ │ │ ├── xdevcfg_hw.h
│ │ │ │ │ ├── xdmaps.h
│ │ │ │ │ ├── xdmaps_hw.h
│ │ │ │ │ ├── xemacps.h
│ │ │ │ │ ├── xemacps_bd.h
│ │ │ │ │ ├── xemacps_bdring.h
│ │ │ │ │ ├── xemacps_hw.h
│ │ │ │ │ ├── xenv.h
│ │ │ │ │ ├── xenv_standalone.h
│ │ │ │ │ ├── xgpio.h
│ │ │ │ │ ├── xgpio_l.h
│ │ │ │ │ ├── xgpiops.h
│ │ │ │ │ ├── xgpiops_hw.h
│ │ │ │ │ ├── xiicps.h
│ │ │ │ │ ├── xiicps_hw.h
│ │ │ │ │ ├── xil_assert.h
│ │ │ │ │ ├── xil_cache.h
│ │ │ │ │ ├── xil_cache_l.h
│ │ │ │ │ ├── xil_cache_vxworks.h
│ │ │ │ │ ├── xil_errata.h
│ │ │ │ │ ├── xil_exception.h
│ │ │ │ │ ├── xil_hal.h
│ │ │ │ │ ├── xil_io.h
│ │ │ │ │ ├── xil_macroback.h
│ │ │ │ │ ├── xil_misc_psreset_api.h
│ │ │ │ │ ├── xil_mmu.h
│ │ │ │ │ ├── xil_printf.h
│ │ │ │ │ ├── xil_testcache.h
│ │ │ │ │ ├── xil_testio.h
│ │ │ │ │ ├── xil_testmem.h
│ │ │ │ │ ├── xil_types.h
│ │ │ │ │ ├── xl2cc.h
│ │ │ │ │ ├── xl2cc_counter.h
│ │ │ │ │ ├── xparameters.h
│ │ │ │ │ ├── xparameters_ps.h
│ │ │ │ │ ├── xpm_counter.h
│ │ │ │ │ ├── xpseudo_asm.h
│ │ │ │ │ ├── xpseudo_asm_gcc.h
│ │ │ │ │ ├── xqspips.h
│ │ │ │ │ ├── xqspips_hw.h
│ │ │ │ │ ├── xreg_cortexa9.h
│ │ │ │ │ ├── xscugic.h
│ │ │ │ │ ├── xscugic_hw.h
│ │ │ │ │ ├── xscutimer.h
│ │ │ │ │ ├── xscutimer_hw.h
│ │ │ │ │ ├── xscuwdt.h
│ │ │ │ │ ├── xscuwdt_hw.h
│ │ │ │ │ ├── xsdps.h
│ │ │ │ │ ├── xsdps_hw.h
│ │ │ │ │ ├── xstatus.h
│ │ │ │ │ ├── xtime_l.h
│ │ │ │ │ ├── xttcps.h
│ │ │ │ │ ├── xttcps_hw.h
│ │ │ │ │ ├── xuartps.h
│ │ │ │ │ ├── xuartps_hw.h
│ │ │ │ │ ├── xusbps.h
│ │ │ │ │ ├── xusbps_endpoint.h
│ │ │ │ │ └── xusbps_hw.h
│ │ │ │ ├── lib
│ │ │ │ │ └── libxil.a
│ │ │ │ └── libsrc
│ │ │ │ ├── cpu_cortexa9_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ └── xcpu_cortexa9.h
│ │ │ │ ├── devcfg_v3_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xdevcfg.c
│ │ │ │ │ ├── xdevcfg.h
│ │ │ │ │ ├── xdevcfg_g.c
│ │ │ │ │ ├── xdevcfg_hw.c
│ │ │ │ │ ├── xdevcfg_hw.h
│ │ │ │ │ ├── xdevcfg_intr.c
│ │ │ │ │ ├── xdevcfg_selftest.c
│ │ │ │ │ └── xdevcfg_sinit.c
│ │ │ │ ├── dmaps_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xdmaps.c
│ │ │ │ │ ├── xdmaps.h
│ │ │ │ │ ├── xdmaps_g.c
│ │ │ │ │ ├── xdmaps_hw.c
│ │ │ │ │ ├── xdmaps_hw.h
│ │ │ │ │ ├── xdmaps_selftest.c
│ │ │ │ │ └── xdmaps_sinit.c
│ │ │ │ ├── emacps_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xemacps.c
│ │ │ │ │ ├── xemacps.h
│ │ │ │ │ ├── xemacps_bd.h
│ │ │ │ │ ├── xemacps_bdring.c
│ │ │ │ │ ├── xemacps_bdring.h
│ │ │ │ │ ├── xemacps_control.c
│ │ │ │ │ ├── xemacps_g.c
│ │ │ │ │ ├── xemacps_hw.c
│ │ │ │ │ ├── xemacps_hw.h
│ │ │ │ │ ├── xemacps_intr.c
│ │ │ │ │ └── xemacps_sinit.c
│ │ │ │ ├── gpio_v4_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xgpio.c
│ │ │ │ │ ├── xgpio.h
│ │ │ │ │ ├── xgpio_extra.c
│ │ │ │ │ ├── xgpio_g.c
│ │ │ │ │ ├── xgpio_i.h
│ │ │ │ │ ├── xgpio_intr.c
│ │ │ │ │ ├── xgpio_l.h
│ │ │ │ │ ├── xgpio_selftest.c
│ │ │ │ │ └── xgpio_sinit.c
│ │ │ │ ├── gpiops_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xgpiops.c
│ │ │ │ │ ├── xgpiops.h
│ │ │ │ │ ├── xgpiops_g.c
│ │ │ │ │ ├── xgpiops_hw.c
│ │ │ │ │ ├── xgpiops_hw.h
│ │ │ │ │ ├── xgpiops_intr.c
│ │ │ │ │ ├── xgpiops_selftest.c
│ │ │ │ │ └── xgpiops_sinit.c
│ │ │ │ ├── iicps_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xiicps.c
│ │ │ │ │ ├── xiicps.h
│ │ │ │ │ ├── xiicps_g.c
│ │ │ │ │ ├── xiicps_hw.c
│ │ │ │ │ ├── xiicps_hw.h
│ │ │ │ │ ├── xiicps_intr.c
│ │ │ │ │ ├── xiicps_master.c
│ │ │ │ │ ├── xiicps_options.c
│ │ │ │ │ ├── xiicps_selftest.c
│ │ │ │ │ ├── xiicps_sinit.c
│ │ │ │ │ └── xiicps_slave.c
│ │ │ │ ├── oled_ip_v1_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── oled_ip.c
│ │ │ │ │ ├── oled_ip.h
│ │ │ │ │ └── oled_ip_selftest.c
│ │ │ │ ├── qspips_v3_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xqspips.c
│ │ │ │ │ ├── xqspips.h
│ │ │ │ │ ├── xqspips_g.c
│ │ │ │ │ ├── xqspips_hw.c
│ │ │ │ │ ├── xqspips_hw.h
│ │ │ │ │ ├── xqspips_options.c
│ │ │ │ │ ├── xqspips_selftest.c
│ │ │ │ │ └── xqspips_sinit.c
│ │ │ │ ├── scugic_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xscugic.c
│ │ │ │ │ ├── xscugic.h
│ │ │ │ │ ├── xscugic_g.c
│ │ │ │ │ ├── xscugic_hw.c
│ │ │ │ │ ├── xscugic_hw.h
│ │ │ │ │ ├── xscugic_intr.c
│ │ │ │ │ ├── xscugic_selftest.c
│ │ │ │ │ └── xscugic_sinit.c
│ │ │ │ ├── scutimer_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xscutimer.c
│ │ │ │ │ ├── xscutimer.h
│ │ │ │ │ ├── xscutimer_g.c
│ │ │ │ │ ├── xscutimer_hw.h
│ │ │ │ │ ├── xscutimer_selftest.c
│ │ │ │ │ └── xscutimer_sinit.c
│ │ │ │ ├── scuwdt_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xscuwdt.c
│ │ │ │ │ ├── xscuwdt.h
│ │ │ │ │ ├── xscuwdt_g.c
│ │ │ │ │ ├── xscuwdt_hw.h
│ │ │ │ │ ├── xscuwdt_selftest.c
│ │ │ │ │ └── xscuwdt_sinit.c
│ │ │ │ ├── sdps_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xsdps.c
│ │ │ │ │ ├── xsdps.h
│ │ │ │ │ ├── xsdps_g.c
│ │ │ │ │ ├── xsdps_hw.h
│ │ │ │ │ ├── xsdps_options.c
│ │ │ │ │ └── xsdps_sinit.c
│ │ │ │ ├── standalone_v4_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── _exit.c
│ │ │ │ │ ├── _exit.o
│ │ │ │ │ ├── _open.c
│ │ │ │ │ ├── _open.o
│ │ │ │ │ ├── _sbrk.c
│ │ │ │ │ ├── _sbrk.o
│ │ │ │ │ ├── abort.c
│ │ │ │ │ ├── abort.o
│ │ │ │ │ ├── asm_vectors.S
│ │ │ │ │ ├── asm_vectors.o
│ │ │ │ │ ├── boot.S
│ │ │ │ │ ├── boot.o
│ │ │ │ │ ├── bspconfig.h
│ │ │ │ │ ├── changelog.txt
│ │ │ │ │ ├── close.c
│ │ │ │ │ ├── close.o
│ │ │ │ │ ├── config.make
│ │ │ │ │ ├── cpu_init.S
│ │ │ │ │ ├── cpu_init.o
│ │ │ │ │ ├── errno.c
│ │ │ │ │ ├── errno.o
│ │ │ │ │ ├── fcntl.c
│ │ │ │ │ ├── fcntl.o
│ │ │ │ │ ├── fstat.c
│ │ │ │ │ ├── fstat.o
│ │ │ │ │ ├── getpid.c
│ │ │ │ │ ├── getpid.o
│ │ │ │ │ ├── inbyte.c
│ │ │ │ │ ├── inbyte.o
│ │ │ │ │ ├── isatty.c
│ │ │ │ │ ├── isatty.o
│ │ │ │ │ ├── kill.c
│ │ │ │ │ ├── kill.o
│ │ │ │ │ ├── lseek.c
│ │ │ │ │ ├── lseek.o
│ │ │ │ │ ├── open.c
│ │ │ │ │ ├── open.o
│ │ │ │ │ ├── outbyte.c
│ │ │ │ │ ├── outbyte.o
│ │ │ │ │ ├── print.c
│ │ │ │ │ ├── print.o
│ │ │ │ │ ├── profile
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── _profile_clean.c
│ │ │ │ │ │ ├── _profile_init.c
│ │ │ │ │ │ ├── _profile_timer_hw.c
│ │ │ │ │ │ ├── _profile_timer_hw.h
│ │ │ │ │ │ ├── dummy.S
│ │ │ │ │ │ ├── mblaze_nt_types.h
│ │ │ │ │ │ ├── profile.h
│ │ │ │ │ │ ├── profile_cg.c
│ │ │ │ │ │ ├── profile_config.h
│ │ │ │ │ │ ├── profile_hist.c
│ │ │ │ │ │ ├── profile_mcount_arm.S
│ │ │ │ │ │ ├── profile_mcount_mb.S
│ │ │ │ │ │ └── profile_mcount_ppc.S
│ │ │ │ │ ├── putnum.c
│ │ │ │ │ ├── putnum.o
│ │ │ │ │ ├── read.c
│ │ │ │ │ ├── read.o
│ │ │ │ │ ├── sbrk.c
│ │ │ │ │ ├── sbrk.o
│ │ │ │ │ ├── sleep.c
│ │ │ │ │ ├── sleep.h
│ │ │ │ │ ├── sleep.o
│ │ │ │ │ ├── smc.c
│ │ │ │ │ ├── smc.h
│ │ │ │ │ ├── smc.o
│ │ │ │ │ ├── translation_table.o
│ │ │ │ │ ├── translation_table.s
│ │ │ │ │ ├── uart.c
│ │ │ │ │ ├── uart.o
│ │ │ │ │ ├── unlink.c
│ │ │ │ │ ├── unlink.o
│ │ │ │ │ ├── usleep.c
│ │ │ │ │ ├── usleep.o
│ │ │ │ │ ├── vectors.c
│ │ │ │ │ ├── vectors.h
│ │ │ │ │ ├── vectors.o
│ │ │ │ │ ├── write.c
│ │ │ │ │ ├── write.o
│ │ │ │ │ ├── xbasic_types.h
│ │ │ │ │ ├── xdebug.h
│ │ │ │ │ ├── xenv.h
│ │ │ │ │ ├── xenv_standalone.h
│ │ │ │ │ ├── xil-crt0.S
│ │ │ │ │ ├── xil-crt0.o
│ │ │ │ │ ├── xil_assert.c
│ │ │ │ │ ├── xil_assert.h
│ │ │ │ │ ├── xil_assert.o
│ │ │ │ │ ├── xil_cache.c
│ │ │ │ │ ├── xil_cache.h
│ │ │ │ │ ├── xil_cache.o
│ │ │ │ │ ├── xil_cache_l.h
│ │ │ │ │ ├── xil_cache_vxworks.h
│ │ │ │ │ ├── xil_errata.h
│ │ │ │ │ ├── xil_exception.c
│ │ │ │ │ ├── xil_exception.h
│ │ │ │ │ ├── xil_exception.o
│ │ │ │ │ ├── xil_hal.h
│ │ │ │ │ ├── xil_io.c
│ │ │ │ │ ├── xil_io.h
│ │ │ │ │ ├── xil_io.o
│ │ │ │ │ ├── xil_macroback.h
│ │ │ │ │ ├── xil_misc_psreset_api.c
│ │ │ │ │ ├── xil_misc_psreset_api.h
│ │ │ │ │ ├── xil_misc_psreset_api.o
│ │ │ │ │ ├── xil_mmu.c
│ │ │ │ │ ├── xil_mmu.h
│ │ │ │ │ ├── xil_mmu.o
│ │ │ │ │ ├── xil_printf.c
│ │ │ │ │ ├── xil_printf.h
│ │ │ │ │ ├── xil_printf.o
│ │ │ │ │ ├── xil_testcache.c
│ │ │ │ │ ├── xil_testcache.h
│ │ │ │ │ ├── xil_testcache.o
│ │ │ │ │ ├── xil_testio.c
│ │ │ │ │ ├── xil_testio.h
│ │ │ │ │ ├── xil_testio.o
│ │ │ │ │ ├── xil_testmem.c
│ │ │ │ │ ├── xil_testmem.h
│ │ │ │ │ ├── xil_testmem.o
│ │ │ │ │ ├── xil_types.h
│ │ │ │ │ ├── xl2cc.h
│ │ │ │ │ ├── xl2cc_counter.c
│ │ │ │ │ ├── xl2cc_counter.h
│ │ │ │ │ ├── xl2cc_counter.o
│ │ │ │ │ ├── xparameters_ps.h
│ │ │ │ │ ├── xpm_counter.c
│ │ │ │ │ ├── xpm_counter.h
│ │ │ │ │ ├── xpm_counter.o
│ │ │ │ │ ├── xpseudo_asm.h
│ │ │ │ │ ├── xpseudo_asm_gcc.h
│ │ │ │ │ ├── xreg_cortexa9.h
│ │ │ │ │ ├── xstatus.h
│ │ │ │ │ ├── xtime_l.c
│ │ │ │ │ ├── xtime_l.h
│ │ │ │ │ └── xtime_l.o
│ │ │ │ ├── ttcps_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xttcps.c
│ │ │ │ │ ├── xttcps.h
│ │ │ │ │ ├── xttcps_g.c
│ │ │ │ │ ├── xttcps_hw.h
│ │ │ │ │ ├── xttcps_options.c
│ │ │ │ │ ├── xttcps_selftest.c
│ │ │ │ │ └── xttcps_sinit.c
│ │ │ │ ├── uartps_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xuartps.c
│ │ │ │ │ ├── xuartps.h
│ │ │ │ │ ├── xuartps_g.c
│ │ │ │ │ ├── xuartps_hw.c
│ │ │ │ │ ├── xuartps_hw.h
│ │ │ │ │ ├── xuartps_intr.c
│ │ │ │ │ ├── xuartps_options.c
│ │ │ │ │ ├── xuartps_selftest.c
│ │ │ │ │ └── xuartps_sinit.c
│ │ │ │ ├── usbps_v2_0
│ │ │ │ │ └── src
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── xusbps.c
│ │ │ │ │ ├── xusbps.h
│ │ │ │ │ ├── xusbps_endpoint.c
│ │ │ │ │ ├── xusbps_endpoint.h
│ │ │ │ │ ├── xusbps_g.c
│ │ │ │ │ ├── xusbps_hw.c
│ │ │ │ │ ├── xusbps_hw.h
│ │ │ │ │ ├── xusbps_intr.c
│ │ │ │ │ └── xusbps_sinit.c
│ │ │ │ └── xadcps_v2_0
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xadcps.c
│ │ │ │ ├── xadcps.h
│ │ │ │ ├── xadcps_g.c
│ │ │ │ ├── xadcps_hw.h
│ │ │ │ ├── xadcps_intr.c
│ │ │ │ ├── xadcps_selftest.c
│ │ │ │ └── xadcps_sinit.c
│ │ │ └── system.mss
│ │ ├── hw
│ │ │ ├── ps7_init.c
│ │ │ ├── ps7_init.h
│ │ │ ├── ps7_init.html
│ │ │ ├── ps7_init.tcl
│ │ │ ├── system.xml
│ │ │ └── system_wrapper.bit
│ │ └── hw_platform_0
│ │ ├── ps7_init.c
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ ├── system.xml
│ │ └── system_wrapper.bit
│ ├── audo_fre_sw.srcs
│ │ ├── constrs_1
│ │ │ └── imports
│ │ │ └── src
│ │ │ ├── oled.xdc
│ │ │ └── zed_audio_constraints.xdc
│ │ └── sources_1
│ │ ├── bd
│ │ │ └── system
│ │ │ ├── hdl
│ │ │ │ ├── system.v
│ │ │ │ └── system_wrapper.v
│ │ │ ├── ip
│ │ │ │ ├── system_auto_pc_0
│ │ │ │ │ ├── axi_protocol_converter_v2_1
│ │ │ │ │ │ └── doc
│ │ │ │ │ │ └── axi_protocol_converter_v2_1_changelog.txt
│ │ │ │ │ ├── sim
│ │ │ │ │ │ └── system_auto_pc_0.v
│ │ │ │ │ ├── synth
│ │ │ │ │ │ └── system_auto_pc_0.v
│ │ │ │ │ ├── system_auto_pc_0.veo
│ │ │ │ │ ├── system_auto_pc_0.xci
│ │ │ │ │ ├── system_auto_pc_0.xml
│ │ │ │ │ └── system_auto_pc_0_ooc.xdc
│ │ │ │ ├── system_axi_gpio_0_0
│ │ │ │ │ ├── doc
│ │ │ │ │ │ └── axi_gpio_v2_0_changelog.txt
│ │ │ │ │ ├── sim
│ │ │ │ │ │ └── system_axi_gpio_0_0.vhd
│ │ │ │ │ ├── synth
│ │ │ │ │ │ └── system_axi_gpio_0_0.vhd
│ │ │ │ │ ├── system_axi_gpio_0_0.veo
│ │ │ │ │ ├── system_axi_gpio_0_0.xci
│ │ │ │ │ ├── system_axi_gpio_0_0.xdc
│ │ │ │ │ ├── system_axi_gpio_0_0.xml
│ │ │ │ │ ├── system_axi_gpio_0_0_board.xdc
│ │ │ │ │ └── system_axi_gpio_0_0_ooc.xdc
│ │ │ │ ├── system_oled_ip_0_0
│ │ │ │ │ ├── sim
│ │ │ │ │ │ └── system_oled_ip_0_0.v
│ │ │ │ │ ├── synth
│ │ │ │ │ │ └── system_oled_ip_0_0.v
│ │ │ │ │ ├── system_oled_ip_0_0.veo
│ │ │ │ │ ├── system_oled_ip_0_0.xci
│ │ │ │ │ └── system_oled_ip_0_0.xml
│ │ │ │ ├── system_processing_system7_0_0
│ │ │ │ │ ├── doc
│ │ │ │ │ │ └── processing_system7_v5_4_changelog.txt
│ │ │ │ │ ├── hdl
│ │ │ │ │ │ └── verilog
│ │ │ │ │ │ └── processing_system7_v5_4_processing_system7.v
│ │ │ │ │ ├── ps7_init.c
│ │ │ │ │ ├── ps7_init.h
│ │ │ │ │ ├── ps7_init.html
│ │ │ │ │ ├── ps7_init.tcl
│ │ │ │ │ ├── ps7_parameters.xml
│ │ │ │ │ ├── ps_clock_registers.log
│ │ │ │ │ ├── sim
│ │ │ │ │ │ └── system_processing_system7_0_0.v
│ │ │ │ │ ├── synth
│ │ │ │ │ │ └── system_processing_system7_0_0.v
│ │ │ │ │ ├── system_processing_system7_0_0.veo
│ │ │ │ │ ├── system_processing_system7_0_0.xci
│ │ │ │ │ ├── system_processing_system7_0_0.xdc
│ │ │ │ │ └── system_processing_system7_0_0.xml
│ │ │ │ ├── system_processing_system7_0_axi_periph_0
│ │ │ │ │ ├── system_processing_system7_0_axi_periph_0.xci
│ │ │ │ │ └── system_processing_system7_0_axi_periph_0.xml
│ │ │ │ ├── system_rst_processing_system7_0_100M_0
│ │ │ │ │ ├── doc
│ │ │ │ │ │ └── proc_sys_reset_v5_0_changelog.txt
│ │ │ │ │ ├── sim
│ │ │ │ │ │ └── system_rst_processing_system7_0_100M_0.vhd
│ │ │ │ │ ├── synth
│ │ │ │ │ │ └── system_rst_processing_system7_0_100M_0.vhd
│ │ │ │ │ ├── system_rst_processing_system7_0_100M_0.veo
│ │ │ │ │ ├── system_rst_processing_system7_0_100M_0.xci
│ │ │ │ │ ├── system_rst_processing_system7_0_100M_0.xdc
│ │ │ │ │ ├── system_rst_processing_system7_0_100M_0.xml
│ │ │ │ │ ├── system_rst_processing_system7_0_100M_0_board.xdc
│ │ │ │ │ └── system_rst_processing_system7_0_100M_0_ooc.xdc
│ │ │ │ ├── system_xbar_0
│ │ │ │ │ ├── axi_crossbar_v2_1
│ │ │ │ │ │ └── doc
│ │ │ │ │ │ └── axi_crossbar_v2_1_changelog.txt
│ │ │ │ │ ├── sim
│ │ │ │ │ │ └── system_xbar_0.v
│ │ │ │ │ ├── synth
│ │ │ │ │ │ └── system_xbar_0.v
│ │ │ │ │ ├── system_xbar_0.veo
│ │ │ │ │ ├── system_xbar_0.xci
│ │ │ │ │ ├── system_xbar_0.xml
│ │ │ │ │ └── system_xbar_0_ooc.xdc
│ │ │ │ └── system_zed_audio_ctrl_0_0
│ │ │ │ ├── sim
│ │ │ │ │ └── system_zed_audio_ctrl_0_0.vhd
│ │ │ │ ├── synth
│ │ │ │ │ └── system_zed_audio_ctrl_0_0.vhd
│ │ │ │ ├── system_zed_audio_ctrl_0_0.veo
│ │ │ │ ├── system_zed_audio_ctrl_0_0.xci
│ │ │ │ └── system_zed_audio_ctrl_0_0.xml
│ │ │ ├── system.bd
│ │ │ ├── system.bxml
│ │ │ ├── system_ooc.xdc
│ │ │ └── ui
│ │ │ └── bd_c954508f.ui
│ │ └── ipshared
│ │ └── xilinx.com
│ │ ├── axi_crossbar_v2_1
│ │ │ └── 2e81f3ad
│ │ │ └── hdl
│ │ │ └── verilog
│ │ │ ├── axi_crossbar_v2_1_addr_arbiter.v
│ │ │ ├── axi_crossbar_v2_1_addr_arbiter_sasd.v
│ │ │ ├── axi_crossbar_v2_1_addr_decoder.v
│ │ │ ├── axi_crossbar_v2_1_arbiter_resp.v
│ │ │ ├── axi_crossbar_v2_1_axi_crossbar.v
│ │ │ ├── axi_crossbar_v2_1_crossbar.v
│ │ │ ├── axi_crossbar_v2_1_crossbar_sasd.v
│ │ │ ├── axi_crossbar_v2_1_decerr_slave.v
│ │ │ ├── axi_crossbar_v2_1_si_transactor.v
│ │ │ ├── axi_crossbar_v2_1_splitter.v
│ │ │ ├── axi_crossbar_v2_1_wdata_mux.v
│ │ │ └── axi_crossbar_v2_1_wdata_router.v
│ │ ├── axi_data_fifo_v2_1
│ │ │ └── fcdb10ca
│ │ │ └── hdl
│ │ │ └── verilog
│ │ │ ├── axi_data_fifo_v2_1_axi_data_fifo.v
│ │ │ ├── axi_data_fifo_v2_1_axic_fifo.v
│ │ │ ├── axi_data_fifo_v2_1_axic_reg_srl_fifo.v
│ │ │ ├── axi_data_fifo_v2_1_axic_srl_fifo.v
│ │ │ ├── axi_data_fifo_v2_1_fifo_gen.v
│ │ │ └── axi_data_fifo_v2_1_ndeep_srl.v
│ │ ├── axi_gpio_v2_0
│ │ │ └── 5a4a6737
│ │ │ └── hdl
│ │ │ └── src
│ │ │ └── vhdl
│ │ │ ├── axi_gpio.vhd
│ │ │ └── gpio_core.vhd
│ │ ├── axi_infrastructure_v1_1
│ │ │ └── e13550d2
│ │ │ └── hdl
│ │ │ └── verilog
│ │ │ ├── axi_infrastructure_v1_1_axi2vector.v
│ │ │ ├── axi_infrastructure_v1_1_axic_srl_fifo.v
│ │ │ ├── axi_infrastructure_v1_1_header.vh
│ │ │ └── axi_infrastructure_v1_1_vector2axi.v
│ │ ├── axi_lite_ipif_v2_0
│ │ │ └── 82c7a66d
│ │ │ └── hdl
│ │ │ └── src
│ │ │ └── vhdl
│ │ │ ├── address_decoder.vhd
│ │ │ ├── axi_lite_ipif.vhd
│ │ │ └── slave_attachment.vhd
│ │ ├── axi_protocol_converter_v2_1
│ │ │ └── fcff1c57
│ │ │ └── hdl
│ │ │ └── verilog
│ │ │ ├── axi_protocol_converter_v2_1_a_axi3_conv.v
│ │ │ ├── axi_protocol_converter_v2_1_axi3_conv.v
│ │ │ ├── axi_protocol_converter_v2_1_axi_protocol_converter.v
│ │ │ ├── axi_protocol_converter_v2_1_axilite_conv.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s_ar_channel.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s_aw_channel.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s_b_channel.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s_cmd_translator.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s_incr_cmd.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s_r_channel.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s_rd_cmd_fsm.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s_simple_fifo.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s_wr_cmd_fsm.v
│ │ │ ├── axi_protocol_converter_v2_1_b2s_wrap_cmd.v
│ │ │ ├── axi_protocol_converter_v2_1_b_downsizer.v
│ │ │ ├── axi_protocol_converter_v2_1_decerr_slave.v
│ │ │ ├── axi_protocol_converter_v2_1_r_axi3_conv.v
│ │ │ └── axi_protocol_converter_v2_1_w_axi3_conv.v
│ │ ├── axi_register_slice_v2_1
│ │ │ └── a2538a4c
│ │ │ └── hdl
│ │ │ └── verilog
│ │ │ ├── axi_register_slice_v2_1_axi_register_slice.v
│ │ │ └── axi_register_slice_v2_1_axic_register_slice.v
│ │ ├── blk_mem_gen_v8_2
│ │ │ └── f2a44852
│ │ │ ├── hdl
│ │ │ │ ├── blk_mem_axi_read_fsm.vhd
│ │ │ │ ├── blk_mem_axi_read_wrapper.vhd
│ │ │ │ ├── blk_mem_axi_regs_fwd.vhd
│ │ │ │ ├── blk_mem_axi_write_fsm.vhd
│ │ │ │ ├── blk_mem_axi_write_wrapper.vhd
│ │ │ │ ├── blk_mem_gen_bindec.vhd
│ │ │ │ ├── blk_mem_gen_ecc_decoder.vhd
│ │ │ │ ├── blk_mem_gen_ecc_encoder.vhd
│ │ │ │ ├── blk_mem_gen_generic_cstr.vhd
│ │ │ │ ├── blk_mem_gen_getinit_pkg.vhd
│ │ │ │ ├── blk_mem_gen_mux.vhd
│ │ │ │ ├── blk_mem_gen_prim_width.vhd
│ │ │ │ ├── blk_mem_gen_prim_wrapper.vhd
│ │ │ │ ├── blk_mem_gen_prim_wrapper_init.vhd
│ │ │ │ ├── blk_mem_gen_top.vhd
│ │ │ │ ├── blk_mem_gen_v8_2.vhd
│ │ │ │ ├── blk_mem_gen_v8_2_defaults.vhd
│ │ │ │ ├── blk_mem_gen_v8_2_pkg.vhd
│ │ │ │ ├── blk_mem_gen_v8_2_synth.vhd
│ │ │ │ ├── blk_mem_gen_v8_2_synth_comp.vhd
│ │ │ │ ├── blk_mem_input_block.vhd
│ │ │ │ ├── blk_mem_min_area_pkg.vhd
│ │ │ │ └── blk_mem_output_block.vhd
│ │ │ └── simulation
│ │ │ └── blk_mem_gen_v8_2.vhd
│ │ ├── fifo_generator_v12_0
│ │ │ └── 924f3d25
│ │ │ ├── hdl
│ │ │ │ ├── builtin
│ │ │ │ │ ├── bin_cntr.vhd
│ │ │ │ │ ├── builtin_extdepth.vhd
│ │ │ │ │ ├── builtin_extdepth_low_latency.vhd
│ │ │ │ │ ├── builtin_extdepth_v6.vhd
│ │ │ │ │ ├── builtin_prim.vhd
│ │ │ │ │ ├── builtin_prim_v6.vhd
│ │ │ │ │ ├── builtin_top.vhd
│ │ │ │ │ ├── builtin_top_v6.vhd
│ │ │ │ │ ├── clk_x_pntrs_builtin.vhd
│ │ │ │ │ ├── delay.vhd
│ │ │ │ │ ├── fifo_generator_v12_0_builtin.vhd
│ │ │ │ │ ├── fifo_generator_v12_0_comps_builtin.vhd
│ │ │ │ │ ├── logic_builtin.vhd
│ │ │ │ │ └── reset_builtin.vhd
│ │ │ │ ├── common
│ │ │ │ │ ├── input_blk.vhd
│ │ │ │ │ ├── output_blk.vhd
│ │ │ │ │ ├── rd_pe_as.vhd
│ │ │ │ │ ├── rd_pe_ss.vhd
│ │ │ │ │ ├── shft_ram.vhd
│ │ │ │ │ ├── shft_wrapper.vhd
│ │ │ │ │ ├── synchronizer_ff.vhd
│ │ │ │ │ ├── wr_pf_as.vhd
│ │ │ │ │ └── wr_pf_ss.vhd
│ │ │ │ ├── fifo_generator_top.vhd
│ │ │ │ ├── fifo_generator_top_bi_sim.vhd
│ │ │ │ ├── fifo_generator_v12_0.vhd
│ │ │ │ ├── fifo_generator_v12_0_defaults.vhd
│ │ │ │ ├── fifo_generator_v12_0_pkg.vhd
│ │ │ │ ├── fifo_generator_v12_0_synth.vhd
│ │ │ │ ├── fifo_generator_v12_0_top.vhd
│ │ │ │ └── ramfifo
│ │ │ │ ├── async_fifo.vhd
│ │ │ │ ├── axi_reg_slice.vhd
│ │ │ │ ├── bram_fifo_rstlogic.vhd
│ │ │ │ ├── bram_sync_reg.vhd
│ │ │ │ ├── clk_x_pntrs.vhd
│ │ │ │ ├── compare.vhd
│ │ │ │ ├── dc_ss.vhd
│ │ │ │ ├── dc_ss_fwft.vhd
│ │ │ │ ├── dmem.vhd
│ │ │ │ ├── fifo_generator_ramfifo.vhd
│ │ │ │ ├── logic_sshft.vhd
│ │ │ │ ├── memory.vhd
│ │ │ │ ├── rd_bin_cntr.vhd
│ │ │ │ ├── rd_dc_as.vhd
│ │ │ │ ├── rd_dc_fwft_ext_as.vhd
│ │ │ │ ├── rd_fwft.vhd
│ │ │ │ ├── rd_handshaking_flags.vhd
│ │ │ │ ├── rd_logic.vhd
│ │ │ │ ├── rd_logic_pkt_fifo.vhd
│ │ │ │ ├── rd_pe_sshft.vhd
│ │ │ │ ├── rd_status_flags_as.vhd
│ │ │ │ ├── rd_status_flags_ss.vhd
│ │ │ │ ├── rd_status_flags_sshft.vhd
│ │ │ │ ├── reset_blk_ramfifo.vhd
│ │ │ │ ├── updn_cntr.vhd
│ │ │ │ ├── wr_bin_cntr.vhd
│ │ │ │ ├── wr_dc_as.vhd
│ │ │ │ ├── wr_dc_fwft_ext_as.vhd
│ │ │ │ ├── wr_handshaking_flags.vhd
│ │ │ │ ├── wr_logic.vhd
│ │ │ │ ├── wr_logic_pkt_fifo.vhd
│ │ │ │ ├── wr_pf_sshft.vhd
│ │ │ │ ├── wr_status_flags_as.vhd
│ │ │ │ ├── wr_status_flags_ss.vhd
│ │ │ │ └── wr_status_flags_sshft.vhd
│ │ │ └── simulation
│ │ │ └── fifo_generator_vhdl_beh.vhd
│ │ ├── generic_baseblocks_v2_1
│ │ │ └── e185049c
│ │ │ └── hdl
│ │ │ └── verilog
│ │ │ ├── generic_baseblocks_v2_1_carry.v
│ │ │ ├── generic_baseblocks_v2_1_carry_and.v
│ │ │ ├── generic_baseblocks_v2_1_carry_latch_and.v
│ │ │ ├── generic_baseblocks_v2_1_carry_latch_or.v
│ │ │ ├── generic_baseblocks_v2_1_carry_or.v
│ │ │ ├── generic_baseblocks_v2_1_command_fifo.v
│ │ │ ├── generic_baseblocks_v2_1_comparator.v
│ │ │ ├── generic_baseblocks_v2_1_comparator_mask.v
│ │ │ ├── generic_baseblocks_v2_1_comparator_mask_static.v
│ │ │ ├── generic_baseblocks_v2_1_comparator_sel.v
│ │ │ ├── generic_baseblocks_v2_1_comparator_sel_mask.v
│ │ │ ├── generic_baseblocks_v2_1_comparator_sel_mask_static.v
│ │ │ ├── generic_baseblocks_v2_1_comparator_sel_static.v
│ │ │ ├── generic_baseblocks_v2_1_comparator_static.v
│ │ │ ├── generic_baseblocks_v2_1_mux.v
│ │ │ ├── generic_baseblocks_v2_1_mux_enc.v
│ │ │ └── generic_baseblocks_v2_1_nto1_mux.v
│ │ ├── interrupt_control_v3_0
│ │ │ └── 99913152
│ │ │ └── hdl
│ │ │ └── src
│ │ │ └── vhdl
│ │ │ └── interrupt_control.vhd
│ │ ├── oled_ip_v1_0
│ │ │ └── d3864d8d
│ │ │ ├── drivers
│ │ │ │ └── oled_ip_v1_0
│ │ │ │ ├── data
│ │ │ │ │ ├── oled_ip.mdd
│ │ │ │ │ └── oled_ip.tcl
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── oled_ip.c
│ │ │ │ ├── oled_ip.h
│ │ │ │ └── oled_ip_selftest.c
│ │ │ └── hdl
│ │ │ ├── oled_ip_v1_0.v
│ │ │ └── oled_ip_v1_0_S00_AXI.v
│ │ ├── proc_common_v4_0
│ │ │ └── bb615326
│ │ │ └── hdl
│ │ │ └── src
│ │ │ └── vhdl
│ │ │ ├── addsub.vhd
│ │ │ ├── async_fifo_fg.vhd
│ │ │ ├── basic_sfifo_fg.vhd
│ │ │ ├── blk_mem_gen_wrapper.vhd
│ │ │ ├── cdc_sync.vhd
│ │ │ ├── cntr_incr_decr_addn_f.vhd
│ │ │ ├── common_types_pkg.vhd
│ │ │ ├── compare_vectors_f.vhd
│ │ │ ├── conv_funs_pkg.vhd
│ │ │ ├── coregen_comp_defs.vhd
│ │ │ ├── counter.vhd
│ │ │ ├── counter_bit.vhd
│ │ │ ├── counter_f.vhd
│ │ │ ├── direct_path_cntr.vhd
│ │ │ ├── direct_path_cntr_ai.vhd
│ │ │ ├── down_counter.vhd
│ │ │ ├── dynshreg_f.vhd
│ │ │ ├── dynshreg_i_f.vhd
│ │ │ ├── eval_timer.vhd
│ │ │ ├── family.vhd
│ │ │ ├── family_support.vhd
│ │ │ ├── inferred_lut4.vhd
│ │ │ ├── ipif_mirror128.vhd
│ │ │ ├── ipif_pkg.vhd
│ │ │ ├── ipif_steer.vhd
│ │ │ ├── ipif_steer128.vhd
│ │ │ ├── ld_arith_reg.vhd
│ │ │ ├── ld_arith_reg2.vhd
│ │ │ ├── mux_onehot.vhd
│ │ │ ├── mux_onehot_f.vhd
│ │ │ ├── muxf_struct_f.vhd
│ │ │ ├── or_bits.vhd
│ │ │ ├── or_gate.vhd
│ │ │ ├── or_gate128.vhd
│ │ │ ├── or_gate_f.vhd
│ │ │ ├── or_muxcy.vhd
│ │ │ ├── or_muxcy_f.vhd
│ │ │ ├── or_with_enable_f.vhd
│ │ │ ├── pf_adder.vhd
│ │ │ ├── pf_adder_bit.vhd
│ │ │ ├── pf_counter.vhd
│ │ │ ├── pf_counter_bit.vhd
│ │ │ ├── pf_counter_top.vhd
│ │ │ ├── pf_dpram_select.vhd
│ │ │ ├── pf_occ_counter.vhd
│ │ │ ├── pf_occ_counter_top.vhd
│ │ │ ├── proc_common_pkg.vhd
│ │ │ ├── pselect.vhd
│ │ │ ├── pselect_f.vhd
│ │ │ ├── pselect_mask.vhd
│ │ │ ├── soft_reset.vhd
│ │ │ ├── srl16_fifo.vhd
│ │ │ ├── srl_fifo.vhd
│ │ │ ├── srl_fifo2.vhd
│ │ │ ├── srl_fifo3.vhd
│ │ │ ├── srl_fifo_f.vhd
│ │ │ ├── srl_fifo_rbu.vhd
│ │ │ ├── srl_fifo_rbu_f.vhd
│ │ │ ├── sync_fifo_fg.vhd
│ │ │ └── valid_be.vhd
│ │ ├── proc_sys_reset_v5_0
│ │ │ └── 51a8c173
│ │ │ └── hdl
│ │ │ └── src
│ │ │ └── vhdl
│ │ │ ├── lpf.vhd
│ │ │ ├── proc_sys_reset.vhd
│ │ │ ├── sequence.vhd
│ │ │ └── upcnt_n.vhd
│ │ ├── processing_system7_bfm_v2_0
│ │ │ └── 6a96c227
│ │ │ └── hdl
│ │ │ ├── processing_system7_bfm_v2_0_afi_slave.v
│ │ │ ├── processing_system7_bfm_v2_0_apis.v
│ │ │ ├── processing_system7_bfm_v2_0_arb_hp0_1.v
│ │ │ ├── processing_system7_bfm_v2_0_arb_hp2_3.v
│ │ │ ├── processing_system7_bfm_v2_0_arb_rd.v
│ │ │ ├── processing_system7_bfm_v2_0_arb_rd_4.v
│ │ │ ├── processing_system7_bfm_v2_0_arb_wr.v
│ │ │ ├── processing_system7_bfm_v2_0_arb_wr_4.v
│ │ │ ├── processing_system7_bfm_v2_0_axi_acp.v
│ │ │ ├── processing_system7_bfm_v2_0_axi_gp.v
│ │ │ ├── processing_system7_bfm_v2_0_axi_hp.v
│ │ │ ├── processing_system7_bfm_v2_0_axi_master.v
│ │ │ ├── processing_system7_bfm_v2_0_axi_slave.v
│ │ │ ├── processing_system7_bfm_v2_0_ddrc.v
│ │ │ ├── processing_system7_bfm_v2_0_fmsw_gp.v
│ │ │ ├── processing_system7_bfm_v2_0_gen_clock.v
│ │ │ ├── processing_system7_bfm_v2_0_gen_reset.v
│ │ │ ├── processing_system7_bfm_v2_0_interconnect_model.v
│ │ │ ├── processing_system7_bfm_v2_0_intr_rd_mem.v
│ │ │ ├── processing_system7_bfm_v2_0_intr_wr_mem.v
│ │ │ ├── processing_system7_bfm_v2_0_local_params.v
│ │ │ ├── processing_system7_bfm_v2_0_ocm_mem.v
│ │ │ ├── processing_system7_bfm_v2_0_ocmc.v
│ │ │ ├── processing_system7_bfm_v2_0_processing_system7_bfm.v
│ │ │ ├── processing_system7_bfm_v2_0_reg_init.v
│ │ │ ├── processing_system7_bfm_v2_0_reg_map.v
│ │ │ ├── processing_system7_bfm_v2_0_reg_params.v
│ │ │ ├── processing_system7_bfm_v2_0_regc.v
│ │ │ ├── processing_system7_bfm_v2_0_sparse_mem.v
│ │ │ ├── processing_system7_bfm_v2_0_ssw_hp.v
│ │ │ └── processing_system7_bfm_v2_0_unused_ports.v
│ │ ├── processing_system7_v5_4
│ │ │ └── e76c1772
│ │ │ ├── component.xml
│ │ │ ├── data
│ │ │ │ └── zynqconfig
│ │ │ │ ├── 1.0
│ │ │ │ │ ├── code
│ │ │ │ │ │ ├── clkgen.xml
│ │ │ │ │ │ ├── ddrgen.xml
│ │ │ │ │ │ ├── miogen.xml
│ │ │ │ │ │ ├── peripheralsgen.xml
│ │ │ │ │ │ ├── pllgen.xml
│ │ │ │ │ │ ├── powergen.xml
│ │ │ │ │ │ ├── ps7_debug.xml
│ │ │ │ │ │ └── ps7_post_config.xml
│ │ │ │ │ └── ps7regs
│ │ │ │ │ ├── sw_param.xml
│ │ │ │ │ └── sw_regs.xml
│ │ │ │ ├── 2.0
│ │ │ │ │ ├── code
│ │ │ │ │ │ ├── clkgen.xml
│ │ │ │ │ │ ├── ddrgen.xml
│ │ │ │ │ │ ├── miogen.xml
│ │ │ │ │ │ ├── peripheralsgen.xml
│ │ │ │ │ │ ├── pllgen.xml
│ │ │ │ │ │ ├── powergen.xml
│ │ │ │ │ │ ├── ps7_debug.xml
│ │ │ │ │ │ └── ps7_post_config.xml
│ │ │ │ │ └── ps7regs
│ │ │ │ │ ├── sw_param.xml
│ │ │ │ │ └── sw_regs.xml
│ │ │ │ ├── board
│ │ │ │ │ ├── ZedBoard.xml
│ │ │ │ │ ├── xc7z020.xml
│ │ │ │ │ └── xc7z706.xml
│ │ │ │ ├── can
│ │ │ │ │ ├── can0_param.xml
│ │ │ │ │ ├── can0_preset.xml
│ │ │ │ │ ├── can1_param.xml
│ │ │ │ │ └── can1_preset.xml
│ │ │ │ ├── code
│ │ │ │ │ ├── clkgen.xml
│ │ │ │ │ ├── codegen.xml
│ │ │ │ │ ├── ddrgen.xml
│ │ │ │ │ ├── ddrgen.xml.orig
│ │ │ │ │ ├── miogen.xml
│ │ │ │ │ ├── peripheralsgen.xml
│ │ │ │ │ ├── peripheralsgen.xml.orig
│ │ │ │ │ ├── pllgen.xml
│ │ │ │ │ ├── powergen.xml
│ │ │ │ │ ├── ps7_debug.xml
│ │ │ │ │ ├── ps7_init.c
│ │ │ │ │ ├── ps7_init.h
│ │ │ │ │ ├── ps7_init.tcl
│ │ │ │ │ ├── ps7_post_config.xml
│ │ │ │ │ ├── sdkgen.xml
│ │ │ │ │ ├── ucfgen.xml
│ │ │ │ │ └── ucfgen.xml.orig
│ │ │ │ ├── cti
│ │ │ │ │ ├── cti_param.xml
│ │ │ │ │ └── cti_preset.xml
│ │ │ │ ├── ddr
│ │ │ │ │ ├── ddr_iostandards.xml
│ │ │ │ │ ├── ddr_param.xml
│ │ │ │ │ ├── ddr_param.xml.orig
│ │ │ │ │ ├── ddr_preset.xml
│ │ │ │ │ └── ddr_preset.xml.orig
│ │ │ │ ├── enet
│ │ │ │ │ ├── enet0_param.xml
│ │ │ │ │ ├── enet0_param.xml.orig
│ │ │ │ │ ├── enet0_preset.xml
│ │ │ │ │ ├── enet0_preset.xml.orig
│ │ │ │ │ ├── enet1_param.xml
│ │ │ │ │ ├── enet1_param.xml.orig
│ │ │ │ │ ├── enet1_preset.xml
│ │ │ │ │ └── enet1_preset.xml.orig
│ │ │ │ ├── global
│ │ │ │ │ ├── clkdata.xml
│ │ │ │ │ ├── global_param.xml
│ │ │ │ │ ├── global_param.xml.orig
│ │ │ │ │ ├── global_preset.xml
│ │ │ │ │ └── global_preset.xml.orig
│ │ │ │ ├── gpio
│ │ │ │ │ ├── gpio_param.xml
│ │ │ │ │ ├── gpio_preset.xml
│ │ │ │ │ └── gpio_preset.xml.orig
│ │ │ │ ├── guidata
│ │ │ │ │ ├── MIOData.xml
│ │ │ │ │ ├── guidata.xml
│ │ │ │ │ ├── mio.svg
│ │ │ │ │ ├── nand_t_ar.png
│ │ │ │ │ ├── nand_t_clr.png
│ │ │ │ │ ├── nand_t_rc.png
│ │ │ │ │ ├── nand_t_rea.png
│ │ │ │ │ ├── nand_t_rr.png
│ │ │ │ │ ├── nand_t_wc.png
│ │ │ │ │ ├── nand_t_wp.png
│ │ │ │ │ ├── nor_t_ceoe.png
│ │ │ │ │ ├── nor_t_pc.png
│ │ │ │ │ ├── nor_t_rc.png
│ │ │ │ │ ├── nor_t_tr.png
│ │ │ │ │ ├── nor_t_wc.png
│ │ │ │ │ ├── nor_t_wp.png
│ │ │ │ │ ├── nor_we_time.png
│ │ │ │ │ ├── zynq.svg
│ │ │ │ │ └── zynq_100x30.png
│ │ │ │ ├── html
│ │ │ │ │ ├── javascripts
│ │ │ │ │ └── ps_summary.css
│ │ │ │ ├── i2c
│ │ │ │ │ ├── i2c0_param.xml
│ │ │ │ │ ├── i2c0_param.xml.orig
│ │ │ │ │ ├── i2c0_preset.xml
│ │ │ │ │ ├── i2c0_preset.xml.orig
│ │ │ │ │ ├── i2c1_param.xml
│ │ │ │ │ ├── i2c1_param.xml.orig
│ │ │ │ │ ├── i2c1_preset.xml
│ │ │ │ │ └── i2c1_preset.xml.orig
│ │ │ │ ├── mio
│ │ │ │ │ ├── mio_param.xml
│ │ │ │ │ └── mio_preset.xml
│ │ │ │ ├── mpd
│ │ │ │ │ └── hw_param.xml
│ │ │ │ ├── nand
│ │ │ │ │ ├── nand_param.xml
│ │ │ │ │ ├── nand_param.xml.orig
│ │ │ │ │ ├── nand_preset.xml
│ │ │ │ │ └── nand_preset.xml.orig
│ │ │ │ ├── nor
│ │ │ │ │ ├── nor_param.xml
│ │ │ │ │ ├── nor_param.xml.orig
│ │ │ │ │ └── nor_preset.xml
│ │ │ │ ├── part
│ │ │ │ │ ├── package_preset.xml
│ │ │ │ │ ├── package_preset.xml.orig
│ │ │ │ │ ├── partno_preset.xml
│ │ │ │ │ └── partno_preset.xml.orig
│ │ │ │ ├── pjtag
│ │ │ │ │ ├── pjtag_param.xml
│ │ │ │ │ └── pjtag_preset.xml
│ │ │ │ ├── ps7regs
│ │ │ │ │ ├── sw_param.xml
│ │ │ │ │ └── sw_regs.xml
│ │ │ │ ├── qspi
│ │ │ │ │ ├── qspi_param.xml
│ │ │ │ │ └── qspi_preset.xml
│ │ │ │ ├── sd
│ │ │ │ │ ├── sd0_param.xml
│ │ │ │ │ ├── sd0_preset.xml
│ │ │ │ │ ├── sd1_param.xml
│ │ │ │ │ ├── sd1_preset.xml
│ │ │ │ │ ├── sdio_param.xml
│ │ │ │ │ └── sdio_preset.xml
│ │ │ │ ├── spi
│ │ │ │ │ ├── spi0_param.xml
│ │ │ │ │ ├── spi0_preset.xml
│ │ │ │ │ ├── spi1_param.xml
│ │ │ │ │ └── spi1_preset.xml
│ │ │ │ ├── trace
│ │ │ │ │ ├── trace_param.xml
│ │ │ │ │ └── trace_preset.xml
│ │ │ │ ├── ttc
│ │ │ │ │ ├── ttc0_param.xml
│ │ │ │ │ ├── ttc0_preset.xml
│ │ │ │ │ ├── ttc1_param.xml
│ │ │ │ │ └── ttc1_preset.xml
│ │ │ │ ├── uart
│ │ │ │ │ ├── uart0_param.xml
│ │ │ │ │ ├── uart0_preset.xml
│ │ │ │ │ ├── uart1_param.xml
│ │ │ │ │ ├── uart1_preset.xml
│ │ │ │ │ ├── uart_hw_param.xml
│ │ │ │ │ ├── uart_io_param.xml
│ │ │ │ │ ├── uart_preset.xml
│ │ │ │ │ └── uart_ui_param.xml
│ │ │ │ ├── ui
│ │ │ │ │ ├── param.xml
│ │ │ │ │ ├── preset.xml
│ │ │ │ │ ├── ui_param.xml
│ │ │ │ │ └── ui_preset.xml
│ │ │ │ ├── usb
│ │ │ │ │ ├── usb0_param.xml
│ │ │ │ │ ├── usb0_param.xml.orig
│ │ │ │ │ ├── usb0_preset.xml
│ │ │ │ │ ├── usb0_preset.xml.orig
│ │ │ │ │ ├── usb1_param.xml
│ │ │ │ │ ├── usb1_param.xml.orig
│ │ │ │ │ ├── usb1_preset.xml
│ │ │ │ │ └── usb1_preset.xml.orig
│ │ │ │ ├── vivado_dataxml.pl
│ │ │ │ ├── wdt
│ │ │ │ │ ├── wdt_param.xml
│ │ │ │ │ └── wdt_preset.xml
│ │ │ │ └── xpsmaps.xml
│ │ │ ├── fixedio.xml
│ │ │ ├── fixedio_rtl.xml
│ │ │ ├── hdl
│ │ │ │ └── verilog
│ │ │ │ ├── processing_system7_v5_4_atc.v
│ │ │ │ ├── processing_system7_v5_4_aw_atc.v
│ │ │ │ ├── processing_system7_v5_4_b_atc.v
│ │ │ │ ├── processing_system7_v5_4_trace_buffer.v
│ │ │ │ └── processing_system7_v5_4_w_atc.v
│ │ │ ├── hpstatusctrl.xml
│ │ │ ├── hpstatusctrl_rtl.xml
│ │ │ ├── usbctrl.xml
│ │ │ └── usbctrl_rtl.xml
│ │ └── zed_audio_ctrl_v1_0
│ │ └── 82901c10
│ │ └── zed_audio_ctrl.srcs
│ │ └── sources_1
│ │ └── imports
│ │ └── i2s_audio
│ │ ├── address_decoder.vhd
│ │ ├── axi_lite_ipif.vhd
│ │ ├── common_types.vhd
│ │ ├── family_support.vhd
│ │ ├── i2s_ctrl.vhd
│ │ ├── iis_deser.vhd
│ │ ├── iis_ser.vhd
│ │ ├── pselect_f.vhd
│ │ ├── slave_attachment.vhd
│ │ └── user_logic.vhd
│ ├── audo_fre_sw.xpr
│ ├── ps_clock_registers.log
│ └── system.tcl
├── ip_repo
│ ├── oled_ip_1.0
│ │ ├── bd
│ │ │ └── bd.tcl
│ │ ├── component.xml
│ │ ├── drivers
│ │ │ └── oled_ip_v1_0
│ │ │ ├── data
│ │ │ │ ├── oled_ip.mdd
│ │ │ │ └── oled_ip.tcl
│ │ │ └── src
│ │ │ ├── Makefile
│ │ │ ├── oled_ip.c
│ │ │ ├── oled_ip.h
│ │ │ └── oled_ip_selftest.c
│ │ ├── example_designs
│ │ │ ├── bfm_design
│ │ │ │ ├── design.tcl
│ │ │ │ └── oled_ip_v1_0_tb.v
│ │ │ └── debug_hw_design
│ │ │ ├── design.tcl
│ │ │ └── oled_ip_v1_0_hw_test.tcl
│ │ ├── hdl
│ │ │ ├── oled_ip_v1_0.v
│ │ │ └── oled_ip_v1_0_S00_AXI.v
│ │ └── xgui
│ │ └── oled_ip_v1_0.tcl
│ └── zed_audio_ctrl
│ ├── component.xml
│ ├── xgui
│ │ └── i2s_ctrl_v1_0.tcl
│ └── zed_audio_ctrl.srcs
│ └── sources_1
│ └── imports
│ └── i2s_audio
│ ├── address_decoder.vhd
│ ├── axi_lite_ipif.vhd
│ ├── common_types.vhd
│ ├── family_support.vhd
│ ├── i2s_ctrl.vhd
│ ├── iis_deser.vhd
│ ├── iis_ser.vhd
│ ├── pselect_f.vhd
│ ├── slave_attachment.vhd
│ └── user_logic.vhd
└── src
├── 20140731_sdk_成功版本
│ ├── adau1761.c
│ ├── adau1761.h
│ ├── audio.h
│ ├── fft.c
│ ├── fft.h
│ ├── fft_audio.c
│ ├── fft_audio.h
│ ├── font.h
│ ├── oled.c
│ ├── oled.h
│ └── test_audio.c
├── oled.xdc
├── system.tcl
└── zed_audio_constraints.xdc
237 directories, 999 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论