实例介绍
目标:使用vivado进行zedboard的audio测试。从pc获取音频信号,通过开发板处理后输出。通过本实例学习vivado+zedboard软硬件设计的方法,学习控制zedboard外设的方法。本文将介绍实验的过程,并对驱动程序进行分析,简单说明如何驱动audio设备。并简单介绍如何通过SDK来控制外设。本文将分为以下步骤: 1. 使用Vivado TCL创建一个工程,修改相关参数,完成硬件设计。generate,最后导入到SDK中 2. 在SDK中新建工程,添加文件,编译。下载到ZedBoard上进行调试 3. 驱动程序分析 4. 获取IP信息的方法整理 5. 总结
【实例截图】
【核心代码】
audio
├── audio
│ ├── pro_audio
│ │ ├── audio.cache
│ │ │ └── wt
│ │ │ ├── java_command_handlers.wdf
│ │ │ ├── project.wpc
│ │ │ ├── synthesis.wdf
│ │ │ └── webtalk_pa.xml
│ │ ├── audio.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
│ │ ├── audio.sdk
│ │ │ └── SDK
│ │ │ └── SDK_Export
│ │ │ ├── RemoteSystemsTempFiles
│ │ │ ├── SDK.log
│ │ │ ├── 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
│ │ │ ├── test_audio
│ │ │ │ ├── Debug
│ │ │ │ │ ├── makefile
│ │ │ │ │ ├── objects.mk
│ │ │ │ │ ├── sources.mk
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── adau1761.d
│ │ │ │ │ │ ├── adau1761.o
│ │ │ │ │ │ ├── iic.d
│ │ │ │ │ │ ├── iic.o
│ │ │ │ │ │ ├── subdir.mk
│ │ │ │ │ │ ├── test_audio.d
│ │ │ │ │ │ └── test_audio.o
│ │ │ │ │ ├── test_audio.elf
│ │ │ │ │ └── test_audio.elf.size
│ │ │ │ └── src
│ │ │ │ ├── README.txt
│ │ │ │ ├── adau1761.c
│ │ │ │ ├── adau1761.h
│ │ │ │ ├── audio.h
│ │ │ │ ├── iic.c
│ │ │ │ ├── iic.h
│ │ │ │ ├── lscript.ld
│ │ │ │ └── test_audio.c
│ │ │ └── test_audio_bsp
│ │ │ ├── Makefile
│ │ │ ├── ps7_cortexa9_0
│ │ │ │ ├── include
│ │ │ │ │ ├── _profile_timer_hw.h
│ │ │ │ │ ├── bspconfig.h
│ │ │ │ │ ├── mblaze_nt_types.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
│ │ │ │ ├── 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
│ │ ├── audio.srcs
│ │ │ ├── constrs_1
│ │ │ │ └── imports
│ │ │ │ └── src
│ │ │ │ └── zed_audio_constraints.xdc
│ │ │ └── sources_1
│ │ │ ├── bd
│ │ │ │ └── system
│ │ │ │ ├── hdl
│ │ │ │ │ ├── system.v
│ │ │ │ │ └── system_wrapper.v
│ │ │ │ ├── ip
│ │ │ │ │ ├── system_auto_pc_0
│ │ │ │ │ │ ├── synth
│ │ │ │ │ │ │ └── system_auto_pc_0.v
│ │ │ │ │ │ ├── system_auto_pc_0.xci
│ │ │ │ │ │ ├── system_auto_pc_0.xml
│ │ │ │ │ │ └── system_auto_pc_0_ooc.xdc
│ │ │ │ │ ├── system_axi_gpio_0_0
│ │ │ │ │ │ ├── synth
│ │ │ │ │ │ │ └── system_axi_gpio_0_0.vhd
│ │ │ │ │ │ ├── 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_processing_system7_0_0
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── synth
│ │ │ │ │ │ │ └── system_processing_system7_0_0.v
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── synth
│ │ │ │ │ │ │ └── system_rst_processing_system7_0_100M_0.vhd
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── synth
│ │ │ │ │ │ │ └── system_xbar_0.v
│ │ │ │ │ │ ├── system_xbar_0.xci
│ │ │ │ │ │ ├── system_xbar_0.xml
│ │ │ │ │ │ └── system_xbar_0_ooc.xdc
│ │ │ │ │ └── system_zed_audio_ctrl_0_0
│ │ │ │ │ ├── synth
│ │ │ │ │ │ └── system_zed_audio_ctrl_0_0.vhd
│ │ │ │ │ ├── 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
│ │ │ ├── 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_v12_0.vhd
│ │ │ │ ├── fifo_generator_v12_0_defaults.vhd
│ │ │ │ ├── fifo_generator_v12_0_pkg.vhd
│ │ │ │ ├── fifo_generator_v12_0_synth.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
│ │ │ ├── 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
│ │ │ ├── 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_v5_4
│ │ │ │ └── e76c1772
│ │ │ │ └── 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
│ │ │ └── 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
│ │ └── audio.xpr
│ ├── readme.txt
│ └── src
│ ├── adau1761.c
│ ├── adau1761.h
│ ├── audio.h
│ ├── audio_project_create.tcl
│ ├── fir
│ │ ├── fir.c
│ │ ├── fir.h
│ │ ├── fir_coef.dat
│ │ └── fir_test.c
│ ├── iic.c
│ ├── iic.h
│ ├── ps_clock_registers.log
│ ├── test_audio.c
│ ├── zed_audio_constraints.xdc
│ └── 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
└── vivado+zedboard之AUDIO驱动.docx
160 directories, 740 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论