nobcd 0.2.0

A simple BCD number primitive for no_std environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# A simple BCD number primitive

[![CI](https://github.com/rmja/nobcd/actions/workflows/ci.yml/badge.svg)](https://github.com/rmja/nobcd/actions/workflows/ci.yml)
[![crates.io](https://img.shields.io/crates/v/nobcd.svg)](https://crates.io/crates/nobcd)

This crate provides a simple `BcdNumber` type that can be used in embedded `no_std` environments.

If you are missing a feature, please raise an issue or a PR.

## Example

```rust
let bcd = BcdNumber::<2>::try_new(1234u16).unwrap();
assert_eq!(1234u16, bcd.value());
assert_eq!([0x12, 0x34], bcd.bcd_bytes());
assert_eq!(bcd, BcdNumber::try_from([0x12, 0x34]).unwrap());
```