IT评测·应用市场-qidao123.com

标题: 基于FPGA的AD5753(DAC数模转换器)的控制 II(SPI驱动) [打印本页]

作者: 王國慶    时间: 2024-6-21 13:36
标题: 基于FPGA的AD5753(DAC数模转换器)的控制 II(SPI驱动)
基于FPGA的AD5753(DAC数模转换器)的控制 II(已上板验证)

   语言 :Verilg HDL
EDA工具:Vivado
  
  

一、引言

本次分享DAC(AD5753) SPI驱动控制器的FPGA实现,可以借鉴到大部分DAC或者ADC的SPI驱动控制,是上篇基于FPGA的AD5753(DAC数模转换器)的控制 I(SPI驱动)文章的续篇。重要包罗DAC(AD5753) FPGA的工程实现,仿真以及上板调试,实现了对DAC芯片的寄存器读写控制。
二、基于FPGA的AD5753控制驱动实现

1. 顶层模块

顶层模块代码如下所示,重要包罗
(1)AD5753驱动模块:AD5753_driver模块负责与AD5753 DAC通信,发送数据和触发信号。
(2)数据控制模块:AD5753_DATA_Ctrl模块生成要发送给DAC的数据,并控制数据发送。
(3)逻辑分析仪(ILA):ila实例用于监视和记录信号,以便于调试。
(4)假造输入输出(VIO):vio_0实例用于假造探针,可以观察或驱动信号。
clk_wiz_0实例用于生成50MHz的时钟信号clk_50m,而且locked信号表示时钟锁定状态。dac_reset_n输出端口被设置为locked,用于DAC的复位。
  1. module test_ADC5753(
  2.     input           sys_clk,
  3.     input           fault_n,
  4.     output           sdi, // to ac5753
  5.     output          sclk,
  6.     input           sdo,  // from ad5753
  7.     output          dac_reset_n,
  8.     output          sync_n,   
  9.     output          ldac_n,
  10.     output          led
  11.     );
  12. wire [32:0]   send_data;
  13. wire          send_trig;
  14. wire [32:0]   spi_rx_dat;
  15. wire          spi_rx_int;
  16. wire          send_done ;
  17. //wire          spi_clk_i2;
  18. wire          spi_clk_i;
  19. wire          locked;
  20. wire          clk_50m;
  21. wire          dat_gen_en;
  22. wire [15:0]   data;
  23.    clk_wiz_0 clk_wiz_inst
  24.    (
  25.     .clk_out2(clk_50m),     
  26.     .clk_out1( ),     
  27.     .locked  (locked  ),      
  28.     .clk_in1 (sys_clk    )     //50M
  29.    
  30.     );  
  31.    assign  dac_reset_n = locked;
  32.    
  33.   assign  led = 1'b0;
  34.    reg[4:0] cnt;   
  35. reg  clk_1M;
  36.    always@(posedge clk_50m or negedge locked)
  37.    begin
  38.         if(!locked) begin
  39.            cnt = 5'b0;
  40.            clk_1M = 1'b0;
  41.         end
  42.         else begin
  43.             if(cnt == 5'd24 ) begin
  44.                 clk_1M = !clk_1M;
  45.                 cnt = 5'd0;
  46.             end
  47.             else begin
  48.                 cnt = cnt +5'b1;
  49.             end
  50.          end
  51.    end
  52.    
  53.       
  54. AD5753_driver AD5753_driver (
  55.     .clk(clk_50m),
  56.     .dac_reset_n(locked),
  57.     .fault_n(fault_n),
  58.     .send_data(send_data),
  59.     .send_trig(send_trig),
  60.     .send_done(send_done),
  61.     .spi_clk_i(clk_1M),
  62.     .spi_rx_dat(spi_rx_dat),
  63.     .spi_rx_int(spi_rx_int),
  64.     .ldac_n(ldac_n),
  65.     .spi_clk(sclk),
  66.     .sync_n(sync_n),
  67.     .spi_mosi(sdi),
  68.     .spi_miso(sdo)
  69.     );   
  70. AD5753_DATA_Ctrl AD5753_DATA_Ctrl (
  71.     .clk(clk_50m),
  72.     .spi_clk_i(clk_1M),
  73.     .locked(locked),
  74.     .data(data),
  75.     .send_done(send_done),
  76.     .send_trig(send_trig),
  77.     .send_data(send_data),
  78.     .dat_gen_en(1'b1),
  79.     .spi_rx_int(spi_rx_int),
  80.     .spi_rx_dat(spi_rx_dat)
  81.     );
  82. ila ila_inst (
  83.         .clk(clk_50m), // input wire clk
  84.         .probe0(send_data), // input wire [23:0]  probe0  
  85.         .probe1(send_trig), // input wire [0:0]  probe1
  86.         .probe2(spi_rx_dat), // input wire [23:0]  probe2
  87.         .probe3(spi_rx_int), // input wire [0:0]  probe3
  88.         .probe4(send_done), // input wire [0:0]  probe4
  89.         .probe5(locked), // input wire [0:0]  probe5
  90.         .probe6(dac_reset_n), // input wire [0:0]  probe6
  91.         .probe7(fault_n), // input wire [0:0]  probe7
  92.         .probe8(sdi), // input wire [0:0]  probe8
  93.         .probe9(sclk), // input wire [0:0]  probe9
  94.         .probe10(sync_n), // input wire [0:0]  probe10
  95.         .probe11(ldac_n), // input wire [0:0]  probe11
  96.         .probe12(sdo) // input wire [0:0]  probe12
  97. );
  98. vio_0 vio_0 (
  99.   .clk(clk_50m),                // input wire clk
  100.   .probe_in0( ),    // input wire [0 : 0] probe_in0
  101.   .probe_out0(),  // output wire [0 : 0] probe_out0
  102.   .probe_out1(data)  // output wire [0 : 0] probe_out0
  103. );
  104.    
  105. endmodule
复制代码
2. 数据控制模块(AD5753_DATA_Ctrl模块)

AD5753_DATA_Ctrl 模块,筹划用于控制与AD5753数字到模拟转换器(DAC)的数据传输。通过界说一系列的输入输出端口、内部状态、计数器和标记位来实现对数据发送过程的准确控制。
模块内部实现了一个状态机,通过不同的状态(如 DATA_IDLE、DATA_FAULT、DATA_Key 等)来管理数据传输流程。状态机根据当前状态和输入信号(比方 dat_gen_en、send_done)来决定下一个状态,并通过 spi_clk_i 来同步数据的发送。
模块还包罗了CRC校验逻辑,通过 gen_crc8 子模块生成数据的CRC校验码,确保数据传输的可靠性。在不同的状态下,模块会设置相应的发送触发信号 send_trig 和发送数据 send_data,以及实现特定操作的500us延时,从而完成对AD5753 DAC的下令设置和数据更新。
  1. module AD5753_DATA_Ctrl(
  2.     input            clk,        //50M
  3.     input            spi_clk_i,
  4.     input            locked,
  5.     input            send_done,
  6.     output   reg        send_trig,
  7.     output [31:0]    send_data,
  8.     input            dat_gen_en,
  9.     input           spi_rx_int,
  10.     input [15:0]    data,
  11.     input  [31:0]   spi_rx_dat
  12.     );
  13. // device adress   
  14.     localparam[2:0] DEVICE_ADRESS=3'b011;   
  15. // register
  16.     localparam[4:0] NOP=5'h00;
  17.     localparam[4:0] Key=5'h00;   
  18.    
  19.    
  20.    
  21. //   STATE
  22.     localparam[4:0] DATA_IDLE  =    5'd0;
  23.     localparam[4:0] DATA_FAULT  =   5'd1;     
  24.     localparam[4:0] DATA_Key   =    5'd2;  
  25.     localparam[4:0] DATA_Key_wait = 5'd3;      
  26.     localparam[4:0] DATA_CLEAR =    5'd4;
  27.     localparam[4:0] DATA_REQ =      5'd5;     
  28.     localparam[4:0] DATA_DC_SET =   5'd6;      
  29.     localparam[4:0] DATA_DC_SET_WAIT =  5'd7;
  30.     localparam[4:0] DATA_DC_MOD =       5'd8;      
  31.     localparam[4:0] DATA_DC_MOD_WAIT =  5'd9;     
  32.     localparam[4:0] DATA_DAC_SET =      5'd10;                  
  33.     localparam[4:0] DATA_DAC_SET_WAIT = 5'd11;
  34.     localparam[4:0] DATA_DAC_MOD =      5'd12;   
  35.     localparam[4:0] DATA_DAC_MOD_WAIT = 5'd13;   
  36.     localparam[4:0] DATA_LDAC =         5'd14;      
  37.     localparam[4:0] DATA_OUTPUT =       5'd15;
  38.     localparam[4:0] DATA_REQ_DAC =      5'd16;   
  39.     localparam[4:0] DATA_REQ_DAC_WAIT = 5'd17;      
  40.     localparam[4:0] DAC_read =          5'd18;
  41.     localparam[4:0] DAC_nop =           5'd19;               
  42.     reg [13:0]       cnt_500us;
  43.     reg              FLAG;
  44.    
  45.     reg [4:0]        state;
  46.     reg [4:0]        next_state;
  47.     reg             send_trig_tem;
  48.     reg [23:0]      send_data_tem;
  49.     reg             spi_clk_dly;
  50.     wire            spi_clk_pos;
  51.     wire            spi_clk_neg;   
  52.     reg             send_done_dly;
  53.     wire            send_done_pos;
  54.     reg             FLAG2;
  55.    
  56.      wire[7:0]      nextCRC8_D24;
  57.      wire           crc_out_en;
  58.     reg [15:0]       data_reg;
  59.     reg [15:0]       data_reg2;  
  60.    
  61.    
  62.       always @ ( posedge spi_clk_i ) begin
  63.          if( ~locked ) begin
  64.             data_reg <= 16'b0;
  65.             data_reg2 <= 16'b0;
  66.           end
  67.          else begin
  68.             data_reg <= data;
  69.             data_reg2 <= data_reg;
  70.             
  71.             end
  72.       
  73.       end  
  74.    
  75.    
  76.    
  77.     always @ ( posedge spi_clk_i ) begin
  78.       if( ~locked )
  79.         state <= DATA_IDLE;
  80.       else
  81.         state <= next_state;
  82.      end
  83.     always @ (*) begin
  84.       if( ~locked )       
  85.          next_state = DATA_IDLE;
  86.        else
  87.           case ( state )
  88.             DATA_IDLE:      
  89.                   if( dat_gen_en )
  90.                     next_state = DATA_FAULT;
  91.                   else
  92.                     next_state = DATA_IDLE;
  93.            DATA_FAULT:         
  94.                   if( send_done )  
  95.                      next_state = DATA_Key;
  96.                   else
  97.                     next_state = DATA_FAULT;                           
  98.             DATA_Key:
  99.                   if( send_done )  
  100.                      next_state = DATA_Key_wait;
  101.                   else
  102.                      next_state = DATA_Key;                          
  103.            DATA_Key_wait:
  104.                   if( FLAG )
  105.                      next_state = DATA_CLEAR;
  106.                   else
  107.                      next_state = DATA_Key_wait;  
  108.                      
  109.            DATA_CLEAR:
  110.                   if( send_done )
  111.                      next_state = DATA_REQ;
  112.                   else
  113.                      next_state = DATA_CLEAR;
  114.             DATA_REQ:
  115.                   if( send_done )
  116.                      next_state = DATA_DC_SET;
  117.                   else
  118.                      next_state = DATA_REQ;                     
  119.             DATA_DC_SET:
  120.                   if( send_done )
  121.                      next_state = DATA_DC_SET_WAIT;
  122.                   else
  123.                      next_state = DATA_DC_SET;                       
  124.             DATA_DC_SET_WAIT:
  125.                   if( FLAG )
  126.                      next_state = DATA_DC_MOD;
  127.                   else
  128.                      next_state = DATA_DC_SET_WAIT;
  129.             DATA_DC_MOD:
  130.                   if( send_done )
  131.                      next_state = DATA_DC_MOD_WAIT;
  132.                   else
  133.                      next_state = DATA_DC_MOD;                     
  134.             DATA_DC_MOD_WAIT:
  135.                   if( FLAG )
  136.                      next_state = DATA_DAC_SET;
  137.                   else
  138.                      next_state = DATA_DC_MOD_WAIT;                    
  139.             DATA_DAC_SET:
  140.                   if( send_done )
  141.                      next_state = DATA_DAC_SET_WAIT;
  142.                   else
  143.                      next_state = DATA_DAC_SET;                       
  144.             DATA_DAC_SET_WAIT:
  145.                   if( FLAG )
  146.                      next_state = DATA_LDAC ;
  147.                   else
  148.                      next_state = DATA_DAC_SET_WAIT;     
  149. //             DATA_DAC_MOD:
  150. //                  if( send_done )
  151. //                     next_state = DATA_DAC_MOD_WAIT ;
  152. //                  else
  153. //                     next_state = DATA_DAC_MOD;                     
  154. //             DATA_DAC_MOD_WAIT:
  155. //                  if( FLAG )
  156. //                     next_state = DATA_LDAC ;
  157. //                  else
  158. //                     next_state = DATA_DAC_MOD_WAIT;                     
  159.              DATA_LDAC:
  160.                   if( send_done )
  161.                      next_state =  DATA_OUTPUT ;
  162.                   else
  163.                      next_state = DATA_LDAC;   
  164.              DATA_OUTPUT:
  165.                   if( send_done )
  166.                      next_state =  DATA_REQ_DAC ;
  167.                   else
  168.                      next_state = DATA_OUTPUT;                     
  169.              DATA_REQ_DAC:
  170.                   if( send_done)
  171.                      next_state =  DATA_REQ_DAC_WAIT ;
  172.                   else
  173.                      next_state = DATA_REQ_DAC;  
  174.               DATA_REQ_DAC_WAIT:      
  175.                   if( FLAG )
  176.                      next_state =  DATA_LDAC ;
  177.                   else
  178.                      next_state = DATA_REQ_DAC_WAIT;                                                                                                     
  179.              DAC_read:
  180.                 if( send_done )
  181.                      next_state = DAC_nop;
  182.                   else
  183.                      next_state = DAC_read;                     
  184.              DAC_nop:
  185.                 if( send_done )
  186.                      next_state = DATA_REQ_DAC;
  187.                   else
  188.                      next_state = DAC_nop;                       
  189.                      
  190.                                     
  191.           default :
  192.                     next_state = DATA_IDLE;
  193.           endcase
  194.     end
  195. always @ ( posedge clk ) begin
  196.     if(~locked) begin
  197.         spi_clk_dly <= 1'b0;
  198.         send_done_dly <= 1'b0;
  199.      end
  200.      else begin
  201.         spi_clk_dly <=spi_clk_i;
  202.         send_done_dly <= send_done;      
  203.      end
  204. end
  205. assign spi_clk_neg = spi_clk_dly && ~spi_clk_i;
  206. assign spi_clk_pos = (~spi_clk_dly )&& spi_clk_i;
  207. assign send_done_pos =( ~send_done_dly) && send_done;
  208. reg[7:0] nextCRC8_D24_tem;
  209. //assign send_trig =crc_out_en;
  210. assign send_data ={send_data_tem,nextCRC8_D24_tem};
  211. always@( posedge clk) begin
  212. if( ~locked ) begin
  213.     send_trig <= 1'b0;
  214.     nextCRC8_D24_tem <=8'b0;
  215. end
  216.     if(crc_out_en) begin
  217.     send_trig <= 1'b1;
  218.     nextCRC8_D24_tem <= nextCRC8_D24;
  219.    
  220.     end
  221.     else if(send_done)
  222.      send_trig <= 1'b0;   
  223.     else
  224.     send_trig <=send_trig;
  225. end
  226. always @ ( posedge clk ) begin
  227.   if( ~locked ) begin
  228.     send_trig_tem <= 1'b0;
  229.     send_data_tem <= 24'b0;
  230.   end
  231.   else begin
  232.     if( state == DATA_IDLE && ~send_done ) begin
  233.         send_trig_tem <= 1'b0;
  234.         send_data_tem <= 24'b0;
  235.      end
  236.      else if( state == DATA_FAULT && ~send_done  ) begin
  237.         send_trig_tem <= 1'b1;
  238.         send_data_tem <= {DEVICE_ADRESS,5'h10,16'h005c};    //   
  239.     end      
  240.      else if( state == DATA_Key  && ~send_done) begin
  241.         send_trig_tem <= 1'b1;
  242.         send_data_tem <= {DEVICE_ADRESS,5'h08,16'hFCBA};         
  243.     end
  244.     else if( state == DATA_CLEAR && ~send_done  ) begin
  245.         send_trig_tem <= 1'b1;
  246.         send_data_tem <= {DEVICE_ADRESS,5'h14,16'h2000};    //     
  247.     end
  248.      else if( state == DATA_REQ && ~send_done ) begin
  249.         send_trig_tem <= 1'b1;
  250.         send_data_tem <= {DEVICE_ADRESS,5'h09,16'h0644};        
  251.     end
  252.       else if( state == DATA_DC_SET && ~send_done ) begin
  253.         send_trig_tem <= 1'b1;
  254.         send_data_tem <= {DEVICE_ADRESS,5'h0C,16'h010E};        
  255.     end   
  256.       else if( state == DATA_DC_MOD && ~send_done ) begin
  257.         send_trig_tem <= 1'b1;
  258.         send_data_tem <= {DEVICE_ADRESS,5'h0B,16'h0020};        
  259.     end   
  260.        else if( state == DATA_DAC_SET && ~send_done ) begin
  261.         send_trig_tem <= 1'b1;
  262.         send_data_tem <= {DEVICE_ADRESS,5'h06,16'h01a8};        
  263.     end   
  264.       else if( state == DATA_DAC_MOD && ~send_done ) begin
  265.         send_trig_tem <= 1'b1;
  266.         send_data_tem <= {DEVICE_ADRESS,5'h01,16'h0000};        
  267.     end   
  268.    
  269.        else if( state == DATA_LDAC && ~send_done ) begin
  270.         send_trig_tem <= 1'b1;
  271.         send_data_tem <= {DEVICE_ADRESS,5'h07,16'h1DAC};        
  272.     end   
  273.       else if( state == DATA_OUTPUT && ~send_done ) begin
  274.         send_trig_tem <= 1'b1;
  275.         send_data_tem <= {DEVICE_ADRESS,5'h06,16'h01E8};       //D6 = 1
  276.     end   
  277.       else if( state == DATA_REQ_DAC && ~send_done ) begin
  278.         send_trig_tem <= 1'b1;
  279.         send_data_tem <= {DEVICE_ADRESS,5'h01,data_reg2};        
  280.     end            
  281.    
  282.       else if( state == DAC_read && ~send_done ) begin
  283.         send_trig_tem <= 1'b1;
  284.         send_data_tem <= {DEVICE_ADRESS,5'h13,16'h02};     //读output寄存器  
  285.     end
  286.          else if( state == DAC_nop && ~send_done ) begin
  287.         send_trig_tem <= 1'b1;
  288.         send_data_tem <= {DEVICE_ADRESS,NOP,16'h00};        
  289.     end   
  290.      else   begin
  291.       send_trig_tem <= 1'b0;   
  292.     end
  293.     end
  294. end
  295.     // 延时500us
  296.     always@( posedge spi_clk_i or negedge locked)
  297.     begin
  298.       if( ~locked)  begin
  299.             cnt_500us <= 14'b0;
  300.             FLAG <= 1'b0;
  301.         end
  302.        else begin
  303.          if(state == DATA_Key_wait ) begin
  304.              if(cnt_500us == 14'd1010 ) begin
  305.                 cnt_500us <= 1'b1;
  306.                 FLAG  <= 1'b1;
  307.              end
  308.              else begin
  309.                 cnt_500us <= cnt_500us +14'b1;
  310.                 FLAG <= 1'b0;
  311.              end
  312.          end  
  313.          else if(state == DATA_DC_SET_WAIT ) begin
  314.              if(cnt_500us == 14'd1010 ) begin
  315.                 cnt_500us <= 1'b0;
  316.                 FLAG  <= 1'b1;
  317.              end
  318.              else begin
  319.                 cnt_500us <= cnt_500us +14'b1;
  320.                 FLAG <= 1'b0;
  321.              end
  322.          end        
  323.            else if(state == DATA_DC_MOD_WAIT ) begin
  324.              if(cnt_500us == 14'd1010 ) begin
  325.                 cnt_500us <= 1'b0;
  326.                 FLAG  <= 1'b1;
  327.              end
  328.              else begin
  329.                 cnt_500us <= cnt_500us +14'b1;
  330.                 FLAG <= 1'b0;
  331.              end
  332.          end           
  333.             else if(state == DATA_REQ_DAC_WAIT ) begin
  334.              if(cnt_500us == 14'd16 ) begin
  335.                 cnt_500us <= 1'b0;
  336.                 FLAG  <= 1'b1;
  337.              end
  338.              else begin
  339.                 cnt_500us <= cnt_500us +14'b1;
  340.                 FLAG <= 1'b0;
  341.              end
  342.          end   
  343.   
  344.            else if(state == DATA_DAC_SET_WAIT ) begin
  345.              if(cnt_500us == 14'd1010 ) begin
  346.                 cnt_500us <= 1'b0;
  347.                 FLAG  <= 1'b1;
  348.              end
  349.              else begin
  350.                 cnt_500us <= cnt_500us +14'b1;
  351.                 FLAG <= 1'b0;
  352.              end
  353.          end         
  354.           else if(state == DATA_DAC_MOD_WAIT ) begin
  355.              if(cnt_500us == 14'd16 ) begin
  356.                 cnt_500us <= 1'b0;
  357.                 FLAG  <= 1'b1;
  358.              end
  359.              else begin
  360.                 cnt_500us <= cnt_500us +14'b1;
  361.                 FLAG <= 1'b0;
  362.              end
  363.          end         
  364.          
  365.          
  366.          
  367.          
  368.          else begin
  369.                    FLAG  <= 1'b0;
  370.                               
  371.          end
  372.                              
  373.        end  
  374.     end
  375.    
  376.    
  377. gen_crc8 gen_crc8 (
  378.     .clk(clk),
  379.     .rst_n(locked),
  380.     .crc_in_en(send_trig_tem),
  381.     .Data(send_data_tem),
  382.     .nextCRC8_D24(nextCRC8_D24),
  383.     .crc_out_en(crc_out_en)
  384.     );
  385.    
  386.    
  387.    
  388. endmodule
复制代码
3、gen_crc8校验模块

gen_crc8 的模块用于生成8位循环冗余校验(CRC)码,模块包含时钟输入 clk,复位信号 rst_n,CRC输入使能 crc_in_en,待处理数据 Data(24位宽),以及CRC校验码输出 nextCRC8_D24 和输出使能 crc_out_en。
模块利用一个寄存器 crc_in_en_d0 来检测 crc_in_en 的边沿,即从0到1的跳变,这通常表示一个新数据块的到来。
在检测到 crc_in_en 的上升沿后,模块根据输入数据 Data 和当前的CRC寄存器值 nextCRC8_D24 来盘算新的CRC校验码。CRC的盘算利用了一系列异或(XOR)操作,这些操作界说了CRC的多项式。
  1. `timescale 1ns / 1ps
  2. module gen_crc8(
  3. input clk,
  4. input rst_n,
  5. input crc_in_en,
  6. input [23:0] Data,
  7. output reg [7:0] nextCRC8_D24,
  8. output reg crc_out_en
  9. );
  10. reg crc_in_en_d0=0;
  11. always @(posedge clk or negedge rst_n)begin
  12.     if(!rst_n)
  13.         crc_in_en_d0 <= 1'b0;
  14.     else
  15.         crc_in_en_d0 <= crc_in_en;
  16. end      
  17.    
  18. always @(posedge clk or negedge rst_n)begin
  19.     if(!rst_n)
  20.         nextCRC8_D24 <= 'd0;
  21.     else if(!crc_in_en_d0 && crc_in_en)begin   
  22.         nextCRC8_D24[0] <= Data[23] ^ Data[21] ^ Data[19] ^ Data[18] ^ Data[16] ^ Data[14] ^ Data[12] ^ Data[8] ^ Data[7] ^ Data[6] ^ Data[0] ^ nextCRC8_D24[0] ^ nextCRC8_D24[2] ^ nextCRC8_D24[3] ^ nextCRC8_D24[5] ^ nextCRC8_D24[7];
  23.         nextCRC8_D24[1] <= Data[23] ^ Data[22] ^ Data[21] ^ Data[20] ^ Data[18] ^ Data[17] ^ Data[16] ^ Data[15] ^ Data[14] ^ Data[13] ^ Data[12] ^ Data[9] ^ Data[6] ^ Data[1] ^ Data[0] ^ nextCRC8_D24[0] ^ nextCRC8_D24[1] ^ nextCRC8_D24[2] ^ nextCRC8_D24[4] ^ nextCRC8_D24[5] ^ nextCRC8_D24[6] ^ nextCRC8_D24[7];
  24.         nextCRC8_D24[2] <= Data[22] ^ Data[17] ^ Data[15] ^ Data[13] ^ Data[12] ^ Data[10] ^ Data[8] ^ Data[6] ^ Data[2] ^ Data[1] ^ Data[0] ^ nextCRC8_D24[1] ^ nextCRC8_D24[6];
  25.         nextCRC8_D24[3] <= Data[23] ^ Data[18] ^ Data[16] ^ Data[14] ^ Data[13] ^ Data[11] ^ Data[9] ^ Data[7] ^ Data[3] ^ Data[2] ^ Data[1] ^ nextCRC8_D24[0] ^ nextCRC8_D24[2] ^ nextCRC8_D24[7];
  26.         nextCRC8_D24[4] <= Data[19] ^ Data[17] ^ Data[15] ^ Data[14] ^ Data[12] ^ Data[10] ^ Data[8] ^ Data[4] ^ Data[3] ^ Data[2] ^ nextCRC8_D24[1] ^ nextCRC8_D24[3];
  27.         nextCRC8_D24[5] <= Data[20] ^ Data[18] ^ Data[16] ^ Data[15] ^ Data[13] ^ Data[11] ^ Data[9] ^ Data[5] ^ Data[4] ^ Data[3] ^ nextCRC8_D24[0] ^ nextCRC8_D24[2] ^ nextCRC8_D24[4];
  28.         nextCRC8_D24[6] <= Data[21] ^ Data[19] ^ Data[17] ^ Data[16] ^ Data[14] ^ Data[12] ^ Data[10] ^ Data[6] ^ Data[5] ^ Data[4] ^ nextCRC8_D24[0] ^ nextCRC8_D24[1] ^ nextCRC8_D24[3] ^ nextCRC8_D24[5];
  29.         nextCRC8_D24[7] <= Data[22] ^ Data[20] ^ Data[18] ^ Data[17] ^ Data[15] ^ Data[13] ^ Data[11] ^ Data[7] ^ Data[6] ^ Data[5] ^ nextCRC8_D24[1] ^ nextCRC8_D24[2] ^ nextCRC8_D24[4] ^ nextCRC8_D24[6];
  30.     end
  31. end
  32. always @(posedge clk)begin
  33.     crc_out_en <= !crc_in_en_d0 && crc_in_en;
  34. end  
  35. endmodule
复制代码
这个模块是数据传输中确保数据完备性的一个重要组件,通过CRC校验可以检测数据在传输过程中是否出现错误。如果CRC校验失败,体系可以接纳相应的步调来纠正或重新发送数据。
三、结尾

本文重要形貌怎样利用FPGA驱动DAC芯片AD5753,已经在开发板上验证乐成。使得设置完成之后,可以正常的控制dac的输出。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/) Powered by Discuz! X3.4