当前位置:首页 > FPGA > 正文内容

AD4134 24bit数据模式 CRC校验

chanra1n3周前 (11-30)FPGA221

校验代码如下:

// CRC polynomial: x^6 + x^5 + x^2 + x + 1 (binary: 1100111)
// Function to calculate CRC
function [0:0] calculate_crc;
input [31:0] data;  // 32-bit input data
localparam POLY = 7'b1100111;  // Polynomial
localparam SEED_VALUE = 6'b100101;  // Fixed seed value

// Intermediate variables
    reg [32:0] temp_data;  // 33-bit temporary data for CRC calculation
    reg [6:0] remainder;  // 7-bit remainder
    integer i;

// Step 1: XOR the high 6 bits with SEED_VALUE
temp_data[32:26] = data[31:26] ^ 6'b100101;  // XOR operation
temp_data[25:0] = data[25:0];  // Lower 26 bits remain unchanged

// Step 2: Initialize remainder
remainder = 7'b0;

// Step 3: Perform polynomial division
for (i = 32; i >= 0; i = i - 1) begin
// Shift the remainder and bring in the next bit
remainder = {remainder[5:0], temp_data[i]};  // Shift left, bring in next bit

// If the leading bit is 1, perform polynomial division
if (remainder[6]) begin
remainder = remainder ^ POLY;  // XOR with POLY
end
end

// Step 4: Check if remainder is zero
if (remainder == 7'b0000000) begin
calculate_crc = 0;  // Valid
end else begin
calculate_crc = 1;  // Invalid
end
endfunction


扫描二维码推送至手机访问。

版权声明:本文由我的FPGA发布,如需转载请注明出处。

本文链接:https://myfpga.cn/index.php/post/433.html

分享给朋友:
返回列表

上一篇:AD4134 Verilog驱动

没有最新的文章了...

“AD4134 24bit数据模式 CRC校验 ” 的相关文章

Intel FPGA初级考试模拟试题 四套含答案

Intel FPGA初级考试模拟试题 四套含答案

*1.下列对异步信号进行同步的描述错误的是(使用锁存器)。采用保持寄存器加握手信号的方法特殊的具体应用电路结构,根据应用的不同而不同使用锁存器异步 FIFO *2.FPGA 的可编程是主要基于什么结构(查找表(LUT))。查找表(LUT)ROM 可编程PAL 可编程与或阵列可编程解析:FP...

ALGO C4MB V11引脚参照表(持续更新)

ALGO C4MB V11引脚参照表(持续更新)

功能:常用引脚CLKPIN_E1LED0PIN_G15LED1PIN_F16LED2PIN_F15LED3PIN_D16KEY1PIN_E15KEY2PIN_E16KEY3PIN_M15KEY4PIN_M16RXDPIN_M2TXDPIN_G1功能:VGA引脚VGA_BLUE[0]PIN_C15VG...

基础实验十三,DS18B20温度传感器

基础实验十三,DS18B20温度传感器

//==========================================================================// Author     : ChanRa1n// Description: Training for Intel FPGA/...

Verilog实现串并转换

Verilog实现串并转换

项目文件:SIPO.zip//------------------------------------------------------// File Name        : SIPO.v// Author       &n...