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

时间:2025-11-09  作者: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 

编辑:黄飞

 

猜您喜欢

保鲜盒作为现代生活中不可少的厨房用品,应用于多个领域。在家庭日常生活中,保鲜盒用于存储食物,能够有效延长食材的新鲜度,减少浪费。无论是剩菜、切好的水果,还是干货...
2021-12-05 00:00:00

NTC(Negative Temperature Coefficient)热敏电阻作为重要的温度感应元件,应用于温度控制、过热保护及温度测量等场景中。而在日本,...
2016-02-03 00:54:30

防锈剂和润滑剂是工业和日常生活中不可少的化学品。防锈剂主要用于防止金属表面生锈,形成一层保护膜,隔绝水分和氧气,从而延长金属材料的使用寿命。常见的防锈剂包括油性...
2008-09-13 00:00:00

微型漏电保护断路器是重要的电气保护装置,应用于多个领域。在住宅建筑中,能够有效防止漏电事故,保护家庭成员的人身安全。在商业场所,如商店和办公室,微型漏电保护断路...
2024-06-02 00:00:00

防尘滤棉是高效的空气过滤材料,应用于家居、办公室及工业场所。采用高品质的合成纤维制造,具有良好的过滤性能,能够有效阻挡灰尘、花粉、细菌和其微小颗粒,保障空气的清...
2013-08-19 00:00:00

贴片电阻R220的阻值选择取决于在电路中的具体作用。R220通常表示电阻的封装尺寸为220,即英制0201封装,而非阻值。 选择合适的阻值需要考虑以下几个因素:...
2024-11-29 10:26:25

贴片电阻上的1R50表示其阻值为1.5欧姆。字母R在这里代表小数点,将数字1和50分开。所以,1R50相当于1.5Ω。这种表示方法常用于表面贴装器件(SMD),...
2024-11-29 10:26:11

温度保险丝作为重要的安全保护元件,得到了应用。永册温度保险丝因其稳定的性能和多样的规格,成为市场上受到关注的品牌。本文将围绕“永册温度保险丝大小规格多少品牌”这...
2020-07-19 04:01:30


贴片电阻1203,指的是尺寸为1.2mm x 0.3mm的表面贴装电阻器,因其小巧的体积和优异的性能,广泛应用于各种电子产品中。从智能手机到电脑,从汽车电子到医...
2025-04-14 15:02:38