kfilter 0.5.0

A no-std implementation of the Kalman and Extended Kalman Filter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Pull Request Checks
on: pull_request
jobs:
  Rust-tests-lints:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - run: cargo clippy -- -D warnings
      - run: cargo build --features std
      - run: cargo build --features serde
      - run: cargo build --features defmt
      - run: cargo test
      - run: cargo doc --no-deps
        env:
          RUSTDOCFLAGS: "--deny warnings"