Skip to content

Commit

Permalink
Merge #174
Browse files Browse the repository at this point in the history
174: move iir to new dsp crate r=jordens a=matthuszagh

As mentioned [here](#173 (comment)).

Co-authored-by: Matt Huszagh <[email protected]>
  • Loading branch information
bors[bot] and matthuszagh authored Nov 22, 2020
2 parents a7b6b5c + d24dfb3 commit c91e395
Show file tree
Hide file tree
Showing 7 changed files with 85 additions and 1 deletion.
8 changes: 8 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ embedded-hal = "0.2.4"
nb = "1.0.0"
asm-delay = "0.9.0"
enum-iterator = "0.6.0"
dsp = { path = "dsp" }

[dependencies.mcp23017]
git = "https://github.com/mrd0ll4r/mcp23017.git"
Expand Down
63 changes: 63 additions & 0 deletions dsp/Cargo.lock

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

8 changes: 8 additions & 0 deletions dsp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "dsp"
version = "0.1.0"
authors = ["Robert Jördens <[email protected]>"]
edition = "2018"

[dependencies]
serde = { version = "1.0", features = ["derive"], default-features = false }
File renamed without changes.
3 changes: 3 additions & 0 deletions dsp/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#![no_std]

pub mod iir;
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,11 @@ static mut DES_RING: ethernet::DesRing = ethernet::DesRing::new();

mod afe;
mod eeprom;
mod iir;
mod pounder;
mod server;

use dsp::iir;

#[cfg(not(feature = "semihosting"))]
fn init_log() {}

Expand Down

0 comments on commit c91e395

Please sign in to comment.