Skip to content

Commit

Permalink
idsp: git
Browse files Browse the repository at this point in the history
  • Loading branch information
jordens committed Feb 2, 2025
1 parent f3e7f74 commit 9db6e13
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 52 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

* Support for exponentially swept sine signal source
* Support for exponentially swept sine signal source for transfer function
and distortion measurement
* Support for "cooked" PID biquad and standard biquad filter prototypes from `idsp`
* Defaulting to `s` optimization for debug and release

### Changed

* `py`: `StabilizerStream` renamed to `Stream`
* `dual-iir`: settings tree layout changed

## [v0.11.0](https://github.com/quartiq/stabilizer/compare/v0.10.0...v0.11.0) - 2024-12-02

Expand Down
120 changes: 72 additions & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ spin = { version = "0.9", default-features = false, features = ["spin_mutex"] }
shared-bus = { version = "0.3", features = ["cortex-m"] }
lm75 = "0.2"
enum-iterator = "2.1.0"
rand_xorshift = "0.3.0"
rand_core = "0.6.4"
rand_xorshift = "0.4.0"
rand_core = "0.9.0"
minimq = "0.9.0"
usb-device = "0.3.2"
usbd-serial = "0.2"
Expand Down Expand Up @@ -115,4 +115,5 @@ debug = true
lto = true

[patch.crates-io]
idsp = { path = "../idsp" }
#idsp = { path = "../idsp" }
idsp = { git = "https://github.com/quartiq/idsp.git", branch = "biquad-enum" }

0 comments on commit 9db6e13

Please sign in to comment.