数据分包:145字节版本

分包

`timescale 1ns / 1ps
//
// Company: 
// Engineer: 
// 
// Create Date: 2023/08/04 14:35:21
// Design Name: 
// Module Name: dat_send_blocks_v
// Project Name: 
// Target Devices: 
// Tool Versions: 
// Description: 
// 
// Dependencies: 
// 
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
// 
//module dat_send_blocks(clk      ,//系统时钟,110Mrst      ,//系统复位,高有效din      ,//接收到的数据,第一个数据为总帧长[16],其余数据均为8比特数据din_clk_p,//接收到的数据时钟,脉冲型dout      ,//链路数据,8比特dout_clk_p //链路数据时钟,脉冲型
);
//
input clk        ;//系统时钟,110M
input rst        ;//系统复位,高有效
input [7:0] din ;//接收到的数据,第一个数据为总帧长[16],其余数据均为8比特数据
input din_clk_p  ;//接收到的数据时钟,脉冲型output [7:0] dout;//链路数据,8比特
output dout_clk_p;//链路数据时钟,脉冲型//===========================================================================
//       检测数据完成
//===========================================================================
wire [31:0] RST_TIME = 32'd10;//时间自己设定
reg [31:0] stop_cnts = 32'hffff_ffff;
always @ (posedge clk )
beginif(din_clk_p)beginstop_cnts<=32'd0;endelse if(stop_cnts<=RST_TIME)beginstop_cnts<= stop_cnts + 1'b1;endelsebeginstop_cnts<= stop_cnts;end
endreg pulse_stop=1'b0;
always @ (posedge clk)
beginif(stop_cnts==RST_TIME)beginpulse_stop<=  1'b1;endelsebeginpulse_stop<=  1'b0;	end
endreg delay_pulse_stop;
always @ (posedge clk or posedge rst)
beginif(rst)begindelay_pulse_stop<=1'b0;endelsebegindelay_pulse_stop<=pulse_stop;end
end
//
reg din_rd_en                   ;
wire [7:0] din_dout             ;
wire din_full                   ;
wire din_empty                  ;
wire  [10 : 0] din_rd_data_count;
//----------- Begin Cut here for INSTANTIATION Template ---// INST_TAG
fifo_common_8_8_2048 FIFO (.clk(clk                     ),// input wire clk.srst(rst                    ),// input wire srst.din(din                     ),// input wire [7 : 0] din.wr_en(din_clk_p             ),// input wire wr_en.rd_en(din_rd_en             ),// input wire rd_en.dout(din_dout               ),// output wire [7 : 0] dout.full(din_full               ),// output wire full.empty(din_empty             ),// output wire empty.data_count(din_rd_data_count) // output wire [10 : 0] data_count
);reg [15:0] cnts;// 包总数长度
always @ (posedge clk or posedge rst)
beginif(rst)begincnts<=16'hffff;endelse if(stop_cnts == (RST_TIME-1'b1))begincnts<=din_rd_data_count;endelsebegincnts<=cnts;end
endreg [7:0] pack_cnts;// 包帧计数
always @ (posedge clk or posedge rst)
beginif(rst)beginpack_cnts<=8'd0;endelse if((delay_pulse_stop==1'b1)&&(pulse_stop==1'b0))//posedgebeginpack_cnts<=pack_cnts + 1'b1;endelsebeginpack_cnts<=pack_cnts;end
endreg [3:0] num_cnts;
always @ (posedge clk or posedge rst)
beginif(rst)beginnum_cnts<=4'h0;endelse if((delay_pulse_stop==1'b0)&&(pulse_stop==1'b1))//negedgebeginif(cnts<=16'd142)beginnum_cnts<=4'd1;endelse if(cnts<=16'd284)beginnum_cnts<=4'd2;       endelse if(cnts<=16'd426)beginnum_cnts<=4'd3;       endelse if(cnts<=16'd568)beginnum_cnts<=4'd4;       endelse if(cnts<=16'd710)beginnum_cnts<=4'd5;       endelse if(cnts<=16'd852)beginnum_cnts<=4'd6;       endelse if(cnts<=16'd994)beginnum_cnts<=4'd7;       endelse if(cnts<=16'd1136)beginnum_cnts<=4'd8;       endelsebeginnum_cnts<=num_cnts;end                              endelsebeginnum_cnts<=num_cnts;end
endreg [7:0] negedge_cnts;
always @ (posedge clk or posedge rst)
beginif(rst)beginnegedge_cnts<=8'hff;endelse if(negedge_cnts<=8'd10)//negedgebeginnegedge_cnts<=negedge_cnts + 1'b1;                          endelse if((delay_pulse_stop==1'b0)&&(pulse_stop==1'b1))//negedgebeginnegedge_cnts<=8'd0;                          endelsebeginnegedge_cnts<=negedge_cnts;end
endreg [15:0] start_cnts;
always @ (posedge clk or posedge rst)
beginif(rst)beginstart_cnts<=16'hffff;endelse if(start_cnts<=16'd2047)//negedgebeginstart_cnts<= start_cnts + 1'b1;            endelse if(negedge_cnts==8'd7)//negedgebeginstart_cnts<=16'd0;            endelsebeginstart_cnts<=start_cnts;end
endreg [15:0] pack_num;
always @ (posedge clk or posedge rst)
beginif(rst)beginpack_num<=16'd0;endelse if((delay_pulse_stop==1'b0)&&(pulse_stop==1'b1))//negedgebeginpack_num<=cnts;endelse if((pack_num>=16'd1)&&( ((start_cnts>={8'd0,8'd10})&&(start_cnts<={8'd0,8'd151}))//1|| ((start_cnts>={8'd1,8'd10})&&(start_cnts<={8'd1,8'd151}))//2|| ((start_cnts>={8'd2,8'd10})&&(start_cnts<={8'd2,8'd151}))//3|| ((start_cnts>={8'd3,8'd10})&&(start_cnts<={8'd3,8'd151}))//4|| ((start_cnts>={8'd4,8'd10})&&(start_cnts<={8'd4,8'd151}))//5|| ((start_cnts>={8'd5,8'd10})&&(start_cnts<={8'd5,8'd151}))//6|| ((start_cnts>={8'd6,8'd10})&&(start_cnts<={8'd6,8'd151}))//7|| ((start_cnts>={8'd7,8'd10})&&(start_cnts<={8'd7,8'd151})))//1 )//posedgebeginpack_num<=pack_num - 1'b1;endelsebeginpack_num<=pack_num;end
endreg [7:0] pack_num_new;
always @ (posedge clk or posedge rst)
beginif(rst)beginpack_num_new<=8'd0;endelse if(pack_num>=16'd142)//posedgebeginpack_num_new<=8'd142;endelsebeginpack_num_new<=pack_num[7:0] ;end
endreg [7:0] dout;
always @ (posedge clk or posedge rst)
beginif(rst)begindout<=8'd0;endelsebegincase(start_cnts){8'd0,8'd1}:begin dout<=pack_cnts      ;end{8'd0,8'd2}:begin dout<={4'd1,num_cnts};end{8'd0,8'd3}:begin dout<=pack_num_new   ;end  {8'd1,8'd1}:begin dout<=pack_cnts      ;end{8'd1,8'd2}:begin dout<={4'd2,num_cnts};end{8'd1,8'd3}:begin dout<=pack_num_new   ;end  {8'd2,8'd1}:begin dout<=pack_cnts      ;end{8'd2,8'd2}:begin dout<={4'd3,num_cnts};end{8'd2,8'd3}:begin dout<=pack_num_new   ;end      {8'd3,8'd1}:begin dout<=pack_cnts      ;end{8'd3,8'd2}:begin dout<={4'd4,num_cnts};end{8'd3,8'd3}:begin dout<=pack_num_new   ;end     {8'd4,8'd1}:begin dout<=pack_cnts      ;end{8'd4,8'd2}:begin dout<={4'd5,num_cnts};end{8'd4,8'd3}:begin dout<=pack_num_new   ;end  {8'd5,8'd1}:begin dout<=pack_cnts      ;end{8'd5,8'd2}:begin dout<={4'd6,num_cnts};end{8'd5,8'd3}:begin dout<=pack_num_new   ;end   {8'd6,8'd1}:begin dout<=pack_cnts      ;end{8'd6,8'd2}:begin dout<={4'd7,num_cnts};end{8'd6,8'd3}:begin dout<=pack_num_new   ;end   {8'd7,8'd1}:begin dout<=pack_cnts      ;end{8'd7,8'd2}:begin dout<={4'd8,num_cnts};end{8'd7,8'd3}:begin dout<=pack_num_new   ;end default:begin dout<=din_dout          ;end      endcaseend
endreg [15:0] pack_num_rd;
always @ (posedge clk or posedge rst)
beginif(rst)beginpack_num_rd<=16'd0;endelse if((delay_pulse_stop==1'b0)&&(pulse_stop==1'b1))//negedgebeginpack_num_rd <= cnts  + 1'b1 ;endelse if((pack_num_rd>=16'd1)&&( ((start_cnts>={8'd0,8'd1})&&(start_cnts<={8'd0,8'd142}))//1|| ((start_cnts>={8'd1,8'd1})&&(start_cnts<={8'd1,8'd142}))//2|| ((start_cnts>={8'd2,8'd1})&&(start_cnts<={8'd2,8'd142}))//3|| ((start_cnts>={8'd3,8'd1})&&(start_cnts<={8'd3,8'd142}))//4|| ((start_cnts>={8'd4,8'd1})&&(start_cnts<={8'd4,8'd142}))//5|| ((start_cnts>={8'd5,8'd1})&&(start_cnts<={8'd5,8'd142}))//6|| ((start_cnts>={8'd6,8'd1})&&(start_cnts<={8'd6,8'd142}))//6|| ((start_cnts>={8'd7,8'd1})&&(start_cnts<={8'd7,8'd142})))//7 )//posedgebeginpack_num_rd<=pack_num_rd - 1'b1;endelsebeginpack_num_rd<=pack_num_rd;end
endalways @ (posedge clk or posedge rst)
beginif(rst)begindin_rd_en<=1'b0;endelse if((pack_num_rd>=16'd1)&&( ((start_cnts>={8'd0,8'd2})&&(start_cnts<={8'd0,8'd143}))//1|| ((start_cnts>={8'd1,8'd2})&&(start_cnts<={8'd1,8'd143}))//2|| ((start_cnts>={8'd2,8'd2})&&(start_cnts<={8'd2,8'd143}))//3|| ((start_cnts>={8'd3,8'd2})&&(start_cnts<={8'd3,8'd143}))//4|| ((start_cnts>={8'd4,8'd2})&&(start_cnts<={8'd4,8'd143}))//5|| ((start_cnts>={8'd5,8'd2})&&(start_cnts<={8'd5,8'd143}))//6|| ((start_cnts>={8'd6,8'd2})&&(start_cnts<={8'd6,8'd143}))//7|| ((start_cnts>={8'd7,8'd2})&&(start_cnts<={8'd7,8'd143})))//1 )//posedgebegindin_rd_en<=1'b1;endelsebegindin_rd_en<=1'b0;end
endreg dout_clk_p;
always @ (posedge clk or posedge rst)
beginif(rst)begindout_clk_p<=1'b0;endelse if((num_cnts==4'd1)&&( ((start_cnts>={8'd0,8'd1})&&(start_cnts<={8'd0,8'd145}))//1))//posedgebegindout_clk_p<=1'b1;endelse if((num_cnts==4'd2)&&( ((start_cnts>={8'd0,8'd1})&&(start_cnts<={8'd0,8'd145}))//1|| ((start_cnts>={8'd1,8'd1})&&(start_cnts<={8'd1,8'd145}))//2     ))//posedgebegindout_clk_p<=1'b1;endelse if((num_cnts==4'd3)&&( ((start_cnts>={8'd0,8'd1})&&(start_cnts<={8'd0,8'd145}))//1|| ((start_cnts>={8'd1,8'd1})&&(start_cnts<={8'd1,8'd145}))//2   || ((start_cnts>={8'd2,8'd1})&&(start_cnts<={8'd2,8'd145}))//3         ))//posedgebegindout_clk_p<=1'b1;endelse if((num_cnts==4'd4)&&( ((start_cnts>={8'd0,8'd1})&&(start_cnts<={8'd0,8'd145}))//1|| ((start_cnts>={8'd1,8'd1})&&(start_cnts<={8'd1,8'd145}))//2   || ((start_cnts>={8'd2,8'd1})&&(start_cnts<={8'd2,8'd145}))//3 || ((start_cnts>={8'd3,8'd1})&&(start_cnts<={8'd3,8'd145}))//4             ))//posedgebegindout_clk_p<=1'b1;endelse if((num_cnts==4'd5)&&( ((start_cnts>={8'd0,8'd1})&&(start_cnts<={8'd0,8'd145}))//1|| ((start_cnts>={8'd1,8'd1})&&(start_cnts<={8'd1,8'd145}))//2   || ((start_cnts>={8'd2,8'd1})&&(start_cnts<={8'd2,8'd145}))//3 || ((start_cnts>={8'd3,8'd1})&&(start_cnts<={8'd3,8'd145}))//4             || ((start_cnts>={8'd4,8'd1})&&(start_cnts<={8'd4,8'd145}))//5                 ))//posedgebegindout_clk_p<=1'b1;end   else if((num_cnts==4'd6)&&( ((start_cnts>={8'd0,8'd1})&&(start_cnts<={8'd0,8'd145}))//1|| ((start_cnts>={8'd1,8'd1})&&(start_cnts<={8'd1,8'd145}))//2   || ((start_cnts>={8'd2,8'd1})&&(start_cnts<={8'd2,8'd145}))//3 || ((start_cnts>={8'd3,8'd1})&&(start_cnts<={8'd3,8'd145}))//4             || ((start_cnts>={8'd4,8'd1})&&(start_cnts<={8'd4,8'd145}))//5   || ((start_cnts>={8'd5,8'd1})&&(start_cnts<={8'd5,8'd145}))//6                          ))//posedgebegindout_clk_p<=1'b1;end   else if((num_cnts==4'd7)&&( ((start_cnts>={8'd0,8'd1})&&(start_cnts<={8'd0,8'd145}))//1|| ((start_cnts>={8'd1,8'd1})&&(start_cnts<={8'd1,8'd145}))//2   || ((start_cnts>={8'd2,8'd1})&&(start_cnts<={8'd2,8'd145}))//3 || ((start_cnts>={8'd3,8'd1})&&(start_cnts<={8'd3,8'd145}))//4             || ((start_cnts>={8'd4,8'd1})&&(start_cnts<={8'd4,8'd145}))//5   || ((start_cnts>={8'd5,8'd1})&&(start_cnts<={8'd5,8'd145}))//6          || ((start_cnts>={8'd6,8'd1})&&(start_cnts<={8'd6,8'd145}))//7                              ))//posedgebegindout_clk_p<=1'b1;endelse if((num_cnts==4'd8)&&( ((start_cnts>={8'd0,8'd1})&&(start_cnts<={8'd0,8'd145}))//1|| ((start_cnts>={8'd1,8'd1})&&(start_cnts<={8'd1,8'd145}))//2   || ((start_cnts>={8'd2,8'd1})&&(start_cnts<={8'd2,8'd145}))//3 || ((start_cnts>={8'd3,8'd1})&&(start_cnts<={8'd3,8'd145}))//4             || ((start_cnts>={8'd4,8'd1})&&(start_cnts<={8'd4,8'd145}))//5   || ((start_cnts>={8'd5,8'd1})&&(start_cnts<={8'd5,8'd145}))//6          || ((start_cnts>={8'd6,8'd1})&&(start_cnts<={8'd6,8'd145}))//7        || ((start_cnts>={8'd7,8'd1})&&(start_cnts<={8'd7,8'd145}))//7                      ))//posedgebegindout_clk_p<=1'b1;end elsebegindout_clk_p<=1'b0;end
endendmodule

拆包

`timescale 1ns / 1ps
//
// Company: 
// Engineer: 
// Create Date: 2022/02/09 18:26:01
// Design Name: 
// Module Name: dat_recv_blocks
// Project Name: 
// Target Devices: 
// Tool Versions: 
// Description: 
// Dependencies: 
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
// 接收两种帧格式,并完成组帧
//
module dat_recv_blocks(clk               ,//系统时钟,110Mrst               ,//系统复位,高有效din               ,//接收到的数据,第一个数据为总帧长[8],其余数据均为8比特数据din_clk_p         ,//接收到的数据时钟,脉冲型dout              ,//链路数据,16比特dout_clk_p         //链路数据时钟,脉冲型
);
//
input clk         ;//系统时钟,110M
input rst         ;//系统复位,高有效
input [7:0] din   ;//接收到的数据,第一个数据为总帧长[16],其余数据均为8比特数据
input din_clk_p   ;//接收到的数据时钟,脉冲型output [15:0] dout;//链路数据,16比特
output dout_clk_p ;//链路数据时钟,脉冲型
//
reg delay_din_clk_p;
always @ (posedge clk or posedge rst)
beginif(rst)begindelay_din_clk_p<=1'b0;endelsebegindelay_din_clk_p<=din_clk_p;end
end
//
reg select_0_1    ;
always @ (posedge clk or posedge rst)//提取帧计数,将前后两包区分开,避免两帧不是同一包的情况
beginif(rst)beginselect_0_1<=1'b0;endelse if((din_clk_p==1'b1)&&(delay_din_clk_p==1'b0))//posedgebeginselect_0_1<=din[0];endelsebeginselect_0_1<=select_0_1;end
end
//
reg pack_check_pulse;// 检测到一包数据
always @ (posedge clk or posedge rst)
beginif(rst)beginpack_check_pulse<=1'b0;endelse if((din_clk_p==1'b1)&&(delay_din_clk_p==1'b0))//posedgebeginpack_check_pulse<=1'b1;endelsebeginpack_check_pulse<=1'b0;end
end
//
reg [15:0] min_length; // 求出这包数据的最短长度,用于最终判决是否丢数据
always @ (posedge clk or posedge rst)
beginif(rst)beginmin_length<=16'd0;end else if(pack_check_pulse==1'b1)//pulsebegincase(din[3:0])4'd1: begin min_length<=16'd0;    end4'd2: begin min_length<=16'd142;  end4'd3: begin min_length<=16'd284;  end4'd4: begin min_length<=16'd426;  end4'd5: begin min_length<=16'd568;  end4'd6: begin min_length<=16'd710;  end4'd7: begin min_length<=16'd852;  end4'd8: begin min_length<=16'd994;  end4'd9: begin min_length<=16'd1136; enddefault: begin min_length<=16'd0; endendcaseendelsebeginmin_length<=min_length;//holdend
end
//
reg pack_check;//接收到的包指示是否正确判决
always @ (posedge clk or posedge rst)
beginif(rst)beginpack_check<=1'b0;end else if(pack_check_pulse==1'b1)//pulsebeginif((din[7:4]<=din[3:0])&&(din[7:4]>=4'd1)&&(din[7:4]<=4'd8))//区间正确beginpack_check<=1'b1;endelsebeginpack_check<=1'b0;//区间错误,检查存在异常endendelsebeginpack_check<=pack_check;//holdend
end
//
reg pack_end; // 检测最后一包
always @ (posedge clk or posedge rst)//接收到的包指示是否正确判决
beginif(rst)beginpack_end<=1'b0;end else if(pack_check_pulse==1'b1)//pulsebeginif((din[7:4]==din[3:0])&&(din[7:4]>=4'd1)&&(din[7:4]<=4'd8))//区间正确beginpack_end<=1'b1;endelsebeginpack_end<=1'b0;//区间错误,检查存在异常endendelsebeginpack_end<=pack_end;//holdend
end
//
reg length_check_pulse;// pack_check 延迟一拍
always @ (posedge clk or posedge rst)
beginif(rst)beginlength_check_pulse<=1'b0;endelsebeginlength_check_pulse<=pack_check_pulse;end
end
//
reg length_check;//包长度检测 
always @ (posedge clk or posedge rst)
beginif(rst)beginlength_check<=1'b0;endelse if(length_check_pulse)beginif((din<=8'd142)&&(din>=8'd1))//当前数据包长度也正确beginlength_check<=1'b1;endelsebeginlength_check<=1'b0;    //当前数据包长度错误endendelsebeginlength_check<=length_check;//保持end
end
//
reg [7:0] local_length;//从每一包中提取长度
always @ (posedge clk or posedge rst)
beginif(rst)beginlocal_length<=8'd0;endelse if(length_check_pulse)beginlocal_length<=din;endelsebeginlocal_length<=local_length;//保持end
end
//
reg wr_pulse;//    pack_check 延迟二拍
always @ (posedge clk or posedge rst)
beginif(rst)beginwr_pulse<=1'b0;endelsebeginwr_pulse<=length_check_pulse;end
end
//
reg [15:0] local_cnts; // 检测通过的情况下,根据 wr_pulse 开始计数
always @ (posedge clk or posedge rst)
beginif(rst)beginlocal_cnts<=16'hffff;endelse if(local_cnts<=16'd150)beginlocal_cnts<=local_cnts + 1'b1;endelse if((wr_pulse==1'b1)&&(length_check==1'b1)&&(pack_check==1'b1))beginlocal_cnts<=16'd0;endelsebeginlocal_cnts<=local_cnts;    end     
end
//
reg wea_0         ;
always @ (posedge clk or posedge rst)
beginif(rst)beginwea_0<=1'b0;endelse if((select_0_1==1'b0)&&(local_cnts<=16'd142)&&(local_cnts<=local_length)&&(local_cnts>=16'd1))beginwea_0<=1'b1;endelsebeginwea_0<=1'b0;end     
end
//
reg wea_1         ; // 写入 ramenable 信号
always @ (posedge clk or posedge rst)
beginif(rst)beginwea_1<=1'b0;endelse if((select_0_1==1'b1)&&(local_cnts<=16'd142)&&(local_cnts<=local_length)&&(local_cnts>=16'd1))beginwea_1<=1'b1;endelsebeginwea_1<=1'b0;end     
end
//
reg [15:0] addra_0;
always @ (posedge clk or posedge rst)
beginif(rst)beginaddra_0<=16'd0;endelse if((select_0_1==1'b0)&&(local_cnts==16'd150)&&(pack_end==1'b1))//写完包的最后一个。清零,不影响下一帧的写入beginaddra_0<=16'd0;endelse if((select_0_1==1'b0)&&(local_cnts<=16'd143)&&(local_cnts<=(local_length + 1'b1))&&(local_cnts>=16'd2))beginaddra_0<=addra_0 + 1'b1;endelsebeginaddra_0<=addra_0;end     
end
//
reg [15:0] addra_1; // 写入 ram 的 地址
always @ (posedge clk or posedge rst)
beginif(rst)beginaddra_1<=16'd0;endelse if((select_0_1==1'b1)&&(local_cnts==16'd150)&&(pack_end==1'b1))//写完包的最后一个。清零,不影响下一帧的写入beginaddra_1<=16'd0;endelse if((select_0_1==1'b1)&&(local_cnts<=16'd143)&&(local_cnts<=(local_length +1'b1 ))&&(local_cnts>=16'd2))beginaddra_1<=addra_1 + 1'b1;endelsebeginaddra_1<=addra_1;end     
end
//
reg [7:0] delay_dina_0  ; // 延迟 din 
reg [7:0] delay_dina_1  ; // 延迟 din 
reg [7:0] delay_dina_2  ; // 延迟 din 
//
always @ (posedge clk or posedge rst)
beginif(rst)begindelay_dina_0<=8'd0;endelsebegindelay_dina_0<=din;end     
end
//
always @ (posedge clk or posedge rst)
beginif(rst)begindelay_dina_1<=8'd0;endelsebegindelay_dina_1<=delay_dina_0;end     
end
//
always @ (posedge clk or posedge rst)
beginif(rst)begindelay_dina_2<=8'd0;endelsebegindelay_dina_2<=delay_dina_1;end     
end
//RD STATE
reg [15:0] all_dat_num_0;
reg [15:0] all_dat_num_1; // 写入的总数
always @ (posedge clk or posedge rst)
beginif(rst)beginall_dat_num_0<=16'd2047;endelse if((select_0_1==1'b0)&&(local_cnts==16'd146)&&(pack_end==1'b1))//写完包的最后一个。清零,不影响下一帧的写入beginall_dat_num_0<=addra_0;endelsebeginall_dat_num_0<=all_dat_num_0;end     
endalways @ (posedge clk or posedge rst)
beginif(rst)beginall_dat_num_1<=16'd2047;endelse if((select_0_1==1'b1)&&(local_cnts==16'd146)&&(pack_end==1'b1))//写完包的最后一个。清零,不影响下一帧的写入beginall_dat_num_1<=addra_1;endelsebeginall_dat_num_1<=all_dat_num_1;end     
end
//
reg output_flag; // 检测数据包的长度是否大于最小的长度,符合则输出,不符合则丢弃这包数据
always @ (posedge clk or posedge rst)
beginif(rst)beginoutput_flag<=1'b1;endelse if((select_0_1==1'b0)&&(local_cnts==16'd146)&&(pack_end==1'b1))//写完包的最后一个。清零,不影响下一帧的写入beginif(addra_0 >= min_length)beginoutput_flag<=1'b1;endelsebeginoutput_flag<=1'b0;endendelse if((select_0_1==1'b1)&&(local_cnts==16'd146)&&(pack_end==1'b1))//写完包的最后一个。清零,不影响下一帧的写入beginif(addra_1 >= min_length)beginoutput_flag<=1'b1;endelsebeginoutput_flag<=1'b0;endendelsebeginoutput_flag<=output_flag;end     
end//
reg [15:0] rd_cnts; // 计数器  开始往外 写数据
always @ (posedge clk or posedge rst)
beginif(rst)beginrd_cnts<=16'hffff;endelse if(rd_cnts<=16'd1600)//写完包的最后一个。清零,不影响下一帧的写入beginrd_cnts<=rd_cnts + 1'b1;endelse if((local_cnts==16'd150)&&(pack_end==1'b1)&&(output_flag==1'b1))//写完包的最后一个。清零,不影响下一帧的写入beginrd_cnts<=16'd0;endelsebeginrd_cnts<=rd_cnts;end     
end
//
reg [15:0] addrb_0;
reg [15:0] addrb_1;
always @ (posedge clk or posedge rst)
beginif(rst)beginaddrb_0<=16'd0;endelse if(rd_cnts==16'd1599)beginaddrb_0<=16'd0;endelse if((select_0_1==1'b0)&&(rd_cnts<=16'd1539)&&(rd_cnts<=all_dat_num_0)&&(rd_cnts>=16'd0))beginaddrb_0<=addrb_0 + 1'b1;endelsebeginaddrb_0<=addrb_0;end     
end
//
always @ (posedge clk or posedge rst)
beginif(rst)beginaddrb_1<=16'd0;endelse if(rd_cnts==16'd1599)beginaddrb_1<=16'd0;endelse if((select_0_1==1'b1)&&(rd_cnts<=16'd1539)&&(rd_cnts<=all_dat_num_1)&&(rd_cnts>=16'd0))beginaddrb_1<=addrb_1 + 1'b1;endelsebeginaddrb_1<=addrb_1;end     
endreg dout_clk_p; // 原文有 bug
always @ (posedge clk or posedge rst)
beginif(rst)begindout_clk_p<=1'b0;endelse if((rd_cnts>=16'd2)&&(rd_cnts<=16'd1541))   beginif(( select_0_1==1'b1 )&&( rd_cnts <= ( all_dat_num_1 + 1 )))begindout_clk_p<=1'b1;        endelse if((select_0_1==1'b0 )&&( rd_cnts <= ( all_dat_num_0 + 1 )))begindout_clk_p<=1'b1;      endelsebegindout_clk_p<=1'b0;  endendelsebegindout_clk_p<=dout_clk_p;end     
end//
wire [7:0] doutb_0;
wire [7:0] doutb_1;
reg [15:0] dout;
always @ (posedge clk or posedge rst)
beginif(rst)begindout<=16'd0;endelse if(rd_cnts==16'd1)   beginif(select_0_1==1'b1)begindout<=all_dat_num_1 ;        endelse begindout<=all_dat_num_0 ;         endendelsebeginif(select_0_1==1'b1)begindout<={dout[15:8],doutb_1};        endelse begindout<={dout[15:8],doutb_0};                end    end     
endwire [7 : 0] atblk_douta,atblk_doutb;
blk_mem_8_2048 BLKS_A_0 (.clka(clk                       ),// input wire clka.ena(1'b1                       ),// input wire ena.wea(wea_0                      ),// input wire [0 : 0] wea.addra(addra_0                  ),// input wire [10 : 0] addra.dina(delay_dina_2              ),// input wire [7 : 0] dina.douta(atblk_douta              ),// output wire [7 : 0] douta 不用.clkb(clk                       ),// input wire clkb.web(1'b0                       ),// input wire [0 : 0] web.addrb(addrb_0                  ),// input wire [10 : 0] addrb.dinb(8'd0                      ),// input wire [7 : 0] dinb   不用.doutb(doutb_0                  )  // output wire [7 : 0] doutb
);//----------- Begin Cut here for INSTANTIATION Template ---// INST_TAG
blk_mem_8_2048 BLKS_A_1 (.clka(clk                       ),// input wire clka.ena(1'b1                       ),// input wire ena.wea(wea_1                      ),// input wire [0 : 0] wea.addra(addra_1                  ),// input wire [10 : 0] addra.dina(delay_dina_2              ),// input wire [7 : 0] dina.douta(atblk_doutb              ),// output wire [7 : 0] douta 不用.clkb(clk                       ),// input wire clkb.web(1'b0                       ),// input wire [0 : 0] web.addrb(addrb_1                  ),// input wire [10 : 0] addrb.dinb(8'd0                      ),// input wire [7 : 0] dinb   不用.doutb(doutb_1                  )  // output wire [7 : 0] doutb
);endmodule

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/45595.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

pdf工具

iLovePDF | 为PDF爱好者提供的PDF文件在线处理工具 https://www.ilovepdf.com/zh-cn 图片 pdf 合并成一个pdf也可以拆分

近期matlab学习笔记,学习是一个记录,反复的过程

近期matlab学习笔记&#xff0c;学习是一个记录&#xff0c;反复的过程 matlab的mlx文件在运行的时候&#xff0c;不需要在文件夹路径下&#xff0c;也能运行&#xff0c;但是需要调用子函数时&#xff0c;就需要在文件所在路径下运行 那就先运行子函数&#xff0c;把路径换过来…

Qt: 利用QSplitter将主窗口与Docker窗口初始宽度比例2:1

要实现主窗口和 QDockWidget 之间的比例为 2:1&#xff0c;您可以使用 QSplitter 来创建一个可以调整大小的分隔窗口&#xff0c;其中一个区域放置主窗口的内容&#xff0c;另一个区域放置 QDockWidget。以下是一个示例代码&#xff0c;演示了如何实现主窗口和 QDockWidget 之间…

Power BI 工具介绍

Power BI是一款商业智能&#xff08;BI&#xff09;软件&#xff0c;由微软开发&#xff0c;旨在帮助用户将复杂的数据转化为视觉化的交互式见解。Power BI提供了一套完整的工具&#xff0c;包括数据连接、数据准备、数据建模、数据分析和数据可视化等功能&#xff0c;使用户能…

YOLOv10: Real-Time End-to-End Object Detection

双重标签分配 与一对一多分配不同&#xff0c;一对一匹配只为每个地面真相分配一个预测&#xff0c;避免了NMS后处理。然而&#xff0c;这导致了较弱的监督&#xff0c;导致次优的准确性和收敛速度。幸运的是&#xff0c;这种缺陷可以通过一对一多分配来弥补。为此&#xff0c…

Docker 安装 PostgreSQL

1. 启动 PostgreSQL 容器 docker run --name ffj-postgres -p 5432:5432 -e POSTGRES_PASSWORDCisc0123 -d postgres docker run&#xff1a;启动一个新的容器。--name指定容器名称为 ffj-postgres。-p 5432:5432&#xff1a;将主机的 5432 端口映射到容器的 5432 端口。-e P…

智能运维提升企业长期安全防御能力

随着企业数智化转型加速&#xff0c;企业在享受技术革新带来的效率提升与业务模式创新的同时&#xff0c;也面临着日益复杂且多变的网络安全威胁。 2024年&#xff0c;全球网络环境进一步演变&#xff0c;高级持续性威胁&#xff08;APT&#xff09;、勒索软件攻击、数据泄露以…

sqlalchemy反射视图

sqlalchemy反射视图 一个名为my_view的视图,使用SQLAlchemy来操作这个视图 from sqlalchemy import create_engine, MetaData# 创建数据库连接 engine = create_engine(数据库连接字符串)# 创建一个MetaData对象 metadata = MetaData()# 反射视图 metadata.reflect(bind=eng…

解决npm install 安装报错记录贴

前言 环境背景 nodeJS v.14.8.3(nvm安装) package.json: “node-sass”:“8.0.0” 网络环境&#xff1a; 公司内网 镜像地址&#xff1a;公司的镜像源 解决报错过程&#xff1a; 1.换了最新版 vscode&#xff0c; 然后重装 node_modules 还是不行&#xff0c; 报PostCSS rec…

性能优化--- iframe阻塞页面渲染的问题,如何优化?

问题描述&#xff1a; iframe 阻塞问题会阻塞页面的加载&#xff0c;因为 iframe 中的内容需要在父页面加载完成后才能被加载和渲染。这意味着在 iframe 内容完全加载和渲染之前&#xff0c;用户无法看到页面的其他部分。这种行为不仅降低了用户体验&#xff0c;因为用户会看到…

Redis的配置优化、数据类型、消息队列

文章目录 一、Redis的配置优化redis主要配置项CONFIG 动态修改配置慢查询持久化RDB模式AOF模式 Redis多实例Redis命令相关 二、Redis数据类型字符串string列表list集合 set有序集合sorted set哈希hash 三、消息队列生产者消费者模式发布者订阅者模式 一、Redis的配置优化 redi…

Androidstudio安卓开发,SharedPreferences实现登录注册

1. 项目涉及到的技术点 SharedPreferences的使用 2. 效果图 3. 实现过程 注册布局文件&#xff1a;activity_register.xml <?xml version"1.0" encoding"utf-8"?> <androidx.appcompat.widget.LinearLayoutCompat xmlns:android"http:…

mindspore打卡第24天之LSTM+CRF序列标注

LSTMCRF序列标注 概述 序列标注指给定输入序列&#xff0c;给序列中每个Token进行标注标签的过程。序列标注问题通常用于从文本中进行信息抽取&#xff0c;包括分词(Word Segmentation)、词性标注(Position Tagging)、命名实体识别(Named Entity Recognition, NER)等。以命名实…

Spring Boot 3.0 版本SLF4J 对于JUL 日志 Over的处理问题解决

文章目录 Spring Boot 3.0 版本SLF4J 对于JUL 日志 Over的处理问题解决问题背景问题调研解决方案 Spring Boot 3.0 版本SLF4J 对于JUL 日志 Over的处理问题解决 问题背景 升级Spring Boot 到 3.3.1 版本后&#xff0c;发现原来的JUL日志输出无法在Over到SLF4J的实现类。 问题…

第九十五周周报

学习目标&#xff1a; 模型 学习时间&#xff1a; 2024.7.6-2024.7.12 学习产出&#xff1a; 一、模型 这周改了模型&#xff0c;目前能跑且loss稳定&#xff0c;但是fid降不下去&#xff0c;正在找原因。 二、实习 周三展示了demo&#xff0c;目前正在等待通知。

Python爬虫-爬取三国演义文本数据-bs4

bs4进行数据解析 -数据解析的原理: - 1.标签定位 -2.提取标签、标签属性中存储的数据值 - bs4数据解析的原理: - 1.实例化一个BeautifulSoup对象,并且将页面源码数据加载到该对象中 -2.通过调用BeautifulSoup对象中相关的属性或者方法进行标签定位和数据提取 - 环境安装: - pi…

细说MCU用定时器控制ADC采样频率的实现方法

目录 一、工程依赖的硬件及背景 二、设计目的 三、 建立工程 1.选择时钟源和Debug模式 2.配置系统时钟和ADC时钟 3.配置串口 4.配置ADC 5.设置TIM3 6.设置TIM4 7.配置中断 8.GPIO 四、代码修改 1.重新定义ADC回调函数 2.在主程序中编写数据发送代码 3.使能ADC和…

json-server服务使用教程

目录标题 安装 json-server启动 json-server 本地服务 安装 json-server npm install -g json-server0.17.4json-server -v报错请参考&#xff1a;执行json-server -v报错 因为在此系统上禁止运行脚本。 启动 json-server 本地服务 查看本机IP&#xff1a;ipconfig Shift右…

数据分析——Python网络爬虫(四){爬虫库的使用}

爬虫库 爬虫的步骤urllib库发送请求两种方法案例 爬虫的步骤 #mermaid-svg-h5azjtPInpsU2ZpP {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-h5azjtPInpsU2ZpP .error-icon{fill:#552222;}#mermaid-svg-h5azjtPInps…

220.贪心算法:根据身高重建队列(力扣)

代码解决 class Solution { public:// 定义排序规则&#xff1a;首先按身高降序排序&#xff0c;如果身高相同则按k值升序排序static bool cmp(const vector<int>&a, const vector<int>&b){if (a[0] b[0]) return a[1] < b[1]; // 如果身高相同&#…