//! Time units
// Frequency based
/// Hertz
pub type Hertz = HertzU32;
/// KiloHertz
pub type KiloHertz = KilohertzU32;
/// MegaHertz
pub type MegaHertz = MegahertzU32;
// Period based
/// Seconds
pub type Seconds = SecsDurationU32;
/// Milliseconds
pub type Milliseconds = MillisDurationU32;
/// Microseconds
pub type Microseconds = MicrosDurationU32;
/// Nanoseconds
pub type Nanoseconds = NanosDurationU32;