pounder_test/dsp/src/lib.rs

8 lines
170 B
Rust
Raw Normal View History

2020-12-04 02:09:54 +08:00
#![cfg_attr(not(test), no_std)]
#![cfg_attr(feature = "nightly", feature(asm, core_intrinsics))]
2020-11-22 23:45:32 +08:00
pub type Complex<T> = (T, T);
2020-11-22 23:45:32 +08:00
pub mod iir;
2020-11-23 06:34:38 +08:00
pub mod lockin;
2020-12-04 02:09:54 +08:00
pub mod pll;