11 unstable releases
Uses old Rust 2015
0.6.0 | Jun 28, 2021 |
---|---|
0.5.0 | Oct 19, 2018 |
0.4.0 | Oct 7, 2018 |
0.3.1 | Sep 27, 2018 |
0.1.2 | May 18, 2018 |
#465 in Embedded development
275KB
6.5K
SLoC
signalo
Synopsis
A DSP toolbox with focus on embedded environments.
About
Signalo basically consists of four basic traits and implementations thereof:
Roughly signalo's traits are equivalent in semantics to the following stdlib APIs:
Source<…>
≈core::iter::Iterator<…>
Filter<…>
≈core::iter::Map<…>
Sink<…>
&Finalize
≈Iterator::fold(…)
Filter<…>
&Finalize
≈core::iter::Scan<…>
Types implementing Finalize
usually also implement either Filter<T>
or Sink<T>
.
Signalo provides the basic building-blocks for low-level real-time filtering pipelines,
which can be assembled via composition either manually or through the use of pipes.
Workspace
Contributing
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
- Vincent Esche – Initial work – Regexident
See also the list of contributors who participated in this project.
License
This project is licensed under the MPL-2.0 – see the LICENSE.md file for details.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you to the licensor shall be under the terms and conditions of this license, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with licensor regarding such contributions.
Dependencies
~245KB