conreg 0.1.0

Control and Regulation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use conreg::timebase::*;

fn main() {
    let mut e1 = TimeDelta::default();
    let mut e2 = TimeDelta::default();
    let d = e1.diff();
    println!("delta 1 in micro seconds {}", d);
    let d = e2.diff();
    println!("delta 2 in micro seconds {}", d);
    let d = e1.diff();
    println!("delta 1 in micro seconds {}", d);
    let d = e2.diff();
    println!("delta 2 in micro seconds {}", d);
}