Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Most efficient way to convert BCD to binary

Tags:

c#

binary

bcd

I have the code below to convert a 32 bit BCD value (supplied in two uint halves) to a uint binary value.

The values supplied can be up to 0x9999, to form a maximum value of 0x99999999.

Is there a better (ie. quicker) way to achieve this?

    /// <summary>
    /// Convert two PLC words in BCD format (forming 8 digit number) into single binary integer.
    /// e.g. If Lower = 0x5678 and Upper = 0x1234, then Return is 12345678 decimal, or 0xbc614e.
    /// </summary>
    /// <param name="lower">Least significant 16 bits.</param>
    /// <param name="upper">Most significant 16 bits.</param>
    /// <returns>32 bit unsigned integer.</returns>
    /// <remarks>If the parameters supplied are invalid, returns zero.</remarks>
    private static uint BCD2ToBin(uint lower, uint upper)
    {
        uint binVal = 0;

        if ((lower | upper) != 0)
        {
            int shift = 0;
            uint multiplier = 1;
            uint bcdVal = (upper << 16) | lower;

            for (int i = 0; i < 8; i++)
            {
                uint digit = (bcdVal >> shift) & 0xf;

                if (digit > 9)
                {
                    binVal = 0;
                    break;
                }
                else
                {
                    binVal += digit * multiplier;
                    shift += 4;
                    multiplier *= 10;
                }
            }
        }

        return binVal;
    }
like image 388
Andy Avatar asked Jan 20 '09 20:01

Andy


5 Answers

If you've space to spare for a 39,322 element array, you could always just look the value up.

like image 100
Pete Kirkham Avatar answered Oct 18 '22 19:10

Pete Kirkham


If you unroll the loop, remember to keep the bit shift.

value =  ( lo        & 0xF);
value += ((lo >> 4 ) & 0xF) * 10;
value += ((lo >> 8 ) & 0xF) * 100;
value += ((lo >> 12) & 0xF) * 1000;
value += ( hi        & 0xF) * 10000;
value += ((hi >> 4 ) & 0xF) * 100000;
value += ((hi >> 8 ) & 0xF) * 1000000;
value += ((hi >> 12) & 0xF) * 10000000;
like image 25
epotter Avatar answered Oct 18 '22 21:10

epotter


Your code seems rather complicated; do you require the specific error checking?

Otherwise, you could just use the following code which shouldn't be slower, in fact, it's mostly the same:

uint result = 0;
uint multiplier = 1;
uint value = lo | hi << 0x10;

while (value > 0) {
    uint digit = value & 0xF;
    value >>= 4;
    result += multiplier * digit;
    multiplier *= 10;
}
return result;
like image 25
Konrad Rudolph Avatar answered Oct 18 '22 21:10

Konrad Rudolph


I suppose you could unroll the loop:

value = ( lo     & 0xF);
value+= ((lo>>4) & 0xF) *10;
value+= ((lo>>8) & 0xF) *100;
value+= ((lo>>12)& 0xF) *1000;
value+= ( hi     & 0xF) *10000;
value+= ((hi>>4  & 0xF) *100000;
value+= ((hi>>8) & 0xF) *1000000;
value+= ((hi>>12)& 0xF) *10000000;

And you can check for invalid BCD digits like this:

invalid = lo & ((lo&0x8888)>>2)*3

This sets invalid to a non-zero value if any single hex digit > 9.

like image 35
AShelly Avatar answered Oct 18 '22 20:10

AShelly


Try this:

public static int bcd2int(int bcd) {
   return int.Parse(bcd.ToString("X"));
}
like image 1
ToF Avatar answered Oct 18 '22 20:10

ToF