在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → vivado+zedboard之OLED驱动

vivado+zedboard之OLED驱动

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:14.77M
  • 下载次数:4
  • 浏览次数:166
  • 发布时间:2020-07-26
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
vivado+zedboard之OLED驱动。包括oled在vivado2014.1下实现的源文件、oled驱动文件等。实现方法见我的博客
【实例截图】
【核心代码】
oled
└── oled
├── 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
├── oled
│   ├── oled.cache
│   │   └── wt
│   │   ├── java_command_handlers.wdf
│   │   ├── project.wpc
│   │   ├── synthesis.wdf
│   │   └── webtalk_pa.xml
│   ├── oled.runs
│   │   ├── impl_1
│   │   │   ├── ISEWrap.js
│   │   │   ├── ISEWrap.sh
│   │   │   ├── design_1_wrapper.bit
│   │   │   ├── design_1_wrapper.tcl
│   │   │   ├── design_1_wrapper.vdi
│   │   │   ├── design_1_wrapper_39788.backup.vdi
│   │   │   ├── design_1_wrapper_clock_utilization_placed.rpt
│   │   │   ├── design_1_wrapper_control_sets_placed.rpt
│   │   │   ├── design_1_wrapper_drc_routed.pb
│   │   │   ├── design_1_wrapper_drc_routed.rpt
│   │   │   ├── design_1_wrapper_io_placed.rpt
│   │   │   ├── design_1_wrapper_opt.dcp
│   │   │   ├── design_1_wrapper_placed.dcp
│   │   │   ├── design_1_wrapper_power_routed.rpt
│   │   │   ├── design_1_wrapper_power_summary_routed.pb
│   │   │   ├── design_1_wrapper_routed.dcp
│   │   │   ├── design_1_wrapper_timing_summary_routed.pb
│   │   │   ├── design_1_wrapper_timing_summary_routed.rpt
│   │   │   ├── design_1_wrapper_utilization_placed.pb
│   │   │   ├── design_1_wrapper_utilization_placed.rpt
│   │   │   ├── 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
│   │   │   ├── usage_statistics_webtalk.html
│   │   │   ├── usage_statistics_webtalk.xml
│   │   │   ├── vivado.jou
│   │   │   ├── vivado.pb
│   │   │   ├── vivado_39788.backup.jou
│   │   │   └── write_bitstream.pb
│   │   └── synth_1
│   │   ├── ISEWrap.js
│   │   ├── ISEWrap.sh
│   │   ├── design_1_wrapper.dcp
│   │   ├── design_1_wrapper.tcl
│   │   ├── design_1_wrapper.vds
│   │   ├── design_1_wrapper_utilization_synth.pb
│   │   ├── design_1_wrapper_utilization_synth.rpt
│   │   ├── dont_touch.xdc
│   │   ├── gen_run.xml
│   │   ├── htr.txt
│   │   ├── project.wdf
│   │   ├── rundef.js
│   │   ├── runme.bat
│   │   ├── runme.log
│   │   ├── runme.sh
│   │   ├── vivado.jou
│   │   └── vivado.pb
│   ├── oled.sdk
│   │   └── SDK
│   │   └── SDK_Export
│   │   ├── RemoteSystemsTempFiles
│   │   ├── SDK.log
│   │   ├── hw
│   │   │   ├── design_1.xml
│   │   │   ├── design_1_wrapper.bit
│   │   │   ├── ps7_init.c
│   │   │   ├── ps7_init.h
│   │   │   ├── ps7_init.html
│   │   │   └── ps7_init.tcl
│   │   ├── hw_platform_0
│   │   │   ├── design_1_wrapper.bit
│   │   │   ├── ps7_init.c
│   │   │   ├── ps7_init.h
│   │   │   ├── ps7_init.html
│   │   │   ├── ps7_init.tcl
│   │   │   └── system.xml
│   │   ├── oled
│   │   │   ├── Debug
│   │   │   │   ├── makefile
│   │   │   │   ├── objects.mk
│   │   │   │   ├── oled.elf
│   │   │   │   ├── oled.elf.size
│   │   │   │   ├── sources.mk
│   │   │   │   └── src
│   │   │   │   ├── helloworld.d
│   │   │   │   ├── helloworld.o
│   │   │   │   ├── oled.d
│   │   │   │   ├── oled.o
│   │   │   │   └── subdir.mk
│   │   │   └── src
│   │   │   ├── README.txt
│   │   │   ├── font.h
│   │   │   ├── helloworld.c
│   │   │   ├── lscript.ld
│   │   │   ├── oled.c
│   │   │   └── oled.h
│   │   └── oled_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
│   │   │   │   ├── xenv.h
│   │   │   │   ├── xenv_standalone.h
│   │   │   │   ├── xgpiops.h
│   │   │   │   ├── xgpiops_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
│   │   │   │   ├── xreg_cortexa9.h
│   │   │   │   ├── xscugic.h
│   │   │   │   ├── xscugic_hw.h
│   │   │   │   ├── xscutimer.h
│   │   │   │   ├── xscutimer_hw.h
│   │   │   │   ├── xscuwdt.h
│   │   │   │   ├── xscuwdt_hw.h
│   │   │   │   ├── xstatus.h
│   │   │   │   ├── xtime_l.h
│   │   │   │   ├── xuartps.h
│   │   │   │   └── xuartps_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
│   │   │   ├── 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
│   │   │   ├── oled_ip_v1_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── oled_ip.c
│   │   │   │   ├── oled_ip.h
│   │   │   │   └── oled_ip_selftest.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
│   │   │   ├── 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
│   │   │   ├── 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
│   │   │   └── 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
│   ├── oled.srcs
│   │   ├── constrs_1
│   │   │   └── imports
│   │   │   └── src
│   │   │   └── oled.xdc
│   │   └── sources_1
│   │   ├── bd
│   │   │   └── design_1
│   │   │   ├── design_1.bd
│   │   │   ├── design_1.bxml
│   │   │   ├── design_1_ooc.xdc
│   │   │   ├── hdl
│   │   │   │   ├── design_1.v
│   │   │   │   └── design_1_wrapper.v
│   │   │   ├── ip
│   │   │   │   ├── design_1_auto_pc_0
│   │   │   │   │   ├── design_1_auto_pc_0.xci
│   │   │   │   │   ├── design_1_auto_pc_0.xml
│   │   │   │   │   ├── design_1_auto_pc_0_ooc.xdc
│   │   │   │   │   └── synth
│   │   │   │   │   └── design_1_auto_pc_0.v
│   │   │   │   ├── design_1_oled_ip_0_0
│   │   │   │   │   ├── design_1_oled_ip_0_0.upgrade_log
│   │   │   │   │   ├── design_1_oled_ip_0_0.xci
│   │   │   │   │   ├── design_1_oled_ip_0_0.xml
│   │   │   │   │   └── synth
│   │   │   │   │   └── design_1_oled_ip_0_0.v
│   │   │   │   ├── design_1_processing_system7_0_0
│   │   │   │   │   ├── design_1_processing_system7_0_0.xci
│   │   │   │   │   ├── design_1_processing_system7_0_0.xdc
│   │   │   │   │   ├── design_1_processing_system7_0_0.xml
│   │   │   │   │   ├── 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
│   │   │   │   │   └── design_1_processing_system7_0_0.v
│   │   │   │   ├── design_1_processing_system7_0_axi_periph_0
│   │   │   │   │   ├── design_1_processing_system7_0_axi_periph_0.xci
│   │   │   │   │   └── design_1_processing_system7_0_axi_periph_0.xml
│   │   │   │   └── design_1_rst_processing_system7_0_100M_0
│   │   │   │   ├── design_1_rst_processing_system7_0_100M_0.xci
│   │   │   │   ├── design_1_rst_processing_system7_0_100M_0.xdc
│   │   │   │   ├── design_1_rst_processing_system7_0_100M_0.xml
│   │   │   │   ├── design_1_rst_processing_system7_0_100M_0_board.xdc
│   │   │   │   ├── design_1_rst_processing_system7_0_100M_0_ooc.xdc
│   │   │   │   └── synth
│   │   │   │   └── design_1_rst_processing_system7_0_100M_0.vhd
│   │   │   └── ui
│   │   │   └── bd_1f5defd0.ui
│   │   └── ipshared
│   │   └── xilinx.com
│   │   ├── 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_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_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
│   │   ├── oled_ip_v1_0
│   │   │   └── d3864d8d
│   │   │   └── 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_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
│   └── oled.xpr
└── src
├── oled.xdc
├── oled_ip_v1_0.v
├── oled_ip_v1_0_S00_AXI.v
└── sdk
├── font.h
├── helloworld.c
├── oled.c
└── oled.h

128 directories, 618 files

标签:

实例下载地址

vivado+zedboard之OLED驱动

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警