Skip to content

A small test program I made to test my CRC algorithm with some bit flipping and whatnot... rather bad really....

Notifications You must be signed in to change notification settings

HAMGZZ/CRC-AX.25

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

CRC-AX.25

This program calculates the FCS (Frame Check Sequence) through CRC and the corrent ISO standard - this was made very quickly and was a faster way than testing it directly on the RP2040 (for the A30B Project)... Please compile as such:

gcc CRC16.c -o crc16

You should expect the following results:

./crc16 ABC
CRC16 Algorithm tester
INPUT:           ABC
ORIGINAL:        0100 0001  | 0100 0010  | 0100 0011  | 
FLIPPED:         1000 0010  | 0100 0010  | 1100 0010  | 
RESULT:          f4f9
RESULT:          1111 0100 1111 1001 

About

A small test program I made to test my CRC algorithm with some bit flipping and whatnot... rather bad really....

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages