Blame view

RIOT/sys/include/bcd.h 1.17 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  /*
   * Copyright (C) 2017 Freie Universitรคt Berlin
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  /**
   * @defgroup    sys_bcd Binary coded decimal
   * @ingroup     sys
   * @brief       Library to de- and encode binary coded decimals
   * @{
   *
   * @file
   * @brief       BCD definitions
   *
   * @author  Martine Lenders <m.lenders@fu-berlin.de>
   */
  #ifndef BCD_H
  #define BCD_H
  
  #include <stdint.h>
  
  #ifdef __cplusplus
  extern "C" {
  #endif
  
  /**
   * @brief   Converts a byte to a binary coded decimal
   *
   * @param[in] byte  A byte
   *
   * @return  A binary coded decimal (4 MSB = 10s, 4 LSB = 1s)
   */
  static inline uint8_t bcd_from_byte(uint8_t byte)
  {
      /* ((byte / 10) << 4) | (byte % 10) */
      return byte + (6 * (byte / 10));
  }
  
  /**
   * @brief   Converts a binary coded decimal to a byte
   *
   * @param[in] bcd   A binary coded decimal (4 MSB = 10, 4 LSB = 1s)
   *
   * @return  A byte
   */
  static inline uint8_t bcd_to_byte(uint8_t bcd)
  {
      /* == (10 * (bcd >> 4)) + (bcd & 0xf) */
      return bcd - (6 * (bcd >> 4));
  }
  
  #ifdef __cplusplus
  }
  #endif
  
  #endif /* BCD_H */
  /** @} */