` `UART是常用模块,无论是调试还是用于使用过程中的数据传输,都很重要。该模块使用FPGA实现时候,一般接收数据比较容易实现,但是发送数据容易出错,原因在于时钟不精确,导致数据接收错误。
` `对于50MHz时钟的晶振,一般使用9600的波特率,因为我们需要得到9600*16Hz的时钟,使用PLL可以得到精确的这个值。
## UART接收模块
```
`timescale 1ns/1ns
module uart_rd
(
input i_rst_n,
input i_clk,
output [7 : 0] o_rx_data, //UART数据接收接收到的数据
output o_uart_rx_busy, //UART数据接收模块接收数据忙
output o_uart_rx_error, //UART数据接收帧出错
input i_uart_rx //UART串行数据输入
);
reg r_uart_rx_buf;
reg r_uart_rx_falling;
reg [3 : 0] r_sample_cnt; //采样计数器
reg [1 : 0] cstate, nstate;
parameter [1 : 0] idle = 2'b00;
parameter [1 : 0] receive_data = 2'b01;
parameter [1 : 0] receive_done = 2'b10;
reg [3 : 0] r_shift_cnt;
reg [9 : 0] r_shift;
reg [7 : 0] r_rx_data;
reg r_uart_rx_error;
assign o_rx_data = r_rx_data;
assign o_uart_rx_busy = (cstate == idle)? 1'b0 : 1'b1;
assign o_uart_rx_error = r_uart_rx_error;
//*********************************PROCESS**************************************
// FUNCTION :捕获UART数据的下降沿
//******************************************************************************
always @(posedge i_clk, negedge i_rst_n)
begin
if(1'b0 == i_rst_n)
begin
r_uart_rx_buf <= 1'b0;
r_uart_rx_falling <= 1'b0;
end
else
begin
r_uart_rx_buf <= i_uart_rx;
r_uart_rx_falling <= ~i_uart_rx & (r_uart_rx_buf);
end
end
//*********************************PROCESS**************************************
// FUNCTION :UART下个状态到现状态的转化
//******************************************************************************
always @(posedge i_clk, negedge i_rst_n)
begin
if(1'b0 == i_rst_n)
cstate <= idle;
else
cstate <= nstate;
end
//*********************************PROCESS**************************************
// FUNCTION :UART下个状态的转化
//******************************************************************************
always @(*)
begin
case(cstate)
idle :
if(1'b1 == r_uart_rx_falling)
nstate = receive_data;
else
nstate = idle;
receive_data :
if(4'd10 == r_shift_cnt)
nstate = receive_done;
else
nstate = receive_data;
receive_done :
nstate = idle;
default :
nstate = idle;
endcase
end
//*********************************PROCESS**************************************
// FUNCTION :UART在现状态的操作
//******************************************************************************
always @(posedge i_clk, negedge i_rst_n)
begin
if(1'b0 == i_rst_n)
begin
r_shift <= 10'b1111111111;
r_shift_cnt <= 4'd0;
r_sample_cnt <= 4'd0;
r_rx_data <= 8'd0;
r_uart_rx_error <= 1'b0;
end
else
begin
if(receive_data == cstate)
if(4'd5 == r_sample_cnt)
begin
r_shift_cnt <= r_shift_cnt + 4'd1;
r_shift <= {i_uart_rx, r_shift[9 : 1]};
r_sample_cnt <= r_sample_cnt + 4'd1;
end
else
r_sample_cnt <= r_sample_cnt + 4'd1;
else if(receive_done == cstate)
begin
r_shift_cnt <= 4'd0;
r_shift <= 10'b1111111111;
r_rx_data <= r_shift[8 : 1];
if(1'b0 == r_shift[9])
r_uart_rx_error <= 1'b1;
else
r_uart_rx_error <= 1'b0;
r_shift_cnt <= 4'd0;
r_sample_cnt <= 4'd0;
end
else
begin
r_shift <= 10'b1111111111;
r_shift_cnt <= 4'd0;
r_sample_cnt <= 4'd0;
end
end
end
endmodule
```
## UART发送模块
```
`timescale 1ns/1ns
module uart_tx
(
input i_rst_n,
input i_clk,
input i_tx_order, //UART数据发送指令
input [7 : 0] i_tx_data, //UART发送的数据
output o_uart_tx_busy, //UART发送模块忙
output o_uart_tx //UART数据输出
);
reg r_tx_order_buf;
reg r_tx_order_rising;
// reg [4 : 0] r_div_cnt; //时钟分频计数器
// reg r_div_clk; //分频时钟信号
reg [1 : 0] cstate, nstate;
parameter [1 : 0] idle = 2'b00;
parameter [1 : 0] load_data = 2'b01;
parameter [1 : 0] shift_data = 2'b10;
reg [3 : 0] r_shift_cnt;
reg [9 : 0] r_shift;
reg [3 : 0] r_hold_cnt;
assign o_uart_tx = r_shift[0];
assign o_uart_tx_busy = (cstate == idle)? 1'b0 : 1'b1;
////*********************************PROCESS**************************************
//// FUNCTION :产生分频时钟
////******************************************************************************
//
// always @(posedge i_clk, negedge i_rst_n)
// begin
// if(1'b0 == i_rst_n)
// begin
// r_div_cnt <= 4'd0;
// r_div_clk <= 1'b0;
// end
// else
// begin
// r_div_cnt <= r_div_cnt + 4'd1;
// r_div_clk <= r_div_cnt[3];
// end
// end
//*********************************PROCESS**************************************
// FUNCTION :捕获UART发送指令的上升沿
//******************************************************************************
always @(posedge i_clk, negedge i_rst_n)
begin
if(1'b0 == i_rst_n)
begin
r_tx_order_buf <= 1'b0;
r_tx_order_rising <= 1'b0;
end
else
begin
r_tx_order_buf <= i_tx_order;
r_tx_order_rising <= i_tx_order & (~r_tx_order_buf);
end
end
//*********************************PROCESS**************************************
// FUNCTION :UART下个状态转化到现状态
//******************************************************************************
always @(posedge i_clk, negedge i_rst_n)
begin
if(1'b0 == i_rst_n)
cstate <= idle;
else
cstate <= nstate;
end
//*********************************PROCESS**************************************
// FUNCTION :UART下个状态转化进程
//******************************************************************************
always @(*)
begin
case(cstate)
idle :
if(1'b1 == r_tx_order_rising)
nstate = shift_data;
else
nstate = idle;
shift_data :
if(4'd9 == r_shift_cnt)
nstate = idle;
else
nstate = shift_data;
default :
nstate = idle;
endcase
end
//*********************************PROCESS**************************************
// FUNCTION :UART在各个现状态下的操作
//******************************************************************************
always @(posedge i_clk, negedge i_rst_n)
begin
if(1'b0 == i_rst_n)
begin
r_shift <= 10'b1111111111;
r_shift_cnt <= 4'd0;
r_hold_cnt <= 4'd0;
end
else
begin
if(idle == cstate && 1'b1 == r_tx_order_rising)
begin
r_shift_cnt <= 4'd0;
r_shift <= {1'b1, i_tx_data, 1'b0};
r_hold_cnt <= r_hold_cnt + 4'd1;
end
else if(shift_data == cstate)
begin
r_hold_cnt <= r_hold_cnt + 4'd1;
if(4'd15 == r_hold_cnt)
begin
r_shift_cnt <= r_shift_cnt + 4'd1;
r_shift <= {1'b1, r_shift[9 : 1]};
end
end
else
begin
r_shift <= 10'b1111111111;
r_shift_cnt <= 4'd0;
end
end
end
endmodule
```
## 时钟
` `时钟使用IP核实现。
## 测试模块
```
module top(
input wire clk50,
//rst,//
output reg led, //用于指示
input wire rxd,
output wire txd
);
wire rx_busy;//16倍波特率
//reset
//*********************************PROCESS**************************************
// 复位模块
//******************************************************************************
reg rst_n ;
reg [9:0]delay_cnt;
always@(posedge clk50)
begin
if(delay_cnt>=10'd1000)begin
delay_cnt <= delay_cnt;
rst_n <= 1'b1;
end
else begin
rst_n <= 1'b0;
delay_cnt <= delay_cnt + 1'b1;
end
end
/**********************************************************
//串口接口
**********************************************************/
wire [7:0]data_temp;
//wire rx_busy;
uart_interface uart_inst_int
(
.clk50 (clk50) ,
.rst_n (rst_n) ,
.rxd (rxd) ,
.txd (txd) ,
.tx_data(data_temp) ,
.rx_data(data_temp) ,
.rx_busy(rx_busy) ,
.tx_start(!rx_busy),
.tx_busy()
);
//指示灯
//assign txd = led;
reg [31:0]cnt;
//always@(posedge clk50)
//begin
// if(cnt >= 32'd25000000 - 1)
// begin
// cnt <= 0;
// led <=~led;
// end
// else begin
// cnt <= cnt + 1'b1 ;
// end
//end
always@(posedge rx_busy)
led<=~led;
endmodule
```
- 序
- 第1章 Linux下开发FPGA
- 1.1 Linux下安装diamond
- 1.2 使用轻量级linux仿真工具iverilog
- 1.3 使用linux shell来读写串口
- 1.4 嵌入式上的linux
- 设备数教程
- linux C 标准库文档
- linux 网络编程
- 开机启动流程
- 1.5 linux上实现与树莓派,FPGA等通信的串口脚本
- 第2章 Intel FPGA的使用
- 2.1 特别注意
- 2.2 高级应用开发流程
- 2.2.1 生成二进制bit流rbf
- 2.2.2 制作Preloader Image
- 2.2.2.1 生成BSP文件
- 2.2.2.2 编译preloader和uboot
- 2.2.2.3 更新SD的preloader和uboot
- 2.3 HPS使用
- 2.3.1 通过JTAG下载代码
- 2.3.2 HPS软件部分开发
- 2.3 quartus中IP核的使用
- 2.3.1 Intel中RS232串口IP的使用
- 2.4 一些问题的解决方法
- 2.4.1 关于引脚的复用的综合出错
- 第3章 关于C/C++的一些语法
- 3.1 C中数组作为形参不传长度
- 3.2 汇编中JUMP和CALL的区别
- 3.3 c++中map的使用
- 3.4 链表的一些应用
- 3.5 vector的使用
- 3.6 使用C实现一个简单的FIFO
- 3.6.1 循环队列
- 3.7 C语言不定长参数
- 3.8 AD采样计算同频信号的相位差
- 3.9 使用C实现栈
- 3.10 增量式PID
- 第4章 Xilinx的FPGA使用
- 4.1 Alinx使用中的一些问题及解决方法
- 4.1.1 在Genarate Bitstream时提示没有name.tcl
- 4.1.2 利用verilog求位宽
- 4.1.3 vivado中AXI写DDR说明
- 4.1.4 zynq中AXI GPIO中断问题
- 4.1.5 关于时序约束
- 4.1.6 zynq的PS端利用串口接收电脑的数据
- 4.1.7 SDK启动出错的解决方法
- 4.1.8 让工具综合是不优化某一模块的方法
- 4.1.9 固化程序(双核)
- 4.1.10 分配引脚时的问题
- 4.1.11 vivado仿真时相对文件路径的问题
- 4.2 GCC使用Attribute分配空间给变量
- 4.3 关于Zynq的DDR写入byte和word的方法
- 4.4 常用模块
- 4.4.1 I2S接收串转并
- 4.5 时钟约束
- 4.5.1 时钟约束
- 4.6 VIVADO使用
- 4.6.1 使用vivado进行仿真
- 4.7 关于PicoBlaze软核的使用
- 4.8 vivado一些IP的使用
- 4.8.1 float-point浮点单元的使用
- 4.10 zynq的双核中断
- 第5章 FPGA的那些好用的工具
- 5.1 iverilog
- 5.2 Arduino串口绘图器工具
- 5.3 LabVIEW
- 5.4 FPGA开发实用小工具
- 5.5 Linux下绘制时序图软件
- 5.6 verilog和VHDL相互转换工具
- 5.7 linux下搭建轻量易用的verilog仿真环境
- 5.8 VCS仿真verilog并查看波形
- 5.9 Verilog开源的综合工具-Yosys
- 5.10 sublim text3编辑器配置verilog编辑环境
- 5.11 在线工具
- 真值表 -> 逻辑表达式
- 5.12 Modelsim使用命令仿真
- 5.13 使用TCL实现的个人仿真脚本
- 5.14 在cygwin下使用命令行下载arduino代码到开发板
- 5.15 STM32开发
- 5.15.1 安装Atollic TrueSTUDIO for STM32
- 5.15.2 LED闪烁吧
- 5.15.3 模拟U盘
- 第6章 底层实现
- 6.1 硬件实现加法的流程
- 6.2 硬件实现乘法器
- 6.3 UART实现
- 6.3.1 通用串口发送模块
- 6.4 二进制数转BCD码
- 6.5 基本开源资源
- 6.5.1 深度资源
- 6.5.2 FreeCore资源集合
- 第7章 常用模块
- 7.1 温湿度传感器DHT11的verilog驱动
- 7.2 DAC7631驱动(verilog)
- 7.3 按键消抖
- 7.4 小脚丫数码管显示
- 7.5 verilog实现任意人数表决器
- 7.6 基本模块head.v
- 7.7 四相八拍步进电机驱动
- 7.8 单片机部分
- 7.8.1 I2C OLED驱动
- 第8章 verilog 扫盲区
- 8.1 时序电路中数据的读写
- 8.2 从RTL角度来看verilog中=和<=的区别
- 8.3 case和casez的区别
- 8.4 关于参数的传递与读取(paramter)
- 8.5 关于符号优先级
- 第9章 verilog中的一些语法使用
- 9.1 可综合的repeat
- 第10章 system verilog
- 10.1 简介
- 10.2 推荐demo学习网址
- 10.3 VCS在linux上环境的搭建
- 10.4 deepin15.11(linux)下搭建system verilog的vcs仿真环境
- 10.5 linux上使用vcs写的脚本仿真管理
- 10.6 system verilog基本语法
- 10.6.1 数据类型
- 10.6.2 枚举与字符串
- 第11章 tcl/tk的使用
- 11.1 使用Tcl/Tk
- 11.2 tcl基本语法教程
- 11.3 Tk的基本语法
- 11.3.1 建立按钮
- 11.3.2 复选框
- 11.3.3 单选框
- 11.3.4 标签
- 11.3.5 建立信息
- 11.3.6 建立输入框
- 11.3.7 旋转框
- 11.3.8 框架
- 11.3.9 标签框架
- 11.3.10 将窗口小部件分配到框架/标签框架
- 11.3.11 建立新的上层窗口
- 11.3.12 建立菜单
- 11.3.13 上层窗口建立菜单
- 11.3.14 建立滚动条
- 11.4 窗口管理器
- 11.5 一些学习的脚本
- 11.6 一些常用的操作语法实现
- 11.6.1 删除同一后缀的文件
- 11.7 在Lattice的Diamond中使用tcl
- 第12章 FPGA的重要知识
- 12.1 面积与速度的平衡与互换
- 12.2 硬件原则
- 12.3 系统原则
- 12.4 同步设计原则
- 12.5 乒乓操作
- 12.6 串并转换设计技巧
- 12.7 流水线操作设计思想
- 12.8 数据接口的同步方法
- 第13章 小项目
- 13.1 数字滤波器
- 13.2 FIFO
- 13.3 一个精简的CPU( mini-mcu )
- 13.3.1 基本功能实现
- 13.3.2 中断添加
- 13.3.3 使用中断实现流水灯(实际硬件验证)
- 13.3.4 综合一点的应用示例
- 13.4.5 使用flex开发汇编编译器
- 13.4.5 linux--Flex and Bison
- 13.4 有符号数转单精度浮点数
- 13.5 串口调试FPGA模板