实例介绍
基于FPGA的串口收发(Basys2实现,一个负责发送数据,另一个接受数据)
【实例截图】
【核心代码】
Uart
└── Uart
├── Uart_Byte_Rec
│ └── UART_Rec
│ ├── UART.gise
│ ├── UART.xise
│ ├── _ngo
│ │ └── netlist.lst
│ ├── _xmsgs
│ │ ├── map.xmsgs
│ │ ├── ngdbuild.xmsgs
│ │ ├── par.xmsgs
│ │ ├── pn_parser.xmsgs
│ │ ├── trce.xmsgs
│ │ └── xst.xmsgs
│ ├── clk_receive.v
│ ├── clk_send.v
│ ├── fuse.log
│ ├── fuse.xmsgs
│ ├── fuseRelaunch.cmd
│ ├── iseconfig
│ │ ├── UART.projectmgr
│ │ ├── receive.xreport
│ │ └── top_uart.xreport
│ ├── isim
│ │ ├── isim_usage_statistics.html
│ │ ├── pn_info
│ │ ├── tb_receive_isim_beh.exe.sim
│ │ │ ├── ISimEngine-DesignHierarchy.dbg
│ │ │ ├── isimcrash.log
│ │ │ ├── isimkernel.log
│ │ │ ├── netId.dat
│ │ │ ├── tb_receive_isim_beh.exe
│ │ │ ├── tmp_save
│ │ │ │ └── _1
│ │ │ └── work
│ │ │ ├── m_00000000002361773369_0156449476.c
│ │ │ ├── m_00000000002361773369_0156449476.didat
│ │ │ ├── m_00000000002361773369_0156449476.nt64.obj
│ │ │ ├── m_00000000002656529423_2179171295.c
│ │ │ ├── m_00000000002656529423_2179171295.didat
│ │ │ ├── m_00000000002656529423_2179171295.nt64.obj
│ │ │ ├── m_00000000002722144201_3825996588.c
│ │ │ ├── m_00000000002722144201_3825996588.didat
│ │ │ ├── m_00000000002722144201_3825996588.nt64.obj
│ │ │ ├── m_00000000003312836325_0934858945.c
│ │ │ ├── m_00000000003312836325_0934858945.didat
│ │ │ ├── m_00000000003312836325_0934858945.nt64.obj
│ │ │ ├── m_00000000004134447467_2073120511.c
│ │ │ ├── m_00000000004134447467_2073120511.didat
│ │ │ ├── m_00000000004134447467_2073120511.nt64.obj
│ │ │ ├── tb_receive_isim_beh.exe_main.c
│ │ │ └── tb_receive_isim_beh.exe_main.nt64.obj
│ │ ├── temp
│ │ │ ├── clk_receive.sdb
│ │ │ ├── glbl.sdb
│ │ │ ├── receive.sdb
│ │ │ ├── tb_receive.sdb
│ │ │ └── uart_receive.sdb
│ │ └── work
│ │ ├── clk_receive.sdb
│ │ ├── glbl.sdb
│ │ ├── receive.sdb
│ │ ├── tb_receive.sdb
│ │ └── uart_receive.sdb
│ ├── isim.cmd
│ ├── isim.log
│ ├── receive.v
│ ├── receive_summary.html
│ ├── tb_receive.v
│ ├── tb_receive_beh.prj
│ ├── tb_receive_isim_beh.exe
│ ├── tb_receive_isim_beh.wdb
│ ├── tb_receive_stx_beh.prj
│ ├── tb_uart.v
│ ├── top_uart.bld
│ ├── top_uart.cmd_log
│ ├── top_uart.lso
│ ├── top_uart.ncd
│ ├── top_uart.ngc
│ ├── top_uart.ngd
│ ├── top_uart.ngr
│ ├── top_uart.pad
│ ├── top_uart.par
│ ├── top_uart.pcf
│ ├── top_uart.prj
│ ├── top_uart.ptwx
│ ├── top_uart.stx
│ ├── top_uart.syr
│ ├── top_uart.twr
│ ├── top_uart.twx
│ ├── top_uart.unroutes
│ ├── top_uart.v
│ ├── top_uart.xpi
│ ├── top_uart.xst
│ ├── top_uart_envsettings.html
│ ├── top_uart_guide.ncd
│ ├── top_uart_map.map
│ ├── top_uart_map.mrp
│ ├── top_uart_map.ncd
│ ├── top_uart_map.ngm
│ ├── top_uart_map.xrpt
│ ├── top_uart_ngdbuild.xrpt
│ ├── top_uart_pad.csv
│ ├── top_uart_pad.txt
│ ├── top_uart_par.xrpt
│ ├── top_uart_summary.html
│ ├── top_uart_summary.xml
│ ├── top_uart_usage.xml
│ ├── top_uart_xst.xrpt
│ ├── uart_receive.v
│ ├── uatr_send.v
│ ├── webtalk_pn.xml
│ ├── xilinxsim.ini
│ ├── xlnx_auto_0_xdb
│ │ └── cst.xbcd
│ └── xst
│ └── work
│ ├── hdllib.ref
│ ├── vlg08
│ │ └── clk__receive.bin
│ ├── vlg0D
│ │ └── uatr__send.bin
│ ├── vlg32
│ │ └── top__uart.bin
│ ├── vlg57
│ │ └── clk__send.bin
│ └── vlg5E
│ └── uart__receive.bin
└── Uart_Send
└── gen_test
├── NEW.cfi
├── NEW.mcs
├── NEW.prm
├── NEW.sig
├── UART_SEND.cfi
├── UART_SEND.mcs
├── UART_SEND.prm
├── UART_SEND.sig
├── Uart_Send_Byte
│ ├── Uart_Byte_Send.v
│ └── tb_Uart_Send.v
├── Uart_send.v
├── _ngo
│ └── netlist.lst
├── _xmsgs
│ ├── bitgen.xmsgs
│ ├── map.xmsgs
│ ├── ngdbuild.xmsgs
│ ├── par.xmsgs
│ ├── pn_parser.xmsgs
│ ├── trce.xmsgs
│ └── xst.xmsgs
├── fuse.log
├── fuse.xmsgs
├── fuseRelaunch.cmd
├── gen_test.cmd_log
├── gen_test.gise
├── gen_test.lso
├── gen_test.prj
├── gen_test.syr
├── gen_test.v
├── gen_test.xise
├── gen_test.xst
├── gen_test_envsettings.html
├── gen_test_summary.html
├── gen_test_xst.xrpt
├── iseconfig
│ ├── gen_test.projectmgr
│ ├── gen_test.xreport
│ └── uart_tx_top.xreport
├── isim
│ ├── isim_usage_statistics.html
│ ├── pn_info
│ ├── tb_Uart_Send_isim_beh.exe.sim
│ │ ├── ISimEngine-DesignHierarchy.dbg
│ │ ├── isimcrash.log
│ │ ├── isimkernel.log
│ │ ├── libPortability.dll
│ │ ├── netId.dat
│ │ ├── tb_Uart_Send_isim_beh.exe
│ │ ├── tmp_save
│ │ │ └── _1
│ │ └── work
│ │ ├── m_00000000001951949339_0828849418.c
│ │ ├── m_00000000001951949339_0828849418.didat
│ │ ├── m_00000000001951949339_0828849418.nt64.obj
│ │ ├── m_00000000003586951895_3113203713.c
│ │ ├── m_00000000003586951895_3113203713.didat
│ │ ├── m_00000000003586951895_3113203713.nt64.obj
│ │ ├── m_00000000004134447467_2073120511.c
│ │ ├── m_00000000004134447467_2073120511.didat
│ │ ├── m_00000000004134447467_2073120511.nt64.obj
│ │ ├── tb_Uart_Send_isim_beh.exe_main.c
│ │ └── tb_Uart_Send_isim_beh.exe_main.nt64.obj
│ └── work
│ ├── glbl.sdb
│ ├── tb_@uart_@send.sdb
│ └── uart_byte_tx.sdb
├── isim.cmd
├── isim.log
├── pa.fromNetlist.tcl
├── planAhead.ngc2edif.log
├── planAhead_pid120124.debug
├── planAhead_pid133116.debug
├── planAhead_run_1
│ ├── gen_test.data
│ │ ├── cache
│ │ │ └── uart_tx_top_ngc_zx.edif
│ │ ├── constrs_1
│ │ │ ├── designprops.xml
│ │ │ ├── fileset.xml
│ │ │ └── usercols.xml
│ │ ├── runs
│ │ │ ├── impl_1.psg
│ │ │ └── runs.xml
│ │ ├── sim_1
│ │ │ └── fileset.xml
│ │ ├── sources_1
│ │ │ ├── chipscope.xml
│ │ │ ├── fileset.xml
│ │ │ └── ports.xml
│ │ └── wt
│ │ ├── java_command_handlers.wdf
│ │ ├── project.wpc
│ │ └── webtalk_pa.xml
│ ├── gen_test.ppr
│ ├── planAhead.jou
│ ├── planAhead.log
│ └── planAhead_run.log
├── planAhead_run_2
│ ├── gen_test.data
│ │ ├── cache
│ │ │ └── uart_tx_top_ngc_zx.edif
│ │ ├── constrs_1
│ │ │ └── fileset.xml
│ │ ├── runs
│ │ │ ├── impl_1.psg
│ │ │ └── runs.xml
│ │ ├── sim_1
│ │ │ └── fileset.xml
│ │ ├── sources_1
│ │ │ └── fileset.xml
│ │ └── wt
│ │ ├── project.wpc
│ │ └── webtalk_pa.xml
│ ├── gen_test.ppr
│ ├── planAhead.jou
│ ├── planAhead.log
│ └── planAhead_run.log
├── tb_Uart_Send.cmd_log
├── tb_Uart_Send.lso
├── tb_Uart_Send.prj
├── tb_Uart_Send.syr
├── tb_Uart_Send.xst
├── tb_Uart_Send_beh.prj
├── tb_Uart_Send_isim_beh.exe
├── tb_Uart_Send_isim_beh.wdb
├── tb_Uart_Send_xst.xrpt
├── uart_tx_top.bgn
├── uart_tx_top.bit
├── uart_tx_top.bld
├── uart_tx_top.cmd_log
├── uart_tx_top.drc
├── uart_tx_top.lso
├── uart_tx_top.ncd
├── uart_tx_top.ngc
├── uart_tx_top.ngd
├── uart_tx_top.ngr
├── uart_tx_top.pad
├── uart_tx_top.par
├── uart_tx_top.pcf
├── uart_tx_top.prj
├── uart_tx_top.ptwx
├── uart_tx_top.stx
├── uart_tx_top.syr
├── uart_tx_top.twr
├── uart_tx_top.twx
├── uart_tx_top.ucf
├── uart_tx_top.unroutes
├── uart_tx_top.ut
├── uart_tx_top.v
├── uart_tx_top.xpi
├── uart_tx_top.xst
├── uart_tx_top_bitgen.xwbt
├── uart_tx_top_envsettings.html
├── uart_tx_top_guide.ncd
├── uart_tx_top_map.map
├── uart_tx_top_map.mrp
├── uart_tx_top_map.ncd
├── uart_tx_top_map.ngm
├── uart_tx_top_map.xrpt
├── uart_tx_top_ngdbuild.xrpt
├── uart_tx_top_pad.csv
├── uart_tx_top_pad.txt
├── uart_tx_top_par.xrpt
├── uart_tx_top_summary.html
├── uart_tx_top_summary.xml
├── uart_tx_top_usage.xml
├── uart_tx_top_xst.xrpt
├── usage_statistics_webtalk.html
├── webtalk.log
├── webtalk_pn.xml
├── xilinxsim.ini
├── xlnx_auto_0_xdb
│ └── cst.xbcd
└── xst
└── work
├── hdllib.ref
├── vlg02
│ └── uart__byte__tx.bin
└── vlg4D
└── uart__tx__top.bin
52 directories, 260 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论