2007-10-21 06:16:12 +00:00
|
|
|
/* Permission is hereby granted to copy, modify and redistribute this code
|
|
|
|
* in terms of the GNU Library General Public License, Version 2 or later,
|
|
|
|
* at your option.
|
|
|
|
*/
|
|
|
|
|
2009-08-13 13:31:11 +00:00
|
|
|
/* inline functions to translate to/from binary and binary-coded decimal
|
|
|
|
* (frequently found in RTC chips).
|
2007-10-21 06:16:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BCD_H
|
|
|
|
#define _BCD_H
|
|
|
|
|
2015-04-20 18:37:20 +00:00
|
|
|
static inline unsigned int bcd2bin(unsigned int val)
|
2009-08-13 13:31:11 +00:00
|
|
|
{
|
2015-04-20 18:37:20 +00:00
|
|
|
return ((val) & 0x0f) + ((val & 0xff) >> 4) * 10;
|
2009-08-13 13:31:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-20 18:37:20 +00:00
|
|
|
static inline unsigned int bin2bcd(unsigned int val)
|
2009-08-13 13:31:11 +00:00
|
|
|
{
|
|
|
|
return (((val / 10) << 4) | (val % 10));
|
|
|
|
}
|
2007-10-21 06:16:12 +00:00
|
|
|
|
|
|
|
#endif /* _BCD_H */
|