minikalman 0.0.2

A microcontroller targeted Kalman filter implementation
Documentation
1
2
3
4
5
6
7
fn main() {
    #[cfg(all(feature = "std", feature = "no_std"))]
    compile_error!("feature \"std\" and feature \"no_std\" cannot be enabled at the same time");

    #[cfg(not(any(feature = "std", feature = "no_std")))]
    compile_error!("either feature \"std\" or feature \"no_std\" must be enabled");
}