| Crates.io | nobcd |
| lib.rs | nobcd |
| version | 0.2.0 |
| created_at | 2023-02-03 08:34:21.171174+00 |
| updated_at | 2023-04-24 11:04:07.012239+00 |
| description | A simple BCD number primitive for no_std environments |
| homepage | |
| repository | https://github.com/rmja/nobcd |
| max_upload_size | |
| id | 775446 |
| size | 9,275 |
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.
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());