1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
/**
 * adi_clock - Aldaron's Device Interface - Clock - "lib.rs"
 * Copyright 2017 (c) Jeron Lau - Licensed under the MIT LICENSE
**/

/// The version of adi_clock that's being used
pub const VERSION : &'static str = "adi_clock 0.2.0";

mod clock;
mod timer;

pub use clock::Clock;
pub use clock::Pulse;
pub use timer::Timer;