tests
This commit is contained in:
17
src/main.rs
17
src/main.rs
@ -1,5 +1,16 @@
|
||||
mod iq_reader;
|
||||
use crate::iq_reader::FileSource;
|
||||
use std::error::Error;
|
||||
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
mod agc;
|
||||
mod iq_reader;
|
||||
mod plot;
|
||||
|
||||
fn main() -> Result<(), Box<dyn Error>> {
|
||||
let source = FileSource::new("test.iq", 32769)?;
|
||||
|
||||
// for chunk in source {
|
||||
// println!("{chunk :?}");
|
||||
// }
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user