当前位置:网站首页>verilog实现串口通信发送到数码管
verilog实现串口通信发送到数码管
2022-06-29 20:51:00 【QQ_778132974】
verilog实现串口通信,实现PC与FPGA的串口通信,按键数码管显示。
时钟频率50MHZ,波特率115200,可以修改调整。
串口输入数据,发送到数码管上进行显示。
在vivado建立工程并综合:

顶层模块代码如下:
`timescale 1ns / 1ps
//
// Company:
// Engineer:
//
// Create Date:
// Design Name:
// Module Name: uart_disp_top
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//
module uart_disp_top(
input clk, //clock input
input rst_n, //asynchronous reset input, low active
input rx_pin, //serial data input
output [5:0] Scan_Sig,//位选信号 这里我们只用两个数码管
output [7:0]SMG_Data
);
wire [7:0] data1;
//wire [7:0] da
边栏推荐
- Set up your own website (12)
- Oracle reserved word query
- Is it safe to open an account with flush for stock trading?
- . NETCORE unified authentication authorization learning - run (1)
- Information system project manager -- Chapter VII examination questions of project cost management over the years
- What problems should be avoided when using the points mall games for marketing?
- String类的常用方法
- 2021 CCPC 哈尔滨 E. Power and Modulo (思维题)
- HAproxy + Keepalive实现LDAP代理服务
- 利用积分商城游戏进行营销需要避免哪些问题出现?
猜你喜欢
随机推荐
[compilation principle] semantic analysis
计算成像前沿进展
空间导电盘式滑环材料的选择
Win7 easy connect 提示:选路连接失败,可能当前连接网络异常,请稍后重试
阿里云发布《中国机器人产业图谱(2022)》,122页pdf
Set up your own website (12)
「运维有小邓」审核并分析文件和文件夹访问权限
"Xiaodeng" in operation and maintenance monitors user login operations in real time
Oracle保留字查询
0/1 score planning topic
Rsync 建立多目录模块的方法
Jupyter服务安装及启动
量子机器学习的基础和应用:一个简明文献综述
Curl download example
[buuctf.reverse] 142_ [SUCTF2019]babyunic
Analysis of the underlying architecture of spark storage system - spark business environment practice
Exercise 8 Chapter 8 Verilog finite state machine design -4 Verilog quartus Modelsim
Logical structure and physical structure
导航 实验【微机原理】【实验】
解释PBR纹理贴图(texture-maps)





![[compilation principle] semantic analysis](/img/2e/9c17da3dbc758b2985e55201c73f99.png)

