如何将BCD转换为十进制?

时间:2015-01-25 03:50:33

标签: c bcd

如何根据表示将二进制编码的十进制数转换为十进制数?我不想转换它的值,而是它的表示,这就是我的意思。

我想将0x11转换为小数11(不是17)和0x20转换为20(不是32)。

unsigned char day = 0x11;
unsigned char month = 0x12;

int dayDecimal, monthDecimal;

我希望dayDecimal为11而monthDecimal = 12。我将使用0x00到0x60之间的范围,所以它应该是可能的。不会有'A','B','C','D','E','F。

更新

我实际上正在从RTCC芯片中读取时间,作为我正在进行的嵌入式项目的一部分。以该形式返回小时,分钟,日和月。例如,如果分钟是0x40则表示40分钟而不是64分钟,所以我需要能够正确地解释它。我需要以某种方式将0x40转换为40而不是64.我希望这是可能的。

谢谢!

3 个答案:

答案 0 :(得分:13)

你需要使用两个nybbles,将更重要的nybble乘以10并添加不太重要的:

uint8_t hex = 0x11;
assert(((hex & 0xF0) >> 4) < 10);  // More significant nybble is valid
assert((hex & 0x0F) < 10);         // Less significant nybble is valid
int dec = ((hex & 0xF0) >> 4) * 10 + (hex & 0x0F);

如果断言被禁用但输入是伪造的(例如0xFF),那么你得到你应得的东西:GIGO - 垃圾进入,垃​​圾输出。您可以轻松地将其包装到(内联)函数中:

static inline int bcd_decimal(uint8_t hex)
{
    assert(((hex & 0xF0) >> 4) < 10);  // More significant nybble is valid
    assert((hex & 0x0F) < 10);         // Less significant nybble is valid
    int dec = ((hex & 0xF0) >> 4) * 10 + (hex & 0x0F);
    return dec;
}       

这种转换让人联想到BCD - Binary Coded Decimal

答案 1 :(得分:4)

一种非常简单的方法,无需检查错误:

int bcd_to_decimal(unsigned char x) {
    return x - 6 * (x >> 4);
}

答案 2 :(得分:1)

将所需的值放入函数中,您将获得一个整数作为回报。

#include <stdio.h>
#include <math.h>

typedef int                 INT32;

typedef short int           INT16;

typedef unsigned short int  UINT16;

typedef unsigned long int   UINT32;

UINT32 BCDToDecimal(UINT32 nDecimalValue){
    UINT32 nResult=0;
    INT32  nPartialRemainder, ncnt,anHexValueStored[8];
    UINT16 unLengthOfHexString = 0,unflag=0;

    for(ncnt=7 ;ncnt>=0 ; ncnt--){
        anHexValueStored[ncnt]=nDecimalValue & (0x0000000f << 4*(7-ncnt));
        anHexValueStored[ncnt]=anHexValueStored[ncnt] >> 4*(7-ncnt);
        if(anHexValueStored[ncnt]>9)
        unflag=1;
    }
    if(unflag==1){
        return 0;
    }
    else{
        for(ncnt=0 ;ncnt<8 ; ncnt++)
        nResult= nResult +anHexValueStored[ncnt]*pow(10,(7-ncnt));
        return nResult;
    }
}
int main() {
    printf("%ld\n",BCDToDecimal(0X20));
    return 0;
}