fpga串口通信的verilog驱动编程解析

时间:2025-07-11  作者:Diven  阅读:0

串口的全程为串行接口,也称为串行通信接口,是采用串行通信方式的扩展接口。与串口对应的并行接口,例如高速AD和DA,

fpga串口通信的verilog驱动编程解析

这些都是用的并行接口,而且在编程也简单一些。

串口有一下特点:

(1)通信线路简单,只要一对传输线就可以实现双向通信。

(2)布线简单,成本低。

(3)通信距离长,可以实现数米到数千米的通信距离。

(4)传输速率慢。

常见的串口速率如4800 , 9600 , 115200bps,代表每秒钟发送多少bit数据,例如9600bps就代表1秒内发送9600bit数据。 

串口协议 :协议比较简单,一般都是10位数据,1个起始位 低电平 ,然后八个数据位,低位在前,一个奇偶校验位,平时

一般不用,最后是一位停止位高电平,这样一帧数据发送结束。

下面介绍一下我的程序框架:

整体框架分为两个部分:一个是串口驱动部分 另一个是串口数据控制部分。串口驱动部分负责串口驱动和波特率的选择,串口数据控制模块

负责控制数据内容的控制和发送速度的控制。

从上面时序图可以看出,每10ms发送一帧数据,这里data_en负责波特率驱动使能,uart_tx_end有两个功能,一个是关闭data_en使能,另一个是给10ms计数器

清零。

module uart_tx_driver( //global clock input clk , //system clock input rst_n , //sync reset //uart interface output reg uart_tx , //user interface input [1:0] bps_select , //波特率选择 input [7:0] uart_data , input data_en , //发送数据使能 output reg uart_tx_end);//--------------------------------//Funtion : 参数定义parameter BPS_4800 = 14'd10417 , BPS_9600 = 14'd5208 , BPS_115200 = 14'd434 ;reg [13:0] cnt_bps_clk ;reg [13:0] bps ;reg bps_clk_en ; //bps使能时钟reg [3:0] bps_cnt ;wire [13:0] BPS_CLK_V = bps >> 1 ;//--------------------------------//Funtion : 波特率选择always @(posedge clk or negedge rst_n)begin if(!rst_n) bps <= 1'd0; else if(bps_select == 2'd0) bps <= BPS_115200; else if(bps_select == 2'd1) bps <= BPS_9600; else bps <= BPS_4800;end//--------------------------------//Funtion : 波特率计数always @(posedge clk or negedge rst_n)begin if(!rst_n) cnt_bps_clk <= 1'd0;    else if(cnt_bps_clk >= bps - 1 && data_en == 1'b0) cnt_bps_clk <= 1'd0; else cnt_bps_clk <= cnt_bps_clk + 1'd1;end //--------------------------------//Funtion : 波特率使能时钟always @(posedge clk or negedge rst_n)begin if(!rst_n) bps_clk_en <= 1'd0; else if(cnt_bps_clk == BPS_CLK_V - 1) bps_clk_en <= 1'd1; else bps_clk_en <= 1'd0;end//--------------------------------//Funtion : 波特率帧计数always @(posedge clk or negedge rst_n)begin if(!rst_n) bps_cnt <= 1'd0; else if(bps_cnt == 11) bps_cnt <= 1'd0; else if(bps_clk_en) bps_cnt <= bps_cnt + 1'd1;end//--------------------------------//Funtion : uart_tx_endalways @(posedge clk or negedge rst_n)begin if(!rst_n) uart_tx_end <= 1'd0; else if(bps_cnt == 11) uart_tx_end <= 1'd1; else uart_tx_end <= 1'd0;end//--------------------------------//Funtion : 发送数据always @(posedge clk or negedge rst_n)begin if(!rst_n) uart_tx <= 1'd1; else case(bps_cnt) 4'd0 : uart_tx <= 1'd1; 4'd1 : uart_tx <= 1'd0; //begin 4'd2 : uart_tx <= uart_data[0];//data 4'd3 : uart_tx <= uart_data[1]; 4'd4 : uart_tx <= uart_data[2]; 4'd5 : uart_tx <= uart_data[3]; 4'd6 : uart_tx <= uart_data[4]; 4'd7 : uart_tx <= uart_data[5]; 4'd8 : uart_tx <= uart_data[6]; 4'd9 : uart_tx <= uart_data[7]; 4'd10 : uart_tx <= 1; //stop default : uart_tx <= 1; endcaseendendModule 
Module uart_tx_control( //global clock input clk , //system clock input rst_n , //sync reset //user interface output reg [7:0] uart_data , output reg data_en , input uart_tx_end );//--------------------------------//Funtion : 参数定义parameter DELAY_10MS = 500_000 ;reg [31:0] cnt_10ms ;wire delay_10ms_done ;//data definereg [31:0] cnt_1s;//--------------------------------//Funtion : cnt_10msalways @(posedge clk or negedge rst_n)begin if(!rst_n) cnt_10ms <= 1'd0; else if(cnt_10ms == DELAY_10MS - 1 && uart_tx_end == 1'd1) cnt_10ms <= 1'd0; else cnt_10ms <= cnt_10ms + 1'd1;endassign delay_10ms_done = (cnt_10ms == DELAY_10MS - 1) ? 1'd1 : 1'd0;//--------------------------------//Funtion : data_enalways @(posedge clk or negedge rst_n)begin if(!rst_n) data_en <= 1'd0; else if(delay_10ms_done) data_en <= 1'd1; else if(uart_tx_end) data_en <= 1'd0;end///////////////////////数据测试///////////////////////////////--------------------------------//Funtion : cnt_1salways @(posedge clk or negedge rst_n)begin if(!rst_n) cnt_1s <= 1'd0; else if(cnt_1s == 49_999_999) cnt_1s <= 1'd0; else cnt_1s <= cnt_1s + 1'd1;end//--------------------------------//Funtion : uart_dataalways @(posedge clk or negedge rst_n)begin if(!rst_n) uart_data <= 1'd0;    else if(uart_data >= 10) uart_data <= 1'd0; else if(cnt_1s == 49_999_999) uart_data <= uart_data + 1'd1;endendmodule 

编辑:黄飞

 

猜您喜欢


你是否曾好奇,为何现在的手机运行如此流畅,能够轻松应对各种大型游戏和多任务处理?这背后,除了强大的处理器和充足的内存,还有一位默默无闻的英雄——LPDDR4 电...
2023-12-21 00:00:00

现代电子技术中,二极管是重要的基础元件。尤其是双向触发二极管(也称为可控硅)和双向稳压二极管(也称为齐纳二极管),在电路中的应用越来越。本文将对这两种二极管进行...
2025-04-01 02:31:41

贴片电阻作为电子元件中的重要组成部分,其性能参数直接影响着整个电路的稳定性和可靠性。FOSAN(富捷电子)作为国内知名的贴片电阻品牌,凭借高品质的产品质量和完善...
2018-01-12 12:43:30

什么是FPGA原型? FPGA原型设计是一种成熟的技术,用于通过将RTL移植到现场可编程门阵列(FPGA)来验证专门应用的集成电路(ASIC),专用标准产品(...
2022-07-19 16:27:00


熔断器作为重要的电路保护元件,有着着不可替代的作用。瑶合乐作为国内知名的熔断器品牌,其产品以品质稳定、规格齐全受到关注。本文将围绕“瑶合乐熔断器大小规格多少品牌...
2021-04-03 08:19:30

0402排阻封装作为常见的电子元器件封装形式,在现代电子产品中得到了应用。其尺寸为0.04英寸×0.02英寸(约1.0mm×0.5mm),体积小、功耗低而受到设...
2025-04-15 10:30:04

电动汽车日益普及的今天,电池作为电动汽车的心脏,其重要性不言而喻。而汽车电池管理系统 (BMS) 则是保障电池安全稳定运行、延长电池使用寿命的关键。汽车电池管理...
2024-11-29 00:00:00

你是否想过,为什么梳子摩擦头发会吸引碎纸屑?为什么闪电会在雷雨天划破夜空?这些现象的背后,都隐藏着一个神秘的力量——电荷。电荷,是构成宇宙的基本属性,如同质量一...
2024-04-09 00:00:00