https://github.com/signalo/signalo
A DSP toolbox with focus on embedded environments written in Rust.
https://github.com/signalo/signalo
control-systems digital-signal-processing dsp embedded real-time toolbox
Last synced: about 1 year ago
JSON representation
A DSP toolbox with focus on embedded environments written in Rust.
- Host: GitHub
- URL: https://github.com/signalo/signalo
- Owner: signalo
- Created: 2018-05-02T11:08:25.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2021-09-14T10:36:44.000Z (almost 5 years ago)
- Last Synced: 2024-10-20T00:48:45.886Z (over 1 year ago)
- Topics: control-systems, digital-signal-processing, dsp, embedded, real-time, toolbox
- Language: Rust
- Size: 470 KB
- Stars: 113
- Watchers: 6
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# signalo
## Synopsis
A DSP toolbox with focus on embedded environments.
Signalo provides the **basic building-blocks** for **low-level real-time filtering pipelines**,
based on zero-cost, zero-allocation abstractions, which can be **assembled via composition**.
## About
Signalo basically consists of four basic [traits](./crates/traits) and implementations thereof:
- [`Source`](./crates/sources): `() -> T`
- [`Filter`](./crates/filters): `T -> U`
- [`Sink`](./crates/sinks): `T -> ()`
- `Finalize`: `() -> U`
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` or `Sink`.
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](./crates/pipes).
## Versioning
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/signalo/signalo/tags).
## License
This project is licensed under the [**MPL-2.0**](https://www.tldrlegal.com/l/mpl-2.0) – see the [LICENSE.md](LICENSE.md) file for details.
## Contributing
Please read [CONTRIBUTING.md](../CONTRIBUTING.md) for details on our [code of conduct](https://www.rust-lang.org/conduct.html), and the process for submitting pull requests to us.
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.