aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index a415e9f..c04740f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -331,7 +331,8 @@ fn main() {
// Main thread, output to file/device
match output {
Output::FL2K => {
- let fl2k = fl2k::FL2K::open(device_index);
+ let fl2k = fl2k::FL2K::open(device_index).expect("fl2k open");
+ // TODO fl2k.start_tx(|| {}, 0).expect("fl2k start_tx");
}
Output::Debug => {
let out_file = File::create("debug-out.i8").expect("create file");