Create README.md

This commit is contained in:
DJ2LS 2020-12-15 12:20:44 +01:00 committed by GitHub
parent 3cf2d4e7af
commit db2d59b790
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

19
test/README.md Normal file
View file

@ -0,0 +1,19 @@
###################### CHECKSUM COMPARISON FREEDV VS CRCENGINE ########
#https://crccalc.com
teststring = b'TEST'
# freedv crc16 checksum
crctest2 = c_ushort(self.c_lib.freedv_gen_crc16(teststring, len(teststring)))
print("FREEDV2: " + str(crctest2.value) + " = " + hex(crctest2.value))
#Python crc16 checksum
crc_algorithm = crcengine.new('crc16-ccitt-false') #load crc16 library
crctest3 = crc_algorithm(teststring)
print("CRCENGINE: " + str(crctest3) + " = " + hex(crctest3))
#######################################################################