Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Calculate checksum for Laboratory Information System (LIS) frames

Tags:

c#

checksum

I'm developing an instrument driver for a Laboratory Information System. I want to know how to calculate the checksum of a frame.

Explanation of the checksum algorithm:

  1. Expressed by characters [0-9] and [A-F].

  2. Characters beginning from the character after [STX] and until [ETB] or [ETX] (including [ETB] or [ETX]) are added in binary.

  3. The 2-digit numbers, which represent the least significant 8 bits in hexadecimal code, are converted to ASCII characters [0-9] and [A-F].

  4. The most significant digit is stored in CHK1 and the least significant digit in CHK2.

I am not getting the 3rd and 4th points above.

This is a sample frame:

<STX>2Q|1|2^1||||20011001153000<CR><ETX><CHK1><CHK2><CR><LF>

What is the value of CHK1 and CHK2? How do I implement the given algorithm in C#?

like image 862
Rikin Patel Avatar asked Jun 08 '12 11:06

Rikin Patel


2 Answers

Finally I got answer, here is the code for calculating checksum:

private string CalculateChecksum(string dataToCalculate)
{
    byte[] byteToCalculate = Encoding.ASCII.GetBytes(dataToCalculate);
    int checksum = 0;
    foreach (byte chData in byteToCalculate)
    {
        checksum += chData;
    }
    checksum &= 0xff;
    return checksum.ToString("X2");
}
like image 71
Rikin Patel Avatar answered Sep 20 '22 13:09

Rikin Patel


You can do this in one line:

return Encoding.ASCII.GetBytes(dataToCalculate).Aggregate((r, n) => r += n).ToString("X2");
like image 45
Aleksey Avatar answered Sep 20 '22 13:09

Aleksey