Tagged Questions
2
votes
3answers
3k views
CRC calculation in Java
I'm reading a file from serialport using x-modem protocol and 133 bytes packet. I'm reading
in that
1 byte is SOH
2 byte packet number
3 byte nagative of packet number
next 128 ...
1
vote
1answer
622 views
CRC-CCITT (XModem) implementation in javascript
i'm trying to implement a CRC-CCITT (XModem) check in javascript without success.
I need it in order to send socket string into a controller via RS232.
does anyone know how to do it? or perhaps is ...
0
votes
2answers
606 views
Xmodem-CRC protocol in c# problem
I'm porting a C++ xmodem protocol to C# and I'm having an issue with the CRC check. The application uploads files through a modem using the xmodem 128 byte protocol with CRC. I test it using ...