3 unstable releases
0.2.0 | Apr 24, 2023 |
---|---|
0.1.1 | Feb 3, 2023 |
0.1.0 | Feb 3, 2023 |
#829 in Embedded development
24 downloads per month
10KB
199 lines
A simple BCD number primitive
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
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());
Dependencies
~95–325KB