vcgencmd 0.3.1

Bindings for Raspberry Pi's vcgencmd utility
Documentation
1
2
3
4
5
6
7
8
9
extern crate vcgencmd;

#[cfg(target_arch = "arm")]
#[test]
fn test_measure_clock() {
    let output = vcgencmd::measure_clock(vcgencmd::Src::Clock(vcgencmd::ClockSrc::Arm)).unwrap();
    dbg!(&output);
    // Idiotic
}