-
Notifications
You must be signed in to change notification settings - Fork 8
CRC15VHDL
Alessandro Zummo edited this page Dec 5, 2015
·
1 revision
This online VHDL code generator (http://www.easics.com/webtools/crctool) can be used to obtain the folllowing code. Here is a VHDL Test Bench.
Please not that this piece of code will need an initialized CRC in input and it’s output needs to be xored with 7FFF.
-----------------------------------------------------------------------
-- File: PCK_CRC15_D8.vhd
-- Date: Thu Mar 3 03:10:01 2005
--
-- Copyright (C) 1999-2003 Easics NV.
-- This source file may be used and distributed without restriction
-- provided that this copyright statement is not removed from the file
-- and that any derivative work contains the original copyright notice
-- and the associated disclaimer.
--
-- THIS SOURCE FILE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS
-- OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
--
-- Purpose: VHDL package containing a synthesizable CRC function
-- * polynomial: (0 2 3 4 7 8 9 10 11 15)
-- * data width: 8
--
-- Info: [email protected]
-- http://www.easics.com
-----------------------------------------------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
package PCK_CRC15_D8 is
-- polynomial: (0 2 3 4 7 8 9 10 11 15)
-- data width: 8
-- convention: the first serial data bit is D(7)
function nextCRC15_D8
( Data: std_logic_vector(7 downto 0);
CRC: std_logic_vector(14 downto 0) )
return std_logic_vector;
end PCK_CRC15_D8;
library IEEE;
use IEEE.std_logic_1164.all;
package body PCK_CRC15_D8 is
-- polynomial: (0 2 3 4 7 8 9 10 11 15)
-- data width: 8
-- convention: the first serial data bit is D(7)
function nextCRC15_D8
( Data: std_logic_vector(7 downto 0);
CRC: std_logic_vector(14 downto 0) )
return std_logic_vector is
variable D: std_logic_vector(7 downto 0);
variable C: std_logic_vector(14 downto 0);
variable NewCRC: std_logic_vector(14 downto 0);
begin
D := Data;
C := CRC;
NewCRC(0) := D(7) xor D(6) xor D(5) xor D(4) xor D(0) xor C(7) xor
C(11) xor C(12) xor C(13) xor C(14);
NewCRC(1) := D(7) xor D(6) xor D(5) xor D(1) xor C(8) xor C(12) xor
C(13) xor C(14);
NewCRC(2) := D(5) xor D(4) xor D(2) xor D(0) xor C(7) xor C(9) xor
C(11) xor C(12);
NewCRC(3) := D(7) xor D(4) xor D(3) xor D(1) xor D(0) xor C(7) xor
C(8) xor C(10) xor C(11) xor C(14);
NewCRC(4) := D(7) xor D(6) xor D(2) xor D(1) xor D(0) xor C(7) xor
C(8) xor C(9) xor C(13) xor C(14);
NewCRC(5) := D(7) xor D(3) xor D(2) xor D(1) xor C(8) xor C(9) xor
C(10) xor C(14);
NewCRC(6) := D(4) xor D(3) xor D(2) xor C(9) xor C(10) xor C(11);
NewCRC(7) := D(7) xor D(6) xor D(3) xor D(0) xor C(7) xor C(10) xor
C(13) xor C(14);
NewCRC(8) := D(6) xor D(5) xor D(1) xor D(0) xor C(0) xor C(7) xor
C(8) xor C(12) xor C(13);
NewCRC(9) := D(5) xor D(4) xor D(2) xor D(1) xor D(0) xor C(1) xor
C(7) xor C(8) xor C(9) xor C(11) xor C(12);
NewCRC(10) := D(7) xor D(4) xor D(3) xor D(2) xor D(1) xor D(0) xor
C(2) xor C(7) xor C(8) xor C(9) xor C(10) xor C(11) xor
C(14);
NewCRC(11) := D(7) xor D(6) xor D(3) xor D(2) xor D(1) xor D(0) xor
C(3) xor C(7) xor C(8) xor C(9) xor C(10) xor C(13) xor
C(14);
NewCRC(12) := D(7) xor D(4) xor D(3) xor D(2) xor D(1) xor C(4) xor
C(8) xor C(9) xor C(10) xor C(11) xor C(14);
NewCRC(13) := D(5) xor D(4) xor D(3) xor D(2) xor C(5) xor C(9) xor
C(10) xor C(11) xor C(12);
NewCRC(14) := D(6) xor D(5) xor D(4) xor D(3) xor C(6) xor C(10) xor
C(11) xor C(12) xor C(13);
return NewCRC;
end nextCRC15_D8;
end PCK_CRC15_D8;