ms5837 0.2.1

A driver for the MS5837 pressure/temperature sensor from Texas Instruments.
Documentation
1
2
3
4
5
6
fn main() {
    // Tell Cargo that if the given file changes, to rerun this build script.
    println!("cargo:rerun-if-changed=src/crc4.c");
    // Use the `cc` crate to build a C file and statically link it.
    cc::Build::new().file("src/crc4.c").compile("hello");
}