Skip to content
Draft

Mpll #1036

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
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,11 @@ jobs:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
# https://github.com/rust-lang/cargo/issues/13051
- run: cargo run --bin dual-iir --target x86_64-unknown-linux-gnu
- run: cargo run --bin lockin --target x86_64-unknown-linux-gnu
- run: cargo run --bin dds --target x86_64-unknown-linux-gnu
- run: cargo run --bin dual-iir --target host-tuple
- run: cargo run --bin lockin --target host-tuple
- run: cargo run --bin dds --target host-tuple
- run: cargo run --bin mpll --target host-tuple
# - run: cargo run --bin fls --target host-tuple

doc:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
target/*/release/lockin
target/*/release/fls
target/*/release/dds
target/*/release/mpll
- id: create_release
uses: actions/create-release@v1
env:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
* Support for "cooked" PID biquad and standard biquad filter prototypes from `idsp`
* Defaulting to `s` optimization for debug and release
* `fls`: application for fiber length stabilization and phase/frequency measurement/control
* `mpll`: dispersive PLL

### Changed

Expand Down
Loading
Loading