필터 지우기
필터 지우기

Cyclic Redundancy Check function

조회 수: 9 (최근 30일)
JIAN-HONG YE ZHU
JIAN-HONG YE ZHU 2023년 4월 11일
답변: Askic V 2023년 4월 11일
Hello, I tried writing two functions to perform CRC, one for a sender and the other for a receiver.
The reference I used is the CRC example on Matlab website: Perform Cyclic Redundancy Check - MATLAB & Simulink - MathWorks United Kingdom
I attatched 4 files, the file called 'FullCode' has the whole code that performs the CRC for sender and receiver.
'crcSend' is the function that reads the data that has to be transmitted from a text file and generates the required CRC code.
'crcReceive' is the function that verifies whether the data transmitted is correct or not.
'message.txt' has the binary data.
I am unsure why when running crcReceive, I am getting that the remainder is not equal to zero, which means a data transmission error has ocurred, even though the code is equal to the code in 'FullCode', which when running, does give me remainder = 0 and hence no data transmission error.
Appreciate any insight on this.

채택된 답변

Askic V
Askic V 2023년 4월 11일
As far as I can see, crcreceive.m is missing a portion of code present in the FullCode
divisor = bitshift(divisor,messageLength-divisorDegree-1);
dec2bin(divisor)
divisor = bitshift(divisor,divisorDegree);
dec2bin(divisor)
That is why divisor variable has different values in for loop in FullCode comparing to the for loop in crcReceive.m file.
So, naturally, the results would be different.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Error Detection and Correction에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by