Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,13 @@ jobs:
- run: cargo doc --no-deps
- run: cargo install cargo-deadlinks
- run: cargo deadlinks --ignore-fragments --check-intra-doc-links

embedded:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
target: thumbv7em-none-eabihf
- run: cargo build --release
working-directory: miniconf/tests/embedded
4 changes: 2 additions & 2 deletions tests/embedded/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
cortex-m-rt = { version = "0.7.0", default-features = false }
panic-probe = { version = "1.0.0", features = ["print-defmt"] }

idsp = { version = "0.20", path = "../.." }
dsp-process = { version = "0.1", path = "../../dsp-process" }
idsp = { version = "0.21", path = "../.." }
dsp-process = { version = "0.2", path = "../../dsp-process" }
dsp-fixedpoint = { version = "0.1", path = "../../dsp-fixedpoint" }

biquad = "0.5.0"
Expand Down
5 changes: 5 additions & 0 deletions tests/embedded/src/bin/biquad.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@ fn main() -> ! {
>::default())
.show("idsp q64");

bench_inplace(&mut Split::<idsp::Lowpass<1>, idsp::LowpassState<1>>::default())
.show("lowpass1");
bench_inplace(&mut Split::<idsp::Lowpass<2>, idsp::LowpassState<2>>::default())
.show("lowpass2");

info!("Done");

asm::bkpt();
Expand Down
Loading