finally non theoretical explanation than is actually useful
@TheNinjasSub6 жыл бұрын
Thank you for this video. It was amazing clear and helped me a ton.
@prathamkalgutkar75384 жыл бұрын
I'm just a Beginner in This Subject, but Being a Receiver It's Possible that It may not have any information regarding Calculated Checksum. In Such Situation, The Sender can append the Checksum along with Data. The Reciever can Calculate the CRC of whole Data and It will result in a checksum of 0 or whatever Specified Value
@0033mer4 жыл бұрын
Yes .. the CRC is sent along with the data to the receiver as shown at 1:00. FEC video: kzbin.info/www/bejne/eHmncmyla513iK8
@yossrysawaby34476 жыл бұрын
Very clear explanation! thank you so much
@IIIIIIIIIIIllllllIIIIIIIIIII7 жыл бұрын
Great work! Thanks for making this.
@mananshah43445 жыл бұрын
Is the CRC 0x1CED correct? After implementing in software as per the procedure, I get 0x1BE9. Which one would be right?
@0033mer5 жыл бұрын
Check it with a CRC calculator My CRC generator is CRC-16-CCITT Normal 1021 Little Endian used in X-Modem. Calculator shows 1CED www.scadacore.com/tools/programming-calculators/online-checksum-calculator/
@mananshah43445 жыл бұрын
@@0033mer Can I share my code with you that shows CRC as 0x1BE9. Can you check what am I doing wrong in this code? your email please?
@ashling75855 жыл бұрын
thanks! this really helped
@YouTubeChannel20005 жыл бұрын
The shift should be to the left.
@0033mer5 жыл бұрын
CRC-16-CCITT little endian is calculated with shift right. practicingelectronics.com/articles/article-100003/article.php
@0033mer3 жыл бұрын
@BurntTransistor The example is a CRC16 standard (CRC-16-CCITT) used in X.25, XMODEM, Bluetooth and many others. Check out this link: www.scadacore.com/tools/programming-calculators/online-checksum-calculator/ Enter F881 hex and look at CRC-16-CCITT Little Endian. Result CRC is 1CED.