embedded-utils 0.1.0

`embedded-utils` provides some features in Rust(no_std) embedded systems.
Documentation
  • Coverage
  • 100%
    14 out of 14 items documented2 out of 2 items with examples
  • Size
  • Source code size: 21.78 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 600.85 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • tushantong

embedded-utils

embedded-utils provides some features in Rust(no_std) embedded systems.

Crate Feature Flags

The following crate feature flags are available:

  • time: enable processing time.

Usage

  1. Add the following line to your Cargo.toml:
embedded-utils = { version = "0.1.0" }
  1. Use time for processing time.:
use embedded_utils::time::{DateTime, TimeZone};

let datetime = DateTime::from_unix_millis(1704067199998, TimeZone::AsiaShanghai);
println!("datetime year is {}", datetime.year);

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.